@thangph2146/nextjs-editor 1.0.1 → 1.0.2

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,4276 @@
1
+ /* nextjs-editor: theme + scoped utilities (không cần @source, không bị app ghi đè) */
2
+
3
+ .EditorTheme__code {
4
+ background-color: transparent;
5
+ font-family: Menlo, Consolas, Monaco, monospace;
6
+ display: block;
7
+ padding: 8px 8px 8px 52px;
8
+ line-height: 1.53;
9
+ font-size: 13px;
10
+ margin: 0;
11
+ margin-top: 8px;
12
+ margin-bottom: 8px;
13
+ overflow-x: auto;
14
+ border: 1px solid #ccc;
15
+ position: relative;
16
+ border-radius: 8px;
17
+ tab-size: 2;
18
+ }
19
+ .EditorTheme__code:before {
20
+ content: attr(data-gutter);
21
+ position: absolute;
22
+ background-color: transparent;
23
+ border-right: 1px solid #ccc;
24
+ left: 0;
25
+ top: 0;
26
+ padding: 8px;
27
+ color: #777;
28
+ white-space: pre-wrap;
29
+ text-align: right;
30
+ min-width: 25px;
31
+ }
32
+ .EditorTheme__table {
33
+ border-collapse: collapse;
34
+ border-spacing: 0;
35
+ overflow-y: scroll;
36
+ overflow-x: scroll;
37
+ table-layout: auto; /* auto để width trên td/th được tôn trọng, cột "TT" không bị kéo 243px */
38
+ width: 100%;
39
+ margin: 0px 0px 30px 0px;
40
+ }
41
+
42
+ /* Cho phép cột tôn trọng width đã chỉnh (resize), không bị kéo về min từ theme/class khác */
43
+ .EditorTheme__tableCell,
44
+ .EditorTheme__tableCellHeader {
45
+ min-width: 0 ;
46
+ word-wrap: break-word;
47
+ overflow-wrap: break-word;
48
+ white-space: normal;
49
+ }
50
+
51
+ /* Cột đầu tiên (thứ tự, "TT") mặc định hẹp; resize vẫn ghi đè qua inline style */
52
+ .EditorTheme__table tr > td:first-child,
53
+ .EditorTheme__table tr > th:first-child {
54
+ width: 3rem;
55
+ max-width: 3rem;
56
+ }
57
+ .EditorTheme__tokenComment {
58
+ color: slategray;
59
+ }
60
+ .EditorTheme__tokenPunctuation {
61
+ color: #999;
62
+ }
63
+ .EditorTheme__tokenProperty {
64
+ color: #905;
65
+ }
66
+ .EditorTheme__tokenSelector {
67
+ color: #690;
68
+ }
69
+ .EditorTheme__tokenOperator {
70
+ color: #9a6e3a;
71
+ }
72
+ .EditorTheme__tokenAttr {
73
+ color: #07a;
74
+ }
75
+ .EditorTheme__tokenVariable {
76
+ color: #e90;
77
+ }
78
+ .EditorTheme__tokenFunction {
79
+ color: #dd4a68;
80
+ }
81
+
82
+ .Collapsible__container {
83
+ background-color: var(--background);
84
+ border: 1px solid #ccc;
85
+ border-radius: 0.5rem;
86
+ margin-bottom: 0.5rem;
87
+ }
88
+
89
+ .Collapsible__title{
90
+ padding: 0.25rem;
91
+ padding-left: 1rem;
92
+ position: relative;
93
+ font-weight: bold;
94
+ outline: none;
95
+ cursor: pointer;
96
+ list-style-type: disclosure-closed;
97
+ list-style-position: inside;
98
+ }
99
+
100
+ .Collapsible__title p{
101
+ display: inline-flex;
102
+ }
103
+ .Collapsible__title::marker{
104
+ color: lightgray;
105
+ }
106
+
107
+ /* Màu bullet/số list khi dùng "Đổi màu list" (data-list-color + --list-marker-color do plugin set) */
108
+ .ContentEditable__root ul[data-list-color],
109
+ .ContentEditable__root ol[data-list-color] {
110
+ list-style-color: var(--list-marker-color, currentColor) ;
111
+ }
112
+ .ContentEditable__root ul[data-list-color] li::marker,
113
+ .ContentEditable__root ol[data-list-color] li::marker {
114
+ color: var(--list-marker-color, currentColor) ;
115
+ }
116
+ .Collapsible__container[open] >.Collapsible__title {
117
+ list-style-type: disclosure-open;
118
+ }
119
+
120
+ /* Layout Container Styles */
121
+ [data-lexical-layout-container="true"] {
122
+ display: grid ;
123
+ width: 100% ;
124
+ max-width: 100% ;
125
+ box-sizing: border-box ;
126
+ /* Responsive grid: single column by default */
127
+ grid-template-columns: 1fr ;
128
+ }
129
+
130
+ /* Auto-fit columns with min 400px when container is wide enough */
131
+ @media (min-width: 400px) {
132
+ [data-lexical-layout-container="true"] {
133
+ grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) ;
134
+ }
135
+ }
136
+
137
+ /* Layout Item Styles - Ensure items don't overflow */
138
+ [data-lexical-layout-item="true"],
139
+ div.border.border-dashed {
140
+ min-width: 0 ;
141
+ width: 100% ;
142
+ max-width: 100% ;
143
+ box-sizing: border-box ;
144
+ overflow: hidden ;
145
+ }
146
+
147
+ /* Hide border and padding when editor is read-only - dùng selector đủ mạnh thay vì !important */
148
+ .ContentEditable__root.editor-readonly [data-lexical-layout-item="true"],
149
+ .ContentEditable__root.editor-readonly div.border.border-dashed,
150
+ .ContentEditable__root.editor-readonly div[class*="border-dashed"],
151
+ .ContentEditable__root[data-editor-readonly="true"] [data-lexical-layout-item="true"],
152
+ .ContentEditable__root[data-editor-readonly="true"] div.border.border-dashed,
153
+ .ContentEditable__root[data-editor-readonly="true"] div[class*="border-dashed"],
154
+ .ContentEditable__root[contenteditable="false"] [data-lexical-layout-item="true"],
155
+ .ContentEditable__root[contenteditable="false"] div.border.border-dashed,
156
+ .ContentEditable__root[contenteditable="false"] div[class*="border-dashed"],
157
+ .ContentEditable__root[aria-readonly="true"] [data-lexical-layout-item="true"],
158
+ .ContentEditable__root[aria-readonly="true"] div.border.border-dashed,
159
+ .ContentEditable__root[aria-readonly="true"] div[class*="border-dashed"] {
160
+ border: none;
161
+ padding: 0;
162
+ }
163
+
164
+ /* Ensure images inside layout items are responsive and respect text-align */
165
+ [data-lexical-layout-item="true"] img,
166
+ div.border.border-dashed img {
167
+ max-width: 100% ;
168
+ width: 100% ;
169
+ height: auto ;
170
+ object-fit: contain ;
171
+ display: inline-block ;
172
+ }
173
+
174
+ /* Support text-align for images in layout items */
175
+ [data-lexical-layout-item="true"] p[style*="text-align: left"],
176
+ div.border.border-dashed p[style*="text-align: left"] {
177
+ text-align: left ;
178
+ }
179
+
180
+ [data-lexical-layout-item="true"] p[style*="text-align: center"],
181
+ div.border.border-dashed p[style*="text-align: center"] {
182
+ text-align: center ;
183
+ }
184
+
185
+ [data-lexical-layout-item="true"] p[style*="text-align: right"],
186
+ div.border.border-dashed p[style*="text-align: right"] {
187
+ text-align: right ;
188
+ }
189
+
190
+ /* Ensure image wrapper respects parent text-align */
191
+ [data-lexical-layout-item="true"] p[style*="text-align: left"] .editor-image,
192
+ div.border.border-dashed p[style*="text-align: left"] .editor-image {
193
+ margin-left: 0 ;
194
+ margin-right: auto ;
195
+ }
196
+
197
+ [data-lexical-layout-item="true"] p[style*="text-align: center"] .editor-image,
198
+ div.border.border-dashed p[style*="text-align: center"] .editor-image {
199
+ margin-left: auto ;
200
+ margin-right: auto ;
201
+ }
202
+
203
+ [data-lexical-layout-item="true"] p[style*="text-align: right"] .editor-image,
204
+ div.border.border-dashed p[style*="text-align: right"] .editor-image {
205
+ margin-left: auto ;
206
+ margin-right: 0 ;
207
+ }
208
+
209
+ /* Ensure all content inside layout items scales properly */
210
+ [data-lexical-layout-item="true"] *,
211
+ div.border.border-dashed * {
212
+ max-width: 100% ;
213
+ }
214
+
215
+ /* Ensure image wrapper scales */
216
+ [data-lexical-layout-item="true"] .editor-image,
217
+ div.border.border-dashed .editor-image {
218
+ max-width: 100% ;
219
+ width: 100% ;
220
+ display: inline-block ;
221
+ }
222
+
223
+ [data-lexical-layout-item="true"] .editor-image > div,
224
+ div.border.border-dashed .editor-image > div {
225
+ max-width: 100% ;
226
+ width: 100% ;
227
+ display: block ;
228
+ }
229
+
230
+ /* Force images to respect container width */
231
+ [data-lexical-layout-item="true"] .editor-image img,
232
+ div.border.border-dashed .editor-image img {
233
+ max-width: 100% ;
234
+ width: 100% ;
235
+ height: auto ;
236
+ object-fit: contain ;
237
+ }
238
+
239
+ /* Generic responsive media inside editor content */
240
+ .ContentEditable__root img {
241
+ max-width: 100% ;
242
+ height: auto ;
243
+ }
244
+
245
+ /* Wrapper và ảnh có kích thước tường minh: ép luôn trong khung, responsive */
246
+ .ContentEditable__root .editor-image .editor-image__sized,
247
+ .ContentEditable__root .editor-image .editor-image__sized img {
248
+ max-width: 100% ;
249
+ width: 100% ;
250
+ height: auto ;
251
+ box-sizing: border-box ;
252
+ }
253
+
254
+ .ContentEditable__root .editor-image,
255
+ .ContentEditable__root .editor-image > div {
256
+ max-width: 100% ;
257
+ }
258
+
259
+ .ContentEditable__root iframe {
260
+ max-width: 100% ;
261
+ width: 100% ;
262
+ }
263
+
264
+ /* Embed wrappers (BlockWithAlignableContents base class) */
265
+ [data-lexical-decorator="true"] > div.user-select-none {
266
+ display: block ;
267
+ width: 100% ;
268
+ max-width: 100% ;
269
+ margin-left: auto ;
270
+ margin-right: auto ;
271
+ overflow: visible ;
272
+ box-sizing: border-box ;
273
+ }
274
+
275
+ [data-lexical-decorator="true"] > div.user-select-none > .relative:not(.editor-embed-frame) {
276
+ display: block ;
277
+ width: 100% ;
278
+ max-width: 100% ;
279
+ height: auto ;
280
+ margin-left: auto ;
281
+ margin-right: auto ;
282
+ box-sizing: border-box ;
283
+ }
284
+
285
+ [data-lexical-decorator="true"] > div.user-select-none iframe,
286
+ [data-lexical-decorator="true"] > div.user-select-none video,
287
+ [data-lexical-decorator="true"] > div.user-select-none embed {
288
+ width: 100% ;
289
+ height: 100% ;
290
+ display: block;
291
+ margin-left: auto;
292
+ margin-right: auto;
293
+ }
294
+
295
+ .ContentEditable__root [data-lexical-decorator="true"] > div.user-select-none {
296
+ width: 100% ;
297
+ max-width: 100% ;
298
+ }
299
+
300
+ .ContentEditable__root
301
+ [data-lexical-decorator="true"]
302
+ > div.user-select-none
303
+ > .relative.inline-block:not(.editor-embed-frame) {
304
+ width: 100% ;
305
+ max-width: 100% ;
306
+ height: auto ;
307
+ display: block ;
308
+ }
309
+
310
+ /* Responsive overrides for resizable embed frames (e.g., YouTube) */
311
+ [data-lexical-decorator="true"] > div.user-select-none > .editor-embed-frame,
312
+ .ContentEditable__root
313
+ [data-lexical-decorator="true"]
314
+ > div.user-select-none
315
+ > .relative.editor-embed-frame {
316
+ display: inline-block ;
317
+ max-width: 100% ;
318
+ margin-left: 0 ;
319
+ margin-right: 0 ;
320
+ box-sizing: border-box ;
321
+ vertical-align: top;
322
+ }
323
+
324
+ .editor-embed-frame {
325
+ position: relative;
326
+ box-sizing: border-box;
327
+ min-width: 0;
328
+ vertical-align: top;
329
+ line-height: 0;
330
+ height: auto;
331
+ }
332
+
333
+ .editor-embed-frame--full {
334
+ display: block ;
335
+ width: 100% ;
336
+ }
337
+
338
+ .editor-embed-frame--inline {
339
+ display: inline-block ;
340
+ }
341
+
342
+ .editor-embed-frame--inline {
343
+ max-width: 100%;
344
+ }
345
+
346
+ [data-lexical-align="left"] .editor-embed-frame--inline,
347
+ [data-lexical-align="start"] .editor-embed-frame--inline {
348
+ margin-left: 0 ;
349
+ margin-right: auto ;
350
+ }
351
+
352
+ [data-lexical-align="center"] .editor-embed-frame--inline {
353
+ margin-left: auto ;
354
+ margin-right: auto ;
355
+ }
356
+
357
+ [data-lexical-align="right"] .editor-embed-frame--inline,
358
+ [data-lexical-align="end"] .editor-embed-frame--inline {
359
+ margin-left: auto ;
360
+ margin-right: 0 ;
361
+ }
362
+
363
+ .editor-embed-frame iframe {
364
+ position: absolute;
365
+ inset: 0;
366
+ width: 100% ;
367
+ height: 100% ;
368
+ }
369
+
370
+ /* Remove border for readonly editor surface */
371
+ #editor-x .ContentEditable__root[contenteditable="false"],
372
+ #editor-x .ContentEditable__root[aria-readonly="true"] {
373
+ border: none ;
374
+ }
375
+
376
+ /* Admin editor: ép ảnh và wrapper luôn responsive trong #editor-x */
377
+ #editor-x .ContentEditable__root {
378
+ max-width: 100% ;
379
+ min-width: 0 ;
380
+ }
381
+
382
+ #editor-x .ContentEditable__root .editor-image,
383
+ #editor-x .ContentEditable__root .editor-image > div,
384
+ #editor-x .ContentEditable__root .editor-image .editor-image__sized,
385
+ #editor-x .ContentEditable__root .editor-image .editor-image__sized img {
386
+ max-width: 100% ;
387
+ width: 100% ;
388
+ height: auto ;
389
+ box-sizing: border-box ;
390
+ }
391
+
392
+
393
+ /* Scoped Tailwind utilities cho #editor-x */
394
+
395
+ /*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
396
+ @layer properties;
397
+ @layer theme, base, components, utilities;
398
+ @layer theme {
399
+ #editor-x, #editor-x :host {
400
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
401
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
402
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
403
+ "Courier New", monospace;
404
+ --color-green-100: oklch(96.2% 0.044 156.743);
405
+ --color-green-400: oklch(79.2% 0.209 151.711);
406
+ --color-green-500: oklch(72.3% 0.219 149.579);
407
+ --color-green-800: oklch(44.8% 0.119 151.328);
408
+ --color-green-900: oklch(39.3% 0.095 152.535);
409
+ --color-blue-100: oklch(93.2% 0.032 255.585);
410
+ --color-blue-600: oklch(54.6% 0.245 262.881);
411
+ --color-purple-900: oklch(38.1% 0.176 304.987);
412
+ --color-gray-100: oklch(96.7% 0.003 264.542);
413
+ --color-gray-300: oklch(87.2% 0.01 258.338);
414
+ --color-gray-800: oklch(27.8% 0.033 256.848);
415
+ --color-black: #000;
416
+ --color-white: #fff;
417
+ --spacing: 0.25rem;
418
+ --container-sm: 24rem;
419
+ --text-xs: 0.75rem;
420
+ --text-xs--line-height: calc(1 / 0.75);
421
+ --text-sm: 0.875rem;
422
+ --text-sm--line-height: calc(1.25 / 0.875);
423
+ --text-base: 1rem;
424
+ --text-base--line-height: calc(1.5 / 1);
425
+ --text-lg: 1.125rem;
426
+ --text-lg--line-height: calc(1.75 / 1.125);
427
+ --text-xl: 1.25rem;
428
+ --text-xl--line-height: calc(1.75 / 1.25);
429
+ --text-2xl: 1.5rem;
430
+ --text-2xl--line-height: calc(2 / 1.5);
431
+ --text-3xl: 1.875rem;
432
+ --text-3xl--line-height: calc(2.25 / 1.875);
433
+ --text-4xl: 2.25rem;
434
+ --text-4xl--line-height: calc(2.5 / 2.25);
435
+ --text-5xl: 3rem;
436
+ --text-5xl--line-height: 1;
437
+ --text-6xl: 3.75rem;
438
+ --text-6xl--line-height: 1;
439
+ --font-weight-normal: 400;
440
+ --font-weight-medium: 500;
441
+ --font-weight-semibold: 600;
442
+ --font-weight-bold: 700;
443
+ --font-weight-extrabold: 800;
444
+ --tracking-tight: -0.025em;
445
+ --tracking-widest: 0.1em;
446
+ --leading-tight: 1.25;
447
+ --leading-normal: 1.5;
448
+ --leading-relaxed: 1.625;
449
+ --leading-loose: 2;
450
+ --radius-xs: 0.125rem;
451
+ --radius-sm: 0.25rem;
452
+ --radius-md: 0.375rem;
453
+ --radius-lg: 0.5rem;
454
+ --radius-xl: 0.75rem;
455
+ --radius-2xl: 1rem;
456
+ --animate-spin: spin 1s linear infinite;
457
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
458
+ --blur-sm: 8px;
459
+ --blur-xl: 24px;
460
+ --blur-2xl: 40px;
461
+ --blur-3xl: 64px;
462
+ --default-transition-duration: 150ms;
463
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
464
+ --default-font-family: var(--font-sans);
465
+ --default-mono-font-family: var(--font-mono);
466
+ --radius: var(--radius, 0.5rem);
467
+ }
468
+ }
469
+ @layer base {
470
+ #editor-x *, #editor-x ::after, #editor-x ::before, #editor-x ::backdrop, #editor-x ::file-selector-button {
471
+ box-sizing: border-box;
472
+ margin: 0;
473
+ padding: 0;
474
+ border: 0 solid;
475
+ }
476
+ #editor-x html, #editor-x :host {
477
+ line-height: 1.5;
478
+ -webkit-text-size-adjust: 100%;
479
+ tab-size: 4;
480
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
481
+ font-feature-settings: var(--default-font-feature-settings, normal);
482
+ font-variation-settings: var(--default-font-variation-settings, normal);
483
+ -webkit-tap-highlight-color: transparent;
484
+ }
485
+ #editor-x hr {
486
+ height: 0;
487
+ color: inherit;
488
+ border-top-width: 1px;
489
+ }
490
+ #editor-x abbr:where([title]) {
491
+ -webkit-text-decoration: underline dotted;
492
+ text-decoration: underline dotted;
493
+ }
494
+ #editor-x h1, #editor-x h2, #editor-x h3, #editor-x h4, #editor-x h5, #editor-x h6 {
495
+ font-size: inherit;
496
+ font-weight: inherit;
497
+ }
498
+ #editor-x a {
499
+ color: inherit;
500
+ -webkit-text-decoration: inherit;
501
+ text-decoration: inherit;
502
+ }
503
+ #editor-x b, #editor-x strong {
504
+ font-weight: bolder;
505
+ }
506
+ #editor-x code, #editor-x kbd, #editor-x samp, #editor-x pre {
507
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
508
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
509
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
510
+ font-size: 1em;
511
+ }
512
+ #editor-x small {
513
+ font-size: 80%;
514
+ }
515
+ #editor-x sub, #editor-x sup {
516
+ font-size: 75%;
517
+ line-height: 0;
518
+ position: relative;
519
+ vertical-align: baseline;
520
+ }
521
+ #editor-x sub {
522
+ bottom: -0.25em;
523
+ }
524
+ #editor-x sup {
525
+ top: -0.5em;
526
+ }
527
+ #editor-x table {
528
+ text-indent: 0;
529
+ border-color: inherit;
530
+ border-collapse: collapse;
531
+ }
532
+ #editor-x :-moz-focusring {
533
+ outline: auto;
534
+ }
535
+ #editor-x progress {
536
+ vertical-align: baseline;
537
+ }
538
+ #editor-x summary {
539
+ display: list-item;
540
+ }
541
+ #editor-x ol, #editor-x ul, #editor-x menu {
542
+ list-style: none;
543
+ }
544
+ #editor-x img, #editor-x svg, #editor-x video, #editor-x canvas, #editor-x audio, #editor-x iframe, #editor-x embed, #editor-x object {
545
+ display: block;
546
+ vertical-align: middle;
547
+ }
548
+ #editor-x img, #editor-x video {
549
+ max-width: 100%;
550
+ height: auto;
551
+ }
552
+ #editor-x button, #editor-x input, #editor-x select, #editor-x optgroup, #editor-x textarea, #editor-x ::file-selector-button {
553
+ font: inherit;
554
+ font-feature-settings: inherit;
555
+ font-variation-settings: inherit;
556
+ letter-spacing: inherit;
557
+ color: inherit;
558
+ border-radius: 0;
559
+ background-color: transparent;
560
+ opacity: 1;
561
+ }
562
+ #editor-x :where(select:is([multiple], [size])) optgroup {
563
+ font-weight: bolder;
564
+ }
565
+ #editor-x :where(select:is([multiple], [size])) optgroup option {
566
+ padding-inline-start: 20px;
567
+ }
568
+ #editor-x ::file-selector-button {
569
+ margin-inline-end: 4px;
570
+ }
571
+ #editor-x ::placeholder {
572
+ opacity: 1;
573
+ }
574
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
575
+ #editor-x ::placeholder {
576
+ color: currentcolor;
577
+ @supports (color: color-mix(in lab, red, red)) {
578
+ color: color-mix(in oklab, currentcolor 50%, transparent);
579
+ }
580
+ }
581
+ }
582
+ #editor-x textarea {
583
+ resize: vertical;
584
+ }
585
+ #editor-x ::-webkit-search-decoration {
586
+ -webkit-appearance: none;
587
+ }
588
+ #editor-x ::-webkit-date-and-time-value {
589
+ min-height: 1lh;
590
+ text-align: inherit;
591
+ }
592
+ #editor-x ::-webkit-datetime-edit {
593
+ display: inline-flex;
594
+ }
595
+ #editor-x ::-webkit-datetime-edit-fields-wrapper {
596
+ padding: 0;
597
+ }
598
+ #editor-x ::-webkit-datetime-edit, #editor-x ::-webkit-datetime-edit-year-field, #editor-x ::-webkit-datetime-edit-month-field, #editor-x ::-webkit-datetime-edit-day-field, #editor-x ::-webkit-datetime-edit-hour-field, #editor-x ::-webkit-datetime-edit-minute-field, #editor-x ::-webkit-datetime-edit-second-field, #editor-x ::-webkit-datetime-edit-millisecond-field, #editor-x ::-webkit-datetime-edit-meridiem-field {
599
+ padding-block: 0;
600
+ }
601
+ #editor-x ::-webkit-calendar-picker-indicator {
602
+ line-height: 1;
603
+ }
604
+ #editor-x :-moz-ui-invalid {
605
+ box-shadow: none;
606
+ }
607
+ #editor-x button, #editor-x input:where([type="button"], [type="reset"], [type="submit"]), #editor-x ::file-selector-button {
608
+ appearance: button;
609
+ }
610
+ #editor-x ::-webkit-inner-spin-button, #editor-x ::-webkit-outer-spin-button {
611
+ height: auto;
612
+ }
613
+ #editor-x [hidden]:where(:not([hidden="until-found"])) {
614
+ display: none !important;
615
+ }
616
+ }
617
+ @layer utilities {
618
+ #editor-x .pointer-events-none {
619
+ pointer-events: none;
620
+ }
621
+ #editor-x .invisible {
622
+ visibility: hidden;
623
+ }
624
+ #editor-x .visible {
625
+ visibility: visible;
626
+ }
627
+ #editor-x .sr-only {
628
+ position: absolute;
629
+ width: 1px;
630
+ height: 1px;
631
+ padding: 0;
632
+ margin: -1px;
633
+ overflow: hidden;
634
+ clip-path: inset(50%);
635
+ white-space: nowrap;
636
+ border-width: 0;
637
+ }
638
+ #editor-x .absolute {
639
+ position: absolute;
640
+ }
641
+ #editor-x .fixed {
642
+ position: fixed;
643
+ }
644
+ #editor-x .relative {
645
+ position: relative;
646
+ }
647
+ #editor-x .static {
648
+ position: static;
649
+ }
650
+ #editor-x .sticky {
651
+ position: sticky;
652
+ }
653
+ #editor-x .inset-0 {
654
+ inset: calc(var(--spacing) * 0);
655
+ }
656
+ #editor-x .start {
657
+ inset-inline-start: var(--spacing);
658
+ }
659
+ #editor-x .end {
660
+ inset-inline-end: var(--spacing);
661
+ }
662
+ #editor-x .-top-2\.5 {
663
+ top: calc(var(--spacing) * -2.5);
664
+ }
665
+ #editor-x .-top-\[1px\] {
666
+ top: calc(1px * -1);
667
+ }
668
+ #editor-x .top-0 {
669
+ top: calc(var(--spacing) * 0);
670
+ }
671
+ #editor-x .top-1\.5 {
672
+ top: calc(var(--spacing) * 1.5);
673
+ }
674
+ #editor-x .top-1\/2 {
675
+ top: calc(1 / 2 * 100%);
676
+ }
677
+ #editor-x .top-2 {
678
+ top: calc(var(--spacing) * 2);
679
+ }
680
+ #editor-x .top-4 {
681
+ top: calc(var(--spacing) * 4);
682
+ }
683
+ #editor-x .top-\[50\%\] {
684
+ top: 50%;
685
+ }
686
+ #editor-x .-right-1 {
687
+ right: calc(var(--spacing) * -1);
688
+ }
689
+ #editor-x .-right-2\.5 {
690
+ right: calc(var(--spacing) * -2.5);
691
+ }
692
+ #editor-x .right-0 {
693
+ right: calc(var(--spacing) * 0);
694
+ }
695
+ #editor-x .right-1 {
696
+ right: calc(var(--spacing) * 1);
697
+ }
698
+ #editor-x .right-2 {
699
+ right: calc(var(--spacing) * 2);
700
+ }
701
+ #editor-x .right-4 {
702
+ right: calc(var(--spacing) * 4);
703
+ }
704
+ #editor-x .-bottom-2\.5 {
705
+ bottom: calc(var(--spacing) * -2.5);
706
+ }
707
+ #editor-x .bottom-0 {
708
+ bottom: calc(var(--spacing) * 0);
709
+ }
710
+ #editor-x .-left-2\.5 {
711
+ left: calc(var(--spacing) * -2.5);
712
+ }
713
+ #editor-x .-left-\[1px\] {
714
+ left: calc(1px * -1);
715
+ }
716
+ #editor-x .left-0 {
717
+ left: calc(var(--spacing) * 0);
718
+ }
719
+ #editor-x .left-1\/2 {
720
+ left: calc(1 / 2 * 100%);
721
+ }
722
+ #editor-x .left-6 {
723
+ left: calc(var(--spacing) * 6);
724
+ }
725
+ #editor-x .left-\[50\%\] {
726
+ left: 50%;
727
+ }
728
+ #editor-x .z-10 {
729
+ z-index: 10;
730
+ }
731
+ #editor-x .z-20 {
732
+ z-index: 20;
733
+ }
734
+ #editor-x .z-50 {
735
+ z-index: 50;
736
+ }
737
+ #editor-x .z-200 {
738
+ z-index: 200;
739
+ }
740
+ #editor-x .z-\[100\] {
741
+ z-index: 100;
742
+ }
743
+ #editor-x .z-\[1200\] {
744
+ z-index: 1200;
745
+ }
746
+ #editor-x .clear-both {
747
+ clear: both;
748
+ }
749
+ #editor-x .container {
750
+ width: 100%;
751
+ @media (width >= 40rem) {
752
+ max-width: 40rem;
753
+ }
754
+ @media (width >= 48rem) {
755
+ max-width: 48rem;
756
+ }
757
+ @media (width >= 64rem) {
758
+ max-width: 64rem;
759
+ }
760
+ @media (width >= 80rem) {
761
+ max-width: 80rem;
762
+ }
763
+ @media (width >= 96rem) {
764
+ max-width: 96rem;
765
+ }
766
+ }
767
+ #editor-x .m-0 {
768
+ margin: calc(var(--spacing) * 0);
769
+ }
770
+ #editor-x .-mx-1 {
771
+ margin-inline: calc(var(--spacing) * -1);
772
+ }
773
+ #editor-x .mx-0 {
774
+ margin-inline: calc(var(--spacing) * 0);
775
+ }
776
+ #editor-x .mx-2 {
777
+ margin-inline: calc(var(--spacing) * 2);
778
+ }
779
+ #editor-x .mx-8 {
780
+ margin-inline: calc(var(--spacing) * 8);
781
+ }
782
+ #editor-x .mx-auto {
783
+ margin-inline: auto;
784
+ }
785
+ #editor-x .my-1 {
786
+ margin-block: calc(var(--spacing) * 1);
787
+ }
788
+ #editor-x .my-2 {
789
+ margin-block: calc(var(--spacing) * 2);
790
+ }
791
+ #editor-x .my-2\.5 {
792
+ margin-block: calc(var(--spacing) * 2.5);
793
+ }
794
+ #editor-x .my-4 {
795
+ margin-block: calc(var(--spacing) * 4);
796
+ }
797
+ #editor-x .my-6 {
798
+ margin-block: calc(var(--spacing) * 6);
799
+ }
800
+ #editor-x .my-8 {
801
+ margin-block: calc(var(--spacing) * 8);
802
+ }
803
+ #editor-x .my-auto {
804
+ margin-block: auto;
805
+ }
806
+ #editor-x .-ms-px {
807
+ margin-inline-start: -1px;
808
+ }
809
+ #editor-x .mt-0\.5 {
810
+ margin-top: calc(var(--spacing) * 0.5);
811
+ }
812
+ #editor-x .mt-1 {
813
+ margin-top: calc(var(--spacing) * 1);
814
+ }
815
+ #editor-x .mt-2 {
816
+ margin-top: calc(var(--spacing) * 2);
817
+ }
818
+ #editor-x .mt-6 {
819
+ margin-top: calc(var(--spacing) * 6);
820
+ }
821
+ #editor-x .mt-auto {
822
+ margin-top: auto;
823
+ }
824
+ #editor-x .mr-1\.5 {
825
+ margin-right: calc(var(--spacing) * 1.5);
826
+ }
827
+ #editor-x .mr-6 {
828
+ margin-right: calc(var(--spacing) * 6);
829
+ }
830
+ #editor-x .mb-2 {
831
+ margin-bottom: calc(var(--spacing) * 2);
832
+ }
833
+ #editor-x .mb-3 {
834
+ margin-bottom: calc(var(--spacing) * 3);
835
+ }
836
+ #editor-x .mb-4 {
837
+ margin-bottom: calc(var(--spacing) * 4);
838
+ }
839
+ #editor-x .ml-4 {
840
+ margin-left: calc(var(--spacing) * 4);
841
+ }
842
+ #editor-x .ml-auto {
843
+ margin-left: auto;
844
+ }
845
+ #editor-x .box-border {
846
+ box-sizing: border-box;
847
+ }
848
+ #editor-x .line-clamp-1 {
849
+ overflow: hidden;
850
+ display: -webkit-box;
851
+ -webkit-box-orient: vertical;
852
+ -webkit-line-clamp: 1;
853
+ }
854
+ #editor-x .line-clamp-2 {
855
+ overflow: hidden;
856
+ display: -webkit-box;
857
+ -webkit-box-orient: vertical;
858
+ -webkit-line-clamp: 2;
859
+ }
860
+ #editor-x .line-clamp-3 {
861
+ overflow: hidden;
862
+ display: -webkit-box;
863
+ -webkit-box-orient: vertical;
864
+ -webkit-line-clamp: 3;
865
+ }
866
+ #editor-x .block {
867
+ display: block;
868
+ }
869
+ #editor-x .contents {
870
+ display: contents;
871
+ }
872
+ #editor-x .flex {
873
+ display: flex;
874
+ }
875
+ #editor-x .grid {
876
+ display: grid;
877
+ }
878
+ #editor-x .hidden {
879
+ display: none;
880
+ }
881
+ #editor-x .inline {
882
+ display: inline;
883
+ }
884
+ #editor-x .inline-block {
885
+ display: inline-block;
886
+ }
887
+ #editor-x .inline-flex {
888
+ display: inline-flex;
889
+ }
890
+ #editor-x .table {
891
+ display: table;
892
+ }
893
+ #editor-x .aspect-square {
894
+ aspect-ratio: 1 / 1;
895
+ }
896
+ #editor-x .size-3 {
897
+ width: calc(var(--spacing) * 3);
898
+ height: calc(var(--spacing) * 3);
899
+ }
900
+ #editor-x .size-4 {
901
+ width: calc(var(--spacing) * 4);
902
+ height: calc(var(--spacing) * 4);
903
+ }
904
+ #editor-x .size-8 {
905
+ width: calc(var(--spacing) * 8);
906
+ height: calc(var(--spacing) * 8);
907
+ }
908
+ #editor-x .size-9 {
909
+ width: calc(var(--spacing) * 9);
910
+ height: calc(var(--spacing) * 9);
911
+ }
912
+ #editor-x .size-full {
913
+ width: 100%;
914
+ height: 100%;
915
+ }
916
+ #editor-x .h-1 {
917
+ height: calc(var(--spacing) * 1);
918
+ }
919
+ #editor-x .h-2 {
920
+ height: calc(var(--spacing) * 2);
921
+ }
922
+ #editor-x .h-2\.5 {
923
+ height: calc(var(--spacing) * 2.5);
924
+ }
925
+ #editor-x .h-3 {
926
+ height: calc(var(--spacing) * 3);
927
+ }
928
+ #editor-x .h-4 {
929
+ height: calc(var(--spacing) * 4);
930
+ }
931
+ #editor-x .h-5 {
932
+ height: calc(var(--spacing) * 5);
933
+ }
934
+ #editor-x .h-6 {
935
+ height: calc(var(--spacing) * 6);
936
+ }
937
+ #editor-x .h-7 {
938
+ height: calc(var(--spacing) * 7);
939
+ }
940
+ #editor-x .h-8 {
941
+ height: calc(var(--spacing) * 8);
942
+ }
943
+ #editor-x .h-9 {
944
+ height: calc(var(--spacing) * 9);
945
+ }
946
+ #editor-x .h-10 {
947
+ height: calc(var(--spacing) * 10);
948
+ }
949
+ #editor-x .h-11 {
950
+ height: calc(var(--spacing) * 11);
951
+ }
952
+ #editor-x .h-12 {
953
+ height: calc(var(--spacing) * 12);
954
+ }
955
+ #editor-x .h-14 {
956
+ height: calc(var(--spacing) * 14);
957
+ }
958
+ #editor-x .h-16 {
959
+ height: calc(var(--spacing) * 16);
960
+ }
961
+ #editor-x .h-24 {
962
+ height: calc(var(--spacing) * 24);
963
+ }
964
+ #editor-x .h-28 {
965
+ height: calc(var(--spacing) * 28);
966
+ }
967
+ #editor-x .h-32 {
968
+ height: calc(var(--spacing) * 32);
969
+ }
970
+ #editor-x .h-40 {
971
+ height: calc(var(--spacing) * 40);
972
+ }
973
+ #editor-x .h-64 {
974
+ height: calc(var(--spacing) * 64);
975
+ }
976
+ #editor-x .h-96 {
977
+ height: calc(var(--spacing) * 96);
978
+ }
979
+ #editor-x .h-\[96vh\] {
980
+ height: 96vh;
981
+ }
982
+ #editor-x .h-\[calc\(100\%-2px\)\] {
983
+ height: calc(100% - 2px);
984
+ }
985
+ #editor-x .h-\[var\(--radix-select-trigger-height\)\] {
986
+ height: var(--radix-select-trigger-height);
987
+ }
988
+ #editor-x .h-full {
989
+ height: 100%;
990
+ }
991
+ #editor-x .h-px {
992
+ height: 1px;
993
+ }
994
+ #editor-x .h-screen {
995
+ height: 100vh;
996
+ }
997
+ #editor-x .max-h-\(--radix-select-content-available-height\) {
998
+ max-height: var(--radix-select-content-available-height);
999
+ }
1000
+ #editor-x .max-h-48 {
1001
+ max-height: calc(var(--spacing) * 48);
1002
+ }
1003
+ #editor-x .max-h-\[96vh\] {
1004
+ max-height: 96vh;
1005
+ }
1006
+ #editor-x .max-h-\[200px\] {
1007
+ max-height: 200px;
1008
+ }
1009
+ #editor-x .max-h-\[350px\] {
1010
+ max-height: 350px;
1011
+ }
1012
+ #editor-x .max-h-\[400px\] {
1013
+ max-height: 400px;
1014
+ }
1015
+ #editor-x .max-h-\[500px\] {
1016
+ max-height: 500px;
1017
+ }
1018
+ #editor-x .max-h-\[600px\] {
1019
+ max-height: 600px;
1020
+ }
1021
+ #editor-x .max-h-full {
1022
+ max-height: 100%;
1023
+ }
1024
+ #editor-x .max-h-screen {
1025
+ max-height: 100vh;
1026
+ }
1027
+ #editor-x .min-h-0 {
1028
+ min-height: calc(var(--spacing) * 0);
1029
+ }
1030
+ #editor-x .min-h-5 {
1031
+ min-height: calc(var(--spacing) * 5);
1032
+ }
1033
+ #editor-x .min-h-11 {
1034
+ min-height: calc(var(--spacing) * 11);
1035
+ }
1036
+ #editor-x .min-h-72 {
1037
+ min-height: calc(var(--spacing) * 72);
1038
+ }
1039
+ #editor-x .min-h-\[44px\] {
1040
+ min-height: 44px;
1041
+ }
1042
+ #editor-x .min-h-\[54px\] {
1043
+ min-height: 54px;
1044
+ }
1045
+ #editor-x .min-h-\[70vh\] {
1046
+ min-height: 70vh;
1047
+ }
1048
+ #editor-x .min-h-\[300px\] {
1049
+ min-height: 300px;
1050
+ }
1051
+ #editor-x .min-h-full {
1052
+ min-height: 100%;
1053
+ }
1054
+ #editor-x .w-2 {
1055
+ width: calc(var(--spacing) * 2);
1056
+ }
1057
+ #editor-x .w-2\.5 {
1058
+ width: calc(var(--spacing) * 2.5);
1059
+ }
1060
+ #editor-x .w-3 {
1061
+ width: calc(var(--spacing) * 3);
1062
+ }
1063
+ #editor-x .w-4 {
1064
+ width: calc(var(--spacing) * 4);
1065
+ }
1066
+ #editor-x .w-5 {
1067
+ width: calc(var(--spacing) * 5);
1068
+ }
1069
+ #editor-x .w-6 {
1070
+ width: calc(var(--spacing) * 6);
1071
+ }
1072
+ #editor-x .w-7 {
1073
+ width: calc(var(--spacing) * 7);
1074
+ }
1075
+ #editor-x .w-8 {
1076
+ width: calc(var(--spacing) * 8);
1077
+ }
1078
+ #editor-x .w-9 {
1079
+ width: calc(var(--spacing) * 9);
1080
+ }
1081
+ #editor-x .w-10 {
1082
+ width: calc(var(--spacing) * 10);
1083
+ }
1084
+ #editor-x .w-11 {
1085
+ width: calc(var(--spacing) * 11);
1086
+ }
1087
+ #editor-x .w-12 {
1088
+ width: calc(var(--spacing) * 12);
1089
+ }
1090
+ #editor-x .w-14 {
1091
+ width: calc(var(--spacing) * 14);
1092
+ }
1093
+ #editor-x .w-16 {
1094
+ width: calc(var(--spacing) * 16);
1095
+ }
1096
+ #editor-x .w-72 {
1097
+ width: calc(var(--spacing) * 72);
1098
+ }
1099
+ #editor-x .w-\[1px\] {
1100
+ width: 1px;
1101
+ }
1102
+ #editor-x .w-\[72px\] {
1103
+ width: 72px;
1104
+ }
1105
+ #editor-x .w-\[96vw\] {
1106
+ width: 96vw;
1107
+ }
1108
+ #editor-x .w-\[200px\] {
1109
+ width: 200px;
1110
+ }
1111
+ #editor-x .w-\[250px\] {
1112
+ width: 250px;
1113
+ }
1114
+ #editor-x .w-\[340px\] {
1115
+ width: 340px;
1116
+ }
1117
+ #editor-x .w-\[400px\] {
1118
+ width: 400px;
1119
+ }
1120
+ #editor-x .w-\[calc\(100\%-2px\)\] {
1121
+ width: calc(100% - 2px);
1122
+ }
1123
+ #editor-x .w-auto {
1124
+ width: auto;
1125
+ }
1126
+ #editor-x .w-fit {
1127
+ width: fit-content;
1128
+ }
1129
+ #editor-x .w-full {
1130
+ width: 100%;
1131
+ }
1132
+ #editor-x .w-min {
1133
+ width: min-content;
1134
+ }
1135
+ #editor-x .max-w-\[32px\] {
1136
+ max-width: 32px;
1137
+ }
1138
+ #editor-x .max-w-\[70\%\] {
1139
+ max-width: 70%;
1140
+ }
1141
+ #editor-x .max-w-\[75\%\] {
1142
+ max-width: 75%;
1143
+ }
1144
+ #editor-x .max-w-\[96vw\] {
1145
+ max-width: 96vw;
1146
+ }
1147
+ #editor-x .max-w-\[100dvw\] {
1148
+ max-width: 100dvw;
1149
+ }
1150
+ #editor-x .max-w-\[560px\] {
1151
+ max-width: 560px;
1152
+ }
1153
+ #editor-x .max-w-\[calc\(100vw-2rem\)\] {
1154
+ max-width: calc(100vw - 2rem);
1155
+ }
1156
+ #editor-x .max-w-full {
1157
+ max-width: 100%;
1158
+ }
1159
+ #editor-x .max-w-screen {
1160
+ max-width: 100vw;
1161
+ }
1162
+ #editor-x .max-w-sm {
1163
+ max-width: var(--container-sm);
1164
+ }
1165
+ #editor-x .min-w-0 {
1166
+ min-width: calc(var(--spacing) * 0);
1167
+ }
1168
+ #editor-x .min-w-8 {
1169
+ min-width: calc(var(--spacing) * 8);
1170
+ }
1171
+ #editor-x .min-w-9 {
1172
+ min-width: calc(var(--spacing) * 9);
1173
+ }
1174
+ #editor-x .min-w-10 {
1175
+ min-width: calc(var(--spacing) * 10);
1176
+ }
1177
+ #editor-x .min-w-11 {
1178
+ min-width: calc(var(--spacing) * 11);
1179
+ }
1180
+ #editor-x .min-w-\[1px\] {
1181
+ min-width: 1px;
1182
+ }
1183
+ #editor-x .min-w-\[8rem\] {
1184
+ min-width: 8rem;
1185
+ }
1186
+ #editor-x .min-w-\[72px\] {
1187
+ min-width: 72px;
1188
+ }
1189
+ #editor-x .min-w-\[100px\] {
1190
+ min-width: 100px;
1191
+ }
1192
+ #editor-x .min-w-\[120px\] {
1193
+ min-width: 120px;
1194
+ }
1195
+ #editor-x .min-w-\[140px\] {
1196
+ min-width: 140px;
1197
+ }
1198
+ #editor-x .min-w-\[var\(--radix-select-trigger-width\)\] {
1199
+ min-width: var(--radix-select-trigger-width);
1200
+ }
1201
+ #editor-x .min-w-full {
1202
+ min-width: 100%;
1203
+ }
1204
+ #editor-x .flex-1 {
1205
+ flex: 1;
1206
+ }
1207
+ #editor-x .flex-auto {
1208
+ flex: auto;
1209
+ }
1210
+ #editor-x .flex-initial {
1211
+ flex: 0 auto;
1212
+ }
1213
+ #editor-x .shrink {
1214
+ flex-shrink: 1;
1215
+ }
1216
+ #editor-x .shrink-0 {
1217
+ flex-shrink: 0;
1218
+ }
1219
+ #editor-x .flex-grow {
1220
+ flex-grow: 1;
1221
+ }
1222
+ #editor-x .grow {
1223
+ flex-grow: 1;
1224
+ }
1225
+ #editor-x .border-collapse {
1226
+ border-collapse: collapse;
1227
+ }
1228
+ #editor-x .origin-\(--radix-popover-content-transform-origin\) {
1229
+ transform-origin: var(--radix-popover-content-transform-origin);
1230
+ }
1231
+ #editor-x .origin-\(--radix-select-content-transform-origin\) {
1232
+ transform-origin: var(--radix-select-content-transform-origin);
1233
+ }
1234
+ #editor-x .origin-\(--radix-tooltip-content-transform-origin\) {
1235
+ transform-origin: var(--radix-tooltip-content-transform-origin);
1236
+ }
1237
+ #editor-x .-translate-x-1\/2 {
1238
+ --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
1239
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1240
+ }
1241
+ #editor-x .translate-x-\[-50\%\] {
1242
+ --tw-translate-x: -50%;
1243
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1244
+ }
1245
+ #editor-x .-translate-y-1\/2 {
1246
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
1247
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1248
+ }
1249
+ #editor-x .-translate-y-full {
1250
+ --tw-translate-y: -100%;
1251
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1252
+ }
1253
+ #editor-x .translate-y-\[-50\%\] {
1254
+ --tw-translate-y: -50%;
1255
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1256
+ }
1257
+ #editor-x .translate-y-\[calc\(-50\%_-_2px\)\] {
1258
+ --tw-translate-y: calc(-50% - 2px);
1259
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1260
+ }
1261
+ #editor-x .rotate-45 {
1262
+ rotate: 45deg;
1263
+ }
1264
+ #editor-x .rotate-90 {
1265
+ rotate: 90deg;
1266
+ }
1267
+ #editor-x .transform {
1268
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
1269
+ }
1270
+ #editor-x .animate-pulse {
1271
+ animation: var(--animate-pulse);
1272
+ }
1273
+ #editor-x .animate-spin {
1274
+ animation: var(--animate-spin);
1275
+ }
1276
+ #editor-x .cursor-crosshair {
1277
+ cursor: crosshair;
1278
+ }
1279
+ #editor-x .cursor-default {
1280
+ cursor: default;
1281
+ }
1282
+ #editor-x .cursor-ew-resize {
1283
+ cursor: ew-resize;
1284
+ }
1285
+ #editor-x .cursor-grab {
1286
+ cursor: grab;
1287
+ }
1288
+ #editor-x .cursor-nesw-resize {
1289
+ cursor: nesw-resize;
1290
+ }
1291
+ #editor-x .cursor-ns-resize {
1292
+ cursor: ns-resize;
1293
+ }
1294
+ #editor-x .cursor-nwse-resize {
1295
+ cursor: nwse-resize;
1296
+ }
1297
+ #editor-x .cursor-pointer {
1298
+ cursor: pointer;
1299
+ }
1300
+ #editor-x .cursor-text {
1301
+ cursor: text;
1302
+ }
1303
+ #editor-x .touch-none {
1304
+ touch-action: none;
1305
+ }
1306
+ #editor-x .resize {
1307
+ resize: both;
1308
+ }
1309
+ #editor-x .resize-none {
1310
+ resize: none;
1311
+ }
1312
+ #editor-x .scroll-m-20 {
1313
+ scroll-margin: calc(var(--spacing) * 20);
1314
+ }
1315
+ #editor-x .scroll-my-1 {
1316
+ scroll-margin-block: calc(var(--spacing) * 1);
1317
+ }
1318
+ #editor-x .scroll-py-1 {
1319
+ scroll-padding-block: calc(var(--spacing) * 1);
1320
+ }
1321
+ #editor-x .list-outside {
1322
+ list-style-position: outside;
1323
+ }
1324
+ #editor-x .list-\[lower-alpha\] {
1325
+ list-style-type: lower-alpha;
1326
+ }
1327
+ #editor-x .list-\[lower-roman\] {
1328
+ list-style-type: lower-roman;
1329
+ }
1330
+ #editor-x .list-\[upper-alpha\] {
1331
+ list-style-type: upper-alpha;
1332
+ }
1333
+ #editor-x .list-\[upper-roman\] {
1334
+ list-style-type: upper-roman;
1335
+ }
1336
+ #editor-x .list-decimal {
1337
+ list-style-type: decimal;
1338
+ }
1339
+ #editor-x .list-disc {
1340
+ list-style-type: disc;
1341
+ }
1342
+ #editor-x .list-none {
1343
+ list-style-type: none;
1344
+ }
1345
+ #editor-x .grid-cols-1 {
1346
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1347
+ }
1348
+ #editor-x .grid-cols-4 {
1349
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1350
+ }
1351
+ #editor-x .flex-col {
1352
+ flex-direction: column;
1353
+ }
1354
+ #editor-x .flex-row {
1355
+ flex-direction: row;
1356
+ }
1357
+ #editor-x .flex-nowrap {
1358
+ flex-wrap: nowrap;
1359
+ }
1360
+ #editor-x .flex-wrap {
1361
+ flex-wrap: wrap;
1362
+ }
1363
+ #editor-x .flex-wrap-reverse {
1364
+ flex-wrap: wrap-reverse;
1365
+ }
1366
+ #editor-x .items-baseline {
1367
+ align-items: baseline;
1368
+ }
1369
+ #editor-x .items-center {
1370
+ align-items: center;
1371
+ }
1372
+ #editor-x .items-end {
1373
+ align-items: flex-end;
1374
+ }
1375
+ #editor-x .items-start {
1376
+ align-items: flex-start;
1377
+ }
1378
+ #editor-x .items-stretch {
1379
+ align-items: stretch;
1380
+ }
1381
+ #editor-x .justify-around {
1382
+ justify-content: space-around;
1383
+ }
1384
+ #editor-x .justify-between {
1385
+ justify-content: space-between;
1386
+ }
1387
+ #editor-x .justify-center {
1388
+ justify-content: center;
1389
+ }
1390
+ #editor-x .justify-end {
1391
+ justify-content: flex-end;
1392
+ }
1393
+ #editor-x .justify-evenly {
1394
+ justify-content: space-evenly;
1395
+ }
1396
+ #editor-x .justify-normal {
1397
+ justify-content: normal;
1398
+ }
1399
+ #editor-x .justify-start {
1400
+ justify-content: flex-start;
1401
+ }
1402
+ #editor-x .gap-0 {
1403
+ gap: calc(var(--spacing) * 0);
1404
+ }
1405
+ #editor-x .gap-0\.5 {
1406
+ gap: calc(var(--spacing) * 0.5);
1407
+ }
1408
+ #editor-x .gap-1 {
1409
+ gap: calc(var(--spacing) * 1);
1410
+ }
1411
+ #editor-x .gap-1\.5 {
1412
+ gap: calc(var(--spacing) * 1.5);
1413
+ }
1414
+ #editor-x .gap-2 {
1415
+ gap: calc(var(--spacing) * 2);
1416
+ }
1417
+ #editor-x .gap-2\.5 {
1418
+ gap: calc(var(--spacing) * 2.5);
1419
+ }
1420
+ #editor-x .gap-3 {
1421
+ gap: calc(var(--spacing) * 3);
1422
+ }
1423
+ #editor-x .gap-4 {
1424
+ gap: calc(var(--spacing) * 4);
1425
+ }
1426
+ #editor-x .gap-5 {
1427
+ gap: calc(var(--spacing) * 5);
1428
+ }
1429
+ #editor-x .gap-6 {
1430
+ gap: calc(var(--spacing) * 6);
1431
+ }
1432
+ #editor-x .gap-8 {
1433
+ gap: calc(var(--spacing) * 8);
1434
+ }
1435
+ #editor-x .gap-12 {
1436
+ gap: calc(var(--spacing) * 12);
1437
+ }
1438
+ #editor-x .gap-16 {
1439
+ gap: calc(var(--spacing) * 16);
1440
+ }
1441
+ #editor-x .gap-\[--spacing\(var\(--gap\)\)\] {
1442
+ gap: calc(var(--spacing) * var(--gap));
1443
+ }
1444
+ #editor-x .space-y-1 {
1445
+ #editor-x :where(& > :not(:last-child)) {
1446
+ --tw-space-y-reverse: 0;
1447
+ margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
1448
+ margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
1449
+ }
1450
+ }
1451
+ #editor-x .space-y-4 {
1452
+ #editor-x :where(& > :not(:last-child)) {
1453
+ --tw-space-y-reverse: 0;
1454
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
1455
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
1456
+ }
1457
+ }
1458
+ #editor-x .space-x-2 {
1459
+ #editor-x :where(& > :not(:last-child)) {
1460
+ --tw-space-x-reverse: 0;
1461
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
1462
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
1463
+ }
1464
+ }
1465
+ #editor-x .self-stretch {
1466
+ align-self: stretch;
1467
+ }
1468
+ #editor-x .truncate {
1469
+ overflow: hidden;
1470
+ text-overflow: ellipsis;
1471
+ white-space: nowrap;
1472
+ }
1473
+ #editor-x .overflow-auto {
1474
+ overflow: auto;
1475
+ }
1476
+ #editor-x .overflow-hidden {
1477
+ overflow: hidden;
1478
+ }
1479
+ #editor-x .overflow-scroll {
1480
+ overflow: scroll;
1481
+ }
1482
+ #editor-x .overflow-x-auto {
1483
+ overflow-x: auto;
1484
+ }
1485
+ #editor-x .overflow-x-hidden {
1486
+ overflow-x: hidden;
1487
+ }
1488
+ #editor-x .overflow-y-auto {
1489
+ overflow-y: auto;
1490
+ }
1491
+ #editor-x .rounded {
1492
+ border-radius: var(--radius, 0.5rem);
1493
+ }
1494
+ #editor-x .rounded-2xl {
1495
+ border-radius: var(--radius-2xl);
1496
+ }
1497
+ #editor-x .rounded-\[2px\] {
1498
+ border-radius: 2px;
1499
+ }
1500
+ #editor-x .rounded-\[inherit\] {
1501
+ border-radius: inherit;
1502
+ }
1503
+ #editor-x .rounded-full {
1504
+ border-radius: calc(infinity * 1px);
1505
+ }
1506
+ #editor-x .rounded-lg {
1507
+ border-radius: var(--radius-lg);
1508
+ }
1509
+ #editor-x .rounded-md {
1510
+ border-radius: var(--radius-md);
1511
+ }
1512
+ #editor-x .rounded-none {
1513
+ border-radius: 0;
1514
+ }
1515
+ #editor-x .rounded-sm {
1516
+ border-radius: var(--radius-sm);
1517
+ }
1518
+ #editor-x .rounded-xl {
1519
+ border-radius: var(--radius-xl);
1520
+ }
1521
+ #editor-x .rounded-xs {
1522
+ border-radius: var(--radius-xs);
1523
+ }
1524
+ #editor-x .rounded-s-none {
1525
+ border-start-start-radius: 0;
1526
+ border-end-start-radius: 0;
1527
+ }
1528
+ #editor-x .rounded-e-none {
1529
+ border-start-end-radius: 0;
1530
+ border-end-end-radius: 0;
1531
+ }
1532
+ #editor-x .rounded-b-xl {
1533
+ border-bottom-right-radius: var(--radius-xl);
1534
+ border-bottom-left-radius: var(--radius-xl);
1535
+ }
1536
+ #editor-x .border {
1537
+ border-style: var(--tw-border-style);
1538
+ border-width: 1px;
1539
+ }
1540
+ #editor-x .border-0 {
1541
+ border-style: var(--tw-border-style);
1542
+ border-width: 0px;
1543
+ }
1544
+ #editor-x .border-1 {
1545
+ border-style: var(--tw-border-style);
1546
+ border-width: 1px;
1547
+ }
1548
+ #editor-x .border-2 {
1549
+ border-style: var(--tw-border-style);
1550
+ border-width: 2px;
1551
+ }
1552
+ #editor-x .border-x {
1553
+ border-inline-style: var(--tw-border-style);
1554
+ border-inline-width: 1px;
1555
+ }
1556
+ #editor-x .border-y {
1557
+ border-block-style: var(--tw-border-style);
1558
+ border-block-width: 1px;
1559
+ }
1560
+ #editor-x .border-t {
1561
+ border-top-style: var(--tw-border-style);
1562
+ border-top-width: 1px;
1563
+ }
1564
+ #editor-x .border-r {
1565
+ border-right-style: var(--tw-border-style);
1566
+ border-right-width: 1px;
1567
+ }
1568
+ #editor-x .border-b {
1569
+ border-bottom-style: var(--tw-border-style);
1570
+ border-bottom-width: 1px;
1571
+ }
1572
+ #editor-x .border-l {
1573
+ border-left-style: var(--tw-border-style);
1574
+ border-left-width: 1px;
1575
+ }
1576
+ #editor-x .border-l-0 {
1577
+ border-left-style: var(--tw-border-style);
1578
+ border-left-width: 0px;
1579
+ }
1580
+ #editor-x .border-l-2 {
1581
+ border-left-style: var(--tw-border-style);
1582
+ border-left-width: 2px;
1583
+ }
1584
+ #editor-x .border-dashed {
1585
+ --tw-border-style: dashed;
1586
+ border-style: dashed;
1587
+ }
1588
+ #editor-x .border-none {
1589
+ --tw-border-style: none;
1590
+ border-style: none;
1591
+ }
1592
+ #editor-x .border-solid {
1593
+ --tw-border-style: solid;
1594
+ border-style: solid;
1595
+ }
1596
+ #editor-x .border-background {
1597
+ border-color: var(--background);
1598
+ }
1599
+ #editor-x .border-border {
1600
+ border-color: var(--border);
1601
+ }
1602
+ #editor-x .border-border\/50 {
1603
+ border-color: var(--border);
1604
+ @supports (color: color-mix(in lab, red, red)) {
1605
+ border-color: color-mix(in oklab, var(--border) 50%, transparent);
1606
+ }
1607
+ }
1608
+ #editor-x .border-destructive {
1609
+ border-color: var(--destructive);
1610
+ }
1611
+ #editor-x .border-input {
1612
+ border-color: var(--input);
1613
+ }
1614
+ #editor-x .border-primary {
1615
+ border-color: var(--primary);
1616
+ }
1617
+ #editor-x .border-primary\/50 {
1618
+ border-color: var(--primary);
1619
+ @supports (color: color-mix(in lab, red, red)) {
1620
+ border-color: color-mix(in oklab, var(--primary) 50%, transparent);
1621
+ }
1622
+ }
1623
+ #editor-x .border-transparent {
1624
+ border-color: transparent;
1625
+ }
1626
+ #editor-x .border-white {
1627
+ border-color: var(--color-white);
1628
+ }
1629
+ #editor-x .border-t-transparent {
1630
+ border-top-color: transparent;
1631
+ }
1632
+ #editor-x .border-l-transparent {
1633
+ border-left-color: transparent;
1634
+ }
1635
+ #editor-x .bg-accent {
1636
+ background-color: var(--accent);
1637
+ }
1638
+ #editor-x .bg-accent\/10 {
1639
+ background-color: var(--accent);
1640
+ @supports (color: color-mix(in lab, red, red)) {
1641
+ background-color: color-mix(in oklab, var(--accent) 10%, transparent);
1642
+ }
1643
+ }
1644
+ #editor-x .bg-background {
1645
+ background-color: var(--background);
1646
+ }
1647
+ #editor-x .bg-background\/80 {
1648
+ background-color: var(--background);
1649
+ @supports (color: color-mix(in lab, red, red)) {
1650
+ background-color: color-mix(in oklab, var(--background) 80%, transparent);
1651
+ }
1652
+ }
1653
+ #editor-x .bg-background\/95 {
1654
+ background-color: var(--background);
1655
+ @supports (color: color-mix(in lab, red, red)) {
1656
+ background-color: color-mix(in oklab, var(--background) 95%, transparent);
1657
+ }
1658
+ }
1659
+ #editor-x .bg-black\/20 {
1660
+ background-color: color-mix(in srgb, #000 20%, transparent);
1661
+ @supports (color: color-mix(in lab, red, red)) {
1662
+ background-color: color-mix(in oklab, var(--color-black) 20%, transparent);
1663
+ }
1664
+ }
1665
+ #editor-x .bg-black\/60 {
1666
+ background-color: color-mix(in srgb, #000 60%, transparent);
1667
+ @supports (color: color-mix(in lab, red, red)) {
1668
+ background-color: color-mix(in oklab, var(--color-black) 60%, transparent);
1669
+ }
1670
+ }
1671
+ #editor-x .bg-black\/80 {
1672
+ background-color: color-mix(in srgb, #000 80%, transparent);
1673
+ @supports (color: color-mix(in lab, red, red)) {
1674
+ background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
1675
+ }
1676
+ }
1677
+ #editor-x .bg-blue-100 {
1678
+ background-color: var(--color-blue-100);
1679
+ }
1680
+ #editor-x .bg-border {
1681
+ background-color: var(--border);
1682
+ }
1683
+ #editor-x .bg-card {
1684
+ background-color: var(--card);
1685
+ }
1686
+ #editor-x .bg-destructive {
1687
+ background-color: var(--destructive);
1688
+ }
1689
+ #editor-x .bg-destructive\/10 {
1690
+ background-color: var(--destructive);
1691
+ @supports (color: color-mix(in lab, red, red)) {
1692
+ background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
1693
+ }
1694
+ }
1695
+ #editor-x .bg-destructive\/50 {
1696
+ background-color: var(--destructive);
1697
+ @supports (color: color-mix(in lab, red, red)) {
1698
+ background-color: color-mix(in oklab, var(--destructive) 50%, transparent);
1699
+ }
1700
+ }
1701
+ #editor-x .bg-foreground {
1702
+ background-color: var(--foreground);
1703
+ }
1704
+ #editor-x .bg-gray-100 {
1705
+ background-color: var(--color-gray-100);
1706
+ }
1707
+ #editor-x .bg-green-100 {
1708
+ background-color: var(--color-green-100);
1709
+ }
1710
+ #editor-x .bg-green-500 {
1711
+ background-color: var(--color-green-500);
1712
+ }
1713
+ #editor-x .bg-input {
1714
+ background-color: var(--input);
1715
+ }
1716
+ #editor-x .bg-muted {
1717
+ background-color: var(--muted);
1718
+ }
1719
+ #editor-x .bg-muted\/20 {
1720
+ background-color: var(--muted);
1721
+ @supports (color: color-mix(in lab, red, red)) {
1722
+ background-color: color-mix(in oklab, var(--muted) 20%, transparent);
1723
+ }
1724
+ }
1725
+ #editor-x .bg-muted\/30 {
1726
+ background-color: var(--muted);
1727
+ @supports (color: color-mix(in lab, red, red)) {
1728
+ background-color: color-mix(in oklab, var(--muted) 30%, transparent);
1729
+ }
1730
+ }
1731
+ #editor-x .bg-muted\/40 {
1732
+ background-color: var(--muted);
1733
+ @supports (color: color-mix(in lab, red, red)) {
1734
+ background-color: color-mix(in oklab, var(--muted) 40%, transparent);
1735
+ }
1736
+ }
1737
+ #editor-x .bg-muted\/50 {
1738
+ background-color: var(--muted);
1739
+ @supports (color: color-mix(in lab, red, red)) {
1740
+ background-color: color-mix(in oklab, var(--muted) 50%, transparent);
1741
+ }
1742
+ }
1743
+ #editor-x .bg-muted\/80 {
1744
+ background-color: var(--muted);
1745
+ @supports (color: color-mix(in lab, red, red)) {
1746
+ background-color: color-mix(in oklab, var(--muted) 80%, transparent);
1747
+ }
1748
+ }
1749
+ #editor-x .bg-popover {
1750
+ background-color: var(--popover);
1751
+ }
1752
+ #editor-x .bg-primary {
1753
+ background-color: var(--primary);
1754
+ }
1755
+ #editor-x .bg-primary\/10 {
1756
+ background-color: var(--primary);
1757
+ @supports (color: color-mix(in lab, red, red)) {
1758
+ background-color: color-mix(in oklab, var(--primary) 10%, transparent);
1759
+ }
1760
+ }
1761
+ #editor-x .bg-primary\/20 {
1762
+ background-color: var(--primary);
1763
+ @supports (color: color-mix(in lab, red, red)) {
1764
+ background-color: color-mix(in oklab, var(--primary) 20%, transparent);
1765
+ }
1766
+ }
1767
+ #editor-x .bg-secondary {
1768
+ background-color: var(--secondary);
1769
+ }
1770
+ #editor-x .bg-secondary-foreground {
1771
+ background-color: var(--secondary-foreground);
1772
+ }
1773
+ #editor-x .bg-secondary\/10 {
1774
+ background-color: var(--secondary);
1775
+ @supports (color: color-mix(in lab, red, red)) {
1776
+ background-color: color-mix(in oklab, var(--secondary) 10%, transparent);
1777
+ }
1778
+ }
1779
+ #editor-x .bg-transparent {
1780
+ background-color: transparent;
1781
+ }
1782
+ #editor-x .bg-white {
1783
+ background-color: var(--color-white);
1784
+ }
1785
+ #editor-x .bg-white\/10 {
1786
+ background-color: color-mix(in srgb, #fff 10%, transparent);
1787
+ @supports (color: color-mix(in lab, red, red)) {
1788
+ background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
1789
+ }
1790
+ }
1791
+ #editor-x .bg-white\/90 {
1792
+ background-color: color-mix(in srgb, #fff 90%, transparent);
1793
+ @supports (color: color-mix(in lab, red, red)) {
1794
+ background-color: color-mix(in oklab, var(--color-white) 90%, transparent);
1795
+ }
1796
+ }
1797
+ #editor-x .bg-gradient-to-r {
1798
+ --tw-gradient-position: to right in oklab;
1799
+ background-image: linear-gradient(var(--tw-gradient-stops));
1800
+ }
1801
+ #editor-x .bg-\[linear-gradient\(to_right\,\#ff0000_0\%\,\#ffff00_16\.66\%\,\#00ff00_33\.33\%\,\#00ffff_50\%\,\#0000ff_66\.66\%\,\#ff00ff_83\.33\%\,\#ff0000_100\%\)\] {
1802
+ background-image: linear-gradient(to right,#ff0000 0%,#ffff00 16.66%,#00ff00 33.33%,#00ffff 50%,#0000ff 66.66%,#ff00ff 83.33%,#ff0000 100%);
1803
+ }
1804
+ #editor-x .bg-none {
1805
+ background-image: none;
1806
+ }
1807
+ #editor-x .from-transparent {
1808
+ --tw-gradient-from: transparent;
1809
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1810
+ }
1811
+ #editor-x .via-border {
1812
+ --tw-gradient-via: var(--border);
1813
+ --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
1814
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
1815
+ }
1816
+ #editor-x .via-white\/20 {
1817
+ --tw-gradient-via: color-mix(in srgb, #fff 20%, transparent);
1818
+ @supports (color: color-mix(in lab, red, red)) {
1819
+ --tw-gradient-via: color-mix(in oklab, var(--color-white) 20%, transparent);
1820
+ }
1821
+ --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
1822
+ --tw-gradient-stops: var(--tw-gradient-via-stops);
1823
+ }
1824
+ #editor-x .to-transparent {
1825
+ --tw-gradient-to: transparent;
1826
+ --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1827
+ }
1828
+ #editor-x .fill-foreground {
1829
+ fill: var(--foreground);
1830
+ }
1831
+ #editor-x .object-contain {
1832
+ object-fit: contain;
1833
+ }
1834
+ #editor-x .object-cover {
1835
+ object-fit: cover;
1836
+ }
1837
+ #editor-x .object-fill {
1838
+ object-fit: fill;
1839
+ }
1840
+ #editor-x .p-0 {
1841
+ padding: calc(var(--spacing) * 0);
1842
+ }
1843
+ #editor-x .p-0\.5 {
1844
+ padding: calc(var(--spacing) * 0.5);
1845
+ }
1846
+ #editor-x .p-1 {
1847
+ padding: calc(var(--spacing) * 1);
1848
+ }
1849
+ #editor-x .p-2 {
1850
+ padding: calc(var(--spacing) * 2);
1851
+ }
1852
+ #editor-x .p-4 {
1853
+ padding: calc(var(--spacing) * 4);
1854
+ }
1855
+ #editor-x .p-6 {
1856
+ padding: calc(var(--spacing) * 6);
1857
+ }
1858
+ #editor-x .p-8 {
1859
+ padding: calc(var(--spacing) * 8);
1860
+ }
1861
+ #editor-x .p-px {
1862
+ padding: 1px;
1863
+ }
1864
+ #editor-x .px-1 {
1865
+ padding-inline: calc(var(--spacing) * 1);
1866
+ }
1867
+ #editor-x .px-1\.5 {
1868
+ padding-inline: calc(var(--spacing) * 1.5);
1869
+ }
1870
+ #editor-x .px-2 {
1871
+ padding-inline: calc(var(--spacing) * 2);
1872
+ }
1873
+ #editor-x .px-2\.5 {
1874
+ padding-inline: calc(var(--spacing) * 2.5);
1875
+ }
1876
+ #editor-x .px-3 {
1877
+ padding-inline: calc(var(--spacing) * 3);
1878
+ }
1879
+ #editor-x .px-4 {
1880
+ padding-inline: calc(var(--spacing) * 4);
1881
+ }
1882
+ #editor-x .px-6 {
1883
+ padding-inline: calc(var(--spacing) * 6);
1884
+ }
1885
+ #editor-x .px-8 {
1886
+ padding-inline: calc(var(--spacing) * 8);
1887
+ }
1888
+ #editor-x .px-\[1px\] {
1889
+ padding-inline: 1px;
1890
+ }
1891
+ #editor-x .py-0\.5 {
1892
+ padding-block: calc(var(--spacing) * 0.5);
1893
+ }
1894
+ #editor-x .py-1 {
1895
+ padding-block: calc(var(--spacing) * 1);
1896
+ }
1897
+ #editor-x .py-1\.5 {
1898
+ padding-block: calc(var(--spacing) * 1.5);
1899
+ }
1900
+ #editor-x .py-2 {
1901
+ padding-block: calc(var(--spacing) * 2);
1902
+ }
1903
+ #editor-x .py-2\.5 {
1904
+ padding-block: calc(var(--spacing) * 2.5);
1905
+ }
1906
+ #editor-x .py-3 {
1907
+ padding-block: calc(var(--spacing) * 3);
1908
+ }
1909
+ #editor-x .py-4 {
1910
+ padding-block: calc(var(--spacing) * 4);
1911
+ }
1912
+ #editor-x .py-6 {
1913
+ padding-block: calc(var(--spacing) * 6);
1914
+ }
1915
+ #editor-x .py-8 {
1916
+ padding-block: calc(var(--spacing) * 8);
1917
+ }
1918
+ #editor-x .py-\[18px\] {
1919
+ padding-block: 18px;
1920
+ }
1921
+ #editor-x .pt-0 {
1922
+ padding-top: calc(var(--spacing) * 0);
1923
+ }
1924
+ #editor-x .pt-4 {
1925
+ padding-top: calc(var(--spacing) * 4);
1926
+ }
1927
+ #editor-x .pt-5 {
1928
+ padding-top: calc(var(--spacing) * 5);
1929
+ }
1930
+ #editor-x .pt-6 {
1931
+ padding-top: calc(var(--spacing) * 6);
1932
+ }
1933
+ #editor-x .pr-8 {
1934
+ padding-right: calc(var(--spacing) * 8);
1935
+ }
1936
+ #editor-x .pr-10 {
1937
+ padding-right: calc(var(--spacing) * 10);
1938
+ }
1939
+ #editor-x .pb-2 {
1940
+ padding-bottom: calc(var(--spacing) * 2);
1941
+ }
1942
+ #editor-x .pb-3 {
1943
+ padding-bottom: calc(var(--spacing) * 3);
1944
+ }
1945
+ #editor-x .pb-4 {
1946
+ padding-bottom: calc(var(--spacing) * 4);
1947
+ }
1948
+ #editor-x .pb-6 {
1949
+ padding-bottom: calc(var(--spacing) * 6);
1950
+ }
1951
+ #editor-x .pl-2 {
1952
+ padding-left: calc(var(--spacing) * 2);
1953
+ }
1954
+ #editor-x .pl-6 {
1955
+ padding-left: calc(var(--spacing) * 6);
1956
+ }
1957
+ #editor-x .pl-9 {
1958
+ padding-left: calc(var(--spacing) * 9);
1959
+ }
1960
+ #editor-x .text-center {
1961
+ text-align: center;
1962
+ }
1963
+ #editor-x .text-left {
1964
+ text-align: left;
1965
+ }
1966
+ #editor-x .text-right {
1967
+ text-align: right;
1968
+ }
1969
+ #editor-x .align-top {
1970
+ vertical-align: top;
1971
+ }
1972
+ #editor-x .font-mono {
1973
+ font-family: var(--font-mono);
1974
+ }
1975
+ #editor-x .text-2xl {
1976
+ font-size: var(--text-2xl);
1977
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
1978
+ }
1979
+ #editor-x .text-3xl {
1980
+ font-size: var(--text-3xl);
1981
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
1982
+ }
1983
+ #editor-x .text-4xl {
1984
+ font-size: var(--text-4xl);
1985
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
1986
+ }
1987
+ #editor-x .text-5xl {
1988
+ font-size: var(--text-5xl);
1989
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
1990
+ }
1991
+ #editor-x .text-6xl {
1992
+ font-size: var(--text-6xl);
1993
+ line-height: var(--tw-leading, var(--text-6xl--line-height));
1994
+ }
1995
+ #editor-x .text-base {
1996
+ font-size: var(--text-base);
1997
+ line-height: var(--tw-leading, var(--text-base--line-height));
1998
+ }
1999
+ #editor-x .text-lg {
2000
+ font-size: var(--text-lg);
2001
+ line-height: var(--tw-leading, var(--text-lg--line-height));
2002
+ }
2003
+ #editor-x .text-sm {
2004
+ font-size: var(--text-sm);
2005
+ line-height: var(--tw-leading, var(--text-sm--line-height));
2006
+ }
2007
+ #editor-x .text-xl {
2008
+ font-size: var(--text-xl);
2009
+ line-height: var(--tw-leading, var(--text-xl--line-height));
2010
+ }
2011
+ #editor-x .text-xs {
2012
+ font-size: var(--text-xs);
2013
+ line-height: var(--tw-leading, var(--text-xs--line-height));
2014
+ }
2015
+ #editor-x .leading-7 {
2016
+ --tw-leading: calc(var(--spacing) * 7);
2017
+ line-height: calc(var(--spacing) * 7);
2018
+ }
2019
+ #editor-x .leading-loose {
2020
+ --tw-leading: var(--leading-loose);
2021
+ line-height: var(--leading-loose);
2022
+ }
2023
+ #editor-x .leading-none {
2024
+ --tw-leading: 1;
2025
+ line-height: 1;
2026
+ }
2027
+ #editor-x .leading-normal {
2028
+ --tw-leading: var(--leading-normal);
2029
+ line-height: var(--leading-normal);
2030
+ }
2031
+ #editor-x .leading-relaxed {
2032
+ --tw-leading: var(--leading-relaxed);
2033
+ line-height: var(--leading-relaxed);
2034
+ }
2035
+ #editor-x .leading-tight {
2036
+ --tw-leading: var(--leading-tight);
2037
+ line-height: var(--leading-tight);
2038
+ }
2039
+ #editor-x .font-bold {
2040
+ --tw-font-weight: var(--font-weight-bold);
2041
+ font-weight: var(--font-weight-bold);
2042
+ }
2043
+ #editor-x .font-extrabold {
2044
+ --tw-font-weight: var(--font-weight-extrabold);
2045
+ font-weight: var(--font-weight-extrabold);
2046
+ }
2047
+ #editor-x .font-medium {
2048
+ --tw-font-weight: var(--font-weight-medium);
2049
+ font-weight: var(--font-weight-medium);
2050
+ }
2051
+ #editor-x .font-normal {
2052
+ --tw-font-weight: var(--font-weight-normal);
2053
+ font-weight: var(--font-weight-normal);
2054
+ }
2055
+ #editor-x .font-semibold {
2056
+ --tw-font-weight: var(--font-weight-semibold);
2057
+ font-weight: var(--font-weight-semibold);
2058
+ }
2059
+ #editor-x .tracking-tight {
2060
+ --tw-tracking: var(--tracking-tight);
2061
+ letter-spacing: var(--tracking-tight);
2062
+ }
2063
+ #editor-x .tracking-widest {
2064
+ --tw-tracking: var(--tracking-widest);
2065
+ letter-spacing: var(--tracking-widest);
2066
+ }
2067
+ #editor-x .text-balance {
2068
+ text-wrap: balance;
2069
+ }
2070
+ #editor-x .text-ellipsis {
2071
+ text-overflow: ellipsis;
2072
+ }
2073
+ #editor-x .whitespace-nowrap {
2074
+ white-space: nowrap;
2075
+ }
2076
+ #editor-x .whitespace-pre-wrap {
2077
+ white-space: pre-wrap;
2078
+ }
2079
+ #editor-x .text-accent-foreground {
2080
+ color: var(--accent-foreground);
2081
+ }
2082
+ #editor-x .text-background {
2083
+ color: var(--background);
2084
+ }
2085
+ #editor-x .text-blue-600 {
2086
+ color: var(--color-blue-600);
2087
+ }
2088
+ #editor-x .text-destructive {
2089
+ color: var(--destructive);
2090
+ }
2091
+ #editor-x .text-destructive-foreground {
2092
+ color: var(--destructive-foreground);
2093
+ }
2094
+ #editor-x .text-foreground {
2095
+ color: var(--foreground);
2096
+ }
2097
+ #editor-x .text-foreground\/50 {
2098
+ color: var(--foreground);
2099
+ @supports (color: color-mix(in lab, red, red)) {
2100
+ color: color-mix(in oklab, var(--foreground) 50%, transparent);
2101
+ }
2102
+ }
2103
+ #editor-x .text-foreground\/70 {
2104
+ color: var(--foreground);
2105
+ @supports (color: color-mix(in lab, red, red)) {
2106
+ color: color-mix(in oklab, var(--foreground) 70%, transparent);
2107
+ }
2108
+ }
2109
+ #editor-x .text-gray-800 {
2110
+ color: var(--color-gray-800);
2111
+ }
2112
+ #editor-x .text-green-800 {
2113
+ color: var(--color-green-800);
2114
+ }
2115
+ #editor-x .text-muted-foreground {
2116
+ color: var(--muted-foreground);
2117
+ }
2118
+ #editor-x .text-popover-foreground {
2119
+ color: var(--popover-foreground);
2120
+ }
2121
+ #editor-x .text-primary {
2122
+ color: var(--primary);
2123
+ }
2124
+ #editor-x .text-primary-foreground {
2125
+ color: var(--primary-foreground);
2126
+ }
2127
+ #editor-x .text-purple-900 {
2128
+ color: var(--color-purple-900);
2129
+ }
2130
+ #editor-x .text-secondary {
2131
+ color: var(--secondary);
2132
+ }
2133
+ #editor-x .text-secondary-foreground {
2134
+ color: var(--secondary-foreground);
2135
+ }
2136
+ #editor-x .text-white\/80 {
2137
+ color: color-mix(in srgb, #fff 80%, transparent);
2138
+ @supports (color: color-mix(in lab, red, red)) {
2139
+ color: color-mix(in oklab, var(--color-white) 80%, transparent);
2140
+ }
2141
+ }
2142
+ #editor-x .lowercase {
2143
+ text-transform: lowercase;
2144
+ }
2145
+ #editor-x .uppercase {
2146
+ text-transform: uppercase;
2147
+ }
2148
+ #editor-x .italic {
2149
+ font-style: italic;
2150
+ }
2151
+ #editor-x .tabular-nums {
2152
+ --tw-numeric-spacing: tabular-nums;
2153
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
2154
+ }
2155
+ #editor-x .line-through {
2156
+ text-decoration-line: line-through;
2157
+ }
2158
+ #editor-x .underline {
2159
+ text-decoration-line: underline;
2160
+ }
2161
+ #editor-x .underline-offset-2 {
2162
+ text-underline-offset: 2px;
2163
+ }
2164
+ #editor-x .underline-offset-4 {
2165
+ text-underline-offset: 4px;
2166
+ }
2167
+ #editor-x .caret-primary {
2168
+ caret-color: var(--primary);
2169
+ }
2170
+ #editor-x .opacity-0 {
2171
+ opacity: 0%;
2172
+ }
2173
+ #editor-x .opacity-30 {
2174
+ opacity: 30%;
2175
+ }
2176
+ #editor-x .opacity-50 {
2177
+ opacity: 50%;
2178
+ }
2179
+ #editor-x .opacity-60 {
2180
+ opacity: 60%;
2181
+ }
2182
+ #editor-x .opacity-70 {
2183
+ opacity: 70%;
2184
+ }
2185
+ #editor-x .opacity-80 {
2186
+ opacity: 80%;
2187
+ }
2188
+ #editor-x .shadow {
2189
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2190
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2191
+ }
2192
+ #editor-x .shadow-2xl {
2193
+ --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
2194
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2195
+ }
2196
+ #editor-x .shadow-inner {
2197
+ --tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
2198
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2199
+ }
2200
+ #editor-x .shadow-lg {
2201
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2202
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2203
+ }
2204
+ #editor-x .shadow-md {
2205
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2206
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2207
+ }
2208
+ #editor-x .shadow-sm {
2209
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
2210
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2211
+ }
2212
+ #editor-x .shadow-xs {
2213
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
2214
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2215
+ }
2216
+ #editor-x .ring {
2217
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2218
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2219
+ }
2220
+ #editor-x .ring-2 {
2221
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2222
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2223
+ }
2224
+ #editor-x .shadow-black\/5 {
2225
+ --tw-shadow-color: color-mix(in srgb, #000 5%, transparent);
2226
+ @supports (color: color-mix(in lab, red, red)) {
2227
+ --tw-shadow-color: color-mix(in oklab, color-mix(in oklab, var(--color-black) 5%, transparent) var(--tw-shadow-alpha), transparent);
2228
+ }
2229
+ }
2230
+ #editor-x .ring-primary {
2231
+ --tw-ring-color: var(--primary);
2232
+ }
2233
+ #editor-x .ring-offset-1 {
2234
+ --tw-ring-offset-width: 1px;
2235
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2236
+ }
2237
+ #editor-x .ring-offset-2 {
2238
+ --tw-ring-offset-width: 2px;
2239
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2240
+ }
2241
+ #editor-x .ring-offset-background {
2242
+ --tw-ring-offset-color: var(--background);
2243
+ }
2244
+ #editor-x .outline-hidden {
2245
+ --tw-outline-style: none;
2246
+ outline-style: none;
2247
+ @media (forced-colors: active) {
2248
+ outline: 2px solid transparent;
2249
+ outline-offset: 2px;
2250
+ }
2251
+ }
2252
+ #editor-x .outline {
2253
+ outline-style: var(--tw-outline-style);
2254
+ outline-width: 1px;
2255
+ }
2256
+ #editor-x .outline-offset-2 {
2257
+ outline-offset: 2px;
2258
+ }
2259
+ #editor-x .blur {
2260
+ --tw-blur: blur(8px);
2261
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
2262
+ }
2263
+ #editor-x .blur-2xl {
2264
+ --tw-blur: blur(var(--blur-2xl));
2265
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
2266
+ }
2267
+ #editor-x .blur-3xl {
2268
+ --tw-blur: blur(var(--blur-3xl));
2269
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
2270
+ }
2271
+ #editor-x .blur-xl {
2272
+ --tw-blur: blur(var(--blur-xl));
2273
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
2274
+ }
2275
+ #editor-x .backdrop-blur-sm {
2276
+ --tw-backdrop-blur: blur(var(--blur-sm));
2277
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
2278
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
2279
+ }
2280
+ #editor-x .transition {
2281
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
2282
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2283
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2284
+ }
2285
+ #editor-x .transition-\[color\,box-shadow\] {
2286
+ transition-property: color,box-shadow;
2287
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2288
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2289
+ }
2290
+ #editor-x .transition-all {
2291
+ transition-property: all;
2292
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2293
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2294
+ }
2295
+ #editor-x .transition-colors {
2296
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
2297
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2298
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2299
+ }
2300
+ #editor-x .transition-opacity {
2301
+ transition-property: opacity;
2302
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2303
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2304
+ }
2305
+ #editor-x .transition-transform {
2306
+ transition-property: transform, translate, scale, rotate;
2307
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2308
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2309
+ }
2310
+ #editor-x .duration-200 {
2311
+ --tw-duration: 200ms;
2312
+ transition-duration: 200ms;
2313
+ }
2314
+ #editor-x .duration-300 {
2315
+ --tw-duration: 300ms;
2316
+ transition-duration: 300ms;
2317
+ }
2318
+ #editor-x .will-change-transform {
2319
+ will-change: transform;
2320
+ }
2321
+ #editor-x .outline-none {
2322
+ --tw-outline-style: none;
2323
+ outline-style: none;
2324
+ }
2325
+ #editor-x .select-none {
2326
+ -webkit-user-select: none;
2327
+ user-select: none;
2328
+ }
2329
+ #editor-x .select-text {
2330
+ -webkit-user-select: text;
2331
+ user-select: text;
2332
+ }
2333
+ #editor-x .\[--lexical-indent-base-value\:40px\] {
2334
+ --lexical-indent-base-value: 40px;
2335
+ }
2336
+ #editor-x .\[-moz-appearance\:_textfield\] {
2337
+ -moz-appearance: textfield;
2338
+ }
2339
+ #editor-x .group-hover\:text-primary-foreground {
2340
+ #editor-x &:is(:where(.group):hover *) {
2341
+ @media (hover: hover) {
2342
+ color: var(--primary-foreground);
2343
+ }
2344
+ }
2345
+ }
2346
+ #editor-x .group-data-\[disabled\=true\]\:pointer-events-none {
2347
+ #editor-x &:is(:where(.group)[data-disabled="true"] *) {
2348
+ pointer-events: none;
2349
+ }
2350
+ }
2351
+ #editor-x .group-data-\[disabled\=true\]\:opacity-50 {
2352
+ #editor-x &:is(:where(.group)[data-disabled="true"] *) {
2353
+ opacity: 50%;
2354
+ }
2355
+ }
2356
+ #editor-x .peer-disabled\:cursor-not-allowed {
2357
+ #editor-x &:is(:where(.peer):disabled ~ *) {
2358
+ cursor: not-allowed;
2359
+ }
2360
+ }
2361
+ #editor-x .peer-disabled\:opacity-50 {
2362
+ #editor-x &:is(:where(.peer):disabled ~ *) {
2363
+ opacity: 50%;
2364
+ }
2365
+ }
2366
+ #editor-x .selection\:bg-primary {
2367
+ #editor-x & *::selection {
2368
+ background-color: var(--primary);
2369
+ }
2370
+ #editor-x &::selection {
2371
+ background-color: var(--primary);
2372
+ }
2373
+ }
2374
+ #editor-x .selection\:text-primary-foreground {
2375
+ #editor-x & *::selection {
2376
+ color: var(--primary-foreground);
2377
+ }
2378
+ #editor-x &::selection {
2379
+ color: var(--primary-foreground);
2380
+ }
2381
+ }
2382
+ #editor-x .file\:inline-flex {
2383
+ #editor-x &::file-selector-button {
2384
+ display: inline-flex;
2385
+ }
2386
+ }
2387
+ #editor-x .file\:h-7 {
2388
+ #editor-x &::file-selector-button {
2389
+ height: calc(var(--spacing) * 7);
2390
+ }
2391
+ }
2392
+ #editor-x .file\:border-0 {
2393
+ #editor-x &::file-selector-button {
2394
+ border-style: var(--tw-border-style);
2395
+ border-width: 0px;
2396
+ }
2397
+ }
2398
+ #editor-x .file\:bg-transparent {
2399
+ #editor-x &::file-selector-button {
2400
+ background-color: transparent;
2401
+ }
2402
+ }
2403
+ #editor-x .file\:font-medium {
2404
+ #editor-x &::file-selector-button {
2405
+ --tw-font-weight: var(--font-weight-medium);
2406
+ font-weight: var(--font-weight-medium);
2407
+ }
2408
+ }
2409
+ #editor-x .file\:text-foreground {
2410
+ #editor-x &::file-selector-button {
2411
+ color: var(--foreground);
2412
+ }
2413
+ }
2414
+ #editor-x .placeholder\:text-muted-foreground {
2415
+ #editor-x &::placeholder {
2416
+ color: var(--muted-foreground);
2417
+ }
2418
+ }
2419
+ #editor-x .before\:absolute {
2420
+ #editor-x &::before {
2421
+ content: var(--tw-content);
2422
+ position: absolute;
2423
+ }
2424
+ }
2425
+ #editor-x .before\:top-0\.5 {
2426
+ #editor-x &::before {
2427
+ content: var(--tw-content);
2428
+ top: calc(var(--spacing) * 0.5);
2429
+ }
2430
+ }
2431
+ #editor-x .before\:left-0 {
2432
+ #editor-x &::before {
2433
+ content: var(--tw-content);
2434
+ left: calc(var(--spacing) * 0);
2435
+ }
2436
+ }
2437
+ #editor-x .before\:block {
2438
+ #editor-x &::before {
2439
+ content: var(--tw-content);
2440
+ display: block;
2441
+ }
2442
+ }
2443
+ #editor-x .before\:hidden {
2444
+ #editor-x &::before {
2445
+ content: var(--tw-content);
2446
+ display: none;
2447
+ }
2448
+ }
2449
+ #editor-x .before\:h-4 {
2450
+ #editor-x &::before {
2451
+ content: var(--tw-content);
2452
+ height: calc(var(--spacing) * 4);
2453
+ }
2454
+ }
2455
+ #editor-x .before\:w-4 {
2456
+ #editor-x &::before {
2457
+ content: var(--tw-content);
2458
+ width: calc(var(--spacing) * 4);
2459
+ }
2460
+ }
2461
+ #editor-x .before\:cursor-pointer {
2462
+ #editor-x &::before {
2463
+ content: var(--tw-content);
2464
+ cursor: pointer;
2465
+ }
2466
+ }
2467
+ #editor-x .before\:rounded {
2468
+ #editor-x &::before {
2469
+ content: var(--tw-content);
2470
+ border-radius: var(--radius, 0.5rem);
2471
+ }
2472
+ }
2473
+ #editor-x .before\:border {
2474
+ #editor-x &::before {
2475
+ content: var(--tw-content);
2476
+ border-style: var(--tw-border-style);
2477
+ border-width: 1px;
2478
+ }
2479
+ }
2480
+ #editor-x .before\:border-primary {
2481
+ #editor-x &::before {
2482
+ content: var(--tw-content);
2483
+ border-color: var(--primary);
2484
+ }
2485
+ }
2486
+ #editor-x .before\:bg-primary {
2487
+ #editor-x &::before {
2488
+ content: var(--tw-content);
2489
+ background-color: var(--primary);
2490
+ }
2491
+ }
2492
+ #editor-x .before\:bg-cover {
2493
+ #editor-x &::before {
2494
+ content: var(--tw-content);
2495
+ background-size: cover;
2496
+ }
2497
+ }
2498
+ #editor-x .before\:bg-no-repeat {
2499
+ #editor-x &::before {
2500
+ content: var(--tw-content);
2501
+ background-repeat: no-repeat;
2502
+ }
2503
+ }
2504
+ #editor-x .before\:content-\[\"\"\] {
2505
+ #editor-x &::before {
2506
+ --tw-content: "";
2507
+ content: var(--tw-content);
2508
+ }
2509
+ }
2510
+ #editor-x .after\:absolute {
2511
+ #editor-x &::after {
2512
+ content: var(--tw-content);
2513
+ position: absolute;
2514
+ }
2515
+ }
2516
+ #editor-x .after\:top-\[6px\] {
2517
+ #editor-x &::after {
2518
+ content: var(--tw-content);
2519
+ top: 6px;
2520
+ }
2521
+ }
2522
+ #editor-x .after\:right-\[7px\] {
2523
+ #editor-x &::after {
2524
+ content: var(--tw-content);
2525
+ right: 7px;
2526
+ }
2527
+ }
2528
+ #editor-x .after\:left-\[7px\] {
2529
+ #editor-x &::after {
2530
+ content: var(--tw-content);
2531
+ left: 7px;
2532
+ }
2533
+ }
2534
+ #editor-x .after\:block {
2535
+ #editor-x &::after {
2536
+ content: var(--tw-content);
2537
+ display: block;
2538
+ }
2539
+ }
2540
+ #editor-x .after\:hidden {
2541
+ #editor-x &::after {
2542
+ content: var(--tw-content);
2543
+ display: none;
2544
+ }
2545
+ }
2546
+ #editor-x .after\:h-0\.5 {
2547
+ #editor-x &::after {
2548
+ content: var(--tw-content);
2549
+ height: calc(var(--spacing) * 0.5);
2550
+ }
2551
+ }
2552
+ #editor-x .after\:h-\[6px\] {
2553
+ #editor-x &::after {
2554
+ content: var(--tw-content);
2555
+ height: 6px;
2556
+ }
2557
+ }
2558
+ #editor-x .after\:w-\[3px\] {
2559
+ #editor-x &::after {
2560
+ content: var(--tw-content);
2561
+ width: 3px;
2562
+ }
2563
+ }
2564
+ #editor-x .after\:rotate-45 {
2565
+ #editor-x &::after {
2566
+ content: var(--tw-content);
2567
+ rotate: 45deg;
2568
+ }
2569
+ }
2570
+ #editor-x .after\:cursor-pointer {
2571
+ #editor-x &::after {
2572
+ content: var(--tw-content);
2573
+ cursor: pointer;
2574
+ }
2575
+ }
2576
+ #editor-x .after\:border-t-0 {
2577
+ #editor-x &::after {
2578
+ content: var(--tw-content);
2579
+ border-top-style: var(--tw-border-style);
2580
+ border-top-width: 0px;
2581
+ }
2582
+ }
2583
+ #editor-x .after\:border-r-2 {
2584
+ #editor-x &::after {
2585
+ content: var(--tw-content);
2586
+ border-right-style: var(--tw-border-style);
2587
+ border-right-width: 2px;
2588
+ }
2589
+ }
2590
+ #editor-x .after\:border-b-2 {
2591
+ #editor-x &::after {
2592
+ content: var(--tw-content);
2593
+ border-bottom-style: var(--tw-border-style);
2594
+ border-bottom-width: 2px;
2595
+ }
2596
+ }
2597
+ #editor-x .after\:border-l-0 {
2598
+ #editor-x &::after {
2599
+ content: var(--tw-content);
2600
+ border-left-style: var(--tw-border-style);
2601
+ border-left-width: 0px;
2602
+ }
2603
+ }
2604
+ #editor-x .after\:border-solid {
2605
+ #editor-x &::after {
2606
+ content: var(--tw-content);
2607
+ --tw-border-style: solid;
2608
+ border-style: solid;
2609
+ }
2610
+ }
2611
+ #editor-x .after\:border-white {
2612
+ #editor-x &::after {
2613
+ content: var(--tw-content);
2614
+ border-color: var(--color-white);
2615
+ }
2616
+ }
2617
+ #editor-x .after\:bg-muted {
2618
+ #editor-x &::after {
2619
+ content: var(--tw-content);
2620
+ background-color: var(--muted);
2621
+ }
2622
+ }
2623
+ #editor-x .after\:content-\[\"\"\] {
2624
+ #editor-x &::after {
2625
+ --tw-content: "";
2626
+ content: var(--tw-content);
2627
+ }
2628
+ }
2629
+ #editor-x .first\:mt-0 {
2630
+ #editor-x &:first-child {
2631
+ margin-top: calc(var(--spacing) * 0);
2632
+ }
2633
+ }
2634
+ #editor-x .even\:bg-muted {
2635
+ #editor-x &:nth-child(even) {
2636
+ background-color: var(--muted);
2637
+ }
2638
+ }
2639
+ #editor-x .hover\:cursor-pointer {
2640
+ #editor-x &:hover {
2641
+ @media (hover: hover) {
2642
+ cursor: pointer;
2643
+ }
2644
+ }
2645
+ }
2646
+ #editor-x .hover\:border-primary\/50 {
2647
+ #editor-x &:hover {
2648
+ @media (hover: hover) {
2649
+ border-color: var(--primary);
2650
+ @supports (color: color-mix(in lab, red, red)) {
2651
+ border-color: color-mix(in oklab, var(--primary) 50%, transparent);
2652
+ }
2653
+ }
2654
+ }
2655
+ }
2656
+ #editor-x .hover\:bg-accent {
2657
+ #editor-x &:hover {
2658
+ @media (hover: hover) {
2659
+ background-color: var(--accent);
2660
+ }
2661
+ }
2662
+ }
2663
+ #editor-x .hover\:bg-accent\/10 {
2664
+ #editor-x &:hover {
2665
+ @media (hover: hover) {
2666
+ background-color: var(--accent);
2667
+ @supports (color: color-mix(in lab, red, red)) {
2668
+ background-color: color-mix(in oklab, var(--accent) 10%, transparent);
2669
+ }
2670
+ }
2671
+ }
2672
+ }
2673
+ #editor-x .hover\:bg-accent\/50 {
2674
+ #editor-x &:hover {
2675
+ @media (hover: hover) {
2676
+ background-color: var(--accent);
2677
+ @supports (color: color-mix(in lab, red, red)) {
2678
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
2679
+ }
2680
+ }
2681
+ }
2682
+ }
2683
+ #editor-x .hover\:bg-background\/50 {
2684
+ #editor-x &:hover {
2685
+ @media (hover: hover) {
2686
+ background-color: var(--background);
2687
+ @supports (color: color-mix(in lab, red, red)) {
2688
+ background-color: color-mix(in oklab, var(--background) 50%, transparent);
2689
+ }
2690
+ }
2691
+ }
2692
+ }
2693
+ #editor-x .hover\:bg-destructive\/10 {
2694
+ #editor-x &:hover {
2695
+ @media (hover: hover) {
2696
+ background-color: var(--destructive);
2697
+ @supports (color: color-mix(in lab, red, red)) {
2698
+ background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
2699
+ }
2700
+ }
2701
+ }
2702
+ }
2703
+ #editor-x .hover\:bg-destructive\/90 {
2704
+ #editor-x &:hover {
2705
+ @media (hover: hover) {
2706
+ background-color: var(--destructive);
2707
+ @supports (color: color-mix(in lab, red, red)) {
2708
+ background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
2709
+ }
2710
+ }
2711
+ }
2712
+ }
2713
+ #editor-x .hover\:bg-gray-100 {
2714
+ #editor-x &:hover {
2715
+ @media (hover: hover) {
2716
+ background-color: var(--color-gray-100);
2717
+ }
2718
+ }
2719
+ }
2720
+ #editor-x .hover\:bg-muted {
2721
+ #editor-x &:hover {
2722
+ @media (hover: hover) {
2723
+ background-color: var(--muted);
2724
+ }
2725
+ }
2726
+ }
2727
+ #editor-x .hover\:bg-primary\/10 {
2728
+ #editor-x &:hover {
2729
+ @media (hover: hover) {
2730
+ background-color: var(--primary);
2731
+ @supports (color: color-mix(in lab, red, red)) {
2732
+ background-color: color-mix(in oklab, var(--primary) 10%, transparent);
2733
+ }
2734
+ }
2735
+ }
2736
+ }
2737
+ #editor-x .hover\:bg-primary\/90 {
2738
+ #editor-x &:hover {
2739
+ @media (hover: hover) {
2740
+ background-color: var(--primary);
2741
+ @supports (color: color-mix(in lab, red, red)) {
2742
+ background-color: color-mix(in oklab, var(--primary) 90%, transparent);
2743
+ }
2744
+ }
2745
+ }
2746
+ }
2747
+ #editor-x .hover\:bg-secondary\/80 {
2748
+ #editor-x &:hover {
2749
+ @media (hover: hover) {
2750
+ background-color: var(--secondary);
2751
+ @supports (color: color-mix(in lab, red, red)) {
2752
+ background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
2753
+ }
2754
+ }
2755
+ }
2756
+ }
2757
+ #editor-x .hover\:bg-transparent {
2758
+ #editor-x &:hover {
2759
+ @media (hover: hover) {
2760
+ background-color: transparent;
2761
+ }
2762
+ }
2763
+ }
2764
+ #editor-x .hover\:text-accent-foreground {
2765
+ #editor-x &:hover {
2766
+ @media (hover: hover) {
2767
+ color: var(--accent-foreground);
2768
+ }
2769
+ }
2770
+ }
2771
+ #editor-x .hover\:text-foreground {
2772
+ #editor-x &:hover {
2773
+ @media (hover: hover) {
2774
+ color: var(--foreground);
2775
+ }
2776
+ }
2777
+ }
2778
+ #editor-x .hover\:text-muted-foreground {
2779
+ #editor-x &:hover {
2780
+ @media (hover: hover) {
2781
+ color: var(--muted-foreground);
2782
+ }
2783
+ }
2784
+ }
2785
+ #editor-x .hover\:text-white {
2786
+ #editor-x &:hover {
2787
+ @media (hover: hover) {
2788
+ color: var(--color-white);
2789
+ }
2790
+ }
2791
+ }
2792
+ #editor-x .hover\:underline {
2793
+ #editor-x &:hover {
2794
+ @media (hover: hover) {
2795
+ text-decoration-line: underline;
2796
+ }
2797
+ }
2798
+ }
2799
+ #editor-x .hover\:opacity-100 {
2800
+ #editor-x &:hover {
2801
+ @media (hover: hover) {
2802
+ opacity: 100%;
2803
+ }
2804
+ }
2805
+ }
2806
+ #editor-x .focus\:z-10 {
2807
+ #editor-x &:focus {
2808
+ z-index: 10;
2809
+ }
2810
+ }
2811
+ #editor-x .focus\:bg-accent {
2812
+ #editor-x &:focus {
2813
+ background-color: var(--accent);
2814
+ }
2815
+ }
2816
+ #editor-x .focus\:text-accent-foreground {
2817
+ #editor-x &:focus {
2818
+ color: var(--accent-foreground);
2819
+ }
2820
+ }
2821
+ #editor-x .focus\:ring-2 {
2822
+ #editor-x &:focus {
2823
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2824
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2825
+ }
2826
+ }
2827
+ #editor-x .focus\:ring-ring {
2828
+ #editor-x &:focus {
2829
+ --tw-ring-color: var(--ring);
2830
+ }
2831
+ }
2832
+ #editor-x .focus\:ring-offset-2 {
2833
+ #editor-x &:focus {
2834
+ --tw-ring-offset-width: 2px;
2835
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2836
+ }
2837
+ }
2838
+ #editor-x .focus\:outline-hidden {
2839
+ #editor-x &:focus {
2840
+ --tw-outline-style: none;
2841
+ outline-style: none;
2842
+ @media (forced-colors: active) {
2843
+ outline: 2px solid transparent;
2844
+ outline-offset: 2px;
2845
+ }
2846
+ }
2847
+ }
2848
+ #editor-x .focus\:outline-none {
2849
+ #editor-x &:focus {
2850
+ --tw-outline-style: none;
2851
+ outline-style: none;
2852
+ }
2853
+ }
2854
+ #editor-x .focus-visible\:z-10 {
2855
+ #editor-x &:focus-visible {
2856
+ z-index: 10;
2857
+ }
2858
+ }
2859
+ #editor-x .focus-visible\:border-ring {
2860
+ #editor-x &:focus-visible {
2861
+ border-color: var(--ring);
2862
+ }
2863
+ }
2864
+ #editor-x .focus-visible\:ring-1 {
2865
+ #editor-x &:focus-visible {
2866
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2867
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2868
+ }
2869
+ }
2870
+ #editor-x .focus-visible\:ring-\[3px\] {
2871
+ #editor-x &:focus-visible {
2872
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2873
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2874
+ }
2875
+ }
2876
+ #editor-x .focus-visible\:ring-ring {
2877
+ #editor-x &:focus-visible {
2878
+ --tw-ring-color: var(--ring);
2879
+ }
2880
+ }
2881
+ #editor-x .focus-visible\:ring-ring\/50 {
2882
+ #editor-x &:focus-visible {
2883
+ --tw-ring-color: var(--ring);
2884
+ @supports (color: color-mix(in lab, red, red)) {
2885
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
2886
+ }
2887
+ }
2888
+ }
2889
+ #editor-x .focus-visible\:outline {
2890
+ #editor-x &:focus-visible {
2891
+ outline-style: var(--tw-outline-style);
2892
+ outline-width: 1px;
2893
+ }
2894
+ }
2895
+ #editor-x .focus-visible\:outline-1 {
2896
+ #editor-x &:focus-visible {
2897
+ outline-style: var(--tw-outline-style);
2898
+ outline-width: 1px;
2899
+ }
2900
+ }
2901
+ #editor-x .focus-visible\:outline-2 {
2902
+ #editor-x &:focus-visible {
2903
+ outline-style: var(--tw-outline-style);
2904
+ outline-width: 2px;
2905
+ }
2906
+ }
2907
+ #editor-x .focus-visible\:outline-ring {
2908
+ #editor-x &:focus-visible {
2909
+ outline-color: var(--ring);
2910
+ }
2911
+ }
2912
+ #editor-x .focus-visible\:outline-ring\/70 {
2913
+ #editor-x &:focus-visible {
2914
+ outline-color: var(--ring);
2915
+ @supports (color: color-mix(in lab, red, red)) {
2916
+ outline-color: color-mix(in oklab, var(--ring) 70%, transparent);
2917
+ }
2918
+ }
2919
+ }
2920
+ #editor-x .focus-visible\:outline-none {
2921
+ #editor-x &:focus-visible {
2922
+ --tw-outline-style: none;
2923
+ outline-style: none;
2924
+ }
2925
+ }
2926
+ #editor-x .active\:cursor-grabbing {
2927
+ #editor-x &:active {
2928
+ cursor: grabbing;
2929
+ }
2930
+ }
2931
+ #editor-x .disabled\:pointer-events-none {
2932
+ #editor-x &:disabled {
2933
+ pointer-events: none;
2934
+ }
2935
+ }
2936
+ #editor-x .disabled\:cursor-not-allowed {
2937
+ #editor-x &:disabled {
2938
+ cursor: not-allowed;
2939
+ }
2940
+ }
2941
+ #editor-x .disabled\:opacity-50 {
2942
+ #editor-x &:disabled {
2943
+ opacity: 50%;
2944
+ }
2945
+ }
2946
+ #editor-x .has-\[\>\[data-slot\=button-group\]\]\:gap-2 {
2947
+ #editor-x &:has(>[data-slot=button-group]) {
2948
+ gap: calc(var(--spacing) * 2);
2949
+ }
2950
+ }
2951
+ #editor-x .aria-invalid\:border-destructive {
2952
+ #editor-x &[aria-invalid="true"] {
2953
+ border-color: var(--destructive);
2954
+ }
2955
+ }
2956
+ #editor-x .aria-invalid\:ring-destructive\/20 {
2957
+ #editor-x &[aria-invalid="true"] {
2958
+ --tw-ring-color: var(--destructive);
2959
+ @supports (color: color-mix(in lab, red, red)) {
2960
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
2961
+ }
2962
+ }
2963
+ }
2964
+ #editor-x .data-\[disabled\]\:pointer-events-none {
2965
+ #editor-x &[data-disabled] {
2966
+ pointer-events: none;
2967
+ }
2968
+ }
2969
+ #editor-x .data-\[disabled\]\:opacity-50 {
2970
+ #editor-x &[data-disabled] {
2971
+ opacity: 50%;
2972
+ }
2973
+ }
2974
+ #editor-x .data-\[disabled\=true\]\:pointer-events-none {
2975
+ #editor-x &[data-disabled="true"] {
2976
+ pointer-events: none;
2977
+ }
2978
+ }
2979
+ #editor-x .data-\[disabled\=true\]\:opacity-50 {
2980
+ #editor-x &[data-disabled="true"] {
2981
+ opacity: 50%;
2982
+ }
2983
+ }
2984
+ #editor-x .data-\[orientation\=vertical\]\:h-auto {
2985
+ #editor-x &[data-orientation="vertical"] {
2986
+ height: auto;
2987
+ }
2988
+ }
2989
+ #editor-x .data-\[placeholder\]\:text-muted-foreground {
2990
+ #editor-x &[data-placeholder] {
2991
+ color: var(--muted-foreground);
2992
+ }
2993
+ }
2994
+ #editor-x .data-\[selected\=true\]\:bg-accent {
2995
+ #editor-x &[data-selected="true"] {
2996
+ background-color: var(--accent);
2997
+ }
2998
+ }
2999
+ #editor-x .data-\[selected\=true\]\:text-accent-foreground {
3000
+ #editor-x &[data-selected="true"] {
3001
+ color: var(--accent-foreground);
3002
+ }
3003
+ }
3004
+ #editor-x .data-\[side\=bottom\]\:translate-y-1 {
3005
+ #editor-x &[data-side="bottom"] {
3006
+ --tw-translate-y: calc(var(--spacing) * 1);
3007
+ translate: var(--tw-translate-x) var(--tw-translate-y);
3008
+ }
3009
+ }
3010
+ #editor-x .data-\[side\=left\]\:-translate-x-1 {
3011
+ #editor-x &[data-side="left"] {
3012
+ --tw-translate-x: calc(var(--spacing) * -1);
3013
+ translate: var(--tw-translate-x) var(--tw-translate-y);
3014
+ }
3015
+ }
3016
+ #editor-x .data-\[side\=right\]\:translate-x-1 {
3017
+ #editor-x &[data-side="right"] {
3018
+ --tw-translate-x: calc(var(--spacing) * 1);
3019
+ translate: var(--tw-translate-x) var(--tw-translate-y);
3020
+ }
3021
+ }
3022
+ #editor-x .data-\[side\=top\]\:-translate-y-1 {
3023
+ #editor-x &[data-side="top"] {
3024
+ --tw-translate-y: calc(var(--spacing) * -1);
3025
+ translate: var(--tw-translate-x) var(--tw-translate-y);
3026
+ }
3027
+ }
3028
+ #editor-x .data-\[size\=default\]\:h-9 {
3029
+ #editor-x &[data-size="default"] {
3030
+ height: calc(var(--spacing) * 9);
3031
+ }
3032
+ }
3033
+ #editor-x .data-\[size\=sm\]\:h-8 {
3034
+ #editor-x &[data-size="sm"] {
3035
+ height: calc(var(--spacing) * 8);
3036
+ }
3037
+ }
3038
+ #editor-x .\*\*\:data-\[slot\=command-input-wrapper\]\:h-12 {
3039
+ #editor-x :is(& *) {
3040
+ #editor-x &[data-slot="command-input-wrapper"] {
3041
+ height: calc(var(--spacing) * 12);
3042
+ }
3043
+ }
3044
+ }
3045
+ #editor-x .\*\:data-\[slot\=select-value\]\:line-clamp-1 {
3046
+ #editor-x :is(& > *) {
3047
+ #editor-x &[data-slot="select-value"] {
3048
+ overflow: hidden;
3049
+ display: -webkit-box;
3050
+ -webkit-box-orient: vertical;
3051
+ -webkit-line-clamp: 1;
3052
+ }
3053
+ }
3054
+ }
3055
+ #editor-x .\*\:data-\[slot\=select-value\]\:flex {
3056
+ #editor-x :is(& > *) {
3057
+ #editor-x &[data-slot="select-value"] {
3058
+ display: flex;
3059
+ }
3060
+ }
3061
+ }
3062
+ #editor-x .\*\:data-\[slot\=select-value\]\:items-center {
3063
+ #editor-x :is(& > *) {
3064
+ #editor-x &[data-slot="select-value"] {
3065
+ align-items: center;
3066
+ }
3067
+ }
3068
+ }
3069
+ #editor-x .\*\:data-\[slot\=select-value\]\:gap-2 {
3070
+ #editor-x :is(& > *) {
3071
+ #editor-x &[data-slot="select-value"] {
3072
+ gap: calc(var(--spacing) * 2);
3073
+ }
3074
+ }
3075
+ }
3076
+ #editor-x .data-\[spacing\=0\]\:rounded-none {
3077
+ #editor-x &[data-spacing="0"] {
3078
+ border-radius: 0;
3079
+ }
3080
+ }
3081
+ #editor-x .data-\[spacing\=0\]\:shadow-none {
3082
+ #editor-x &[data-spacing="0"] {
3083
+ --tw-shadow: 0 0 #0000;
3084
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3085
+ }
3086
+ }
3087
+ #editor-x .data-\[spacing\=0\]\:first\:rounded-l-md {
3088
+ #editor-x &[data-spacing="0"] {
3089
+ #editor-x &:first-child {
3090
+ border-top-left-radius: var(--radius-md);
3091
+ border-bottom-left-radius: var(--radius-md);
3092
+ }
3093
+ }
3094
+ }
3095
+ #editor-x .data-\[spacing\=0\]\:last\:rounded-r-md {
3096
+ #editor-x &[data-spacing="0"] {
3097
+ #editor-x &:last-child {
3098
+ border-top-right-radius: var(--radius-md);
3099
+ border-bottom-right-radius: var(--radius-md);
3100
+ }
3101
+ }
3102
+ }
3103
+ #editor-x .data-\[state\=active\]\:border-primary\/20 {
3104
+ #editor-x &[data-state="active"] {
3105
+ border-color: var(--primary);
3106
+ @supports (color: color-mix(in lab, red, red)) {
3107
+ border-color: color-mix(in oklab, var(--primary) 20%, transparent);
3108
+ }
3109
+ }
3110
+ }
3111
+ #editor-x .data-\[state\=active\]\:bg-background {
3112
+ #editor-x &[data-state="active"] {
3113
+ background-color: var(--background);
3114
+ }
3115
+ }
3116
+ #editor-x .data-\[state\=active\]\:font-semibold {
3117
+ #editor-x &[data-state="active"] {
3118
+ --tw-font-weight: var(--font-weight-semibold);
3119
+ font-weight: var(--font-weight-semibold);
3120
+ }
3121
+ }
3122
+ #editor-x .data-\[state\=active\]\:text-foreground {
3123
+ #editor-x &[data-state="active"] {
3124
+ color: var(--foreground);
3125
+ }
3126
+ }
3127
+ #editor-x .data-\[state\=active\]\:shadow-md {
3128
+ #editor-x &[data-state="active"] {
3129
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
3130
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3131
+ }
3132
+ }
3133
+ #editor-x .data-\[state\=closed\]\:animate-\[collapsible-up_0\.2s_ease-out\] {
3134
+ #editor-x &[data-state="closed"] {
3135
+ animation: collapsible-up 0.2s ease-out;
3136
+ }
3137
+ }
3138
+ #editor-x .data-\[state\=on\]\:bg-accent {
3139
+ #editor-x &[data-state="on"] {
3140
+ background-color: var(--accent);
3141
+ }
3142
+ }
3143
+ #editor-x .data-\[state\=on\]\:text-accent-foreground {
3144
+ #editor-x &[data-state="on"] {
3145
+ color: var(--accent-foreground);
3146
+ }
3147
+ }
3148
+ #editor-x .data-\[state\=open\]\:animate-\[collapsible-down_0\.2s_ease-out\] {
3149
+ #editor-x &[data-state="open"] {
3150
+ animation: collapsible-down 0.2s ease-out;
3151
+ }
3152
+ }
3153
+ #editor-x .data-\[state\=open\]\:bg-accent {
3154
+ #editor-x &[data-state="open"] {
3155
+ background-color: var(--accent);
3156
+ }
3157
+ }
3158
+ #editor-x .data-\[state\=open\]\:text-muted-foreground {
3159
+ #editor-x &[data-state="open"] {
3160
+ color: var(--muted-foreground);
3161
+ }
3162
+ }
3163
+ #editor-x .data-\[spacing\=0\]\:data-\[variant\=outline\]\:border-l-0 {
3164
+ #editor-x &[data-spacing="0"] {
3165
+ #editor-x &[data-variant="outline"] {
3166
+ border-left-style: var(--tw-border-style);
3167
+ border-left-width: 0px;
3168
+ }
3169
+ }
3170
+ }
3171
+ #editor-x .data-\[spacing\=0\]\:data-\[variant\=outline\]\:first\:border-l {
3172
+ #editor-x &[data-spacing="0"] {
3173
+ #editor-x &[data-variant="outline"] {
3174
+ #editor-x &:first-child {
3175
+ border-left-style: var(--tw-border-style);
3176
+ border-left-width: 1px;
3177
+ }
3178
+ }
3179
+ }
3180
+ }
3181
+ #editor-x .data-\[spacing\=default\]\:data-\[variant\=outline\]\:shadow-xs {
3182
+ #editor-x &[data-spacing="default"] {
3183
+ #editor-x &[data-variant="outline"] {
3184
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
3185
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3186
+ }
3187
+ }
3188
+ }
3189
+ #editor-x .supports-\[backdrop-filter\]\:bg-background\/60 {
3190
+ @supports (backdrop-filter: var(--tw)) {
3191
+ background-color: var(--background);
3192
+ @supports (color: color-mix(in lab, red, red)) {
3193
+ background-color: color-mix(in oklab, var(--background) 60%, transparent);
3194
+ }
3195
+ }
3196
+ }
3197
+ #editor-x .supports-\[backdrop-filter\]\:backdrop-blur-sm {
3198
+ @supports (backdrop-filter: var(--tw)) {
3199
+ --tw-backdrop-blur: blur(var(--blur-sm));
3200
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
3201
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
3202
+ }
3203
+ }
3204
+ #editor-x .sm\:mr-0 {
3205
+ @media (width >= 40rem) {
3206
+ margin-right: calc(var(--spacing) * 0);
3207
+ }
3208
+ }
3209
+ #editor-x .sm\:h-5 {
3210
+ @media (width >= 40rem) {
3211
+ height: calc(var(--spacing) * 5);
3212
+ }
3213
+ }
3214
+ #editor-x .sm\:h-6 {
3215
+ @media (width >= 40rem) {
3216
+ height: calc(var(--spacing) * 6);
3217
+ }
3218
+ }
3219
+ #editor-x .sm\:h-8 {
3220
+ @media (width >= 40rem) {
3221
+ height: calc(var(--spacing) * 8);
3222
+ }
3223
+ }
3224
+ #editor-x .sm\:min-h-\[350px\] {
3225
+ @media (width >= 40rem) {
3226
+ min-height: 350px;
3227
+ }
3228
+ }
3229
+ #editor-x .sm\:w-5 {
3230
+ @media (width >= 40rem) {
3231
+ width: calc(var(--spacing) * 5);
3232
+ }
3233
+ }
3234
+ #editor-x .sm\:w-6 {
3235
+ @media (width >= 40rem) {
3236
+ width: calc(var(--spacing) * 6);
3237
+ }
3238
+ }
3239
+ #editor-x .sm\:w-8 {
3240
+ @media (width >= 40rem) {
3241
+ width: calc(var(--spacing) * 8);
3242
+ }
3243
+ }
3244
+ #editor-x .sm\:max-w-\[800px\] {
3245
+ @media (width >= 40rem) {
3246
+ max-width: 800px;
3247
+ }
3248
+ }
3249
+ #editor-x .sm\:flex-col {
3250
+ @media (width >= 40rem) {
3251
+ flex-direction: column;
3252
+ }
3253
+ }
3254
+ #editor-x .sm\:flex-row {
3255
+ @media (width >= 40rem) {
3256
+ flex-direction: row;
3257
+ }
3258
+ }
3259
+ #editor-x .sm\:justify-end {
3260
+ @media (width >= 40rem) {
3261
+ justify-content: flex-end;
3262
+ }
3263
+ }
3264
+ #editor-x .sm\:gap-4 {
3265
+ @media (width >= 40rem) {
3266
+ gap: calc(var(--spacing) * 4);
3267
+ }
3268
+ }
3269
+ #editor-x .sm\:p-6 {
3270
+ @media (width >= 40rem) {
3271
+ padding: calc(var(--spacing) * 6);
3272
+ }
3273
+ }
3274
+ #editor-x .sm\:px-6 {
3275
+ @media (width >= 40rem) {
3276
+ padding-inline: calc(var(--spacing) * 6);
3277
+ }
3278
+ }
3279
+ #editor-x .sm\:py-6 {
3280
+ @media (width >= 40rem) {
3281
+ padding-block: calc(var(--spacing) * 6);
3282
+ }
3283
+ }
3284
+ #editor-x .sm\:text-left {
3285
+ @media (width >= 40rem) {
3286
+ text-align: left;
3287
+ }
3288
+ }
3289
+ #editor-x .sm\:text-2xl {
3290
+ @media (width >= 40rem) {
3291
+ font-size: var(--text-2xl);
3292
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
3293
+ }
3294
+ }
3295
+ #editor-x .sm\:text-base {
3296
+ @media (width >= 40rem) {
3297
+ font-size: var(--text-base);
3298
+ line-height: var(--tw-leading, var(--text-base--line-height));
3299
+ }
3300
+ }
3301
+ #editor-x .sm\:text-lg {
3302
+ @media (width >= 40rem) {
3303
+ font-size: var(--text-lg);
3304
+ line-height: var(--tw-leading, var(--text-lg--line-height));
3305
+ }
3306
+ }
3307
+ #editor-x .sm\:text-sm {
3308
+ @media (width >= 40rem) {
3309
+ font-size: var(--text-sm);
3310
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3311
+ }
3312
+ }
3313
+ #editor-x .sm\:text-xl {
3314
+ @media (width >= 40rem) {
3315
+ font-size: var(--text-xl);
3316
+ line-height: var(--tw-leading, var(--text-xl--line-height));
3317
+ }
3318
+ }
3319
+ #editor-x .sm\:text-xs {
3320
+ @media (width >= 40rem) {
3321
+ font-size: var(--text-xs);
3322
+ line-height: var(--tw-leading, var(--text-xs--line-height));
3323
+ }
3324
+ }
3325
+ #editor-x .md\:flex {
3326
+ @media (width >= 48rem) {
3327
+ display: flex;
3328
+ }
3329
+ }
3330
+ #editor-x .md\:max-w-\[32rem\] {
3331
+ @media (width >= 48rem) {
3332
+ max-width: 32rem;
3333
+ }
3334
+ }
3335
+ #editor-x .md\:grid-cols-3 {
3336
+ @media (width >= 48rem) {
3337
+ grid-template-columns: repeat(3, minmax(0, 1fr));
3338
+ }
3339
+ }
3340
+ #editor-x .md\:flex-col {
3341
+ @media (width >= 48rem) {
3342
+ flex-direction: column;
3343
+ }
3344
+ }
3345
+ #editor-x .md\:flex-row {
3346
+ @media (width >= 48rem) {
3347
+ flex-direction: row;
3348
+ }
3349
+ }
3350
+ #editor-x .md\:gap-4 {
3351
+ @media (width >= 48rem) {
3352
+ gap: calc(var(--spacing) * 4);
3353
+ }
3354
+ }
3355
+ #editor-x .md\:gap-5 {
3356
+ @media (width >= 48rem) {
3357
+ gap: calc(var(--spacing) * 5);
3358
+ }
3359
+ }
3360
+ #editor-x .md\:p-8 {
3361
+ @media (width >= 48rem) {
3362
+ padding: calc(var(--spacing) * 8);
3363
+ }
3364
+ }
3365
+ #editor-x .md\:px-7 {
3366
+ @media (width >= 48rem) {
3367
+ padding-inline: calc(var(--spacing) * 7);
3368
+ }
3369
+ }
3370
+ #editor-x .md\:py-6 {
3371
+ @media (width >= 48rem) {
3372
+ padding-block: calc(var(--spacing) * 6);
3373
+ }
3374
+ }
3375
+ #editor-x .md\:text-2xl {
3376
+ @media (width >= 48rem) {
3377
+ font-size: var(--text-2xl);
3378
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
3379
+ }
3380
+ }
3381
+ #editor-x .md\:text-3xl {
3382
+ @media (width >= 48rem) {
3383
+ font-size: var(--text-3xl);
3384
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
3385
+ }
3386
+ }
3387
+ #editor-x .md\:text-base {
3388
+ @media (width >= 48rem) {
3389
+ font-size: var(--text-base);
3390
+ line-height: var(--tw-leading, var(--text-base--line-height));
3391
+ }
3392
+ }
3393
+ #editor-x .md\:text-lg {
3394
+ @media (width >= 48rem) {
3395
+ font-size: var(--text-lg);
3396
+ line-height: var(--tw-leading, var(--text-lg--line-height));
3397
+ }
3398
+ }
3399
+ #editor-x .md\:text-sm {
3400
+ @media (width >= 48rem) {
3401
+ font-size: var(--text-sm);
3402
+ line-height: var(--tw-leading, var(--text-sm--line-height));
3403
+ }
3404
+ }
3405
+ #editor-x .md\:text-xl {
3406
+ @media (width >= 48rem) {
3407
+ font-size: var(--text-xl);
3408
+ line-height: var(--tw-leading, var(--text-xl--line-height));
3409
+ }
3410
+ }
3411
+ #editor-x .lg\:min-h-\[400px\] {
3412
+ @media (width >= 64rem) {
3413
+ min-height: 400px;
3414
+ }
3415
+ }
3416
+ #editor-x .lg\:w-1\/3 {
3417
+ @media (width >= 64rem) {
3418
+ width: calc(1 / 3 * 100%);
3419
+ }
3420
+ }
3421
+ #editor-x .lg\:w-2\/3 {
3422
+ @media (width >= 64rem) {
3423
+ width: calc(2 / 3 * 100%);
3424
+ }
3425
+ }
3426
+ #editor-x .lg\:flex-col {
3427
+ @media (width >= 64rem) {
3428
+ flex-direction: column;
3429
+ }
3430
+ }
3431
+ #editor-x .lg\:flex-row {
3432
+ @media (width >= 64rem) {
3433
+ flex-direction: row;
3434
+ }
3435
+ }
3436
+ #editor-x .lg\:items-center {
3437
+ @media (width >= 64rem) {
3438
+ align-items: center;
3439
+ }
3440
+ }
3441
+ #editor-x .lg\:justify-end {
3442
+ @media (width >= 64rem) {
3443
+ justify-content: flex-end;
3444
+ }
3445
+ }
3446
+ #editor-x .lg\:gap-6 {
3447
+ @media (width >= 64rem) {
3448
+ gap: calc(var(--spacing) * 6);
3449
+ }
3450
+ }
3451
+ #editor-x .lg\:gap-8 {
3452
+ @media (width >= 64rem) {
3453
+ gap: calc(var(--spacing) * 8);
3454
+ }
3455
+ }
3456
+ #editor-x .lg\:px-8 {
3457
+ @media (width >= 64rem) {
3458
+ padding-inline: calc(var(--spacing) * 8);
3459
+ }
3460
+ }
3461
+ #editor-x .lg\:py-8 {
3462
+ @media (width >= 64rem) {
3463
+ padding-block: calc(var(--spacing) * 8);
3464
+ }
3465
+ }
3466
+ #editor-x .lg\:text-2xl {
3467
+ @media (width >= 64rem) {
3468
+ font-size: var(--text-2xl);
3469
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
3470
+ }
3471
+ }
3472
+ #editor-x .lg\:text-3xl {
3473
+ @media (width >= 64rem) {
3474
+ font-size: var(--text-3xl);
3475
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
3476
+ }
3477
+ }
3478
+ #editor-x .lg\:text-4xl {
3479
+ @media (width >= 64rem) {
3480
+ font-size: var(--text-4xl);
3481
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
3482
+ }
3483
+ }
3484
+ #editor-x .lg\:text-5xl {
3485
+ @media (width >= 64rem) {
3486
+ font-size: var(--text-5xl);
3487
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
3488
+ }
3489
+ }
3490
+ #editor-x .lg\:text-base {
3491
+ @media (width >= 64rem) {
3492
+ font-size: var(--text-base);
3493
+ line-height: var(--tw-leading, var(--text-base--line-height));
3494
+ }
3495
+ }
3496
+ #editor-x .lg\:text-lg {
3497
+ @media (width >= 64rem) {
3498
+ font-size: var(--text-lg);
3499
+ line-height: var(--tw-leading, var(--text-lg--line-height));
3500
+ }
3501
+ }
3502
+ #editor-x .lg\:text-xl {
3503
+ @media (width >= 64rem) {
3504
+ font-size: var(--text-xl);
3505
+ line-height: var(--tw-leading, var(--text-xl--line-height));
3506
+ }
3507
+ }
3508
+ #editor-x .xl\:px-9 {
3509
+ @media (width >= 80rem) {
3510
+ padding-inline: calc(var(--spacing) * 9);
3511
+ }
3512
+ }
3513
+ #editor-x .xl\:py-10 {
3514
+ @media (width >= 80rem) {
3515
+ padding-block: calc(var(--spacing) * 10);
3516
+ }
3517
+ }
3518
+ #editor-x .\32 xl\:px-10 {
3519
+ @media (width >= 96rem) {
3520
+ padding-inline: calc(var(--spacing) * 10);
3521
+ }
3522
+ }
3523
+ #editor-x .\32 xl\:py-10 {
3524
+ @media (width >= 96rem) {
3525
+ padding-block: calc(var(--spacing) * 10);
3526
+ }
3527
+ }
3528
+ #editor-x .dark\:bg-gray-800 {
3529
+ @media (prefers-color-scheme: dark) {
3530
+ background-color: var(--color-gray-800);
3531
+ }
3532
+ }
3533
+ #editor-x .dark\:bg-green-900\/30 {
3534
+ @media (prefers-color-scheme: dark) {
3535
+ background-color: color-mix(in srgb, oklch(39.3% 0.095 152.535) 30%, transparent);
3536
+ @supports (color: color-mix(in lab, red, red)) {
3537
+ background-color: color-mix(in oklab, var(--color-green-900) 30%, transparent);
3538
+ }
3539
+ }
3540
+ }
3541
+ #editor-x .dark\:bg-input\/30 {
3542
+ @media (prefers-color-scheme: dark) {
3543
+ background-color: var(--input);
3544
+ @supports (color: color-mix(in lab, red, red)) {
3545
+ background-color: color-mix(in oklab, var(--input) 30%, transparent);
3546
+ }
3547
+ }
3548
+ }
3549
+ #editor-x .dark\:bg-muted\/60 {
3550
+ @media (prefers-color-scheme: dark) {
3551
+ background-color: var(--muted);
3552
+ @supports (color: color-mix(in lab, red, red)) {
3553
+ background-color: color-mix(in oklab, var(--muted) 60%, transparent);
3554
+ }
3555
+ }
3556
+ }
3557
+ #editor-x .dark\:bg-primary\/20 {
3558
+ @media (prefers-color-scheme: dark) {
3559
+ background-color: var(--primary);
3560
+ @supports (color: color-mix(in lab, red, red)) {
3561
+ background-color: color-mix(in oklab, var(--primary) 20%, transparent);
3562
+ }
3563
+ }
3564
+ }
3565
+ #editor-x .dark\:bg-secondary\/15 {
3566
+ @media (prefers-color-scheme: dark) {
3567
+ background-color: var(--secondary);
3568
+ @supports (color: color-mix(in lab, red, red)) {
3569
+ background-color: color-mix(in oklab, var(--secondary) 15%, transparent);
3570
+ }
3571
+ }
3572
+ }
3573
+ #editor-x .dark\:text-gray-300 {
3574
+ @media (prefers-color-scheme: dark) {
3575
+ color: var(--color-gray-300);
3576
+ }
3577
+ }
3578
+ #editor-x .dark\:text-green-400 {
3579
+ @media (prefers-color-scheme: dark) {
3580
+ color: var(--color-green-400);
3581
+ }
3582
+ }
3583
+ #editor-x .dark\:text-muted-foreground {
3584
+ @media (prefers-color-scheme: dark) {
3585
+ color: var(--muted-foreground);
3586
+ }
3587
+ }
3588
+ #editor-x .dark\:brightness-\[0\.2\] {
3589
+ @media (prefers-color-scheme: dark) {
3590
+ --tw-brightness: brightness(0.2);
3591
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
3592
+ }
3593
+ }
3594
+ #editor-x .dark\:grayscale {
3595
+ @media (prefers-color-scheme: dark) {
3596
+ --tw-grayscale: grayscale(100%);
3597
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
3598
+ }
3599
+ }
3600
+ #editor-x .dark\:hover\:bg-input\/50 {
3601
+ @media (prefers-color-scheme: dark) {
3602
+ #editor-x &:hover {
3603
+ @media (hover: hover) {
3604
+ background-color: var(--input);
3605
+ @supports (color: color-mix(in lab, red, red)) {
3606
+ background-color: color-mix(in oklab, var(--input) 50%, transparent);
3607
+ }
3608
+ }
3609
+ }
3610
+ }
3611
+ }
3612
+ #editor-x .dark\:aria-invalid\:ring-destructive\/40 {
3613
+ @media (prefers-color-scheme: dark) {
3614
+ #editor-x &[aria-invalid="true"] {
3615
+ --tw-ring-color: var(--destructive);
3616
+ @supports (color: color-mix(in lab, red, red)) {
3617
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
3618
+ }
3619
+ }
3620
+ }
3621
+ }
3622
+ #editor-x .dark\:data-\[state\=active\]\:border-primary\/30 {
3623
+ @media (prefers-color-scheme: dark) {
3624
+ #editor-x &[data-state="active"] {
3625
+ border-color: var(--primary);
3626
+ @supports (color: color-mix(in lab, red, red)) {
3627
+ border-color: color-mix(in oklab, var(--primary) 30%, transparent);
3628
+ }
3629
+ }
3630
+ }
3631
+ }
3632
+ #editor-x .dark\:data-\[state\=active\]\:bg-background {
3633
+ @media (prefers-color-scheme: dark) {
3634
+ #editor-x &[data-state="active"] {
3635
+ background-color: var(--background);
3636
+ }
3637
+ }
3638
+ }
3639
+ #editor-x .dark\:data-\[state\=active\]\:bg-primary\/10 {
3640
+ @media (prefers-color-scheme: dark) {
3641
+ #editor-x &[data-state="active"] {
3642
+ background-color: var(--primary);
3643
+ @supports (color: color-mix(in lab, red, red)) {
3644
+ background-color: color-mix(in oklab, var(--primary) 10%, transparent);
3645
+ }
3646
+ }
3647
+ }
3648
+ }
3649
+ #editor-x .\[\&_\[cmdk-group-heading\]\]\:px-2 {
3650
+ #editor-x & [cmdk-group-heading] {
3651
+ padding-inline: calc(var(--spacing) * 2);
3652
+ }
3653
+ }
3654
+ #editor-x .\[\&_\[cmdk-group-heading\]\]\:py-1\.5 {
3655
+ #editor-x & [cmdk-group-heading] {
3656
+ padding-block: calc(var(--spacing) * 1.5);
3657
+ }
3658
+ }
3659
+ #editor-x .\[\&_\[cmdk-group-heading\]\]\:font-medium {
3660
+ #editor-x & [cmdk-group-heading] {
3661
+ --tw-font-weight: var(--font-weight-medium);
3662
+ font-weight: var(--font-weight-medium);
3663
+ }
3664
+ }
3665
+ #editor-x .\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground {
3666
+ #editor-x & [cmdk-group-heading] {
3667
+ color: var(--muted-foreground);
3668
+ }
3669
+ }
3670
+ #editor-x .\[\&_\[cmdk-group\]\]\:px-2 {
3671
+ #editor-x & [cmdk-group] {
3672
+ padding-inline: calc(var(--spacing) * 2);
3673
+ }
3674
+ }
3675
+ #editor-x .\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 {
3676
+ #editor-x & [cmdk-group]:not([hidden]) ~[cmdk-group] {
3677
+ padding-top: calc(var(--spacing) * 0);
3678
+ }
3679
+ }
3680
+ #editor-x .\[\&_\[cmdk-input\]\]\:h-12 {
3681
+ #editor-x & [cmdk-input] {
3682
+ height: calc(var(--spacing) * 12);
3683
+ }
3684
+ }
3685
+ #editor-x .\[\&_\[cmdk-item\]\]\:px-2 {
3686
+ #editor-x & [cmdk-item] {
3687
+ padding-inline: calc(var(--spacing) * 2);
3688
+ }
3689
+ }
3690
+ #editor-x .\[\&_\[cmdk-item\]\]\:py-3 {
3691
+ #editor-x & [cmdk-item] {
3692
+ padding-block: calc(var(--spacing) * 3);
3693
+ }
3694
+ }
3695
+ #editor-x .\[\&_svg\]\:pointer-events-none {
3696
+ #editor-x & svg {
3697
+ pointer-events: none;
3698
+ }
3699
+ }
3700
+ #editor-x .\[\&_svg\]\:shrink-0 {
3701
+ #editor-x & svg {
3702
+ flex-shrink: 0;
3703
+ }
3704
+ }
3705
+ #editor-x .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:h-4 {
3706
+ #editor-x & svg:not([class*='size-']) {
3707
+ height: calc(var(--spacing) * 4);
3708
+ }
3709
+ }
3710
+ #editor-x .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:w-4 {
3711
+ #editor-x & svg:not([class*='size-']) {
3712
+ width: calc(var(--spacing) * 4);
3713
+ }
3714
+ }
3715
+ #editor-x .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground {
3716
+ #editor-x & svg:not([class*='text-']) {
3717
+ color: var(--muted-foreground);
3718
+ }
3719
+ }
3720
+ #editor-x .hover\:\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-foreground {
3721
+ #editor-x &:hover {
3722
+ @media (hover: hover) {
3723
+ #editor-x & svg:not([class*='text-']) {
3724
+ color: var(--foreground);
3725
+ }
3726
+ }
3727
+ }
3728
+ }
3729
+ #editor-x .focus\:\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-accent-foreground {
3730
+ #editor-x &:focus {
3731
+ #editor-x & svg:not([class*='text-']) {
3732
+ color: var(--accent-foreground);
3733
+ }
3734
+ }
3735
+ }
3736
+ #editor-x .data-\[selected\=true\]\:\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-accent-foreground {
3737
+ #editor-x &[data-selected="true"] {
3738
+ #editor-x & svg:not([class*='text-']) {
3739
+ color: var(--accent-foreground);
3740
+ }
3741
+ }
3742
+ }
3743
+ #editor-x .\[\&\:\:-webkit-inner-spin-button\]\:m-0 {
3744
+ #editor-x &::-webkit-inner-spin-button {
3745
+ margin: calc(var(--spacing) * 0);
3746
+ }
3747
+ }
3748
+ #editor-x .\[\&\:\:-webkit-inner-spin-button\]\:appearance-none {
3749
+ #editor-x &::-webkit-inner-spin-button {
3750
+ appearance: none;
3751
+ }
3752
+ }
3753
+ #editor-x .\[\&\:\:-webkit-outer-spin-button\]\:m-0 {
3754
+ #editor-x &::-webkit-outer-spin-button {
3755
+ margin: calc(var(--spacing) * 0);
3756
+ }
3757
+ }
3758
+ #editor-x .\[\&\:\:-webkit-outer-spin-button\]\:appearance-none {
3759
+ #editor-x &::-webkit-outer-spin-button {
3760
+ appearance: none;
3761
+ }
3762
+ }
3763
+ #editor-x .\[\&\:has\(\*\)\]\:z-10 {
3764
+ #editor-x &:has(*) {
3765
+ z-index: 10;
3766
+ }
3767
+ }
3768
+ #editor-x .\*\:\[span\]\:last\:flex {
3769
+ #editor-x :is(& > *) {
3770
+ #editor-x &:is(span) {
3771
+ #editor-x &:last-child {
3772
+ display: flex;
3773
+ }
3774
+ }
3775
+ }
3776
+ }
3777
+ #editor-x .\*\:\[span\]\:last\:items-center {
3778
+ #editor-x :is(& > *) {
3779
+ #editor-x &:is(span) {
3780
+ #editor-x &:last-child {
3781
+ align-items: center;
3782
+ }
3783
+ }
3784
+ }
3785
+ }
3786
+ #editor-x .\*\:\[span\]\:last\:gap-2 {
3787
+ #editor-x :is(& > *) {
3788
+ #editor-x &:is(span) {
3789
+ #editor-x &:last-child {
3790
+ gap: calc(var(--spacing) * 2);
3791
+ }
3792
+ }
3793
+ }
3794
+ }
3795
+ #editor-x .\[\&\:not\(\:first-child\)\]\:mt-2 {
3796
+ #editor-x &:not(:first-child) {
3797
+ margin-top: calc(var(--spacing) * 2);
3798
+ }
3799
+ }
3800
+ #editor-x .\[\&\:read-only\]\:opacity-100 {
3801
+ #editor-x &:read-only {
3802
+ opacity: 100%;
3803
+ }
3804
+ }
3805
+ #editor-x .\[\&\:read-only\]\:disabled\:opacity-100 {
3806
+ #editor-x &:read-only {
3807
+ #editor-x &:disabled {
3808
+ opacity: 100%;
3809
+ }
3810
+ }
3811
+ }
3812
+ #editor-x .\[\&\>\*\]\:focus-visible\:relative {
3813
+ #editor-x &>* {
3814
+ #editor-x &:focus-visible {
3815
+ position: relative;
3816
+ }
3817
+ }
3818
+ }
3819
+ #editor-x .\[\&\>\*\]\:focus-visible\:z-10 {
3820
+ #editor-x &>* {
3821
+ #editor-x &:focus-visible {
3822
+ z-index: 10;
3823
+ }
3824
+ }
3825
+ }
3826
+ #editor-x .\[\&\>\*\:not\(\:first-child\)\]\:rounded-t-none {
3827
+ #editor-x &>*:not(:first-child) {
3828
+ border-top-left-radius: 0;
3829
+ border-top-right-radius: 0;
3830
+ }
3831
+ }
3832
+ #editor-x .\[\&\>\*\:not\(\:first-child\)\]\:rounded-l-none {
3833
+ #editor-x &>*:not(:first-child) {
3834
+ border-top-left-radius: 0;
3835
+ border-bottom-left-radius: 0;
3836
+ }
3837
+ }
3838
+ #editor-x .\[\&\>\*\:not\(\:first-child\)\]\:border-t-0 {
3839
+ #editor-x &>*:not(:first-child) {
3840
+ border-top-style: var(--tw-border-style);
3841
+ border-top-width: 0px;
3842
+ }
3843
+ }
3844
+ #editor-x .\[\&\>\*\:not\(\:first-child\)\]\:border-l-0 {
3845
+ #editor-x &>*:not(:first-child) {
3846
+ border-left-style: var(--tw-border-style);
3847
+ border-left-width: 0px;
3848
+ }
3849
+ }
3850
+ #editor-x .\[\&\>\*\:not\(\:last-child\)\]\:rounded-r-none {
3851
+ #editor-x &>*:not(:last-child) {
3852
+ border-top-right-radius: 0;
3853
+ border-bottom-right-radius: 0;
3854
+ }
3855
+ }
3856
+ #editor-x .\[\&\>\*\:not\(\:last-child\)\]\:rounded-b-none {
3857
+ #editor-x &>*:not(:last-child) {
3858
+ border-bottom-right-radius: 0;
3859
+ border-bottom-left-radius: 0;
3860
+ }
3861
+ }
3862
+ #editor-x .has-\[select\[aria-hidden\=true\]\:last-child\]\:\[\&\>\[data-slot\=select-trigger\]\:last-of-type\]\:rounded-r-md {
3863
+ #editor-x &:has(*:is(select[aria-hidden=true]:last-child)) {
3864
+ #editor-x &>[data-slot=select-trigger]:last-of-type {
3865
+ border-top-right-radius: var(--radius-md);
3866
+ border-bottom-right-radius: var(--radius-md);
3867
+ }
3868
+ }
3869
+ }
3870
+ #editor-x .\[\&\>\[data-slot\=select-trigger\]\:not\(\[class\*\=\'w-\'\]\)\]\:w-fit {
3871
+ #editor-x &>[data-slot=select-trigger]:not([class*='w-']) {
3872
+ width: fit-content;
3873
+ }
3874
+ }
3875
+ #editor-x .\[\&\>div\]\:outline-none {
3876
+ #editor-x &>div {
3877
+ --tw-outline-style: none;
3878
+ outline-style: none;
3879
+ }
3880
+ }
3881
+ #editor-x .\[\&\>input\]\:flex-1 {
3882
+ #editor-x &>input {
3883
+ flex: 1;
3884
+ }
3885
+ }
3886
+ #editor-x .\[\&\>li\]\:mt-2 {
3887
+ #editor-x &>li {
3888
+ margin-top: calc(var(--spacing) * 2);
3889
+ }
3890
+ }
3891
+ #editor-x .\[\&\[align\=center\]\]\:text-center {
3892
+ #editor-x &[align=center] {
3893
+ text-align: center;
3894
+ }
3895
+ }
3896
+ #editor-x .\[\&\[align\=right\]\]\:text-right {
3897
+ #editor-x &[align=right] {
3898
+ text-align: right;
3899
+ }
3900
+ }
3901
+ }
3902
+ @property --tw-translate-x {
3903
+ syntax: "*";
3904
+ inherits: false;
3905
+ initial-value: 0;
3906
+ }
3907
+ @property --tw-translate-y {
3908
+ syntax: "*";
3909
+ inherits: false;
3910
+ initial-value: 0;
3911
+ }
3912
+ @property --tw-translate-z {
3913
+ syntax: "*";
3914
+ inherits: false;
3915
+ initial-value: 0;
3916
+ }
3917
+ @property --tw-rotate-x {
3918
+ syntax: "*";
3919
+ inherits: false;
3920
+ }
3921
+ @property --tw-rotate-y {
3922
+ syntax: "*";
3923
+ inherits: false;
3924
+ }
3925
+ @property --tw-rotate-z {
3926
+ syntax: "*";
3927
+ inherits: false;
3928
+ }
3929
+ @property --tw-skew-x {
3930
+ syntax: "*";
3931
+ inherits: false;
3932
+ }
3933
+ @property --tw-skew-y {
3934
+ syntax: "*";
3935
+ inherits: false;
3936
+ }
3937
+ @property --tw-space-y-reverse {
3938
+ syntax: "*";
3939
+ inherits: false;
3940
+ initial-value: 0;
3941
+ }
3942
+ @property --tw-space-x-reverse {
3943
+ syntax: "*";
3944
+ inherits: false;
3945
+ initial-value: 0;
3946
+ }
3947
+ @property --tw-border-style {
3948
+ syntax: "*";
3949
+ inherits: false;
3950
+ initial-value: solid;
3951
+ }
3952
+ @property --tw-gradient-position {
3953
+ syntax: "*";
3954
+ inherits: false;
3955
+ }
3956
+ @property --tw-gradient-from {
3957
+ syntax: "<color>";
3958
+ inherits: false;
3959
+ initial-value: #0000;
3960
+ }
3961
+ @property --tw-gradient-via {
3962
+ syntax: "<color>";
3963
+ inherits: false;
3964
+ initial-value: #0000;
3965
+ }
3966
+ @property --tw-gradient-to {
3967
+ syntax: "<color>";
3968
+ inherits: false;
3969
+ initial-value: #0000;
3970
+ }
3971
+ @property --tw-gradient-stops {
3972
+ syntax: "*";
3973
+ inherits: false;
3974
+ }
3975
+ @property --tw-gradient-via-stops {
3976
+ syntax: "*";
3977
+ inherits: false;
3978
+ }
3979
+ @property --tw-gradient-from-position {
3980
+ syntax: "<length-percentage>";
3981
+ inherits: false;
3982
+ initial-value: 0%;
3983
+ }
3984
+ @property --tw-gradient-via-position {
3985
+ syntax: "<length-percentage>";
3986
+ inherits: false;
3987
+ initial-value: 50%;
3988
+ }
3989
+ @property --tw-gradient-to-position {
3990
+ syntax: "<length-percentage>";
3991
+ inherits: false;
3992
+ initial-value: 100%;
3993
+ }
3994
+ @property --tw-leading {
3995
+ syntax: "*";
3996
+ inherits: false;
3997
+ }
3998
+ @property --tw-font-weight {
3999
+ syntax: "*";
4000
+ inherits: false;
4001
+ }
4002
+ @property --tw-tracking {
4003
+ syntax: "*";
4004
+ inherits: false;
4005
+ }
4006
+ @property --tw-ordinal {
4007
+ syntax: "*";
4008
+ inherits: false;
4009
+ }
4010
+ @property --tw-slashed-zero {
4011
+ syntax: "*";
4012
+ inherits: false;
4013
+ }
4014
+ @property --tw-numeric-figure {
4015
+ syntax: "*";
4016
+ inherits: false;
4017
+ }
4018
+ @property --tw-numeric-spacing {
4019
+ syntax: "*";
4020
+ inherits: false;
4021
+ }
4022
+ @property --tw-numeric-fraction {
4023
+ syntax: "*";
4024
+ inherits: false;
4025
+ }
4026
+ @property --tw-shadow {
4027
+ syntax: "*";
4028
+ inherits: false;
4029
+ initial-value: 0 0 #0000;
4030
+ }
4031
+ @property --tw-shadow-color {
4032
+ syntax: "*";
4033
+ inherits: false;
4034
+ }
4035
+ @property --tw-shadow-alpha {
4036
+ syntax: "<percentage>";
4037
+ inherits: false;
4038
+ initial-value: 100%;
4039
+ }
4040
+ @property --tw-inset-shadow {
4041
+ syntax: "*";
4042
+ inherits: false;
4043
+ initial-value: 0 0 #0000;
4044
+ }
4045
+ @property --tw-inset-shadow-color {
4046
+ syntax: "*";
4047
+ inherits: false;
4048
+ }
4049
+ @property --tw-inset-shadow-alpha {
4050
+ syntax: "<percentage>";
4051
+ inherits: false;
4052
+ initial-value: 100%;
4053
+ }
4054
+ @property --tw-ring-color {
4055
+ syntax: "*";
4056
+ inherits: false;
4057
+ }
4058
+ @property --tw-ring-shadow {
4059
+ syntax: "*";
4060
+ inherits: false;
4061
+ initial-value: 0 0 #0000;
4062
+ }
4063
+ @property --tw-inset-ring-color {
4064
+ syntax: "*";
4065
+ inherits: false;
4066
+ }
4067
+ @property --tw-inset-ring-shadow {
4068
+ syntax: "*";
4069
+ inherits: false;
4070
+ initial-value: 0 0 #0000;
4071
+ }
4072
+ @property --tw-ring-inset {
4073
+ syntax: "*";
4074
+ inherits: false;
4075
+ }
4076
+ @property --tw-ring-offset-width {
4077
+ syntax: "<length>";
4078
+ inherits: false;
4079
+ initial-value: 0px;
4080
+ }
4081
+ @property --tw-ring-offset-color {
4082
+ syntax: "*";
4083
+ inherits: false;
4084
+ initial-value: #fff;
4085
+ }
4086
+ @property --tw-ring-offset-shadow {
4087
+ syntax: "*";
4088
+ inherits: false;
4089
+ initial-value: 0 0 #0000;
4090
+ }
4091
+ @property --tw-outline-style {
4092
+ syntax: "*";
4093
+ inherits: false;
4094
+ initial-value: solid;
4095
+ }
4096
+ @property --tw-blur {
4097
+ syntax: "*";
4098
+ inherits: false;
4099
+ }
4100
+ @property --tw-brightness {
4101
+ syntax: "*";
4102
+ inherits: false;
4103
+ }
4104
+ @property --tw-contrast {
4105
+ syntax: "*";
4106
+ inherits: false;
4107
+ }
4108
+ @property --tw-grayscale {
4109
+ syntax: "*";
4110
+ inherits: false;
4111
+ }
4112
+ @property --tw-hue-rotate {
4113
+ syntax: "*";
4114
+ inherits: false;
4115
+ }
4116
+ @property --tw-invert {
4117
+ syntax: "*";
4118
+ inherits: false;
4119
+ }
4120
+ @property --tw-opacity {
4121
+ syntax: "*";
4122
+ inherits: false;
4123
+ }
4124
+ @property --tw-saturate {
4125
+ syntax: "*";
4126
+ inherits: false;
4127
+ }
4128
+ @property --tw-sepia {
4129
+ syntax: "*";
4130
+ inherits: false;
4131
+ }
4132
+ @property --tw-drop-shadow {
4133
+ syntax: "*";
4134
+ inherits: false;
4135
+ }
4136
+ @property --tw-drop-shadow-color {
4137
+ syntax: "*";
4138
+ inherits: false;
4139
+ }
4140
+ @property --tw-drop-shadow-alpha {
4141
+ syntax: "<percentage>";
4142
+ inherits: false;
4143
+ initial-value: 100%;
4144
+ }
4145
+ @property --tw-drop-shadow-size {
4146
+ syntax: "*";
4147
+ inherits: false;
4148
+ }
4149
+ @property --tw-backdrop-blur {
4150
+ syntax: "*";
4151
+ inherits: false;
4152
+ }
4153
+ @property --tw-backdrop-brightness {
4154
+ syntax: "*";
4155
+ inherits: false;
4156
+ }
4157
+ @property --tw-backdrop-contrast {
4158
+ syntax: "*";
4159
+ inherits: false;
4160
+ }
4161
+ @property --tw-backdrop-grayscale {
4162
+ syntax: "*";
4163
+ inherits: false;
4164
+ }
4165
+ @property --tw-backdrop-hue-rotate {
4166
+ syntax: "*";
4167
+ inherits: false;
4168
+ }
4169
+ @property --tw-backdrop-invert {
4170
+ syntax: "*";
4171
+ inherits: false;
4172
+ }
4173
+ @property --tw-backdrop-opacity {
4174
+ syntax: "*";
4175
+ inherits: false;
4176
+ }
4177
+ @property --tw-backdrop-saturate {
4178
+ syntax: "*";
4179
+ inherits: false;
4180
+ }
4181
+ @property --tw-backdrop-sepia {
4182
+ syntax: "*";
4183
+ inherits: false;
4184
+ }
4185
+ @property --tw-duration {
4186
+ syntax: "*";
4187
+ inherits: false;
4188
+ }
4189
+ @property --tw-content {
4190
+ syntax: "*";
4191
+ initial-value: "";
4192
+ inherits: false;
4193
+ }
4194
+ @keyframes spin {
4195
+ to {
4196
+ transform: rotate(360deg);
4197
+ }
4198
+ }
4199
+ @keyframes pulse {
4200
+ 50% {
4201
+ opacity: 0.5;
4202
+ }
4203
+ }
4204
+ @layer properties {
4205
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
4206
+ #editor-x *, #editor-x ::before, #editor-x ::after, #editor-x ::backdrop {
4207
+ --tw-translate-x: 0;
4208
+ --tw-translate-y: 0;
4209
+ --tw-translate-z: 0;
4210
+ --tw-rotate-x: initial;
4211
+ --tw-rotate-y: initial;
4212
+ --tw-rotate-z: initial;
4213
+ --tw-skew-x: initial;
4214
+ --tw-skew-y: initial;
4215
+ --tw-space-y-reverse: 0;
4216
+ --tw-space-x-reverse: 0;
4217
+ --tw-border-style: solid;
4218
+ --tw-gradient-position: initial;
4219
+ --tw-gradient-from: #0000;
4220
+ --tw-gradient-via: #0000;
4221
+ --tw-gradient-to: #0000;
4222
+ --tw-gradient-stops: initial;
4223
+ --tw-gradient-via-stops: initial;
4224
+ --tw-gradient-from-position: 0%;
4225
+ --tw-gradient-via-position: 50%;
4226
+ --tw-gradient-to-position: 100%;
4227
+ --tw-leading: initial;
4228
+ --tw-font-weight: initial;
4229
+ --tw-tracking: initial;
4230
+ --tw-ordinal: initial;
4231
+ --tw-slashed-zero: initial;
4232
+ --tw-numeric-figure: initial;
4233
+ --tw-numeric-spacing: initial;
4234
+ --tw-numeric-fraction: initial;
4235
+ --tw-shadow: 0 0 #0000;
4236
+ --tw-shadow-color: initial;
4237
+ --tw-shadow-alpha: 100%;
4238
+ --tw-inset-shadow: 0 0 #0000;
4239
+ --tw-inset-shadow-color: initial;
4240
+ --tw-inset-shadow-alpha: 100%;
4241
+ --tw-ring-color: initial;
4242
+ --tw-ring-shadow: 0 0 #0000;
4243
+ --tw-inset-ring-color: initial;
4244
+ --tw-inset-ring-shadow: 0 0 #0000;
4245
+ --tw-ring-inset: initial;
4246
+ --tw-ring-offset-width: 0px;
4247
+ --tw-ring-offset-color: #fff;
4248
+ --tw-ring-offset-shadow: 0 0 #0000;
4249
+ --tw-outline-style: solid;
4250
+ --tw-blur: initial;
4251
+ --tw-brightness: initial;
4252
+ --tw-contrast: initial;
4253
+ --tw-grayscale: initial;
4254
+ --tw-hue-rotate: initial;
4255
+ --tw-invert: initial;
4256
+ --tw-opacity: initial;
4257
+ --tw-saturate: initial;
4258
+ --tw-sepia: initial;
4259
+ --tw-drop-shadow: initial;
4260
+ --tw-drop-shadow-color: initial;
4261
+ --tw-drop-shadow-alpha: 100%;
4262
+ --tw-drop-shadow-size: initial;
4263
+ --tw-backdrop-blur: initial;
4264
+ --tw-backdrop-brightness: initial;
4265
+ --tw-backdrop-contrast: initial;
4266
+ --tw-backdrop-grayscale: initial;
4267
+ --tw-backdrop-hue-rotate: initial;
4268
+ --tw-backdrop-invert: initial;
4269
+ --tw-backdrop-opacity: initial;
4270
+ --tw-backdrop-saturate: initial;
4271
+ --tw-backdrop-sepia: initial;
4272
+ --tw-duration: initial;
4273
+ --tw-content: "";
4274
+ }
4275
+ }
4276
+ }