qstd 0.2.17 → 0.2.18

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