markdown-text-editor 0.1.5 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +114 -61
- package/dist/index.css +2 -7
- package/dist/index.css.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/markdown-text-editor.css +2 -7
- package/dist/markdown-text-editor.css.map +1 -1
- package/dist/markdown-text-editor.js +1 -1
- package/dist/markdown-text-editor.js.map +1 -1
- package/package.json +14 -15
- package/src/plugins/index.js +0 -2
- package/src/plugins/markdown/Toolbar/MakeTool.js +0 -22
- package/src/plugins/markdown/Toolbar/index.js +0 -56
- package/src/plugins/markdown/Toolbar/tools/BlockQuoteTool.js +0 -31
- package/src/plugins/markdown/Toolbar/tools/BoldTool.js +0 -33
- package/src/plugins/markdown/Toolbar/tools/CheckListTool.js +0 -31
- package/src/plugins/markdown/Toolbar/tools/HeadingTool.js +0 -55
- package/src/plugins/markdown/Toolbar/tools/ItalicTool.js +0 -31
- package/src/plugins/markdown/Toolbar/tools/LinkTool.js +0 -47
- package/src/plugins/markdown/Toolbar/tools/OLTool.js +0 -31
- package/src/plugins/markdown/Toolbar/tools/PreviewTool.js +0 -108
- package/src/plugins/markdown/Toolbar/tools/StrikethroughTool.js +0 -31
- package/src/plugins/markdown/Toolbar/tools/ULTool.js +0 -31
- package/src/plugins/markdown/editor.js +0 -172
- package/src/plugins/markdown/preview.js +0 -17
- package/src/plugins/markdown/styles/main.css +0 -21
- package/src/plugins/markdown/utils/markdownUtils.js +0 -7
package/README.md
CHANGED
|
@@ -1,31 +1,13 @@
|
|
|
1
|
+
## MarkdownEditor – Best JavaScript Markdown Editor Plugin
|
|
2
|
+
|
|
1
3
|
[](https://www.npmjs.com/package/markdown-text-editor)
|
|
2
4
|
[](https://github.com/nezanuha/markdown-text-editor/releases)
|
|
3
5
|
[](https://github.com/nezanuha/markdown-text-editor/blob/master/LICENSE)
|
|
6
|
+
[](https://snyk.io/test/github/nezanuha/markdown-text-editor)
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
## MarkdownEditor Plugin Documentation
|
|
9
|
-
Transform textarea into powerful Markdown editor, and get/set value as standard HTML method.
|
|
10
|
-
|
|
11
|
-
[**DEMO**](https://codepen.io/Mohammed-Rashad/pen/pvoyqPQ)
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
Welcome to the documentation for the **MarkdownEditor Plugin** – an **open source project** offering the **best, simple, embeddable JavaScript Markdown editor plugin or library**. This powerful tool provides **real-time preview**, **syntax highlighting**, and **easy integration** into your projects. Whether you’re building a blog, note-taking app, or any content-rich website, this plugin delivers a robust and customizable markdown editing experience.
|
|
15
|
-
|
|
16
|
-
- ✅ **Actively Maintenaning**: The plugin receives regular updates to stay up to date.
|
|
17
|
-
- ✅ **User-Friendly**: It offers a WYSIWYG-style interface, making it great for non-technical users.
|
|
18
|
-
- ✅ **Simple Markdown _Get/Set_**: No complicated techniques are required to get and set the markdown content. You can use the <textarea> value or name attribute to get and set markdown content.
|
|
19
|
-
- ✅ **Tailwind CSS Support**: Built with TailwindCSS, and it will work with both Tailwind CSS and non-Tailwind CSS projects.
|
|
20
|
-
- ✅ **Responsive**: The editor is fully responsive, providing a seamless experience across all screen sizes.
|
|
21
|
-
- ✅ **RTL Support**: By default Right-to-Left (RTL) text is supported, making it ideal for languages like Arabic, Urdu, and Farsi.
|
|
22
|
-
- ✅ **Module Support**: Supports ESM, UMD, and CommonJS modules, making it easy to integrate with different module systems.
|
|
23
|
-
- ✅ **Live Preview Mode**: Watch your markdown content render while you type, providing a real-time preview of formatting, links, images, and more.
|
|
24
|
-
- ✅ **Automatic Dark Mode Support**: The editor follows your system's or website's dark mode settings, giving a seamless experience.
|
|
25
|
-
|
|
8
|
+
Welcome to **MarkdownEditor**, the leading open source JavaScript markdown editor plugin. Enjoy a simple, powerful, and embeddable markdown editor with real-time preview, syntax highlighting, responsive design, and seamless integration for all web projects.
|
|
26
9
|
|
|
27
10
|
---
|
|
28
|
-
|
|
29
11
|
## Table of Contents
|
|
30
12
|
|
|
31
13
|
- [Overview](#overview)
|
|
@@ -37,10 +19,22 @@ Welcome to the documentation for the **MarkdownEditor Plugin** – an **open sou
|
|
|
37
19
|
- [Set Markdown Content to Editor](#set-markdown-content-to-editor)
|
|
38
20
|
- [Configuration Options](#configuration-options)
|
|
39
21
|
- [Toolbar Customization](#toolbar-customization)
|
|
40
|
-
- [Example Implementations](#example-implementations)
|
|
22
|
+
- [Example Implementations](#full-html-example-implementations)
|
|
41
23
|
- [Contribution Guidelines](#contribute)
|
|
42
24
|
- [License](#license)
|
|
43
25
|
|
|
26
|
+
---
|
|
27
|
+
## Features
|
|
28
|
+
|
|
29
|
+
- ✅ **Actively Maintenaning**: The plugin receives regular updates to stay up to date.
|
|
30
|
+
- ✅ **User-Friendly**: It offers a WYSIWYG-style interface, making it great for non-technical users.
|
|
31
|
+
- ✅ **Simple Markdown _Get/Set_**: No complicated techniques are required to get and set the markdown content. You can use the <textarea> value or name attribute to get and set markdown content.
|
|
32
|
+
- ✅ **Responsive**: The editor is fully responsive, providing a seamless experience across all screen sizes.
|
|
33
|
+
- ✅ **RTL Support**: By default Right-to-Left (RTL) text is supported, making it ideal for languages like Arabic, Urdu, and Farsi.
|
|
34
|
+
- ✅ **Module Support**: Supports ESM, UMD, and CommonJS modules, making it easy to integrate with different module systems.
|
|
35
|
+
- ✅ **Live Preview Mode**: Watch your markdown content render while you type, providing a real-time preview of formatting, links, images, and more.
|
|
36
|
+
- ✅ **Automatic Dark Mode Support**: The editor follows your system's or website's dark mode settings, giving a seamless experience.
|
|
37
|
+
|
|
44
38
|
---
|
|
45
39
|
|
|
46
40
|
## Overview
|
|
@@ -52,8 +46,6 @@ The MarkdownEditor Plugin is designed to be the **best, simple, and embeddable J
|
|
|
52
46
|
- **Easy Integration:** Seamlessly integrate into any web project with minimal setup.
|
|
53
47
|
- **Customizable Toolbar:** Dynamically configure and reorder toolbar options like **bold**, **italic**, and more.
|
|
54
48
|
|
|
55
|
-
Built with **Tailwind CSS** for modern styling, this plugin is perfect for developers seeking a lightweight yet feature-rich markdown editor.
|
|
56
|
-
|
|
57
49
|
---
|
|
58
50
|
|
|
59
51
|
## Installation
|
|
@@ -101,23 +93,7 @@ const editor = new MarkdownEditor('.editor-container', {
|
|
|
101
93
|
|
|
102
94
|
## CSS Setup
|
|
103
95
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
If you’re leveraging **TailwindCSS**, add the following configuration to your `tailwind.config.js`:
|
|
107
|
-
|
|
108
|
-
```javascript
|
|
109
|
-
// tailwind.config.js
|
|
110
|
-
module.exports = {
|
|
111
|
-
content: [
|
|
112
|
-
'node_modules/markdown-text-editor/**/*.js',
|
|
113
|
-
// Add your project paths here
|
|
114
|
-
],
|
|
115
|
-
};
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
### Without TailwindCSS
|
|
119
|
-
|
|
120
|
-
For projects not using TailwindCSS, simply import the CSS file directly:
|
|
96
|
+
import the CSS file directly in your js code:
|
|
121
97
|
|
|
122
98
|
```javascript
|
|
123
99
|
import 'markdown-text-editor/dist/markdown-text-editor.css';
|
|
@@ -213,7 +189,7 @@ Customize your Markdown editor by passing an `options` object during initializat
|
|
|
213
189
|
| Option | Type | Default | Description |
|
|
214
190
|
|---------------|----------|------------------------------|-----------------------------------------------------------|
|
|
215
191
|
| `placeholder` | `string` | `'Write your markdown...'` | Sets the placeholder text for the textarea (optional, as you can also use the standard HTML textarea attribute) |
|
|
216
|
-
| `toolbar` | `array` | `['heading', 'bold', 'italic', 'strikethrough', 'ul', 'ol', 'checklist', 'blockquote', 'link', 'preview']` | Determines which tools appear in the toolbar and their order. |
|
|
192
|
+
| `toolbar` | `array` | `['heading', 'bold', 'italic', 'strikethrough', 'ul', 'ol', 'checklist', 'blockquote', 'link', 'image', 'preview']` | Determines which tools appear in the toolbar and their order. |
|
|
217
193
|
|
|
218
194
|
---
|
|
219
195
|
|
|
@@ -221,28 +197,82 @@ Customize your Markdown editor by passing an `options` object during initializat
|
|
|
221
197
|
|
|
222
198
|
Tailor the toolbar to suit your needs by choosing which formatting options to include. The MarkdownEditor Plugin supports several tools, including:
|
|
223
199
|
|
|
224
|
-
-
|
|
225
|
-
-
|
|
226
|
-
-
|
|
227
|
-
-
|
|
228
|
-
-
|
|
229
|
-
|
|
230
|
-
-
|
|
200
|
+
- `bold`: Enables bold text formatting.
|
|
201
|
+
- `italic`: Enables italic text formatting.
|
|
202
|
+
- `strikethrough`: Allows text to be struck through.
|
|
203
|
+
- `ol`: (Ordered List): Converts text into a numbered list format.
|
|
204
|
+
- `ul`: (Unordered List): Converts text into a bullet point list.
|
|
205
|
+
- `checklist`: Adds checkboxes to your text, making it great for tasks, to-do lists, or tracking completion status.
|
|
206
|
+
- `image`: Allows you to insert images via markdown syntax.
|
|
207
|
+
- `link`: Lets you add hyperlinks to your text.
|
|
208
|
+
- `preview`: Toggles the real-time markdown preview.
|
|
231
209
|
|
|
232
210
|
**Example:**
|
|
233
211
|
|
|
234
212
|
```javascript
|
|
235
213
|
const editor = new MarkdownEditor('.editor-container', {
|
|
236
214
|
placeholder: 'Start writing...',
|
|
237
|
-
toolbar: [
|
|
215
|
+
toolbar: [
|
|
216
|
+
'bold',
|
|
217
|
+
'italic',
|
|
218
|
+
'strikethrough',
|
|
219
|
+
'ul',
|
|
220
|
+
'ol',
|
|
221
|
+
'checklist',
|
|
222
|
+
'image',
|
|
223
|
+
'link',
|
|
224
|
+
'preview'
|
|
225
|
+
],
|
|
238
226
|
});
|
|
239
227
|
```
|
|
240
|
-
|
|
228
|
+
### Advanced Image Upload
|
|
229
|
+
|
|
230
|
+
* The image tool supports a `fileInput` configuration that allows:
|
|
231
|
+
|
|
232
|
+
* `accept`: Array of allowed image file types (e.g., `'webp'`, `'avif'`).
|
|
233
|
+
* `uploadUrl`: The endpoint where image files will be uploaded.
|
|
234
|
+
* After a successful upload, the server must return the image path, which will be automatically populated in the URL field.
|
|
235
|
+
|
|
236
|
+
**Usage example:**
|
|
237
|
+
|
|
238
|
+
```js
|
|
239
|
+
const options = {
|
|
240
|
+
placeholder: 'Start writing...',
|
|
241
|
+
toolbar: [
|
|
242
|
+
'link',
|
|
243
|
+
{
|
|
244
|
+
image: {
|
|
245
|
+
fileInput: {
|
|
246
|
+
accept: ['webp', 'avif'],
|
|
247
|
+
uploadUrl: '/api/upload', // Your upload endpoint
|
|
248
|
+
},
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
'preview'
|
|
252
|
+
],
|
|
253
|
+
}
|
|
254
|
+
const editor = new MarkdownEditor(element, options);
|
|
255
|
+
```
|
|
256
|
+
* **If `fileInput` is not configured,** the image modal will default to only showing the `URL` and `alt text` fields.
|
|
257
|
+
|
|
258
|
+
**Usage example:**
|
|
259
|
+
|
|
260
|
+
```js
|
|
261
|
+
const options = {
|
|
262
|
+
placeholder: 'Start writing...',
|
|
263
|
+
toolbar: [
|
|
264
|
+
'link',
|
|
265
|
+
'image',
|
|
266
|
+
'preview'
|
|
267
|
+
],
|
|
268
|
+
}
|
|
269
|
+
const editor = new MarkdownEditor(element, options);
|
|
241
270
|
---
|
|
242
271
|
|
|
243
|
-
|
|
272
|
+
**Tip:**
|
|
273
|
+
You can reorder or remove any toolbar buttons by modifying the toolbar array during initialization.
|
|
244
274
|
|
|
245
|
-
|
|
275
|
+
## Full HTML Example Implementations
|
|
246
276
|
|
|
247
277
|
Below is a complete HTML example demonstrating how to integrate the MarkdownEditor Plugin into your project:
|
|
248
278
|
|
|
@@ -262,7 +292,25 @@ Below is a complete HTML example demonstrating how to integrate the MarkdownEdit
|
|
|
262
292
|
<script>
|
|
263
293
|
const editor = new MarkdownEditor('.editor-container', {
|
|
264
294
|
placeholder: 'Type your markdown...',
|
|
265
|
-
toolbar: [
|
|
295
|
+
toolbar: [
|
|
296
|
+
'bold',
|
|
297
|
+
'italic',
|
|
298
|
+
'strikethrough',
|
|
299
|
+
'ul',
|
|
300
|
+
'ol',
|
|
301
|
+
'checklist',
|
|
302
|
+
'image',
|
|
303
|
+
'link',
|
|
304
|
+
{
|
|
305
|
+
image: {
|
|
306
|
+
fileInput: {
|
|
307
|
+
accept: ['webp', 'avif'],
|
|
308
|
+
uploadUrl: '/api/upload', // Your upload endpoint
|
|
309
|
+
},
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
'preview'
|
|
313
|
+
],
|
|
266
314
|
});
|
|
267
315
|
</script>
|
|
268
316
|
</body>
|
|
@@ -278,14 +326,19 @@ import MarkdownEditor from 'markdown-text-editor';
|
|
|
278
326
|
|
|
279
327
|
const editor = new MarkdownEditor('.editor-container', {
|
|
280
328
|
placeholder: 'Write markdown...',
|
|
281
|
-
toolbar: [
|
|
329
|
+
toolbar: [
|
|
330
|
+
'bold',
|
|
331
|
+
'italic',
|
|
332
|
+
'strikethrough',
|
|
333
|
+
'ul',
|
|
334
|
+
'ol',
|
|
335
|
+
'checklist',
|
|
336
|
+
'image',
|
|
337
|
+
'link',
|
|
338
|
+
'preview'
|
|
339
|
+
],
|
|
282
340
|
});
|
|
283
341
|
```
|
|
284
|
-
|
|
285
|
-
### Customizing Styles with TailwindCSS
|
|
286
|
-
|
|
287
|
-
Customize the appearance of the editor using Tailwind utility classes. The plugin’s default styling can be easily overridden in your custom Tailwind configuration.
|
|
288
|
-
|
|
289
342
|
---
|
|
290
343
|
|
|
291
344
|
## Contribute
|
package/dist/index.css
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
2
|
-
--font-sans--font-variation-settings
|
|
3
|
-
);--default-mono-font-family:var(--font-mono);--default-mono-font-feature-settings:var(
|
|
4
|
-
--font-mono--font-feature-settings
|
|
5
|
-
);--default-mono-font-variation-settings:var(
|
|
6
|
-
--font-mono--font-variation-settings
|
|
7
|
-
)}}@layer base{*,::backdrop,::file-selector-button,:after,:before{border:0 solid;box-sizing:border-box;margin:0;padding:0}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:var( --default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" );font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var( --default-font-variation-settings,normal );tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:var( --default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace );font-feature-settings:var( --default-mono-font-feature-settings,normal );font-size:1em;font-variation-settings:var( --default-mono-font-variation-settings,normal )}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}menu,ol,ul{list-style:none}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}::file-selector-button,button,input,optgroup,select,textarea{background-color:transparent;border-radius:0;color:inherit;font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{color:color-mix(in oklab,currentColor 50%,transparent);opacity:1}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}::file-selector-button,button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.fixed{position:fixed}.static{position:static}.sticky{position:sticky}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.top-0{top:calc(var(--spacing)*0)}.right-0{right:calc(var(--spacing)*0)}.z-999{z-index:999}.container{width:100%;@media (width >= 40rem){max-width:40rem}@media (width >= 48rem){max-width:48rem}@media (width >= 64rem){max-width:64rem}@media (width >= 80rem){max-width:80rem}@media (width >= 96rem){max-width:96rem}}.prose{color:var(--tw-prose-body);max-width:65ch;--tw-prose-body:oklch(0.373 0.034 259.733);--tw-prose-headings:oklch(0.21 0.034 264.665);--tw-prose-lead:oklch(0.446 0.03 256.802);--tw-prose-links:oklch(0.21 0.034 264.665);--tw-prose-bold:oklch(0.21 0.034 264.665);--tw-prose-counters:oklch(0.551 0.027 264.364);--tw-prose-bullets:oklch(0.872 0.01 258.338);--tw-prose-hr:oklch(0.928 0.006 264.531);--tw-prose-quotes:oklch(0.21 0.034 264.665);--tw-prose-quote-borders:oklch(0.928 0.006 264.531);--tw-prose-captions:oklch(0.551 0.027 264.364);--tw-prose-kbd:oklch(0.21 0.034 264.665);--tw-prose-kbd-shadows:NaN NaN NaN;--tw-prose-code:oklch(0.21 0.034 264.665);--tw-prose-pre-code:oklch(0.928 0.006 264.531);--tw-prose-pre-bg:oklch(0.278 0.033 256.848);--tw-prose-th-borders:oklch(0.872 0.01 258.338);--tw-prose-td-borders:oklch(0.928 0.006 264.531);--tw-prose-invert-body:oklch(0.872 0.01 258.338);--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:oklch(0.707 0.022 261.325);--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:oklch(0.707 0.022 261.325);--tw-prose-invert-bullets:oklch(0.446 0.03 256.802);--tw-prose-invert-hr:oklch(0.373 0.034 259.733);--tw-prose-invert-quotes:oklch(0.967 0.003 264.542);--tw-prose-invert-quote-borders:oklch(0.373 0.034 259.733);--tw-prose-invert-captions:oklch(0.707 0.022 261.325);--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:oklch(0.872 0.01 258.338);--tw-prose-invert-pre-bg:rgba(0,0,0,.5);--tw-prose-invert-th-borders:oklch(0.446 0.03 256.802);--tw-prose-invert-td-borders:oklch(0.373 0.034 259.733);font-size:1rem;line-height:1.75;:where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}:where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}:where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}:where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}:where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}:where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}:where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}:where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}:where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}:where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}:where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}:where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}:where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}:where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}:where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}:where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}:where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}:where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}:where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}:where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}:where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}:where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1;margin-bottom:3em;margin-top:3em}:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){border-inline-start-color:var(--tw-prose-quote-borders);border-inline-start-width:.25rem;color:var(--tw-prose-quotes);font-style:italic;font-weight:500;margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em;quotes:"\201C""\201D""\2018""\2019"}:where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}:where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}:where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-size:2.25em;font-weight:800;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}:where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:900}:where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.5em;font-weight:700;line-height:1.3333333;margin-bottom:1em;margin-top:2em}:where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:800}:where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-size:1.25em;font-weight:600;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}:where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}:where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;line-height:1.5;margin-bottom:.5em;margin-top:1.5em}:where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}:where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:2em;margin-top:2em}:where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-bottom:2em;margin-top:2em}:where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:2em;margin-top:2em}:where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){border-radius:.3125rem;box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);color:var(--tw-prose-kbd);font-family:inherit;font-size:.875em;font-weight:500;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}:where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}:where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}:where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}:where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}:where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}:where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}:where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}:where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}:where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}:where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}:where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:var(--tw-prose-pre-bg);border-radius:.375rem;color:var(--tw-prose-pre-code);font-size:.875em;font-weight:400;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;overflow-x:auto;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}:where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-radius:0;border-width:0;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;padding:0}:where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}:where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}:where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em;line-height:1.7142857;margin-bottom:2em;margin-top:2em;table-layout:auto;width:100%}:where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-color:var(--tw-prose-th-borders);border-bottom-width:1px}:where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em;vertical-align:bottom}:where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-color:var(--tw-prose-td-borders);border-bottom-width:1px}:where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}:where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}:where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-color:var(--tw-prose-th-borders);border-top-width:1px}:where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}:where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}:where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0;margin-top:0}:where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}:where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0;margin-top:0}:where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}:where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}:where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}:where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}:where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}:where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}:where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}:where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}:where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}:where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}:where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}:where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}:where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}:where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}:where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}:where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}:where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:2em;margin-top:2em}:where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}}.prose-sm{font-size:.875rem;line-height:1.7142857;:where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}:where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.8888889em;margin-top:.8888889em}:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.3333333em;margin-top:1.3333333em;padding-inline-start:1.1111111em}:where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:2.1428571em;line-height:1.2;margin-bottom:.8em;margin-top:0}:where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.4285714em;line-height:1.4;margin-bottom:.8em;margin-top:1.6em}:where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.2857143em;line-height:1.5555556;margin-bottom:.4444444em;margin-top:1.5555556em}:where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){line-height:1.4285714;margin-bottom:.5714286em;margin-top:1.4285714em}:where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}:where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}:where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0;margin-top:0}:where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}:where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){border-radius:.3125rem;font-size:.8571429em;padding-inline-end:.3571429em;padding-bottom:.1428571em;padding-top:.1428571em;padding-inline-start:.3571429em}:where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em}:where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}:where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8888889em}:where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){border-radius:.25rem;font-size:.8571429em;line-height:1.6666667;margin-bottom:1.6666667em;margin-top:1.6666667em;padding-inline-end:1em;padding-bottom:.6666667em;padding-top:.6666667em;padding-inline-start:1em}:where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-inline-start:1.5714286em}:where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em;padding-inline-start:1.5714286em}:where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.2857143em;margin-top:.2857143em}:where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.4285714em}:where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.4285714em}:where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}:where(.prose-sm>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}:where(.prose-sm>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}:where(.prose-sm>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}:where(.prose-sm>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em}:where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.5714286em;margin-top:.5714286em}:where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.1428571em;margin-top:1.1428571em}:where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.1428571em}:where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.2857143em;padding-inline-start:1.5714286em}:where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:2.8571429em;margin-top:2.8571429em}:where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.5}:where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.6666667em;padding-inline-start:1em}:where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}:where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}:where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.6666667em;padding-top:.6666667em;padding-inline-start:1em}:where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}:where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}:where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.7142857em;margin-top:1.7142857em}:where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0;margin-top:0}:where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}:where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-5{margin-top:calc(var(--spacing)*5)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-block{display:inline-block}.size-full{height:100%;width:100%}.h-48{height:calc(var(--spacing)*48)}.h-56{height:calc(var(--spacing)*56)}.h-\[90lvh\]{height:90lvh}.h-\[90lvh\]\!{height:90lvh!important}.max-w-full{max-width:100%}.cursor-pointer{cursor:pointer}.appearance-none{appearance:none}.flex-col{flex-direction:column}.gap-4{gap:calc(var(--spacing)*4)}.space-y-3{:where(&>:not(:last-child)){--tw-space-y-reverse:0;margin-block-end:calc(var(--spacing)*3*(1 - var(--tw-space-y-reverse)));margin-block-start:calc(var(--spacing)*3*var(--tw-space-y-reverse))}}.space-x-1\.5{:where(&>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-end:calc(var(--spacing)*1.5*(1 - var(--tw-space-x-reverse)));margin-inline-start:calc(var(--spacing)*1.5*var(--tw-space-x-reverse))}}.self-end{align-self:flex-end}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.rounded-md{border-radius:var(--radius-md)}.rounded-sm{border-radius:var(--radius-sm)}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-stone-200{border-color:var(--color-stone-200)}.bg-stone-100{background-color:var(--color-stone-100)}.bg-transparent{background-color:transparent}.bg-violet-500{background-color:var(--color-violet-500)}.bg-white{background-color:var(--color-white)}.p-1\.5{padding:calc(var(--spacing)*1.5)}.p-2{padding:calc(var(--spacing)*2)}.p-4{padding:calc(var(--spacing)*4)}.px-3{padding-inline:calc(var(--spacing)*3)}.py-1{padding-block:calc(var(--spacing)*1)}.text-xs\/6{font-size:var(--text-xs);line-height:calc(var(--spacing)*6)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.text-stone-700{color:var(--color-stone-700)}.text-stone-900{color:var(--color-stone-900)}.text-white{color:var(--color-white)}.text-zinc-800{color:var(--color-zinc-800)}.italic{font-style:italic}.opacity-25{opacity:25%}.outline-0{outline-style:var(--tw-outline-style);outline-width:0}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.duration-300{--tw-duration:300ms;transition-duration:.3s}.placeholder\:text-stone-300{&::placeholder{color:var(--color-stone-300)}}.after\:invisible{&:after{content:var(--tw-content);visibility:hidden}}.after\:border{&:after{border-style:var(--tw-border-style);border-width:1px;content:var(--tw-content)}}.after\:px-3\.5{&:after{content:var(--tw-content);padding-inline:calc(var(--spacing)*3.5)}}.after\:py-2\.5{&:after{content:var(--tw-content);padding-block:calc(var(--spacing)*2.5)}}.after\:whitespace-pre-wrap{&:after{content:var(--tw-content);white-space:pre-wrap}}.after\:text-inherit{&:after{color:inherit;content:var(--tw-content)}}.after\:content-\[attr\(data-cloned-val\)_\'_\'\]{&:after{--tw-content:attr(data-cloned-val) " ";content:var(--tw-content)}}.after\:\[grid-area\:1\/1\/2\/2\]{&:after{content:var(--tw-content);grid-area:1/1/2/2}}.hover\:bg-stone-200{&:hover{@media (hover:hover){background-color:var(--color-stone-200)}}}.hover\:bg-violet-600{&:hover{@media (hover:hover){background-color:var(--color-violet-600)}}}.focus\:ring-0{&:focus{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\:outline-0{&:focus{outline-style:var(--tw-outline-style);outline-width:0}}.focus\:outline-2{&:focus{outline-style:var(--tw-outline-style);outline-width:2px}}.focus\:outline-offset-2{&:focus{outline-offset:2px}}.focus\:outline-violet-500{&:focus{outline-color:var(--color-violet-500)}}.active\:bg-violet-700{&:active{background-color:var(--color-violet-700)}}.md\:pointer-events-auto{@media (width >= 48rem){pointer-events:auto}}.md\:prose-base{@media (width >= 48rem){font-size:1rem;line-height:1.75;:where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}:where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:1.2em;margin-top:1.2em}:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.6em;margin-top:1.6em;padding-inline-start:1em}:where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:2.25em;line-height:1.1111111;margin-bottom:.8888889em;margin-top:0}:where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.5em;line-height:1.3333333;margin-bottom:1em;margin-top:2em}:where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:1.25em;line-height:1.6;margin-bottom:.6em;margin-top:1.6em}:where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){line-height:1.5;margin-bottom:.5em;margin-top:1.5em}:where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:2em;margin-top:2em}:where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:2em;margin-top:2em}:where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0;margin-top:0}:where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:2em;margin-top:2em}:where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){border-radius:.3125rem;font-size:.875em;padding-inline-end:.375em;padding-bottom:.1875em;padding-top:.1875em;padding-inline-start:.375em}:where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em}:where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em}:where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}:where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){border-radius:.375rem;font-size:.875em;line-height:1.7142857;margin-bottom:1.7142857em;margin-top:1.7142857em;padding-inline-end:1.1428571em;padding-bottom:.8571429em;padding-top:.8571429em;padding-inline-start:1.1428571em}:where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}:where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em;padding-inline-start:1.625em}:where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.5em;margin-top:.5em}:where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}:where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}:where(.md\:prose-base>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}:where(.md\:prose-base>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}:where(.md\:prose-base>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}:where(.md\:prose-base>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}:where(.md\:prose-base>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}:where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:.75em;margin-top:.75em}:where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em;margin-top:1.25em}:where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}:where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}:where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:3em;margin-top:3em}:where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em;line-height:1.7142857}:where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-inline-start:.5714286em}:where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}:where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}:where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:.5714286em;padding-bottom:.5714286em;padding-top:.5714286em;padding-inline-start:.5714286em}:where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}:where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}:where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:2em;margin-top:2em}:where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0;margin-top:0}:where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em;line-height:1.4285714;margin-top:.8571429em}:where(.md\:prose-base>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}:where(.md\:prose-base>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}}}.md\:block{@media (width >= 48rem){display:block}}.md\:grid{@media (width >= 48rem){display:grid}}.md\:grid-cols-2{@media (width >= 48rem){grid-template-columns:repeat(2,minmax(0,1fr))}}.md\:divide-x{@media (width >= 48rem){:where(&>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-end-width:calc(1px*(1 - var(--tw-divide-x-reverse)));border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-style:var(--tw-border-style)}}}.md\:divide-stone-300{@media (width >= 48rem){:where(&>:not(:last-child)){border-color:var(--color-stone-300)}}}.md\:opacity-100{@media (width >= 48rem){opacity:100%}}.lg\:p-12{@media (width >= 64rem){padding:calc(var(--spacing)*12)}}.md\:rtl\:divide-x-reverse{@media (width >= 48rem){&:where(:dir(rtl),[dir=rtl],[dir=rtl] *){:where(&>:not(:last-child)){--tw-divide-x-reverse:1}}}}.dark\:border-stone-700{@media (prefers-color-scheme:dark){border-color:var(--color-stone-700)}}.dark\:bg-stone-800{@media (prefers-color-scheme:dark){background-color:var(--color-stone-800)}}.dark\:bg-stone-900{@media (prefers-color-scheme:dark){background-color:var(--color-stone-900)}}.dark\:text-stone-100{@media (prefers-color-scheme:dark){color:var(--color-stone-100)}}.dark\:text-stone-200{@media (prefers-color-scheme:dark){color:var(--color-stone-200)}}.dark\:prose-invert{@media (prefers-color-scheme:dark){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders)}}.dark\:placeholder\:text-stone-700{@media (prefers-color-scheme:dark){&::placeholder{color:var(--color-stone-700)}}}.dark\:hover\:bg-stone-600{@media (prefers-color-scheme:dark){&:hover{@media (hover:hover){background-color:var(--color-stone-600)}}}}.dark\:md\:divide-stone-700{@media (prefers-color-scheme:dark){@media (width >= 48rem){:where(&>:not(:last-child)){border-color:var(--color-stone-700)}}}}.\[\&\>textarea\]\:resize-none{&>textarea{resize:none}}.\[\&\>textarea\]\:\[grid-area\:1\/1\/2\/2\]{&>textarea{grid-area:1/1/2/2}}}@layer base{*,::backdrop,::file-selector-button,:after,:before{border-color:var(--color-gray-200,currentColor)}}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-content{syntax:"*";initial-value:"";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-divide-x-reverse{syntax:"*";inherits:false;initial-value:0}
|
|
1
|
+
/*! tailwindcss v4.1.6 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-leading:initial;--tw-text-shadow-color:initial;--tw-text-shadow-alpha:100%;--tw-font-weight:initial;--tw-duration:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-outline-style:solid;--tw-content:"";--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-border-style:solid;--tw-divide-x-reverse:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-zinc-800:oklch(27.4% .006 286.033);--color-stone-100:oklch(97% .001 106.424);--color-stone-200:oklch(92.3% .003 48.717);--color-stone-300:oklch(86.9% .005 56.366);--color-stone-600:oklch(44.4% .011 73.639);--color-stone-700:oklch(37.4% .01 67.558);--color-stone-800:oklch(26.8% .007 34.298);--color-stone-900:oklch(21.6% .006 56.043);--color-white:#fff;--spacing:.25rem;--container-sm:24rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--font-weight-medium:500;--leading-normal:1.5;--radius-md:.375rem;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--x-center:center;--y-center:center}@layer base{:root,[data-theme]{background-color:light-dark(var(--core-50),var(--core-950));color:light-dark(var(--core-900),var(--core-50));background-color:light-dark(var(--core-50),var(--core-950));background-color:light-dark(var(--core-50),var(--core-950));background-color:light-dark(var(--core-50),var(--core-950));background-color:light-dark(var(--core-50),var(--core-950));background-color:light-dark(var(--core-50),var(--core-950));background-color:light-dark(var(--core-50),var(--core-950))}}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.modal{pointer-events:none;visibility:hidden;inset:calc(var(--spacing)*0);z-index:999;margin:calc(var(--spacing)*0);overscroll-behavior:contain;width:100%;max-width:none;height:100%;max-height:none;padding:calc(var(--spacing)*3);color:inherit;background-color:#0000;place-items:center;display:grid;position:fixed;overflow:hidden}.modal:not(modal:not([open]):not(.modal-open)),.modal::backdrop{opacity:1;background:light-dark(#00000026,#000000ba)}@starting-style{.modal:not(modal:not([open]):not(.modal-open)){visibility:hidden}}@starting-style{.modal:not(modal:not([open]):not(.modal-open)){opacity:0}}.modal[open],.modal.modal-open{pointer-events:auto;visibility:visible;opacity:1}@starting-style{:is(.modal[open],.modal.modal-open){visibility:hidden}}@starting-style{:is(.modal[open],.modal.modal-open){opacity:0}}:is(.modal[open],.modal.modal-open) .modal-body{opacity:1;translate:0;scale:1}.btn{--btn-50:var(--default-50);--btn-100:var(--default-100);--btn-200:var(--default-200);--btn-300:var(--default-300);--btn-400:var(--default-400);--btn-500:var(--default-500);--btn-600:var(--default-600);--btn-700:var(--default-700);--btn-800:var(--default-800);--btn-900:var(--default-900);--btn-950:var(--default-950);gap:calc(var(--spacing)*1.5);--btn-inline:1.125rem;--btn-block:.625rem;--btn-text-size:1rem;font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height));--tw-leading:var(--leading-normal);line-height:var(--leading-normal);--tw-text-shadow-alpha:5%;text-shadow:0px 1px 1px var(--tw-text-shadow-color,oklab(0% 0 0/.05));transition:translate .2s ease-out,visibility .2s allow-discrete,background-color .2s ease-out,opacity .1s ease-out;vertical-align:middle;text-align:center;border-radius:var(--radius-btn);cursor:pointer;box-sizing:border-box;flex-wrap:nowrap;flex-shrink:0;justify-content:center;align-self:flex-start;align-items:center;font-weight:500;display:inline-flex;position:relative;overflow:hidden}@layer components{.btn,.btn-primary,.btn-circle,.btn-sm,.btn-xs{padding-inline:var(--btn-inline);padding-block:var(--btn-block);font-size:var(--btn-text-size)}}.btn.btn{background-color:light-dark(var(--btn-200),var(--btn-800));color:light-dark(var(--btn-900),var(--btn-50))}.btn:not(.btn){background-color:light-dark(var(--btn-600),var(--btn-700));color:var(--btn-50)}.btn:is(:disabled,[disabled],.btn-disabled){pointer-events:none;cursor:not-allowed;opacity:.2}.btn:is(input[type=checkbox],input[type=radio]){appearance:none}.btn:is(input[type=checkbox],input[type=radio]):after{content:attr(aria-label)}.btn:is(input[type=checkbox],input[type=radio]):checked{isolation:isolate}@media (hover:hover){.btn:hover.btn-link{color:light-dark(var(--btn-800),var(--btn-500));text-underline-offset:4px;cursor:pointer;background:0 0;text-decoration:underline}.btn:hover.btn-ghost.btn{background-color:light-dark(var(--btn-200),var(--btn-900));color:light-dark(var(--btn-950),var(--btn-100))}.btn:hover.btn-ghost:not(.btn){background-color:light-dark(var(--btn-700),var(--btn-900));color:light-dark(var(--btn-50),var(--btn-100))}.btn:hover:not(.btn-link,.btn-ghost){outline-style:none}.btn:hover:not(.btn-link,.btn-ghost).btn{background-color:light-dark(var(--btn-300),var(--btn-900));color:light-dark(var(--btn-950),var(--btn-100))}.btn:hover:not(.btn-link,.btn-ghost):not(.btn){background-color:light-dark(var(--btn-700),var(--btn-800));color:light-dark(var(--btn-50),var(--btn-100))}}.btn-primary{--btn-50:var(--primary-50);--btn-100:var(--primary-100);--btn-200:var(--primary-200);--btn-300:var(--primary-300);--btn-400:var(--primary-400);--btn-500:var(--primary-500);--btn-600:var(--primary-600);--btn-700:var(--primary-700);--btn-800:var(--primary-800);--btn-900:var(--primary-900);--btn-950:var(--primary-950);gap:calc(var(--spacing)*1.5);--btn-inline:1.125rem;--btn-block:.625rem;--btn-text-size:1rem;font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height));--tw-leading:var(--leading-normal);line-height:var(--leading-normal);--tw-text-shadow-alpha:5%;text-shadow:0px 1px 1px var(--tw-text-shadow-color,oklab(0% 0 0/.05));transition:translate .2s ease-out,visibility .2s allow-discrete,background-color .2s ease-out,opacity .1s ease-out;vertical-align:middle;text-align:center;border-radius:var(--radius-btn);cursor:pointer;box-sizing:border-box;flex-wrap:nowrap;flex-shrink:0;justify-content:center;align-self:flex-start;align-items:center;font-weight:500;display:inline-flex;position:relative;overflow:hidden}.btn-primary.btn{background-color:light-dark(var(--btn-200),var(--btn-800));color:light-dark(var(--btn-900),var(--btn-50))}.btn-primary:not(.btn){background-color:light-dark(var(--btn-600),var(--btn-700));color:var(--btn-50)}.btn-primary:is(:disabled,[disabled],.btn-disabled){pointer-events:none;cursor:not-allowed;opacity:.2}.btn-primary:is(input[type=checkbox],input[type=radio]){appearance:none}.btn-primary:is(input[type=checkbox],input[type=radio]):after{content:attr(aria-label)}.btn-primary:is(input[type=checkbox],input[type=radio]):checked{isolation:isolate}@media (hover:hover){.btn-primary:hover.btn-link{color:light-dark(var(--btn-800),var(--btn-500));text-underline-offset:4px;cursor:pointer;background:0 0;text-decoration:underline}.btn-primary:hover.btn-ghost.btn{background-color:light-dark(var(--btn-200),var(--btn-900));color:light-dark(var(--btn-950),var(--btn-100))}.btn-primary:hover.btn-ghost:not(.btn){background-color:light-dark(var(--btn-700),var(--btn-900));color:light-dark(var(--btn-50),var(--btn-100))}.btn-primary:hover:not(.btn-link,.btn-ghost){outline-style:none}.btn-primary:hover:not(.btn-link,.btn-ghost).btn{background-color:light-dark(var(--btn-300),var(--btn-900));color:light-dark(var(--btn-950),var(--btn-100))}.btn-primary:hover:not(.btn-link,.btn-ghost):not(.btn){background-color:light-dark(var(--btn-700),var(--btn-800));color:light-dark(var(--btn-50),var(--btn-100))}}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.input{--input-50:var(--default-50);--input-100:var(--default-100);--input-200:var(--default-200);--input-300:var(--default-300);--input-400:var(--default-400);--input-500:var(--default-500);--input-600:var(--default-600);--input-700:var(--default-700);--input-800:var(--default-800);--input-900:var(--default-900);--input-950:var(--default-950);appearance:none;align-items:center;gap:calc(var(--spacing)*2);--input-inline:.75rem;--input-block:.625rem;--input-text-size:1rem;padding-inline:var(--input-inline);padding-block:var(--input-block);font-size:var(--input-text-size);padding-inline:calc(var(--spacing)*2.5);vertical-align:middle;--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium);white-space:nowrap;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,visibility,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.3s;border-radius:var(--radius-input);flex-shrink:0;align-self:flex-start;transition-duration:.3s;display:inline-flex;position:relative}.input::placeholder{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));color:light-dark(var(--core-300),var(--core-800))}.input::file-selector-button{margin-right:calc(var(--spacing)*4);font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height));transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,visibility,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.3s;border-radius:calc(var(--radius-input)/2);background:light-dark(var(--input-100),var(--input-800));border:1px solid light-dark(var(--input-200),var(--input-900));font-weight:semibold;color:light-dark(var(--input-800),var(--input-400));padding-block:calc(var(--input-block)/6);padding-inline:calc(var(--input-inline)/2);align-items:center;transition-duration:.3s;display:inline-flex}@media (hover:hover){.input::file-selector-button:hover{color:light-dark(var(--input-900),var(--input-300));background:light-dark(var(--input-200),var(--input-700))}}.input.input{outline:1px solid light-dark(var(--input-300),var(--input-800))}.input:not(.input){outline:1px solid light-dark(var(--input-700),var(--input-800))}.input:is(:disabled,[disabled],.input-disabled){cursor:not-allowed;color:var(--input-50);background-color:light-dark(var(--input-100),var(--input-900))}.input:is(:disabled,[disabled],.input-disabled)::placeholder{color:var(--input-200)}.input:focus,.input:focus-within{isolation:isolate;--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-ring-color:var(--input-200);outline-color:var(--input-800)}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.top-0{top:calc(var(--spacing)*0)}.-right-2{right:calc(var(--spacing)*-2)}.z-999{z-index:999}.modal-body{--tw-scale-x:95%;--tw-scale-y:95%;--tw-scale-z:95%;width:91.6667%;max-width:32rem;max-height:100vh;scale:var(--tw-scale-x)var(--tw-scale-y);overscroll-behavior:contain;border-radius:var(--radius-modal);padding:calc(var(--spacing)*6);opacity:0;--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-shadow-color:light-dark(var(--core-300),var(--core-900));background:light-dark(var(--core-50),var(--core-950));color:light-dark(var(--default-800),var(--default-50));border:1px solid light-dark(var(--core-300),var(--core-900));transition:translate .3s ease-out,visibility .3s allow-discrete,background-color .3s ease-out,opacity .1s ease-out;grid-row-start:1;grid-column-start:1;overflow-y:auto}@media (forced-colors:active){.modal-body{outline-style:var(--tw-outline-style);outline-width:1px}}@supports (color:color-mix(in lab, red, red)){.modal-body{--tw-shadow-color:light-dark(color-mix(in oklab,var(--core-300)50%,transparent),color-mix(in oklab,var(--core-900)60%,transparent))}}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.my-1{margin-block:calc(var(--spacing)*1)}.prose{color:var(--tw-prose-body);--tw-prose-body:oklch(37.3% .034 259.733);--tw-prose-headings:oklch(21% .034 264.665);--tw-prose-lead:oklch(44.6% .03 256.802);--tw-prose-links:oklch(21% .034 264.665);--tw-prose-bold:oklch(21% .034 264.665);--tw-prose-counters:oklch(55.1% .027 264.364);--tw-prose-bullets:oklch(87.2% .01 258.338);--tw-prose-hr:oklch(92.8% .006 264.531);--tw-prose-quotes:oklch(21% .034 264.665);--tw-prose-quote-borders:oklch(92.8% .006 264.531);--tw-prose-captions:oklch(55.1% .027 264.364);--tw-prose-kbd:oklch(21% .034 264.665);--tw-prose-kbd-shadows:NaN NaN NaN;--tw-prose-code:oklch(21% .034 264.665);--tw-prose-pre-code:oklch(92.8% .006 264.531);--tw-prose-pre-bg:oklch(27.8% .033 256.848);--tw-prose-th-borders:oklch(87.2% .01 258.338);--tw-prose-td-borders:oklch(92.8% .006 264.531);--tw-prose-invert-body:oklch(87.2% .01 258.338);--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:oklch(70.7% .022 261.325);--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:oklch(70.7% .022 261.325);--tw-prose-invert-bullets:oklch(44.6% .03 256.802);--tw-prose-invert-hr:oklch(37.3% .034 259.733);--tw-prose-invert-quotes:oklch(96.7% .003 264.542);--tw-prose-invert-quote-borders:oklch(37.3% .034 259.733);--tw-prose-invert-captions:oklch(70.7% .022 261.325);--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:oklch(87.2% .01 258.338);--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:oklch(44.6% .03 256.802);--tw-prose-invert-td-borders:oklch(37.3% .034 259.733);max-width:65ch;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);margin-top:1.2em;margin-bottom:1.2em;font-size:1.25em;line-height:1.6}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:decimal}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:disc}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.25em;font-weight:600}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em;font-style:italic;font-weight:500}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:0;margin-bottom:.888889em;font-size:2.25em;font-weight:800;line-height:1.11111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:2em;margin-bottom:1em;font-size:1.5em;font-weight:700;line-height:1.33333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.6em;margin-bottom:.6em;font-size:1.25em;font-weight:600;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em;display:block}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;border-radius:.3125rem;padding-inline-start:.375em;font-family:inherit;font-size:.875em;font-weight:500}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);padding-top:.857143em;padding-inline-end:1.14286em;padding-bottom:.857143em;border-radius:.375rem;margin-top:1.71429em;margin-bottom:1.71429em;padding-inline-start:1.14286em;font-size:.875em;font-weight:400;line-height:1.71429;overflow-x:auto}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit;background-color:#0000;border-width:0;border-radius:0;padding:0}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){table-layout:auto;width:100%;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.71429}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);vertical-align:bottom;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em;font-weight:600}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);margin-top:.857143em;font-size:.875em;line-height:1.42857}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.571429em;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.prose-sm{font-size:.875rem;line-height:1.71429}.prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.888889em;margin-bottom:.888889em;font-size:1.28571em;line-height:1.55556}.prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em;padding-inline-start:1.11111em}.prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:.8em;font-size:2.14286em;line-height:1.2}.prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.6em;margin-bottom:.8em;font-size:1.42857em;line-height:1.4}.prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.55556em;margin-bottom:.444444em;font-size:1.28571em;line-height:1.55556}.prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.42857em;margin-bottom:.571429em;line-height:1.42857}.prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.142857em;padding-inline-end:.357143em;padding-bottom:.142857em;border-radius:.3125rem;padding-inline-start:.357143em;font-size:.857143em}.prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.857143em}.prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.888889em}.prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.666667em;padding-inline-end:1em;padding-bottom:.666667em;border-radius:.25rem;margin-top:1.66667em;margin-bottom:1.66667em;padding-inline-start:1em;font-size:.857143em;line-height:1.66667}.prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em;padding-inline-start:1.57143em}.prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.285714em;margin-bottom:.285714em}.prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.428571em}.prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.571429em;margin-bottom:.571429em}.prose-sm :where(.prose-sm>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(.prose-sm>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.14286em}.prose-sm :where(.prose-sm>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(.prose-sm>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.14286em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.571429em;margin-bottom:.571429em}.prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em}.prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.285714em;padding-inline-start:1.57143em}.prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.85714em;margin-bottom:2.85714em}.prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.857143em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.666667em;padding-inline-start:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.666667em;padding-inline-end:1em;padding-bottom:.666667em;padding-inline-start:1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.666667em;font-size:.857143em;line-height:1.33333}.prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.mt-3{margin-top:calc(var(--spacing)*3)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-5{margin-top:calc(var(--spacing)*5)}.divider{--divider-50:var(--default-50);--divider-100:var(--default-100);--divider-200:var(--default-200);--divider-300:var(--default-300);--divider-400:var(--default-400);--divider-500:var(--default-500);--divider-600:var(--default-600);--divider-700:light-dark(var(--default-200),var(--default-600));--divider-800:var(--default-800);--divider-900:var(--default-900);--divider-950:var(--default-950);justify-content:center;align-items:center;height:100%;display:flex}.divider:not(:empty){column-gap:calc(var(--spacing)*2)}.divider:before,.divider:after{background:light-dark(var(--divider-700),var(--divider-900));width:100%;height:.5px}@media print{.divider:before,.divider:after{border-top:.5px solid var(--divider-700)}}.divider:before,.divider:after{--tw-content:"";content:var(--tw-content)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.size-full{width:100%;height:100%}.h-48{height:calc(var(--spacing)*48)}.h-56{height:calc(var(--spacing)*56)}.h-\[90lvh\]{height:90lvh}.h-\[90lvh\]\!{height:90lvh!important}.h-full{height:100%}.w-full{width:100%}.max-w-full{max-width:100%}.max-w-sm{max-width:var(--container-sm)}.btn-active.btn-link{color:light-dark(var(--btn-800),var(--btn-500));text-underline-offset:4px;cursor:pointer;background:0 0;text-decoration:underline}.btn-active.btn-ghost.btn{background-color:light-dark(var(--btn-200),var(--btn-900));color:light-dark(var(--btn-950),var(--btn-100))}.btn-active.btn-ghost:not(.btn){background-color:light-dark(var(--btn-700),var(--btn-900));color:light-dark(var(--btn-50),var(--btn-100))}.btn-active:not(.btn-link,.btn-ghost){outline-style:none}.btn-active:not(.btn-link,.btn-ghost).btn{background-color:light-dark(var(--btn-300),var(--btn-900));color:light-dark(var(--btn-950),var(--btn-100))}.btn-active:not(.btn-link,.btn-ghost):not(.btn){background-color:light-dark(var(--btn-700),var(--btn-800));color:light-dark(var(--btn-50),var(--btn-100))}.appearance-none{appearance:none}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.modal-x-center{justify-items:var(--x-center)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*3)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*3)*calc(1 - var(--tw-space-y-reverse)))}:where(.space-x-1\.5>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing)*1.5)*var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing)*1.5)*calc(1 - var(--tw-space-x-reverse)))}.gap-y-4\.5{row-gap:calc(var(--spacing)*4.5)}.self-end{align-self:flex-end}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.btn-circle{--btn-inline:1.125rem;--btn-block:.625rem;--btn-text-size:1rem;padding-inline:var(--btn-block);padding-block:var(--btn-block);border-radius:3.40282e38px}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-stone-200{border-color:var(--color-stone-200)}.bg-stone-100{background-color:var(--color-stone-100)}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.p-1\.5{padding:calc(var(--spacing)*1.5)}.p-2{padding:calc(var(--spacing)*2)}.p-4{padding:calc(var(--spacing)*4)}.btn-sm{--btn-inline:1rem;--btn-block:.5rem;--btn-text-size:.875rem}.btn-xs{--btn-inline:.875rem;--btn-block:.375rem;--btn-text-size:.75rem}.btn-square{padding-inline:var(--btn-block);padding-block:var(--btn-block)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.btn-ghost:not(.btn-active){color:light-dark(var(--btn-600),var(--btn-300));background:0 0}.text-stone-700{color:var(--color-stone-700)}.text-zinc-800{color:var(--color-zinc-800)}.italic{font-style:italic}.opacity-25{opacity:.25}.outline-0{outline-style:var(--tw-outline-style);outline-width:0}.placeholder\:text-stone-300::placeholder{color:var(--color-stone-300)}.after\:invisible:after{content:var(--tw-content);visibility:hidden}.after\:border:after{content:var(--tw-content);border-style:var(--tw-border-style);border-width:1px}.after\:px-3\.5:after{content:var(--tw-content);padding-inline:calc(var(--spacing)*3.5)}.after\:py-2\.5:after{content:var(--tw-content);padding-block:calc(var(--spacing)*2.5)}.after\:whitespace-pre-wrap:after{content:var(--tw-content);white-space:pre-wrap}.after\:text-inherit:after{content:var(--tw-content);color:inherit}.after\:content-\[attr\(data-cloned-val\)_\'_\'\]:after{content:var(--tw-content);--tw-content:attr(data-cloned-val)" ";content:var(--tw-content)}.after\:\[grid-area\:1\/1\/2\/2\]:after{content:var(--tw-content);grid-area:1/1/2/2}.focus\:ring-0:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:outline-0:focus{outline-style:var(--tw-outline-style);outline-width:0}@media (min-width:48rem){.md\:pointer-events-auto{pointer-events:auto}.md\:prose-base{font-size:1rem;line-height:1.75}.md\:prose-base :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.md\:prose-base :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.2em;margin-bottom:1.2em;font-size:1.25em;line-height:1.6}.md\:prose-base :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em}.md\:prose-base :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:.888889em;font-size:2.25em;line-height:1.11111}.md\:prose-base :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:1em;font-size:1.5em;line-height:1.33333}.md\:prose-base :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.6em;margin-bottom:.6em;font-size:1.25em;line-height:1.6}.md\:prose-base :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.md\:prose-base :where(img):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-base :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.md\:prose-base :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.md\:prose-base :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.md\:prose-base :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;border-radius:.3125rem;padding-inline-start:.375em;font-size:.875em}.md\:prose-base :where(code):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-base :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em}.md\:prose-base :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.md\:prose-base :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.857143em;padding-inline-end:1.14286em;padding-bottom:.857143em;border-radius:.375rem;margin-top:1.71429em;margin-bottom:1.71429em;padding-inline-start:1.14286em;font-size:.875em;line-height:1.71429}.md\:prose-base :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-base :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em}.md\:prose-base :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.md\:prose-base :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-base :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.md\:prose-base :where(.md\:prose-base>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.md\:prose-base :where(.md\:prose-base>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.md\:prose-base :where(.md\:prose-base>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.md\:prose-base :where(.md\:prose-base>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.md\:prose-base :where(.md\:prose-base>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.md\:prose-base :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.md\:prose-base :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.md\:prose-base :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.md\:prose-base :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.md\:prose-base :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:3em;margin-bottom:3em}.md\:prose-base :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-base :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-base :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.md\:prose-base :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.md\:prose-base :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.875em;line-height:1.71429}.md\:prose-base :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.md\:prose-base :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.md\:prose-base :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.md\:prose-base :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.571429em;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.md\:prose-base :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.md\:prose-base :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.md\:prose-base :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.md\:prose-base :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.md\:prose-base :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.857143em;font-size:.875em;line-height:1.42857}.md\:prose-base :where(.md\:prose-base>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.md\:prose-base :where(.md\:prose-base>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.md\:block{display:block}.md\:grid{display:grid}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}:where(.md\:divide-x>:not(:last-child)){--tw-divide-x-reverse:0;border-inline-style:var(--tw-border-style);border-inline-start-width:calc(1px*var(--tw-divide-x-reverse));border-inline-end-width:calc(1px*calc(1 - var(--tw-divide-x-reverse)))}:where(.md\:divide-stone-300>:not(:last-child)){border-color:var(--color-stone-300)}.md\:opacity-100{opacity:1}}@media (min-width:64rem){.lg\:modal-y-center{align-items:var(--y-center)}.lg\:p-12{padding:calc(var(--spacing)*12)}}@media (min-width:48rem){:where(.md\:rtl\:divide-x-reverse:where(:dir(rtl),[dir=rtl],[dir=rtl] *)>:not(:last-child)){--tw-divide-x-reverse:1}}.dark\:border-stone-700:where(.dark,.dark *,[data-theme=dark],[data-theme=dark] *,[data-theme=darkberry],[data-theme=darkberry] *){border-color:var(--color-stone-700)}@media (prefers-color-scheme:dark){.dark\:border-stone-700{border-color:var(--color-stone-700)}}.dark\:bg-stone-800:where(.dark,.dark *,[data-theme=dark],[data-theme=dark] *,[data-theme=darkberry],[data-theme=darkberry] *){background-color:var(--color-stone-800)}@media (prefers-color-scheme:dark){.dark\:bg-stone-800{background-color:var(--color-stone-800)}}.dark\:bg-stone-900:where(.dark,.dark *,[data-theme=dark],[data-theme=dark] *,[data-theme=darkberry],[data-theme=darkberry] *){background-color:var(--color-stone-900)}@media (prefers-color-scheme:dark){.dark\:bg-stone-900{background-color:var(--color-stone-900)}}.dark\:text-stone-200:where(.dark,.dark *,[data-theme=dark],[data-theme=dark] *,[data-theme=darkberry],[data-theme=darkberry] *){color:var(--color-stone-200)}@media (prefers-color-scheme:dark){.dark\:text-stone-200{color:var(--color-stone-200)}}.dark\:prose-invert:where(.dark,.dark *,[data-theme=dark],[data-theme=dark] *,[data-theme=darkberry],[data-theme=darkberry] *){--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders)}@media (prefers-color-scheme:dark){.dark\:prose-invert{--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders)}}.dark\:\[scrollbar-color\:var\(--color-stone-600\)_transparent\]:where(.dark,.dark *,[data-theme=dark],[data-theme=dark] *,[data-theme=darkberry],[data-theme=darkberry] *){scrollbar-color:var(--color-stone-600)transparent}@media (prefers-color-scheme:dark){.dark\:\[scrollbar-color\:var\(--color-stone-600\)_transparent\]{scrollbar-color:var(--color-stone-600)transparent}}.dark\:placeholder\:text-stone-600:where(.dark,.dark *,[data-theme=dark],[data-theme=dark] *,[data-theme=darkberry],[data-theme=darkberry] *)::placeholder{color:var(--color-stone-600)}@media (prefers-color-scheme:dark){.dark\:placeholder\:text-stone-600::placeholder{color:var(--color-stone-600)}}@media (min-width:48rem){:where(.dark\:md\:divide-stone-700:where(.dark,.dark *,[data-theme=dark],[data-theme=dark] *,[data-theme=darkberry],[data-theme=darkberry] *)>:not(:last-child)){border-color:var(--color-stone-700)}}@media (prefers-color-scheme:dark){@media (min-width:48rem){:where(.dark\:md\:divide-stone-700>:not(:last-child)){border-color:var(--color-stone-700)}}}.\[\&\>textarea\]\:resize-none>textarea{resize:none}.\[\&\>textarea\]\:\[grid-area\:1\/1\/2\/2\]>textarea{grid-area:1/1/2/2}}@media (prefers-color-scheme:light){:root:not([data-theme]){--color-scheme:light;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:dark){:root:not([data-theme]){--color-scheme:dark;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:light){:root:not([data-theme]){--color-scheme:light;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:dark){:root:not([data-theme]){--color-scheme:dark;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:light){:root:not([data-theme]){--color-scheme:light;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:dark){:root:not([data-theme]){--color-scheme:dark;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:light){:root:not([data-theme]){--color-scheme:light;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:dark){:root:not([data-theme]){--color-scheme:dark;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:light){:root:not([data-theme]){--color-scheme:light;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:dark){:root:not([data-theme]){--color-scheme:dark;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:light){:root:not([data-theme]){--color-scheme:light;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:dark){:root:not([data-theme]){--color-scheme:dark;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}@media (prefers-color-scheme:light){:root:not([data-theme]){--color-scheme:light;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}[data-theme=snowberry],[data-theme=light]{--color-scheme:light;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}@media (prefers-color-scheme:dark){:root:not([data-theme]){--color-scheme:dark;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}}[data-theme=darkberry],[data-theme=dark]{--color-scheme:dark;--radius-btn:.5rem;--radius-input:.5rem;--radius-checkbox:.375rem;--radius-modal:1rem;--core-50:oklch(.985 .001 106.423);--core-100:oklch(.97 .001 106.424);--core-200:oklch(.923 .003 48.717);--core-300:oklch(.869 .005 56.366);--core-400:oklch(.709 .01 56.259);--core-500:oklch(.553 .013 58.071);--core-600:oklch(.444 .011 73.639);--core-700:oklch(.374 .01 67.558);--core-800:oklch(.268 .007 34.298);--core-900:oklch(.216 .006 56.043);--core-950:oklch(.147 .004 49.25);--default-50:oklch(.985 0 0);--default-100:oklch(.967 .001 286.375);--default-200:oklch(.92 .004 286.32);--default-300:oklch(.871 .006 286.286);--default-400:oklch(.705 .015 286.067);--default-500:oklch(.552 .016 285.938);--default-600:oklch(.442 .017 285.786);--default-700:oklch(.37 .013 285.805);--default-800:oklch(.274 .006 286.033);--default-900:oklch(.21 .006 285.885);--default-950:oklch(.141 .005 285.823);--primary-50:oklch(.97 .014 254.604);--primary-100:oklch(.932 .032 255.585);--primary-200:oklch(.882 .059 254.128);--primary-300:oklch(.809 .105 251.813);--primary-400:oklch(.707 .165 254.624);--primary-500:oklch(.623 .214 259.815);--primary-600:oklch(.546 .245 262.881);--primary-700:oklch(.488 .243 264.376);--primary-800:oklch(.424 .199 265.638);--primary-900:oklch(.379 .146 265.522);--primary-950:oklch(.282 .091 267.935);--secondary-50:oklch(.969 .015 12.422);--secondary-100:oklch(.941 .03 12.58);--secondary-200:oklch(.892 .058 10.001);--secondary-300:oklch(.81 .117 11.638);--secondary-400:oklch(.712 .194 13.428);--secondary-500:oklch(.645 .246 16.439);--secondary-600:oklch(.586 .253 17.585);--secondary-700:oklch(.514 .222 16.935);--secondary-800:oklch(.455 .188 13.697);--secondary-900:oklch(.41 .159 10.272);--secondary-950:oklch(.271 .105 12.094);--accent-50:oklch(.969 .016 293.756);--accent-100:oklch(.943 .029 294.588);--accent-200:oklch(.894 .057 293.283);--accent-300:oklch(.811 .111 293.571);--accent-400:oklch(.702 .183 293.541);--accent-500:oklch(.606 .25 292.717);--accent-600:oklch(.541 .281 293.009);--accent-700:oklch(.491 .27 292.581);--accent-800:oklch(.432 .232 292.759);--accent-900:oklch(.38 .189 293.745);--accent-950:oklch(.283 .141 291.089);--info-50:oklch(.979 .021 166.113);--info-100:oklch(.95 .052 163.051);--info-200:oklch(.905 .093 164.15);--info-300:oklch(.845 .143 164.978);--info-400:oklch(.765 .177 163.223);--info-500:oklch(.696 .17 162.48);--info-600:oklch(.596 .145 163.225);--info-700:oklch(.508 .118 165.612);--info-800:oklch(.432 .095 166.913);--info-900:oklch(.378 .077 168.94);--info-950:oklch(.262 .051 172.552);--success-50:oklch(.982 .018 155.826);--success-100:oklch(.962 .044 156.743);--success-200:oklch(.925 .084 155.995);--success-300:oklch(.871 .15 154.449);--success-400:oklch(.792 .209 151.711);--success-500:oklch(.723 .219 149.579);--success-600:oklch(.627 .194 149.214);--success-700:oklch(.527 .154 150.069);--success-800:oklch(.448 .119 151.328);--success-900:oklch(.393 .095 152.535);--success-950:oklch(.266 .065 152.934);--warning-50:oklch(.987 .026 102.212);--warning-100:oklch(.973 .071 103.193);--warning-200:oklch(.945 .129 101.54);--warning-300:oklch(.905 .182 98.111);--warning-400:oklch(.852 .199 91.936);--warning-500:oklch(.795 .184 86.047);--warning-600:oklch(.681 .162 75.834);--warning-700:oklch(.554 .135 66.442);--warning-800:oklch(.476 .114 61.907);--warning-900:oklch(.421 .095 57.708);--warning-950:oklch(.286 .066 53.813);--error-50:oklch(.971 .013 17.38);--error-100:oklch(.936 .032 17.717);--error-200:oklch(.885 .062 18.334);--error-300:oklch(.808 .114 19.571);--error-400:oklch(.704 .191 22.216);--error-500:oklch(.637 .237 25.331);--error-600:oklch(.577 .245 27.325);--error-700:oklch(.505 .213 27.518);--error-800:oklch(.444 .177 26.899);--error-900:oklch(.396 .141 25.723);--error-950:oklch(.258 .092 26.042)}:root{color-scheme:var(--color-scheme)}.dropdown-x-start{left:0}.dropdown-x-end{right:0}.dropdown-y-top{bottom:calc(100% + 10px)}.dropdown-y-bottom{top:calc(100% + 10px)}@property --tw-leading{syntax:"*";inherits:false}@property --tw-text-shadow-color{syntax:"*";inherits:false}@property --tw-text-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-divide-x-reverse{syntax:"*";inherits:false;initial-value:0}
|
|
8
3
|
|
|
9
4
|
/*# sourceMappingURL=index.css.map*/
|