qstd 0.1.0

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.
@@ -0,0 +1,1566 @@
1
+ /* styled-system/styles.css */
2
+ @layer reset, base, tokens, recipes, utilities;
3
+ @layer reset {
4
+ html,
5
+ :host {
6
+ --font-fallback:
7
+ ui-sans-serif,
8
+ system-ui,
9
+ -apple-system,
10
+ BlinkMacSystemFont,
11
+ "Segoe UI",
12
+ Roboto,
13
+ "Helvetica Neue",
14
+ Arial,
15
+ "Noto Sans",
16
+ sans-serif,
17
+ "Apple Color Emoji",
18
+ "Segoe UI Emoji",
19
+ "Segoe UI Symbol",
20
+ "Noto Color Emoji";
21
+ line-height: 1.5;
22
+ -webkit-text-size-adjust: 100%;
23
+ -webkit-font-smoothing: antialiased;
24
+ -moz-osx-font-smoothing: grayscale;
25
+ -moz-tab-size: 4;
26
+ tab-size: 4;
27
+ font-family: var(--global-font-body, var(--font-fallback));
28
+ -webkit-tap-highlight-color: transparent;
29
+ }
30
+ *,
31
+ ::before,
32
+ ::after,
33
+ ::backdrop,
34
+ ::file-selector-button {
35
+ margin: 0px;
36
+ padding: 0px;
37
+ border-width: 0px;
38
+ border-style: solid;
39
+ border-color: var(--global-color-border, currentcolor);
40
+ box-sizing: border-box;
41
+ }
42
+ hr {
43
+ color: inherit;
44
+ height: 0px;
45
+ border-top-width: 1px;
46
+ }
47
+ body {
48
+ line-height: inherit;
49
+ height: 100%;
50
+ }
51
+ img {
52
+ border-style: none;
53
+ }
54
+ img,
55
+ svg,
56
+ video,
57
+ canvas,
58
+ audio,
59
+ iframe,
60
+ embed,
61
+ object {
62
+ display: block;
63
+ vertical-align: middle;
64
+ }
65
+ img,
66
+ video {
67
+ max-width: 100%;
68
+ height: auto;
69
+ }
70
+ h1,
71
+ h2,
72
+ h3,
73
+ h4,
74
+ h5,
75
+ h6 {
76
+ text-wrap: balance;
77
+ font-size: inherit;
78
+ font-weight: inherit;
79
+ }
80
+ p,
81
+ h1,
82
+ h2,
83
+ h3,
84
+ h4,
85
+ h5,
86
+ h6 {
87
+ overflow-wrap: break-word;
88
+ }
89
+ ol,
90
+ ul,
91
+ menu {
92
+ list-style: none;
93
+ }
94
+ button,
95
+ input:where([type=button], [type=reset], [type=submit]),
96
+ ::file-selector-button {
97
+ appearance: button;
98
+ -webkit-appearance: button;
99
+ }
100
+ button,
101
+ input,
102
+ optgroup,
103
+ select,
104
+ textarea,
105
+ ::file-selector-button {
106
+ font: inherit;
107
+ background: var(--colors-transparent);
108
+ font-feature-settings: inherit;
109
+ font-variation-settings: inherit;
110
+ letter-spacing: inherit;
111
+ color: inherit;
112
+ }
113
+ ::placeholder {
114
+ --placeholder-fallback: rgba(0, 0, 0, 0.5);
115
+ opacity: 1;
116
+ color: var(--global-color-placeholder, var(--placeholder-fallback));
117
+ }
118
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
119
+ ::placeholder {
120
+ --placeholder-fallback: color-mix(in oklab, currentcolor 50%, transparent);
121
+ }
122
+ }
123
+ ::selection {
124
+ background-color: var(--global-color-selection, rgba(0, 115, 255, 0.3));
125
+ }
126
+ textarea {
127
+ resize: vertical;
128
+ }
129
+ table {
130
+ border-color: inherit;
131
+ text-indent: 0px;
132
+ border-collapse: collapse;
133
+ }
134
+ summary {
135
+ display: list-item;
136
+ }
137
+ small {
138
+ font-size: 80%;
139
+ }
140
+ sub,
141
+ sup {
142
+ font-size: 75%;
143
+ line-height: 0;
144
+ position: relative;
145
+ vertical-align: baseline;
146
+ }
147
+ sub {
148
+ bottom: -0.25em;
149
+ }
150
+ sup {
151
+ top: -0.5em;
152
+ }
153
+ dialog {
154
+ padding: 0px;
155
+ }
156
+ a {
157
+ text-decoration: inherit;
158
+ color: inherit;
159
+ }
160
+ abbr:where([title]) {
161
+ text-decoration: underline dotted;
162
+ }
163
+ b,
164
+ strong {
165
+ font-weight: bolder;
166
+ }
167
+ code,
168
+ kbd,
169
+ samp,
170
+ pre {
171
+ --font-mono-fallback:
172
+ ui-monospace,
173
+ SFMono-Regular,
174
+ Menlo,
175
+ Monaco,
176
+ Consolas,
177
+ "Liberation Mono",
178
+ "Courier New";
179
+ font-family: var(--global-font-mono, var(--font-mono-fallback));
180
+ font-size: 1em;
181
+ font-feature-settings: normal;
182
+ font-variation-settings: normal;
183
+ }
184
+ progress {
185
+ vertical-align: baseline;
186
+ }
187
+ ::-webkit-search-decoration,
188
+ ::-webkit-search-cancel-button {
189
+ -webkit-appearance: none;
190
+ }
191
+ ::-webkit-inner-spin-button,
192
+ ::-webkit-outer-spin-button {
193
+ height: auto;
194
+ }
195
+ :-moz-ui-invalid {
196
+ box-shadow: none;
197
+ }
198
+ :-moz-focusring {
199
+ outline: auto;
200
+ }
201
+ [hidden]:where(:not([hidden=until-found])) {
202
+ display: none !important;
203
+ }
204
+ }
205
+ @layer base {
206
+ :root {
207
+ --made-with-panda: "\1f43c";
208
+ color-scheme: light dark;
209
+ }
210
+ html {
211
+ font-size: 16px;
212
+ line-height: 1.5;
213
+ font-family: geologica, sans-serif;
214
+ }
215
+ *,
216
+ ::before,
217
+ ::after,
218
+ ::backdrop {
219
+ --blur: ;
220
+ --brightness: ;
221
+ --contrast: ;
222
+ --grayscale: ;
223
+ --hue-rotate: ;
224
+ --invert: ;
225
+ --saturate: ;
226
+ --sepia: ;
227
+ --drop-shadow: ;
228
+ --backdrop-blur: ;
229
+ --backdrop-brightness: ;
230
+ --backdrop-contrast: ;
231
+ --backdrop-grayscale: ;
232
+ --backdrop-hue-rotate: ;
233
+ --backdrop-invert: ;
234
+ --backdrop-opacity: ;
235
+ --backdrop-saturate: ;
236
+ --backdrop-sepia: ;
237
+ --gradient-from-position: ;
238
+ --gradient-to-position: ;
239
+ --gradient-via-position: ;
240
+ --scroll-snap-strictness: proximity;
241
+ --border-spacing-x: 0;
242
+ --border-spacing-y: 0;
243
+ --translate-x: 0;
244
+ --translate-y: 0;
245
+ --rotate: 0;
246
+ --rotate-x: 0;
247
+ --rotate-y: 0;
248
+ --skew-x: 0;
249
+ --skew-y: 0;
250
+ --scale-x: 1;
251
+ --scale-y: 1;
252
+ }
253
+ }
254
+ @layer tokens {
255
+ :where(:root, :host) {
256
+ --aspect-ratios-square: 1 / 1;
257
+ --aspect-ratios-landscape: 4 / 3;
258
+ --aspect-ratios-portrait: 3 / 4;
259
+ --aspect-ratios-wide: 16 / 9;
260
+ --aspect-ratios-ultrawide: 18 / 5;
261
+ --aspect-ratios-golden: 1.618 / 1;
262
+ --borders-none: none;
263
+ --easings-default: cubic-bezier(0.4, 0, 0.2, 1);
264
+ --easings-linear: linear;
265
+ --easings-in: cubic-bezier(0.4, 0, 1, 1);
266
+ --easings-out: cubic-bezier(0, 0, 0.2, 1);
267
+ --easings-in-out: cubic-bezier(0.4, 0, 0.2, 1);
268
+ --durations-fastest: 50ms;
269
+ --durations-faster: 100ms;
270
+ --durations-fast: 150ms;
271
+ --durations-normal: 200ms;
272
+ --durations-slow: 300ms;
273
+ --durations-slower: 400ms;
274
+ --durations-slowest: 500ms;
275
+ --radii-xs: 0.125rem;
276
+ --radii-sm: 0.25rem;
277
+ --radii-md: 0.375rem;
278
+ --radii-lg: 0.5rem;
279
+ --radii-xl: 0.75rem;
280
+ --radii-2xl: 1rem;
281
+ --radii-3xl: 1.5rem;
282
+ --radii-4xl: 2rem;
283
+ --radii-full: 9999px;
284
+ --font-weights-thin: 100;
285
+ --font-weights-extralight: 200;
286
+ --font-weights-light: 300;
287
+ --font-weights-normal: 400;
288
+ --font-weights-medium: 500;
289
+ --font-weights-semibold: 600;
290
+ --font-weights-bold: 700;
291
+ --font-weights-extrabold: 800;
292
+ --font-weights-black: 900;
293
+ --line-heights-none: 1;
294
+ --line-heights-tight: 1.25;
295
+ --line-heights-snug: 1.375;
296
+ --line-heights-normal: 1.5;
297
+ --line-heights-relaxed: 1.625;
298
+ --line-heights-loose: 2;
299
+ --fonts-sans:
300
+ ui-sans-serif,
301
+ system-ui,
302
+ -apple-system,
303
+ BlinkMacSystemFont,
304
+ "Segoe UI",
305
+ Roboto,
306
+ "Helvetica Neue",
307
+ Arial,
308
+ "Noto Sans",
309
+ sans-serif,
310
+ "Apple Color Emoji",
311
+ "Segoe UI Emoji",
312
+ "Segoe UI Symbol",
313
+ "Noto Color Emoji";
314
+ --fonts-serif:
315
+ ui-serif,
316
+ Georgia,
317
+ Cambria,
318
+ "Times New Roman",
319
+ Times,
320
+ serif;
321
+ --fonts-mono:
322
+ ui-monospace,
323
+ SFMono-Regular,
324
+ Menlo,
325
+ Monaco,
326
+ Consolas,
327
+ "Liberation Mono",
328
+ "Courier New",
329
+ monospace;
330
+ --letter-spacings-tighter: -0.05em;
331
+ --letter-spacings-tight: -0.025em;
332
+ --letter-spacings-normal: 0em;
333
+ --letter-spacings-wide: 0.025em;
334
+ --letter-spacings-wider: 0.05em;
335
+ --letter-spacings-widest: 0.1em;
336
+ --font-sizes-2xs: 0.5rem;
337
+ --font-sizes-xs: 0.75rem;
338
+ --font-sizes-sm: 0.875rem;
339
+ --font-sizes-md: 1rem;
340
+ --font-sizes-lg: 1.125rem;
341
+ --font-sizes-xl: 1.25rem;
342
+ --font-sizes-2xl: 1.5rem;
343
+ --font-sizes-3xl: 1.875rem;
344
+ --font-sizes-4xl: 2.25rem;
345
+ --font-sizes-5xl: 3rem;
346
+ --font-sizes-6xl: 3.75rem;
347
+ --font-sizes-7xl: 4.5rem;
348
+ --font-sizes-8xl: 6rem;
349
+ --font-sizes-9xl: 8rem;
350
+ --shadows-2xs: 0 1px rgb(0 0 0 / 0.05);
351
+ --shadows-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
352
+ --shadows-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
353
+ --shadows-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
354
+ --shadows-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
355
+ --shadows-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
356
+ --shadows-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
357
+ --shadows-inset-2xs: inset 0 1px rgb(0 0 0 / 0.05);
358
+ --shadows-inset-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
359
+ --shadows-inset-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
360
+ --colors-current: currentColor;
361
+ --colors-black: #000;
362
+ --colors-white: #fff;
363
+ --colors-transparent: rgb(0 0 0 / 0);
364
+ --colors-rose-50: #fff1f2;
365
+ --colors-rose-100: #ffe4e6;
366
+ --colors-rose-200: #fecdd3;
367
+ --colors-rose-300: #fda4af;
368
+ --colors-rose-400: #fb7185;
369
+ --colors-rose-500: #f43f5e;
370
+ --colors-rose-600: #e11d48;
371
+ --colors-rose-700: #be123c;
372
+ --colors-rose-800: #9f1239;
373
+ --colors-rose-900: #881337;
374
+ --colors-rose-950: #4c0519;
375
+ --colors-pink-50: #fdf2f8;
376
+ --colors-pink-100: #fce7f3;
377
+ --colors-pink-200: #fbcfe8;
378
+ --colors-pink-300: #f9a8d4;
379
+ --colors-pink-400: #f472b6;
380
+ --colors-pink-500: #ec4899;
381
+ --colors-pink-600: #db2777;
382
+ --colors-pink-700: #be185d;
383
+ --colors-pink-800: #9d174d;
384
+ --colors-pink-900: #831843;
385
+ --colors-pink-950: #500724;
386
+ --colors-fuchsia-50: #fdf4ff;
387
+ --colors-fuchsia-100: #fae8ff;
388
+ --colors-fuchsia-200: #f5d0fe;
389
+ --colors-fuchsia-300: #f0abfc;
390
+ --colors-fuchsia-400: #e879f9;
391
+ --colors-fuchsia-500: #d946ef;
392
+ --colors-fuchsia-600: #c026d3;
393
+ --colors-fuchsia-700: #a21caf;
394
+ --colors-fuchsia-800: #86198f;
395
+ --colors-fuchsia-900: #701a75;
396
+ --colors-fuchsia-950: #4a044e;
397
+ --colors-purple-50: #faf5ff;
398
+ --colors-purple-100: #f3e8ff;
399
+ --colors-purple-200: #e9d5ff;
400
+ --colors-purple-300: #d8b4fe;
401
+ --colors-purple-400: #c084fc;
402
+ --colors-purple-500: #a855f7;
403
+ --colors-purple-600: #9333ea;
404
+ --colors-purple-700: #7e22ce;
405
+ --colors-purple-800: #6b21a8;
406
+ --colors-purple-900: #581c87;
407
+ --colors-purple-950: #3b0764;
408
+ --colors-violet-50: #f5f3ff;
409
+ --colors-violet-100: #ede9fe;
410
+ --colors-violet-200: #ddd6fe;
411
+ --colors-violet-300: #c4b5fd;
412
+ --colors-violet-400: #a78bfa;
413
+ --colors-violet-500: #8b5cf6;
414
+ --colors-violet-600: #7c3aed;
415
+ --colors-violet-700: #6d28d9;
416
+ --colors-violet-800: #5b21b6;
417
+ --colors-violet-900: #4c1d95;
418
+ --colors-violet-950: #2e1065;
419
+ --colors-indigo-50: #eef2ff;
420
+ --colors-indigo-100: #e0e7ff;
421
+ --colors-indigo-200: #c7d2fe;
422
+ --colors-indigo-300: #a5b4fc;
423
+ --colors-indigo-400: #818cf8;
424
+ --colors-indigo-500: #6366f1;
425
+ --colors-indigo-600: #4f46e5;
426
+ --colors-indigo-700: #4338ca;
427
+ --colors-indigo-800: #3730a3;
428
+ --colors-indigo-900: #312e81;
429
+ --colors-indigo-950: #1e1b4b;
430
+ --colors-blue-50: #eff6ff;
431
+ --colors-blue-100: #dbeafe;
432
+ --colors-blue-200: #bfdbfe;
433
+ --colors-blue-300: #93c5fd;
434
+ --colors-blue-400: #60a5fa;
435
+ --colors-blue-500: #3b82f6;
436
+ --colors-blue-600: #2563eb;
437
+ --colors-blue-700: #1d4ed8;
438
+ --colors-blue-800: #1e40af;
439
+ --colors-blue-900: #1e3a8a;
440
+ --colors-blue-950: #172554;
441
+ --colors-sky-50: #f0f9ff;
442
+ --colors-sky-100: #e0f2fe;
443
+ --colors-sky-200: #bae6fd;
444
+ --colors-sky-300: #7dd3fc;
445
+ --colors-sky-400: #38bdf8;
446
+ --colors-sky-500: #0ea5e9;
447
+ --colors-sky-600: #0284c7;
448
+ --colors-sky-700: #0369a1;
449
+ --colors-sky-800: #075985;
450
+ --colors-sky-900: #0c4a6e;
451
+ --colors-sky-950: #082f49;
452
+ --colors-cyan-50: #ecfeff;
453
+ --colors-cyan-100: #cffafe;
454
+ --colors-cyan-200: #a5f3fc;
455
+ --colors-cyan-300: #67e8f9;
456
+ --colors-cyan-400: #22d3ee;
457
+ --colors-cyan-500: #06b6d4;
458
+ --colors-cyan-600: #0891b2;
459
+ --colors-cyan-700: #0e7490;
460
+ --colors-cyan-800: #155e75;
461
+ --colors-cyan-900: #164e63;
462
+ --colors-cyan-950: #083344;
463
+ --colors-teal-50: #f0fdfa;
464
+ --colors-teal-100: #ccfbf1;
465
+ --colors-teal-200: #99f6e4;
466
+ --colors-teal-300: #5eead4;
467
+ --colors-teal-400: #2dd4bf;
468
+ --colors-teal-500: #14b8a6;
469
+ --colors-teal-600: #0d9488;
470
+ --colors-teal-700: #0f766e;
471
+ --colors-teal-800: #115e59;
472
+ --colors-teal-900: #134e4a;
473
+ --colors-teal-950: #042f2e;
474
+ --colors-emerald-50: #ecfdf5;
475
+ --colors-emerald-100: #d1fae5;
476
+ --colors-emerald-200: #a7f3d0;
477
+ --colors-emerald-300: #6ee7b7;
478
+ --colors-emerald-400: #34d399;
479
+ --colors-emerald-500: #10b981;
480
+ --colors-emerald-600: #059669;
481
+ --colors-emerald-700: #047857;
482
+ --colors-emerald-800: #065f46;
483
+ --colors-emerald-900: #064e3b;
484
+ --colors-emerald-950: #022c22;
485
+ --colors-green-50: #f0fdf4;
486
+ --colors-green-100: #dcfce7;
487
+ --colors-green-200: #bbf7d0;
488
+ --colors-green-300: #86efac;
489
+ --colors-green-400: #4ade80;
490
+ --colors-green-500: #22c55e;
491
+ --colors-green-600: #16a34a;
492
+ --colors-green-700: #15803d;
493
+ --colors-green-800: #166534;
494
+ --colors-green-900: #14532d;
495
+ --colors-green-950: #052e16;
496
+ --colors-lime-50: #f7fee7;
497
+ --colors-lime-100: #ecfccb;
498
+ --colors-lime-200: #d9f99d;
499
+ --colors-lime-300: #bef264;
500
+ --colors-lime-400: #a3e635;
501
+ --colors-lime-500: #84cc16;
502
+ --colors-lime-600: #65a30d;
503
+ --colors-lime-700: #4d7c0f;
504
+ --colors-lime-800: #3f6212;
505
+ --colors-lime-900: #365314;
506
+ --colors-lime-950: #1a2e05;
507
+ --colors-yellow-50: #fefce8;
508
+ --colors-yellow-100: #fef9c3;
509
+ --colors-yellow-200: #fef08a;
510
+ --colors-yellow-300: #fde047;
511
+ --colors-yellow-400: #facc15;
512
+ --colors-yellow-500: #eab308;
513
+ --colors-yellow-600: #ca8a04;
514
+ --colors-yellow-700: #a16207;
515
+ --colors-yellow-800: #854d0e;
516
+ --colors-yellow-900: #713f12;
517
+ --colors-yellow-950: #422006;
518
+ --colors-amber-50: #fffbeb;
519
+ --colors-amber-100: #fef3c7;
520
+ --colors-amber-200: #fde68a;
521
+ --colors-amber-300: #fcd34d;
522
+ --colors-amber-400: #fbbf24;
523
+ --colors-amber-500: #f59e0b;
524
+ --colors-amber-600: #d97706;
525
+ --colors-amber-700: #b45309;
526
+ --colors-amber-800: #92400e;
527
+ --colors-amber-900: #78350f;
528
+ --colors-amber-950: #451a03;
529
+ --colors-orange-50: #fff7ed;
530
+ --colors-orange-100: #ffedd5;
531
+ --colors-orange-200: #fed7aa;
532
+ --colors-orange-300: #fdba74;
533
+ --colors-orange-400: #fb923c;
534
+ --colors-orange-500: #f97316;
535
+ --colors-orange-600: #ea580c;
536
+ --colors-orange-700: #c2410c;
537
+ --colors-orange-800: #9a3412;
538
+ --colors-orange-900: #7c2d12;
539
+ --colors-orange-950: #431407;
540
+ --colors-red-50: #fef2f2;
541
+ --colors-red-100: #fee2e2;
542
+ --colors-red-200: #fecaca;
543
+ --colors-red-300: #fca5a5;
544
+ --colors-red-400: #f87171;
545
+ --colors-red-500: #ef4444;
546
+ --colors-red-600: #dc2626;
547
+ --colors-red-700: #b91c1c;
548
+ --colors-red-800: #991b1b;
549
+ --colors-red-900: #7f1d1d;
550
+ --colors-red-950: #450a0a;
551
+ --colors-neutral-50: #fafafa;
552
+ --colors-neutral-100: #f5f5f5;
553
+ --colors-neutral-200: #e5e5e5;
554
+ --colors-neutral-300: #d4d4d4;
555
+ --colors-neutral-400: #a3a3a3;
556
+ --colors-neutral-500: #737373;
557
+ --colors-neutral-600: #525252;
558
+ --colors-neutral-700: #404040;
559
+ --colors-neutral-800: #262626;
560
+ --colors-neutral-900: #171717;
561
+ --colors-neutral-950: #0a0a0a;
562
+ --colors-stone-50: #fafaf9;
563
+ --colors-stone-100: #f5f5f4;
564
+ --colors-stone-200: #e7e5e4;
565
+ --colors-stone-300: #d6d3d1;
566
+ --colors-stone-400: #a8a29e;
567
+ --colors-stone-500: #78716c;
568
+ --colors-stone-600: #57534e;
569
+ --colors-stone-700: #44403c;
570
+ --colors-stone-800: #292524;
571
+ --colors-stone-900: #1c1917;
572
+ --colors-stone-950: #0c0a09;
573
+ --colors-zinc-50: #fafafa;
574
+ --colors-zinc-100: #f4f4f5;
575
+ --colors-zinc-200: #e4e4e7;
576
+ --colors-zinc-300: #d4d4d8;
577
+ --colors-zinc-400: #a1a1aa;
578
+ --colors-zinc-500: #71717a;
579
+ --colors-zinc-600: #52525b;
580
+ --colors-zinc-700: #3f3f46;
581
+ --colors-zinc-800: #27272a;
582
+ --colors-zinc-900: #18181b;
583
+ --colors-zinc-950: #09090b;
584
+ --colors-gray-50: #f9fafb;
585
+ --colors-gray-100: #f3f4f6;
586
+ --colors-gray-200: #e5e7eb;
587
+ --colors-gray-300: #d1d5db;
588
+ --colors-gray-400: #9ca3af;
589
+ --colors-gray-500: #6b7280;
590
+ --colors-gray-600: #4b5563;
591
+ --colors-gray-700: #374151;
592
+ --colors-gray-800: #1f2937;
593
+ --colors-gray-900: #111827;
594
+ --colors-gray-950: #030712;
595
+ --colors-slate-50: #f8fafc;
596
+ --colors-slate-100: #f1f5f9;
597
+ --colors-slate-200: #e2e8f0;
598
+ --colors-slate-300: #cbd5e1;
599
+ --colors-slate-400: #94a3b8;
600
+ --colors-slate-500: #64748b;
601
+ --colors-slate-600: #475569;
602
+ --colors-slate-700: #334155;
603
+ --colors-slate-800: #1e293b;
604
+ --colors-slate-900: #0f172a;
605
+ --colors-slate-950: #020617;
606
+ --blurs-xs: 4px;
607
+ --blurs-sm: 8px;
608
+ --blurs-md: 12px;
609
+ --blurs-lg: 16px;
610
+ --blurs-xl: 24px;
611
+ --blurs-2xl: 40px;
612
+ --blurs-3xl: 64px;
613
+ --spacing-0: 0rem;
614
+ --spacing-1: 0.25rem;
615
+ --spacing-2: 0.5rem;
616
+ --spacing-3: 0.75rem;
617
+ --spacing-4: 1rem;
618
+ --spacing-5: 1.25rem;
619
+ --spacing-6: 1.5rem;
620
+ --spacing-7: 1.75rem;
621
+ --spacing-8: 2rem;
622
+ --spacing-9: 2.25rem;
623
+ --spacing-10: 2.5rem;
624
+ --spacing-11: 2.75rem;
625
+ --spacing-12: 3rem;
626
+ --spacing-14: 3.5rem;
627
+ --spacing-16: 4rem;
628
+ --spacing-20: 5rem;
629
+ --spacing-24: 6rem;
630
+ --spacing-28: 7rem;
631
+ --spacing-32: 8rem;
632
+ --spacing-36: 9rem;
633
+ --spacing-40: 10rem;
634
+ --spacing-44: 11rem;
635
+ --spacing-48: 12rem;
636
+ --spacing-52: 13rem;
637
+ --spacing-56: 14rem;
638
+ --spacing-60: 15rem;
639
+ --spacing-64: 16rem;
640
+ --spacing-72: 18rem;
641
+ --spacing-80: 20rem;
642
+ --spacing-96: 24rem;
643
+ --spacing-0\.5: 0.125rem;
644
+ --spacing-1\.5: 0.375rem;
645
+ --spacing-2\.5: 0.625rem;
646
+ --spacing-3\.5: 0.875rem;
647
+ --spacing-4\.5: 1.125rem;
648
+ --spacing-5\.5: 1.375rem;
649
+ --sizes-0: 0rem;
650
+ --sizes-1: 0.25rem;
651
+ --sizes-2: 0.5rem;
652
+ --sizes-3: 0.75rem;
653
+ --sizes-4: 1rem;
654
+ --sizes-5: 1.25rem;
655
+ --sizes-6: 1.5rem;
656
+ --sizes-7: 1.75rem;
657
+ --sizes-8: 2rem;
658
+ --sizes-9: 2.25rem;
659
+ --sizes-10: 2.5rem;
660
+ --sizes-11: 2.75rem;
661
+ --sizes-12: 3rem;
662
+ --sizes-14: 3.5rem;
663
+ --sizes-16: 4rem;
664
+ --sizes-20: 5rem;
665
+ --sizes-24: 6rem;
666
+ --sizes-28: 7rem;
667
+ --sizes-32: 8rem;
668
+ --sizes-36: 9rem;
669
+ --sizes-40: 10rem;
670
+ --sizes-44: 11rem;
671
+ --sizes-48: 12rem;
672
+ --sizes-52: 13rem;
673
+ --sizes-56: 14rem;
674
+ --sizes-60: 15rem;
675
+ --sizes-64: 16rem;
676
+ --sizes-72: 18rem;
677
+ --sizes-80: 20rem;
678
+ --sizes-96: 24rem;
679
+ --sizes-0\.5: 0.125rem;
680
+ --sizes-1\.5: 0.375rem;
681
+ --sizes-2\.5: 0.625rem;
682
+ --sizes-3\.5: 0.875rem;
683
+ --sizes-4\.5: 1.125rem;
684
+ --sizes-5\.5: 1.375rem;
685
+ --sizes-xs: 20rem;
686
+ --sizes-sm: 24rem;
687
+ --sizes-md: 28rem;
688
+ --sizes-lg: 32rem;
689
+ --sizes-xl: 36rem;
690
+ --sizes-2xl: 42rem;
691
+ --sizes-3xl: 48rem;
692
+ --sizes-4xl: 56rem;
693
+ --sizes-5xl: 64rem;
694
+ --sizes-6xl: 72rem;
695
+ --sizes-7xl: 80rem;
696
+ --sizes-8xl: 90rem;
697
+ --sizes-prose: 65ch;
698
+ --sizes-full: 100%;
699
+ --sizes-min: min-content;
700
+ --sizes-max: max-content;
701
+ --sizes-fit: fit-content;
702
+ --sizes-breakpoint-sm: 640px;
703
+ --sizes-breakpoint-md: 768px;
704
+ --sizes-breakpoint-lg: 1024px;
705
+ --sizes-breakpoint-xl: 1280px;
706
+ --sizes-breakpoint-2xl: 1536px;
707
+ --sizes-breakpoint-xs: 600px;
708
+ --animations-spin: spin 1s linear infinite;
709
+ --animations-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
710
+ --animations-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
711
+ --animations-bounce: bounce 1s infinite;
712
+ --breakpoints-sm: 640px;
713
+ --breakpoints-md: 768px;
714
+ --breakpoints-lg: 1024px;
715
+ --breakpoints-xl: 1280px;
716
+ --breakpoints-2xl: 1536px;
717
+ --breakpoints-xs: 600px;
718
+ --colors-text-primary: var(--colors-neutral-900);
719
+ --colors-text-secondary: var(--colors-neutral-400);
720
+ --colors-text-inverted: var(--colors-neutral-100);
721
+ --colors-text-alert: var(--colors-red-600);
722
+ --colors-input-border-color: var(--colors-neutral-300);
723
+ --colors-input-border-color-error: var(--colors-red-400);
724
+ --colors-input-outline-color-error: var(--colors-red-500);
725
+ --colors-input-label-color: var(--colors-neutral-400);
726
+ --colors-input-label-color-lifted: var(--colors-blue-500);
727
+ --colors-input-label-bg: var(--colors-neutral-100);
728
+ }
729
+ [data-theme=dark] {
730
+ --colors-text-primary: var(--colors-neutral-100);
731
+ --colors-text-secondary: var(--colors-neutral-400);
732
+ --colors-text-inverted: var(--colors-neutral-900);
733
+ --colors-text-alert: var(--colors-red-400);
734
+ --colors-input-border-color: var(--colors-neutral-600);
735
+ --colors-input-border-color-error: var(--colors-red-400);
736
+ --colors-input-outline-color-error: var(--colors-red-500);
737
+ --colors-input-label-color: var(--colors-neutral-400);
738
+ --colors-input-label-color-lifted: var(--colors-blue-500);
739
+ --colors-input-label-bg: var(--colors-neutral-800) ;
740
+ }
741
+ @keyframes ping {
742
+ 75%, 100% {
743
+ transform: scale(2);
744
+ opacity: 0;
745
+ }
746
+ }
747
+ @keyframes bounce {
748
+ 0%, 100% {
749
+ transform: translateY(-25%);
750
+ animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
751
+ }
752
+ 50% {
753
+ transform: none;
754
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
755
+ }
756
+ }
757
+ @keyframes spin {
758
+ from {
759
+ transform: rotate(0deg);
760
+ }
761
+ to {
762
+ transform: rotate(360deg);
763
+ }
764
+ }
765
+ @keyframes sheen {
766
+ from {
767
+ background-position-x: 200%;
768
+ }
769
+ to {
770
+ background-position-x: -200%;
771
+ }
772
+ }
773
+ @keyframes pulse {
774
+ 0% {
775
+ transform: scale(1, 1);
776
+ }
777
+ 50% {
778
+ opacity: 0.3;
779
+ }
780
+ 100% {
781
+ transform: scale(1.3);
782
+ opacity: 0;
783
+ }
784
+ }
785
+ }
786
+ @layer utilities {
787
+ .grid_true {
788
+ display: grid;
789
+ }
790
+ .p_1 {
791
+ padding: var(--spacing-1);
792
+ }
793
+ .bg_neutral\.200 {
794
+ background: var(--colors-neutral-200);
795
+ }
796
+ .bg_neutral\.100 {
797
+ background: var(--colors-neutral-100);
798
+ }
799
+ .m_auto {
800
+ margin: auto;
801
+ }
802
+ .bg_neutral\.400 {
803
+ background: var(--colors-neutral-400);
804
+ }
805
+ .bg_hsl\(0_0\%_0\%_\/_0\.3\) {
806
+ background: hsl(0 0% 0% / 0.3);
807
+ }
808
+ .anim_sheen_1\.4s_infinite_linear {
809
+ animation: sheen 1.4s infinite linear;
810
+ }
811
+ .bd_1\.5px_solid {
812
+ border: 1.5px solid;
813
+ }
814
+ .m_0 {
815
+ margin: var(--spacing-0);
816
+ }
817
+ .grid-area_1_\/_1 {
818
+ grid-area: 1 / 1;
819
+ }
820
+ .bg_blue\.500 {
821
+ background: var(--colors-blue-500);
822
+ }
823
+ .bg_none {
824
+ background: none;
825
+ }
826
+ .bg_\#60a5fa\! {
827
+ background: #60a5fa !important;
828
+ }
829
+ .bg_\#d1d5db\! {
830
+ background: #d1d5db !important;
831
+ }
832
+ .bg_white {
833
+ background: var(--colors-white);
834
+ }
835
+ .bg_rgba\(20\,20\,20\,0\.95\) {
836
+ background: rgba(20, 20, 20, 0.95);
837
+ }
838
+ .ov_auto {
839
+ overflow: auto;
840
+ }
841
+ .flex_true {
842
+ display: flex;
843
+ }
844
+ .py_2 {
845
+ padding-block: var(--spacing-2);
846
+ }
847
+ .rounded_0 {
848
+ border-radius: 0;
849
+ }
850
+ .trs_\.2s_all_ease-in-out {
851
+ transition: .2s all ease-in-out;
852
+ }
853
+ .gap_2 {
854
+ gap: var(--spacing-2);
855
+ }
856
+ .rounded_6 {
857
+ border-radius: 6px;
858
+ }
859
+ .ring_none\! {
860
+ outline: var(--borders-none) !important;
861
+ }
862
+ .trs_\.14s_background_ease-out_\.1s {
863
+ transition: .14s background ease-out .1s;
864
+ }
865
+ .rounded_12 {
866
+ border-radius: 12px;
867
+ }
868
+ .rounded_20 {
869
+ border-radius: 20px;
870
+ }
871
+ .gap_4 {
872
+ gap: var(--spacing-4);
873
+ }
874
+ .trs_\.14s_all_ease-out {
875
+ transition: .14s all ease-out;
876
+ }
877
+ .rounded_32 {
878
+ border-radius: 32px;
879
+ }
880
+ .rounded_50\% {
881
+ border-radius: 50%;
882
+ }
883
+ .ov_hidden {
884
+ overflow: hidden;
885
+ }
886
+ .trs_200ms_cubic-bezier\(0\,_0\,_0\.2\,_1\)_0ms\,_\.2s_color_ease-in-out\,_\.2s_background_ease-in-out {
887
+ transition:
888
+ 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
889
+ .2s color ease-in-out,
890
+ .2s background ease-in-out;
891
+ }
892
+ .px_2 {
893
+ padding-inline: var(--spacing-2);
894
+ }
895
+ .py_0\.5 {
896
+ padding-block: var(--spacing-0\.5);
897
+ }
898
+ .rounded_8 {
899
+ border-radius: 8px;
900
+ }
901
+ .bd-c_input-border-color-error {
902
+ border-color: var(--colors-input-border-color-error);
903
+ }
904
+ .bd-c_input-border-color {
905
+ border-color: var(--colors-input-border-color);
906
+ }
907
+ .ring_1px_solid_rgba\(208\,_58\,_58\,_0\.05\) {
908
+ outline: 1px solid rgba(208, 58, 58, 0.05);
909
+ }
910
+ .rounded_md {
911
+ border-radius: md;
912
+ }
913
+ .ring_none {
914
+ outline: var(--borders-none);
915
+ }
916
+ .rounded_9999 {
917
+ border-radius: 9999px;
918
+ }
919
+ .gap_8px {
920
+ gap: 8px;
921
+ }
922
+ .bd-w_2 {
923
+ border-width: 2px;
924
+ }
925
+ .border-style_solid {
926
+ border-style: solid;
927
+ }
928
+ .bd-c_neutral\.400 {
929
+ border-color: var(--colors-neutral-400);
930
+ }
931
+ .px_1 {
932
+ padding-inline: var(--spacing-1);
933
+ }
934
+ .py_1 {
935
+ padding-block: var(--spacing-1);
936
+ }
937
+ .trs_background-color_0\.2s_ease-in-out {
938
+ transition: background-color 0.2s ease-in-out;
939
+ }
940
+ .px_10px {
941
+ padding-inline: 10px;
942
+ }
943
+ .py_8px {
944
+ padding-block: 8px;
945
+ }
946
+ .align-c_start {
947
+ align-content: start;
948
+ }
949
+ .c_neutral\.500 {
950
+ color: var(--colors-neutral-500);
951
+ }
952
+ .rows_between {
953
+ justify-content: space-between;
954
+ justify-items: space-between;
955
+ }
956
+ .bx-s_border-box {
957
+ box-sizing: border-box;
958
+ }
959
+ .cursor_pointer {
960
+ cursor: pointer;
961
+ }
962
+ .z_1 {
963
+ z-index: 1;
964
+ }
965
+ .fs_\.8rem {
966
+ font-size: .8rem;
967
+ }
968
+ .cols_1_1_1 {
969
+ grid-template-columns: 1fr 1fr 1fr;
970
+ }
971
+ .rows_auto {
972
+ grid-template-rows: auto;
973
+ }
974
+ .align-i_true {
975
+ align-items: center;
976
+ }
977
+ .us_none {
978
+ -webkit-user-select: none;
979
+ user-select: none;
980
+ }
981
+ .c_neutral\.100 {
982
+ color: var(--colors-neutral-100);
983
+ }
984
+ .fill_none {
985
+ fill: none;
986
+ }
987
+ .stk_currentColor {
988
+ stroke: currentColor;
989
+ }
990
+ .stk-w_4,
991
+ .stk-w_4 path {
992
+ stroke-width: 4;
993
+ }
994
+ .pos_fixed {
995
+ position: fixed;
996
+ }
997
+ .bx-sh_hsl\(0deg_0\%_0\%_\/_60\%\)_0px_-4px_20px {
998
+ box-shadow: hsl(0deg 0% 0% / 60%) 0px -4px 20px;
999
+ }
1000
+ .c_text-primary {
1001
+ color: var(--colors-text-primary);
1002
+ }
1003
+ .pos_relative {
1004
+ position: relative;
1005
+ }
1006
+ .rows_max-content_1fr {
1007
+ grid-template-rows: max-content 1fr;
1008
+ }
1009
+ .cursor_row-resize {
1010
+ cursor: row-resize;
1011
+ }
1012
+ .cursor_default {
1013
+ cursor: default;
1014
+ }
1015
+ .justify-self_center {
1016
+ justify-self: center;
1017
+ }
1018
+ .rg_14 {
1019
+ row-gap: 14px;
1020
+ }
1021
+ .pos_absolute {
1022
+ position: absolute;
1023
+ }
1024
+ .place-c_true {
1025
+ place-content: center;
1026
+ }
1027
+ .fs_16 {
1028
+ font-size: 16px;
1029
+ }
1030
+ .c_neutral\.400 {
1031
+ color: var(--colors-neutral-400);
1032
+ }
1033
+ .cursor_not-allowed {
1034
+ cursor: not-allowed;
1035
+ }
1036
+ .d_flex {
1037
+ display: flex;
1038
+ }
1039
+ .align-i_center {
1040
+ align-items: center;
1041
+ }
1042
+ .c_blue\.500 {
1043
+ color: var(--colors-blue-500);
1044
+ }
1045
+ .stroke-color_string,
1046
+ .stroke-color_string path {
1047
+ stroke: string;
1048
+ }
1049
+ .c_neutral\.300 {
1050
+ color: var(--colors-neutral-300);
1051
+ }
1052
+ .bg-c_neutral\.300 {
1053
+ background-color: var(--colors-neutral-300);
1054
+ }
1055
+ .bg-i_linear-gradient\(_90deg\,_hsla\(220\,_8\.94\%\,_66\.08\%\,_0\)_0\%\,_\{colors\.neutral\.100\/80\}_50\%\,_hsla\(220\,_8\.94\%\,_66\.08\%\,_0\)_100\%_\) {
1056
+ background-image:
1057
+ linear-gradient(
1058
+ 90deg,
1059
+ hsla(220, 8.94%, 66.08%, 0) 0%,
1060
+ color-mix(in srgb, var(--colors-neutral-100) 80%, transparent) 50%,
1061
+ hsla(220, 8.94%, 66.08%, 0) 100%);
1062
+ }
1063
+ .bg-r_no-repeat {
1064
+ background-repeat: no-repeat;
1065
+ }
1066
+ .bg-s_200\%_100\% {
1067
+ background-size: 200% 100%;
1068
+ }
1069
+ .size_40 {
1070
+ width: 40px;
1071
+ height: 40px;
1072
+ }
1073
+ .rows_\/_4 {
1074
+ row-gap: 4px;
1075
+ }
1076
+ .relative_true {
1077
+ position: relative;
1078
+ }
1079
+ .fs_sm {
1080
+ font-size: var(--font-sizes-sm);
1081
+ }
1082
+ .c_text-alert {
1083
+ color: var(--colors-text-alert);
1084
+ }
1085
+ .trf_translateY\(-50\%\) {
1086
+ transform: translateY(-50%);
1087
+ }
1088
+ .grid-af_column {
1089
+ grid-auto-flow: column;
1090
+ }
1091
+ .pointer-events_none {
1092
+ pointer-events: none;
1093
+ }
1094
+ .trf-o_top_left {
1095
+ transform-origin: top left;
1096
+ }
1097
+ .trf_translate\(0\,_-50\%\)_scale\(1\) {
1098
+ transform: translate(0, -50%) scale(1);
1099
+ }
1100
+ .c_input-label-color {
1101
+ color: var(--colors-input-label-color);
1102
+ }
1103
+ .lh_1\.1 {
1104
+ line-height: 1.1;
1105
+ }
1106
+ .ring-c_input-outline-color-error {
1107
+ outline-color: var(--colors-input-outline-color-error);
1108
+ }
1109
+ .bx-sh_lg {
1110
+ box-shadow: var(--shadows-lg);
1111
+ }
1112
+ .grid-ac_1fr {
1113
+ grid-auto-flow: column;
1114
+ grid-auto-columns: 1fr;
1115
+ }
1116
+ .cg_8 {
1117
+ column-gap: 8px;
1118
+ }
1119
+ .rounded_true {
1120
+ border-radius: 9999px;
1121
+ }
1122
+ .bdr-r_9999 {
1123
+ border-top-right-radius: 9999px;
1124
+ border-bottom-right-radius: 9999px;
1125
+ }
1126
+ .bdr-l_9999 {
1127
+ border-top-left-radius: 9999px;
1128
+ border-bottom-left-radius: 9999px;
1129
+ }
1130
+ .place-i_true {
1131
+ place-items: center;
1132
+ }
1133
+ .white-space_nowrap {
1134
+ white-space: nowrap;
1135
+ }
1136
+ .absolute_true {
1137
+ position: absolute;
1138
+ }
1139
+ .bx-sh_0_0_0_6px_rgba\(0\,0\,0\,\.08\) {
1140
+ box-shadow: 0 0 0 6px rgba(0, 0, 0, .08);
1141
+ }
1142
+ .type_spring {
1143
+ type: spring;
1144
+ }
1145
+ .stiffness_700 {
1146
+ stiffness: 700px;
1147
+ }
1148
+ .damping_30 {
1149
+ damping: 30px;
1150
+ }
1151
+ .ai_center {
1152
+ align-items: center;
1153
+ }
1154
+ .jc_center {
1155
+ justify-content: center;
1156
+ }
1157
+ .ring-o_1 {
1158
+ outline-offset: var(--spacing-1);
1159
+ }
1160
+ .flex-d_column {
1161
+ flex-direction: column;
1162
+ }
1163
+ .jc_flex-start {
1164
+ justify-content: flex-start;
1165
+ }
1166
+ .bx-s_content-box {
1167
+ box-sizing: content-box;
1168
+ }
1169
+ .trf_translate\(0\,_0\)_scale\(1\) {
1170
+ transform: translate(0, 0) scale(1);
1171
+ }
1172
+ .resize_none {
1173
+ resize: none;
1174
+ }
1175
+ .scr-bar-w_thin {
1176
+ scrollbar-width: thin;
1177
+ }
1178
+ .scr-bar-c_neutral\.300_neutral\.300 {
1179
+ scrollbar-color: neutral.300 neutral.300;
1180
+ }
1181
+ .c_white {
1182
+ color: var(--colors-white);
1183
+ }
1184
+ .bx-sh_0_6px_18px_rgba\(0\,0\,0\,0\.18\) {
1185
+ box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
1186
+ }
1187
+ .fs_13 {
1188
+ font-size: 13px;
1189
+ }
1190
+ .pr_\.5rem {
1191
+ padding-right: .5rem;
1192
+ }
1193
+ .ov-y_auto {
1194
+ overflow-y: auto;
1195
+ }
1196
+ .max-h_100\% {
1197
+ max-height: 100%;
1198
+ }
1199
+ .ov-y_hidden {
1200
+ overflow-y: hidden;
1201
+ }
1202
+ .w_24px {
1203
+ width: 24px;
1204
+ }
1205
+ .w_100\% {
1206
+ width: 100%;
1207
+ }
1208
+ .h_max-content\! {
1209
+ height: max-content !important;
1210
+ }
1211
+ .w_clamp\(50\%\,_700px\,_90\%\) {
1212
+ width: clamp(50%, 700px, 90%);
1213
+ }
1214
+ .pt_6 {
1215
+ padding-top: var(--spacing-6);
1216
+ }
1217
+ .w_100vw {
1218
+ width: 100vw;
1219
+ }
1220
+ .left_0 {
1221
+ left: var(--spacing-0);
1222
+ }
1223
+ .right_0 {
1224
+ right: var(--spacing-0);
1225
+ }
1226
+ .bottom_0 {
1227
+ bottom: var(--spacing-0);
1228
+ }
1229
+ .bdr-tl_12 {
1230
+ border-top-left-radius: 12px;
1231
+ }
1232
+ .bdr-tr_12 {
1233
+ border-top-right-radius: 12px;
1234
+ }
1235
+ .h_6 {
1236
+ height: 6px;
1237
+ }
1238
+ .w_34 {
1239
+ width: 34px;
1240
+ }
1241
+ .mt_16px {
1242
+ margin-top: 16px;
1243
+ }
1244
+ .mb_4 {
1245
+ margin-bottom: var(--spacing-4);
1246
+ }
1247
+ .top_0 {
1248
+ top: var(--spacing-0);
1249
+ }
1250
+ .h_100\% {
1251
+ height: 100%;
1252
+ }
1253
+ .h_32 {
1254
+ height: 32px;
1255
+ }
1256
+ .w_32 {
1257
+ width: 32px;
1258
+ }
1259
+ .top_-2 {
1260
+ top: calc(var(--spacing-2) * -1);
1261
+ }
1262
+ .right_3 {
1263
+ right: var(--spacing-3);
1264
+ }
1265
+ .h_16 {
1266
+ height: 16px;
1267
+ }
1268
+ .w_16 {
1269
+ width: 16px;
1270
+ }
1271
+ .w_12px {
1272
+ width: 12px;
1273
+ }
1274
+ .w_true {
1275
+ width: 100%;
1276
+ }
1277
+ .h_20 {
1278
+ height: 20px;
1279
+ }
1280
+ .pl_3 {
1281
+ padding-left: var(--spacing-3);
1282
+ }
1283
+ .top_50\% {
1284
+ top: 50%;
1285
+ }
1286
+ .left_11px {
1287
+ left: 11px;
1288
+ }
1289
+ .right_11px {
1290
+ right: 11px;
1291
+ }
1292
+ .ml_6 {
1293
+ margin-left: var(--spacing-6);
1294
+ }
1295
+ .ml_1 {
1296
+ margin-left: var(--spacing-1);
1297
+ }
1298
+ .mr_1 {
1299
+ margin-right: var(--spacing-1);
1300
+ }
1301
+ .pl_7 {
1302
+ padding-left: var(--spacing-7);
1303
+ }
1304
+ .pl_2 {
1305
+ padding-left: var(--spacing-2);
1306
+ }
1307
+ .pr_6 {
1308
+ padding-right: var(--spacing-6);
1309
+ }
1310
+ .pr_2 {
1311
+ padding-right: var(--spacing-2);
1312
+ }
1313
+ .h_max-content {
1314
+ height: max-content;
1315
+ }
1316
+ .h_8 {
1317
+ height: 8px;
1318
+ }
1319
+ .w_24 {
1320
+ width: 24px;
1321
+ }
1322
+ .h_24 {
1323
+ height: 24px;
1324
+ }
1325
+ .mr_8 {
1326
+ margin-right: var(--spacing-8);
1327
+ }
1328
+ .mr_8px {
1329
+ margin-right: 8px;
1330
+ }
1331
+ .h_24px {
1332
+ height: 24px;
1333
+ }
1334
+ .h_12px {
1335
+ height: 12px;
1336
+ }
1337
+ .h_fit-content {
1338
+ height: fit-content;
1339
+ }
1340
+ .top_1 {
1341
+ top: var(--spacing-1);
1342
+ }
1343
+ [data-theme=dark] .dark\:bg_neutral\.700 {
1344
+ background: var(--colors-neutral-700);
1345
+ }
1346
+ .checked\:bg_blue\.500:is(:checked, [data-checked], [aria-checked=true], [data-state=checked]) {
1347
+ background: var(--colors-blue-500);
1348
+ }
1349
+ [data-theme=dark] .dark\:bg_neutral\.900 {
1350
+ background: var(--colors-neutral-900);
1351
+ }
1352
+ [data-theme=dark] .dark\:bg_neutral\.600 {
1353
+ background: var(--colors-neutral-600);
1354
+ }
1355
+ .after\:inset_0::after {
1356
+ inset: var(--spacing-0);
1357
+ }
1358
+ [data-theme=dark] .dark\:bg_blue\.400 {
1359
+ background: var(--colors-blue-400);
1360
+ }
1361
+ .disabled\:bg_neutral\.400:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
1362
+ background: var(--colors-neutral-400);
1363
+ }
1364
+ .\[\&\:\:-webkit-scrollbar-track\]\:bg_transparent\!::-webkit-scrollbar-track {
1365
+ background: var(--colors-transparent) !important;
1366
+ }
1367
+ .checked\:trs_\.14s_background_ease-out:is(:checked, [data-checked], [aria-checked=true], [data-state=checked]) {
1368
+ transition: .14s background ease-out;
1369
+ }
1370
+ .after\:trs_\.14s_all_ease-out::after {
1371
+ transition: .14s all ease-out;
1372
+ }
1373
+ [data-theme=dark] .dark\:bd-c_neutral\.400 {
1374
+ border-color: var(--colors-neutral-400);
1375
+ }
1376
+ .selected\:bd-c_blue\.500:is([aria-selected=true], [data-selected]) {
1377
+ border-color: var(--colors-blue-500);
1378
+ }
1379
+ .disabled\:bd-c_neutral\.400:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
1380
+ border-color: var(--colors-neutral-400);
1381
+ }
1382
+ .\[\&\:\:-webkit-scrollbar-thumb\]\:rounded_20::-webkit-scrollbar-thumb {
1383
+ border-radius: 20px;
1384
+ }
1385
+ .after\:content_\"\"::after {
1386
+ content: "";
1387
+ }
1388
+ .after\:pos_absolute::after {
1389
+ position: absolute;
1390
+ }
1391
+ .after\:scale_0::after {
1392
+ scale: 0;
1393
+ }
1394
+ .after\:rounded_true::after {
1395
+ border-radius: 9999px;
1396
+ }
1397
+ .after\:z_-1::after {
1398
+ z-index: -1;
1399
+ }
1400
+ [data-theme=dark] .dark\:c_neutral\.300 {
1401
+ color: var(--colors-neutral-300);
1402
+ }
1403
+ [data-theme=dark] .dark\:c_blue\.400 {
1404
+ color: var(--colors-blue-400);
1405
+ }
1406
+ [data-theme=dark] .dark\:bg-c_neutral\.700 {
1407
+ background-color: var(--colors-neutral-700);
1408
+ }
1409
+ [data-theme=dark] .dark\:bg-i_linear-gradient\(_90deg\,_hsla\(220\,_8\.94\%\,_66\.08\%\,_0\)_0\%\,_\{colors\.neutral\.500\/80\}_50\%\,_hsla\(220\,_8\.94\%\,_66\.08\%\,_0\)_100\%_\) {
1410
+ background-image:
1411
+ linear-gradient(
1412
+ 90deg,
1413
+ hsla(220, 8.94%, 66.08%, 0) 0%,
1414
+ color-mix(in srgb, var(--colors-neutral-500) 80%, transparent) 50%,
1415
+ hsla(220, 8.94%, 66.08%, 0) 100%);
1416
+ }
1417
+ .placeholder\:op_0::placeholder,
1418
+ .placeholder\:op_0[data-placeholder] {
1419
+ opacity: 0;
1420
+ }
1421
+ .placeholder\:op_1::placeholder,
1422
+ .placeholder\:op_1[data-placeholder] {
1423
+ opacity: 1;
1424
+ }
1425
+ .placeholder\:c_input-label-color::placeholder,
1426
+ .placeholder\:c_input-label-color[data-placeholder] {
1427
+ color: var(--colors-input-label-color);
1428
+ }
1429
+ [data-theme=dark] .dark\:bx-sh_0_0_0_6px_rgba\(255\,255\,255\,\.08\) {
1430
+ box-shadow: 0 0 0 6px rgba(255, 255, 255, .08);
1431
+ }
1432
+ .\[\&\:\:-webkit-scrollbar-thumb\]\:bg-c_neutral\.300::-webkit-scrollbar-thumb {
1433
+ background-color: var(--colors-neutral-300);
1434
+ }
1435
+ .\[\&\:\:-webkit-scrollbar\]\:h_6::-webkit-scrollbar {
1436
+ height: 6px;
1437
+ }
1438
+ .\[\&\:\:-webkit-scrollbar\]\:w_6::-webkit-scrollbar {
1439
+ width: 6px;
1440
+ }
1441
+ .active\:bg_neutral\.200:active:not(:disabled),
1442
+ .active\:bg_neutral\.200:active:not(:focus-visible):not(:disabled),
1443
+ .active\:bg_neutral\.200:active:focus-visible:not(:disabled) {
1444
+ background: var(--colors-neutral-200);
1445
+ }
1446
+ .\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:bg_input-label-bg:has(+ input:focus, + input:not(:placeholder-shown)) {
1447
+ background: var(--colors-input-label-bg);
1448
+ }
1449
+ .active\:bg_none:active:not(:disabled),
1450
+ .active\:bg_none:active:not(:focus-visible):not(:disabled),
1451
+ .active\:bg_none:active:focus-visible:not(:disabled) {
1452
+ background: none;
1453
+ }
1454
+ .\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:bg_input-label-bg:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
1455
+ background: var(--colors-input-label-bg);
1456
+ }
1457
+ .active\:scale_0\.98:active:not(:disabled),
1458
+ .active\:scale_0\.98:active:not(:focus-visible):not(:disabled),
1459
+ .active\:scale_0\.98:active:focus-visible:not(:disabled) {
1460
+ scale: 0.98;
1461
+ }
1462
+ .active\:scale_0\.9:active:not(:disabled),
1463
+ .active\:scale_0\.9:active:not(:focus-visible):not(:disabled),
1464
+ .active\:scale_0\.9:active:focus-visible:not(:disabled) {
1465
+ scale: 0.9;
1466
+ }
1467
+ .focus\:bx-sh_0_0_0_6px_hsl\(0_0\%_100\%_\/_0\.05\):is(:focus, [data-focus]) {
1468
+ box-shadow: 0 0 0 6px hsl(0 0% 100% / 0.05);
1469
+ }
1470
+ .\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:c_input-label-color-lifted:has(+ input:focus, + input:not(:placeholder-shown)) {
1471
+ color: var(--colors-input-label-color-lifted);
1472
+ }
1473
+ .\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:c_input-label-color:has(+ input:focus, + input:not(:placeholder-shown)) {
1474
+ color: var(--colors-input-label-color);
1475
+ }
1476
+ .\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:trf-o_top_left:has(+ input:focus, + input:not(:placeholder-shown)) {
1477
+ transform-origin: top left;
1478
+ }
1479
+ .\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:trf_scale\(0\.8\):has(+ input:focus, + input:not(:placeholder-shown)) {
1480
+ transform: scale(0.8);
1481
+ }
1482
+ .active\:trf_none\!:active:not(:disabled),
1483
+ .active\:trf_none\!:active:not(:focus-visible):not(:disabled),
1484
+ .active\:trf_none\!:active:focus-visible:not(:disabled) {
1485
+ transform: none !important;
1486
+ }
1487
+ .active\:scale_none\!:active:not(:disabled),
1488
+ .active\:scale_none\!:active:not(:focus-visible):not(:disabled),
1489
+ .active\:scale_none\!:active:focus-visible:not(:disabled) {
1490
+ scale: none !important;
1491
+ }
1492
+ .\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:c_input-label-color-lifted:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
1493
+ color: var(--colors-input-label-color-lifted);
1494
+ }
1495
+ .\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:c_input-label-color:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
1496
+ color: var(--colors-input-label-color);
1497
+ }
1498
+ .\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:trf-o_top_left:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
1499
+ transform-origin: top left;
1500
+ }
1501
+ .\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:trf_scale\(0\.8\):has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
1502
+ transform: scale(0.8);
1503
+ }
1504
+ .\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:ml_6:has(+ input:focus, + input:not(:placeholder-shown)) {
1505
+ margin-left: var(--spacing-6);
1506
+ }
1507
+ .\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:ml_1:has(+ input:focus, + input:not(:placeholder-shown)) {
1508
+ margin-left: var(--spacing-1);
1509
+ }
1510
+ .\[\&\:has\(\+_input\:focus\,_\+_input\:not\(\:placeholder-shown\)\)\]\:top_-10px:has(+ input:focus, + input:not(:placeholder-shown)) {
1511
+ top: -10px;
1512
+ }
1513
+ .\[\&\:has\(\+_textarea\:focus\,_\+_textarea\:not\(\:placeholder-shown\)\)\]\:top_-14px:has(+ textarea:focus, + textarea:not(:placeholder-shown)) {
1514
+ top: -14px;
1515
+ }
1516
+ .hover\:bg_neutral\.100:hover:not(:disabled) {
1517
+ background: var(--colors-neutral-100);
1518
+ }
1519
+ .hover\:bg_none\!:hover:not(:disabled) {
1520
+ background: none !important;
1521
+ }
1522
+ .hover\:td_underline:hover:not(:disabled) {
1523
+ text-decoration: underline;
1524
+ }
1525
+ [data-theme=dark] .disabled\:dark\:bg_neutral\.600:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
1526
+ background: var(--colors-neutral-600);
1527
+ }
1528
+ [data-theme=dark] .selected\:dark\:bd-c_blue\.400:is([aria-selected=true], [data-selected]) {
1529
+ border-color: var(--colors-blue-400);
1530
+ }
1531
+ [data-theme=dark] .disabled\:dark\:bd-c_neutral\.600:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
1532
+ border-color: var(--colors-neutral-600);
1533
+ }
1534
+ .disabled\:radioLabel\:c_neutral\.400:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) [data-radio-label] {
1535
+ color: var(--colors-neutral-400);
1536
+ }
1537
+ .focusWithin\:placeholder\:op_1:focus-within::placeholder,
1538
+ .focusWithin\:placeholder\:op_1:focus-within[data-placeholder] {
1539
+ opacity: 1;
1540
+ }
1541
+ [data-theme=dark] .active\:dark\:bg_neutral\.800:active:not(:disabled),
1542
+ [data-theme=dark] .active\:dark\:bg_neutral\.800:active:not(:focus-visible):not(:disabled),
1543
+ [data-theme=dark] .active\:dark\:bg_neutral\.800:active:focus-visible:not(:disabled) {
1544
+ background: var(--colors-neutral-800);
1545
+ }
1546
+ .active\:after\:scale_0\.94:active:not(:disabled)::after,
1547
+ .active\:after\:scale_0\.94:active:not(:focus-visible):not(:disabled)::after,
1548
+ .active\:after\:scale_0\.94:active:focus-visible:not(:disabled)::after {
1549
+ scale: 0.94;
1550
+ }
1551
+ [data-theme=dark] .hover\:dark\:bg_neutral\.700:hover:not(:disabled) {
1552
+ background: var(--colors-neutral-700);
1553
+ }
1554
+ .hover\:after\:bg_neutral\.200:hover:not(:disabled)::after {
1555
+ background: var(--colors-neutral-200);
1556
+ }
1557
+ .hover\:after\:scale_1:hover:not(:disabled)::after {
1558
+ scale: 1;
1559
+ }
1560
+ [data-theme=dark] .disabled\:radioLabel\:dark\:c_neutral\.600:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) [data-radio-label] {
1561
+ color: var(--colors-neutral-600);
1562
+ }
1563
+ [data-theme=dark] .hover\:after\:dark\:bg_neutral\.800:hover:not(:disabled)::after {
1564
+ background: var(--colors-neutral-800);
1565
+ }
1566
+ }