baaz-custom-components 3.0.0 → 3.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.
package/dist/index.css ADDED
@@ -0,0 +1,2759 @@
1
+ /* src/index.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --font-sans:
8
+ ui-sans-serif,
9
+ system-ui,
10
+ sans-serif,
11
+ "Apple Color Emoji",
12
+ "Segoe UI Emoji",
13
+ "Segoe UI Symbol",
14
+ "Noto Color Emoji";
15
+ --font-mono:
16
+ ui-monospace,
17
+ SFMono-Regular,
18
+ Menlo,
19
+ Monaco,
20
+ Consolas,
21
+ "Liberation Mono",
22
+ "Courier New",
23
+ monospace;
24
+ --color-black: #000;
25
+ --color-white: #fff;
26
+ --spacing: 0.25rem;
27
+ --container-sm: 24rem;
28
+ --container-lg: 32rem;
29
+ --text-xs: 0.75rem;
30
+ --text-xs--line-height: calc(1 / 0.75);
31
+ --text-sm: 0.875rem;
32
+ --text-sm--line-height: calc(1.25 / 0.875);
33
+ --text-base: 1rem;
34
+ --text-base--line-height: calc(1.5 / 1);
35
+ --text-lg: 1.125rem;
36
+ --text-lg--line-height: calc(1.75 / 1.125);
37
+ --font-weight-light: 300;
38
+ --font-weight-normal: 400;
39
+ --font-weight-medium: 500;
40
+ --font-weight-semibold: 600;
41
+ --tracking-widest: 0.1em;
42
+ --radius-xs: 0.125rem;
43
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
44
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
45
+ --default-transition-duration: 150ms;
46
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
47
+ --default-font-family: var(--font-sans);
48
+ --default-mono-font-family: var(--font-mono);
49
+ }
50
+ }
51
+ @layer base {
52
+ *,
53
+ ::after,
54
+ ::before,
55
+ ::backdrop,
56
+ ::file-selector-button {
57
+ box-sizing: border-box;
58
+ margin: 0;
59
+ padding: 0;
60
+ border: 0 solid;
61
+ }
62
+ html,
63
+ :host {
64
+ line-height: 1.5;
65
+ -webkit-text-size-adjust: 100%;
66
+ tab-size: 4;
67
+ 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");
68
+ font-feature-settings: var(--default-font-feature-settings, normal);
69
+ font-variation-settings: var(--default-font-variation-settings, normal);
70
+ -webkit-tap-highlight-color: transparent;
71
+ }
72
+ hr {
73
+ height: 0;
74
+ color: inherit;
75
+ border-top-width: 1px;
76
+ }
77
+ abbr:where([title]) {
78
+ -webkit-text-decoration: underline dotted;
79
+ text-decoration: underline dotted;
80
+ }
81
+ h1,
82
+ h2,
83
+ h3,
84
+ h4,
85
+ h5,
86
+ h6 {
87
+ font-size: inherit;
88
+ font-weight: inherit;
89
+ }
90
+ a {
91
+ color: inherit;
92
+ -webkit-text-decoration: inherit;
93
+ text-decoration: inherit;
94
+ }
95
+ b,
96
+ strong {
97
+ font-weight: bolder;
98
+ }
99
+ code,
100
+ kbd,
101
+ samp,
102
+ pre {
103
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
104
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
105
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
106
+ font-size: 1em;
107
+ }
108
+ small {
109
+ font-size: 80%;
110
+ }
111
+ sub,
112
+ sup {
113
+ font-size: 75%;
114
+ line-height: 0;
115
+ position: relative;
116
+ vertical-align: baseline;
117
+ }
118
+ sub {
119
+ bottom: -0.25em;
120
+ }
121
+ sup {
122
+ top: -0.5em;
123
+ }
124
+ table {
125
+ text-indent: 0;
126
+ border-color: inherit;
127
+ border-collapse: collapse;
128
+ }
129
+ :-moz-focusring {
130
+ outline: auto;
131
+ }
132
+ progress {
133
+ vertical-align: baseline;
134
+ }
135
+ summary {
136
+ display: list-item;
137
+ }
138
+ ol,
139
+ ul,
140
+ menu {
141
+ list-style: none;
142
+ }
143
+ img,
144
+ svg,
145
+ video,
146
+ canvas,
147
+ audio,
148
+ iframe,
149
+ embed,
150
+ object {
151
+ display: block;
152
+ vertical-align: middle;
153
+ }
154
+ img,
155
+ video {
156
+ max-width: 100%;
157
+ height: auto;
158
+ }
159
+ button,
160
+ input,
161
+ select,
162
+ optgroup,
163
+ textarea,
164
+ ::file-selector-button {
165
+ font: inherit;
166
+ font-feature-settings: inherit;
167
+ font-variation-settings: inherit;
168
+ letter-spacing: inherit;
169
+ color: inherit;
170
+ border-radius: 0;
171
+ background-color: transparent;
172
+ opacity: 1;
173
+ }
174
+ :where(select:is([multiple], [size])) optgroup {
175
+ font-weight: bolder;
176
+ }
177
+ :where(select:is([multiple], [size])) optgroup option {
178
+ padding-inline-start: 20px;
179
+ }
180
+ ::file-selector-button {
181
+ margin-inline-end: 4px;
182
+ }
183
+ ::placeholder {
184
+ opacity: 1;
185
+ }
186
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
187
+ ::placeholder {
188
+ color: currentcolor;
189
+ @supports (color: color-mix(in lab, red, red)) {
190
+ color: color-mix(in oklab, currentcolor 50%, transparent);
191
+ }
192
+ }
193
+ }
194
+ textarea {
195
+ resize: vertical;
196
+ }
197
+ ::-webkit-search-decoration {
198
+ -webkit-appearance: none;
199
+ }
200
+ ::-webkit-date-and-time-value {
201
+ min-height: 1lh;
202
+ text-align: inherit;
203
+ }
204
+ ::-webkit-datetime-edit {
205
+ display: inline-flex;
206
+ }
207
+ ::-webkit-datetime-edit-fields-wrapper {
208
+ padding: 0;
209
+ }
210
+ ::-webkit-datetime-edit,
211
+ ::-webkit-datetime-edit-year-field,
212
+ ::-webkit-datetime-edit-month-field,
213
+ ::-webkit-datetime-edit-day-field,
214
+ ::-webkit-datetime-edit-hour-field,
215
+ ::-webkit-datetime-edit-minute-field,
216
+ ::-webkit-datetime-edit-second-field,
217
+ ::-webkit-datetime-edit-millisecond-field,
218
+ ::-webkit-datetime-edit-meridiem-field {
219
+ padding-block: 0;
220
+ }
221
+ ::-webkit-calendar-picker-indicator {
222
+ line-height: 1;
223
+ }
224
+ :-moz-ui-invalid {
225
+ box-shadow: none;
226
+ }
227
+ button,
228
+ input:where([type=button], [type=reset], [type=submit]),
229
+ ::file-selector-button {
230
+ appearance: button;
231
+ }
232
+ ::-webkit-inner-spin-button,
233
+ ::-webkit-outer-spin-button {
234
+ height: auto;
235
+ }
236
+ [hidden]:where(:not([hidden=until-found])) {
237
+ display: none !important;
238
+ }
239
+ }
240
+ @layer utilities {
241
+ .pointer-events-none {
242
+ pointer-events: none;
243
+ }
244
+ .sr-only {
245
+ position: absolute;
246
+ width: 1px;
247
+ height: 1px;
248
+ padding: 0;
249
+ margin: -1px;
250
+ overflow: hidden;
251
+ clip-path: inset(50%);
252
+ white-space: nowrap;
253
+ border-width: 0;
254
+ }
255
+ .absolute {
256
+ position: absolute;
257
+ }
258
+ .fixed {
259
+ position: fixed;
260
+ }
261
+ .relative {
262
+ position: relative;
263
+ }
264
+ .inset-0 {
265
+ inset: calc(var(--spacing) * 0);
266
+ }
267
+ .inset-x-0 {
268
+ inset-inline: calc(var(--spacing) * 0);
269
+ }
270
+ .inset-y-0 {
271
+ inset-block: calc(var(--spacing) * 0);
272
+ }
273
+ .top-0 {
274
+ top: calc(var(--spacing) * 0);
275
+ }
276
+ .top-1\.5 {
277
+ top: calc(var(--spacing) * 1.5);
278
+ }
279
+ .top-3\.5 {
280
+ top: calc(var(--spacing) * 3.5);
281
+ }
282
+ .top-4 {
283
+ top: calc(var(--spacing) * 4);
284
+ }
285
+ .top-12 {
286
+ top: calc(var(--spacing) * 12);
287
+ }
288
+ .top-\[1px\] {
289
+ top: 1px;
290
+ }
291
+ .top-\[50\%\] {
292
+ top: 50%;
293
+ }
294
+ .top-\[60\%\] {
295
+ top: 60%;
296
+ }
297
+ .top-full {
298
+ top: 100%;
299
+ }
300
+ .right-0 {
301
+ right: calc(var(--spacing) * 0);
302
+ }
303
+ .right-1 {
304
+ right: calc(var(--spacing) * 1);
305
+ }
306
+ .right-2 {
307
+ right: calc(var(--spacing) * 2);
308
+ }
309
+ .right-3 {
310
+ right: calc(var(--spacing) * 3);
311
+ }
312
+ .right-4 {
313
+ right: calc(var(--spacing) * 4);
314
+ }
315
+ .bottom-0 {
316
+ bottom: calc(var(--spacing) * 0);
317
+ }
318
+ .left-0 {
319
+ left: calc(var(--spacing) * 0);
320
+ }
321
+ .left-2 {
322
+ left: calc(var(--spacing) * 2);
323
+ }
324
+ .left-\[50\%\] {
325
+ left: 50%;
326
+ }
327
+ .isolate {
328
+ isolation: isolate;
329
+ }
330
+ .z-10 {
331
+ z-index: 10;
332
+ }
333
+ .z-20 {
334
+ z-index: 20;
335
+ }
336
+ .z-40 {
337
+ z-index: 40;
338
+ }
339
+ .z-50 {
340
+ z-index: 50;
341
+ }
342
+ .z-\[1\] {
343
+ z-index: 1;
344
+ }
345
+ .-mx-1 {
346
+ margin-inline: calc(var(--spacing) * -1);
347
+ }
348
+ .mx-2 {
349
+ margin-inline: calc(var(--spacing) * 2);
350
+ }
351
+ .mx-3\.5 {
352
+ margin-inline: calc(var(--spacing) * 3.5);
353
+ }
354
+ .my-1 {
355
+ margin-block: calc(var(--spacing) * 1);
356
+ }
357
+ .my-4 {
358
+ margin-block: calc(var(--spacing) * 4);
359
+ }
360
+ .mt-1\.5 {
361
+ margin-top: calc(var(--spacing) * 1.5);
362
+ }
363
+ .mt-4 {
364
+ margin-top: calc(var(--spacing) * 4);
365
+ }
366
+ .mt-auto {
367
+ margin-top: auto;
368
+ }
369
+ .ml-1 {
370
+ margin-left: calc(var(--spacing) * 1);
371
+ }
372
+ .ml-auto {
373
+ margin-left: auto;
374
+ }
375
+ .flex {
376
+ display: flex;
377
+ }
378
+ .grid {
379
+ display: grid;
380
+ }
381
+ .hidden {
382
+ display: none;
383
+ }
384
+ .inline-flex {
385
+ display: inline-flex;
386
+ }
387
+ .aspect-square {
388
+ aspect-ratio: 1 / 1;
389
+ }
390
+ .size-2 {
391
+ width: calc(var(--spacing) * 2);
392
+ height: calc(var(--spacing) * 2);
393
+ }
394
+ .size-2\.5 {
395
+ width: calc(var(--spacing) * 2.5);
396
+ height: calc(var(--spacing) * 2.5);
397
+ }
398
+ .size-3 {
399
+ width: calc(var(--spacing) * 3);
400
+ height: calc(var(--spacing) * 3);
401
+ }
402
+ .size-3\.5 {
403
+ width: calc(var(--spacing) * 3.5);
404
+ height: calc(var(--spacing) * 3.5);
405
+ }
406
+ .size-4 {
407
+ width: calc(var(--spacing) * 4);
408
+ height: calc(var(--spacing) * 4);
409
+ }
410
+ .size-7 {
411
+ width: calc(var(--spacing) * 7);
412
+ height: calc(var(--spacing) * 7);
413
+ }
414
+ .size-8 {
415
+ width: calc(var(--spacing) * 8);
416
+ height: calc(var(--spacing) * 8);
417
+ }
418
+ .size-9 {
419
+ width: calc(var(--spacing) * 9);
420
+ height: calc(var(--spacing) * 9);
421
+ }
422
+ .size-\[clamp\(1\.5rem\,1\.5rem\,1\.5rem\)\] {
423
+ width: clamp(1.5rem, 1.5rem, 1.5rem);
424
+ height: clamp(1.5rem, 1.5rem, 1.5rem);
425
+ }
426
+ .size-full {
427
+ width: 100%;
428
+ height: 100%;
429
+ }
430
+ .h-1\.5 {
431
+ height: calc(var(--spacing) * 1.5);
432
+ }
433
+ .h-2 {
434
+ height: calc(var(--spacing) * 2);
435
+ }
436
+ .h-4 {
437
+ height: calc(var(--spacing) * 4);
438
+ }
439
+ .h-5 {
440
+ height: calc(var(--spacing) * 5);
441
+ }
442
+ .h-7 {
443
+ height: calc(var(--spacing) * 7);
444
+ }
445
+ .h-8 {
446
+ height: calc(var(--spacing) * 8);
447
+ }
448
+ .h-9 {
449
+ height: calc(var(--spacing) * 9);
450
+ }
451
+ .h-10 {
452
+ height: calc(var(--spacing) * 10);
453
+ }
454
+ .h-12 {
455
+ height: calc(var(--spacing) * 12);
456
+ }
457
+ .h-\[calc\(100dvh-3rem\)\] {
458
+ height: calc(100dvh - 3rem);
459
+ }
460
+ .h-\[var\(--radix-navigation-menu-viewport-height\)\] {
461
+ height: var(--radix-navigation-menu-viewport-height);
462
+ }
463
+ .h-\[var\(--radix-select-trigger-height\)\] {
464
+ height: var(--radix-select-trigger-height);
465
+ }
466
+ .h-auto {
467
+ height: auto;
468
+ }
469
+ .h-full {
470
+ height: 100%;
471
+ }
472
+ .h-px {
473
+ height: 1px;
474
+ }
475
+ .h-svh {
476
+ height: 100svh;
477
+ }
478
+ .max-h-\(--radix-dropdown-menu-content-available-height\) {
479
+ max-height: var(--radix-dropdown-menu-content-available-height);
480
+ }
481
+ .max-h-\(--radix-select-content-available-height\) {
482
+ max-height: var(--radix-select-content-available-height);
483
+ }
484
+ .min-h-0 {
485
+ min-height: calc(var(--spacing) * 0);
486
+ }
487
+ .w-\(--sidebar-width\) {
488
+ width: var(--sidebar-width);
489
+ }
490
+ .w-2 {
491
+ width: calc(var(--spacing) * 2);
492
+ }
493
+ .w-3\/4 {
494
+ width: calc(3/4 * 100%);
495
+ }
496
+ .w-4 {
497
+ width: calc(var(--spacing) * 4);
498
+ }
499
+ .w-5 {
500
+ width: calc(var(--spacing) * 5);
501
+ }
502
+ .w-56 {
503
+ width: calc(var(--spacing) * 56);
504
+ }
505
+ .w-\[200px\] {
506
+ width: 200px;
507
+ }
508
+ .w-auto {
509
+ width: auto;
510
+ }
511
+ .w-fit {
512
+ width: fit-content;
513
+ }
514
+ .w-full {
515
+ width: 100%;
516
+ }
517
+ .w-max {
518
+ width: max-content;
519
+ }
520
+ .max-w-\(--skeleton-width\) {
521
+ max-width: var(--skeleton-width);
522
+ }
523
+ .max-w-\[calc\(100\%-2rem\)\] {
524
+ max-width: calc(100% - 2rem);
525
+ }
526
+ .max-w-max {
527
+ max-width: max-content;
528
+ }
529
+ .min-w-0 {
530
+ min-width: calc(var(--spacing) * 0);
531
+ }
532
+ .min-w-5 {
533
+ min-width: calc(var(--spacing) * 5);
534
+ }
535
+ .min-w-\[8rem\] {
536
+ min-width: 8rem;
537
+ }
538
+ .min-w-\[12rem\] {
539
+ min-width: 12rem;
540
+ }
541
+ .min-w-\[var\(--radix-select-trigger-width\)\] {
542
+ min-width: var(--radix-select-trigger-width);
543
+ }
544
+ .flex-1 {
545
+ flex: 1;
546
+ }
547
+ .shrink-0 {
548
+ flex-shrink: 0;
549
+ }
550
+ .origin-\(--radix-dropdown-menu-content-transform-origin\) {
551
+ transform-origin: var(--radix-dropdown-menu-content-transform-origin);
552
+ }
553
+ .origin-\(--radix-menubar-content-transform-origin\) {
554
+ transform-origin: var(--radix-menubar-content-transform-origin);
555
+ }
556
+ .origin-\(--radix-select-content-transform-origin\) {
557
+ transform-origin: var(--radix-select-content-transform-origin);
558
+ }
559
+ .origin-\(--radix-tooltip-content-transform-origin\) {
560
+ transform-origin: var(--radix-tooltip-content-transform-origin);
561
+ }
562
+ .-translate-x-1\/2 {
563
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
564
+ translate: var(--tw-translate-x) var(--tw-translate-y);
565
+ }
566
+ .-translate-x-px {
567
+ --tw-translate-x: -1px;
568
+ translate: var(--tw-translate-x) var(--tw-translate-y);
569
+ }
570
+ .translate-x-\[-50\%\] {
571
+ --tw-translate-x: -50%;
572
+ translate: var(--tw-translate-x) var(--tw-translate-y);
573
+ }
574
+ .translate-x-px {
575
+ --tw-translate-x: 1px;
576
+ translate: var(--tw-translate-x) var(--tw-translate-y);
577
+ }
578
+ .translate-y-\[-50\%\] {
579
+ --tw-translate-y: -50%;
580
+ translate: var(--tw-translate-x) var(--tw-translate-y);
581
+ }
582
+ .translate-y-\[calc\(-50\%_-_2px\)\] {
583
+ --tw-translate-y: calc(-50% - 2px);
584
+ translate: var(--tw-translate-x) var(--tw-translate-y);
585
+ }
586
+ .rotate-45 {
587
+ rotate: 45deg;
588
+ }
589
+ .transform {
590
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
591
+ }
592
+ .animate-in {
593
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
594
+ }
595
+ .animate-pulse {
596
+ animation: var(--animate-pulse);
597
+ }
598
+ .cursor-default {
599
+ cursor: default;
600
+ }
601
+ .scroll-my-1 {
602
+ scroll-margin-block: calc(var(--spacing) * 1);
603
+ }
604
+ .list-none {
605
+ list-style-type: none;
606
+ }
607
+ .flex-col {
608
+ flex-direction: column;
609
+ }
610
+ .flex-col-reverse {
611
+ flex-direction: column-reverse;
612
+ }
613
+ .flex-wrap {
614
+ flex-wrap: wrap;
615
+ }
616
+ .items-center {
617
+ align-items: center;
618
+ }
619
+ .items-end {
620
+ align-items: flex-end;
621
+ }
622
+ .justify-between {
623
+ justify-content: space-between;
624
+ }
625
+ .justify-center {
626
+ justify-content: center;
627
+ }
628
+ .gap-1 {
629
+ gap: calc(var(--spacing) * 1);
630
+ }
631
+ .gap-1\.5 {
632
+ gap: calc(var(--spacing) * 1.5);
633
+ }
634
+ .gap-2 {
635
+ gap: calc(var(--spacing) * 2);
636
+ }
637
+ .gap-4 {
638
+ gap: calc(var(--spacing) * 4);
639
+ }
640
+ .overflow-auto {
641
+ overflow: auto;
642
+ }
643
+ .overflow-hidden {
644
+ overflow: hidden;
645
+ }
646
+ .overflow-x-hidden {
647
+ overflow-x: hidden;
648
+ }
649
+ .overflow-y-auto {
650
+ overflow-y: auto;
651
+ }
652
+ .rounded-\[2px\] {
653
+ border-radius: 2px;
654
+ }
655
+ .rounded-full {
656
+ border-radius: calc(infinity * 1px);
657
+ }
658
+ .rounded-lg {
659
+ border-radius: var(--radius);
660
+ }
661
+ .rounded-md {
662
+ border-radius: calc(var(--radius) - 2px);
663
+ }
664
+ .rounded-sm {
665
+ border-radius: calc(var(--radius) - 4px);
666
+ }
667
+ .rounded-xs {
668
+ border-radius: var(--radius-xs);
669
+ }
670
+ .rounded-tl-sm {
671
+ border-top-left-radius: calc(var(--radius) - 4px);
672
+ }
673
+ .border {
674
+ border-style: var(--tw-border-style);
675
+ border-width: 1px;
676
+ }
677
+ .border-t {
678
+ border-top-style: var(--tw-border-style);
679
+ border-top-width: 1px;
680
+ }
681
+ .border-r {
682
+ border-right-style: var(--tw-border-style);
683
+ border-right-width: 1px;
684
+ }
685
+ .border-b {
686
+ border-bottom-style: var(--tw-border-style);
687
+ border-bottom-width: 1px;
688
+ }
689
+ .border-b-1 {
690
+ border-bottom-style: var(--tw-border-style);
691
+ border-bottom-width: 1px;
692
+ }
693
+ .border-l {
694
+ border-left-style: var(--tw-border-style);
695
+ border-left-width: 1px;
696
+ }
697
+ .border-input {
698
+ border-color: var(--input);
699
+ }
700
+ .border-sidebar-border {
701
+ border-color: var(--sidebar-border);
702
+ }
703
+ .bg-accent {
704
+ background-color: var(--accent);
705
+ }
706
+ .bg-background {
707
+ background-color: var(--background);
708
+ }
709
+ .bg-black\/50 {
710
+ background-color: color-mix(in srgb, #000 50%, transparent);
711
+ @supports (color: color-mix(in lab, red, red)) {
712
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
713
+ }
714
+ }
715
+ .bg-border {
716
+ background-color: var(--border);
717
+ }
718
+ .bg-card {
719
+ background-color: var(--card);
720
+ }
721
+ .bg-destructive {
722
+ background-color: var(--destructive);
723
+ }
724
+ .bg-muted {
725
+ background-color: var(--muted);
726
+ }
727
+ .bg-popover {
728
+ background-color: var(--popover);
729
+ }
730
+ .bg-primary {
731
+ background-color: var(--primary);
732
+ }
733
+ .bg-secondary {
734
+ background-color: var(--secondary);
735
+ }
736
+ .bg-sidebar {
737
+ background-color: var(--sidebar);
738
+ }
739
+ .bg-sidebar-border {
740
+ background-color: var(--sidebar-border);
741
+ }
742
+ .bg-transparent {
743
+ background-color: transparent;
744
+ }
745
+ .fill-current {
746
+ fill: currentcolor;
747
+ }
748
+ .fill-primary {
749
+ fill: var(--primary);
750
+ }
751
+ .p-0 {
752
+ padding: calc(var(--spacing) * 0);
753
+ }
754
+ .p-1 {
755
+ padding: calc(var(--spacing) * 1);
756
+ }
757
+ .p-2 {
758
+ padding: calc(var(--spacing) * 2);
759
+ }
760
+ .p-4 {
761
+ padding: calc(var(--spacing) * 4);
762
+ }
763
+ .p-6 {
764
+ padding: calc(var(--spacing) * 6);
765
+ }
766
+ .px-1 {
767
+ padding-inline: calc(var(--spacing) * 1);
768
+ }
769
+ .px-2 {
770
+ padding-inline: calc(var(--spacing) * 2);
771
+ }
772
+ .px-2\.5 {
773
+ padding-inline: calc(var(--spacing) * 2.5);
774
+ }
775
+ .px-3 {
776
+ padding-inline: calc(var(--spacing) * 3);
777
+ }
778
+ .px-4 {
779
+ padding-inline: calc(var(--spacing) * 4);
780
+ }
781
+ .px-6 {
782
+ padding-inline: calc(var(--spacing) * 6);
783
+ }
784
+ .px-10 {
785
+ padding-inline: calc(var(--spacing) * 10);
786
+ }
787
+ .py-0\.5 {
788
+ padding-block: calc(var(--spacing) * 0.5);
789
+ }
790
+ .py-1 {
791
+ padding-block: calc(var(--spacing) * 1);
792
+ }
793
+ .py-1\.5 {
794
+ padding-block: calc(var(--spacing) * 1.5);
795
+ }
796
+ .py-2 {
797
+ padding-block: calc(var(--spacing) * 2);
798
+ }
799
+ .pt-12 {
800
+ padding-top: calc(var(--spacing) * 12);
801
+ }
802
+ .pr-2 {
803
+ padding-right: calc(var(--spacing) * 2);
804
+ }
805
+ .pr-2\.5 {
806
+ padding-right: calc(var(--spacing) * 2.5);
807
+ }
808
+ .pr-8 {
809
+ padding-right: calc(var(--spacing) * 8);
810
+ }
811
+ .pl-2 {
812
+ padding-left: calc(var(--spacing) * 2);
813
+ }
814
+ .pl-8 {
815
+ padding-left: calc(var(--spacing) * 8);
816
+ }
817
+ .text-center {
818
+ text-align: center;
819
+ }
820
+ .text-left {
821
+ text-align: left;
822
+ }
823
+ .text-base {
824
+ font-size: var(--text-base);
825
+ line-height: var(--tw-leading, var(--text-base--line-height));
826
+ }
827
+ .text-lg {
828
+ font-size: var(--text-lg);
829
+ line-height: var(--tw-leading, var(--text-lg--line-height));
830
+ }
831
+ .text-sm {
832
+ font-size: var(--text-sm);
833
+ line-height: var(--tw-leading, var(--text-sm--line-height));
834
+ }
835
+ .text-xs {
836
+ font-size: var(--text-xs);
837
+ line-height: var(--tw-leading, var(--text-xs--line-height));
838
+ }
839
+ .leading-none {
840
+ --tw-leading: 1;
841
+ line-height: 1;
842
+ }
843
+ .font-light {
844
+ --tw-font-weight: var(--font-weight-light);
845
+ font-weight: var(--font-weight-light);
846
+ }
847
+ .font-medium {
848
+ --tw-font-weight: var(--font-weight-medium);
849
+ font-weight: var(--font-weight-medium);
850
+ }
851
+ .font-normal {
852
+ --tw-font-weight: var(--font-weight-normal);
853
+ font-weight: var(--font-weight-normal);
854
+ }
855
+ .font-semibold {
856
+ --tw-font-weight: var(--font-weight-semibold);
857
+ font-weight: var(--font-weight-semibold);
858
+ }
859
+ .tracking-widest {
860
+ --tw-tracking: var(--tracking-widest);
861
+ letter-spacing: var(--tracking-widest);
862
+ }
863
+ .text-balance {
864
+ text-wrap: balance;
865
+ }
866
+ .break-words {
867
+ overflow-wrap: break-word;
868
+ }
869
+ .whitespace-nowrap {
870
+ white-space: nowrap;
871
+ }
872
+ .text-foreground {
873
+ color: var(--foreground);
874
+ }
875
+ .text-muted-foreground {
876
+ color: var(--muted-foreground);
877
+ }
878
+ .text-popover-foreground {
879
+ color: var(--popover-foreground);
880
+ }
881
+ .text-primary {
882
+ color: var(--primary);
883
+ }
884
+ .text-primary-foreground {
885
+ color: var(--primary-foreground);
886
+ }
887
+ .text-secondary-foreground {
888
+ color: var(--secondary-foreground);
889
+ }
890
+ .text-sidebar-foreground {
891
+ color: var(--sidebar-foreground);
892
+ }
893
+ .text-sidebar-foreground\/70 {
894
+ color: var(--sidebar-foreground);
895
+ @supports (color: color-mix(in lab, red, red)) {
896
+ color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent);
897
+ }
898
+ }
899
+ .text-white {
900
+ color: var(--color-white);
901
+ }
902
+ .tabular-nums {
903
+ --tw-numeric-spacing: tabular-nums;
904
+ font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
905
+ }
906
+ .underline-offset-4 {
907
+ text-underline-offset: 4px;
908
+ }
909
+ .antialiased {
910
+ -webkit-font-smoothing: antialiased;
911
+ -moz-osx-font-smoothing: grayscale;
912
+ }
913
+ .opacity-50 {
914
+ opacity: 50%;
915
+ }
916
+ .opacity-70 {
917
+ opacity: 70%;
918
+ }
919
+ .shadow {
920
+ --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));
921
+ box-shadow:
922
+ var(--tw-inset-shadow),
923
+ var(--tw-inset-ring-shadow),
924
+ var(--tw-ring-offset-shadow),
925
+ var(--tw-ring-shadow),
926
+ var(--tw-shadow);
927
+ }
928
+ .shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] {
929
+ --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border)));
930
+ box-shadow:
931
+ var(--tw-inset-shadow),
932
+ var(--tw-inset-ring-shadow),
933
+ var(--tw-ring-offset-shadow),
934
+ var(--tw-ring-shadow),
935
+ var(--tw-shadow);
936
+ }
937
+ .shadow-lg {
938
+ --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));
939
+ box-shadow:
940
+ var(--tw-inset-shadow),
941
+ var(--tw-inset-ring-shadow),
942
+ var(--tw-ring-offset-shadow),
943
+ var(--tw-ring-shadow),
944
+ var(--tw-shadow);
945
+ }
946
+ .shadow-md {
947
+ --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));
948
+ box-shadow:
949
+ var(--tw-inset-shadow),
950
+ var(--tw-inset-ring-shadow),
951
+ var(--tw-ring-offset-shadow),
952
+ var(--tw-ring-shadow),
953
+ var(--tw-shadow);
954
+ }
955
+ .shadow-none {
956
+ --tw-shadow: 0 0 #0000;
957
+ box-shadow:
958
+ var(--tw-inset-shadow),
959
+ var(--tw-inset-ring-shadow),
960
+ var(--tw-ring-offset-shadow),
961
+ var(--tw-ring-shadow),
962
+ var(--tw-shadow);
963
+ }
964
+ .shadow-xs {
965
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
966
+ box-shadow:
967
+ var(--tw-inset-shadow),
968
+ var(--tw-inset-ring-shadow),
969
+ var(--tw-ring-offset-shadow),
970
+ var(--tw-ring-shadow),
971
+ var(--tw-shadow);
972
+ }
973
+ .ring-sidebar-ring {
974
+ --tw-ring-color: var(--sidebar-ring);
975
+ }
976
+ .ring-offset-background {
977
+ --tw-ring-offset-color: var(--background);
978
+ }
979
+ .outline-hidden {
980
+ --tw-outline-style: none;
981
+ outline-style: none;
982
+ @media (forced-colors: active) {
983
+ outline: 2px solid transparent;
984
+ outline-offset: 2px;
985
+ }
986
+ }
987
+ .outline {
988
+ outline-style: var(--tw-outline-style);
989
+ outline-width: 1px;
990
+ }
991
+ .transition {
992
+ transition-property:
993
+ color,
994
+ background-color,
995
+ border-color,
996
+ outline-color,
997
+ text-decoration-color,
998
+ fill,
999
+ stroke,
1000
+ --tw-gradient-from,
1001
+ --tw-gradient-via,
1002
+ --tw-gradient-to,
1003
+ opacity,
1004
+ box-shadow,
1005
+ transform,
1006
+ translate,
1007
+ scale,
1008
+ rotate,
1009
+ filter,
1010
+ -webkit-backdrop-filter,
1011
+ backdrop-filter,
1012
+ display,
1013
+ content-visibility,
1014
+ overlay,
1015
+ pointer-events;
1016
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1017
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1018
+ }
1019
+ .transition-\[color\,box-shadow\] {
1020
+ transition-property: color, box-shadow;
1021
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1022
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1023
+ }
1024
+ .transition-\[left\,right\,width\] {
1025
+ transition-property:
1026
+ left,
1027
+ right,
1028
+ width;
1029
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1030
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1031
+ }
1032
+ .transition-\[margin\,opacity\] {
1033
+ transition-property: margin, opacity;
1034
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1035
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1036
+ }
1037
+ .transition-\[width\,height\,padding\] {
1038
+ transition-property:
1039
+ width,
1040
+ height,
1041
+ padding;
1042
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1043
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1044
+ }
1045
+ .transition-\[width\,height\] {
1046
+ transition-property: width, height;
1047
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1048
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1049
+ }
1050
+ .transition-\[width\] {
1051
+ transition-property: width;
1052
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1053
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1054
+ }
1055
+ .transition-all {
1056
+ transition-property: all;
1057
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1058
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1059
+ }
1060
+ .transition-colors {
1061
+ transition-property:
1062
+ color,
1063
+ background-color,
1064
+ border-color,
1065
+ outline-color,
1066
+ text-decoration-color,
1067
+ fill,
1068
+ stroke,
1069
+ --tw-gradient-from,
1070
+ --tw-gradient-via,
1071
+ --tw-gradient-to;
1072
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1073
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1074
+ }
1075
+ .transition-opacity {
1076
+ transition-property: opacity;
1077
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1078
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1079
+ }
1080
+ .transition-transform {
1081
+ transition-property:
1082
+ transform,
1083
+ translate,
1084
+ scale,
1085
+ rotate;
1086
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
1087
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
1088
+ }
1089
+ .duration-200 {
1090
+ --tw-duration: 200ms;
1091
+ transition-duration: 200ms;
1092
+ }
1093
+ .duration-300 {
1094
+ --tw-duration: 300ms;
1095
+ transition-duration: 300ms;
1096
+ }
1097
+ .ease-in-out {
1098
+ --tw-ease: var(--ease-in-out);
1099
+ transition-timing-function: var(--ease-in-out);
1100
+ }
1101
+ .ease-linear {
1102
+ --tw-ease: linear;
1103
+ transition-timing-function: linear;
1104
+ }
1105
+ .fade-in-0 {
1106
+ --tw-enter-opacity: calc(0/100);
1107
+ --tw-enter-opacity: 0;
1108
+ }
1109
+ .outline-none {
1110
+ --tw-outline-style: none;
1111
+ outline-style: none;
1112
+ }
1113
+ .select-none {
1114
+ -webkit-user-select: none;
1115
+ user-select: none;
1116
+ }
1117
+ .zoom-in-95 {
1118
+ --tw-enter-scale: calc(95*1%);
1119
+ --tw-enter-scale: .95;
1120
+ }
1121
+ .group-focus-within\/menu-item\:opacity-100 {
1122
+ &:is(:where(.group\/menu-item):focus-within *) {
1123
+ opacity: 100%;
1124
+ }
1125
+ }
1126
+ .group-hover\/menu-item\:opacity-100 {
1127
+ &:is(:where(.group\/menu-item):hover *) {
1128
+ @media (hover: hover) {
1129
+ opacity: 100%;
1130
+ }
1131
+ }
1132
+ }
1133
+ .group-has-data-\[collapsible\=icon\]\/sidebar-wrapper\:h-12 {
1134
+ &:is(:where(.group\/sidebar-wrapper):has(*[data-collapsible=icon]) *) {
1135
+ height: calc(var(--spacing) * 12);
1136
+ }
1137
+ }
1138
+ .group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8 {
1139
+ &:is(:where(.group\/menu-item):has(*[data-sidebar=menu-action]) *) {
1140
+ padding-right: calc(var(--spacing) * 8);
1141
+ }
1142
+ }
1143
+ .group-data-\[collapsible\=icon\]\:-mt-8 {
1144
+ &:is(:where(.group)[data-collapsible=icon] *) {
1145
+ margin-top: calc(var(--spacing) * -8);
1146
+ }
1147
+ }
1148
+ .group-data-\[collapsible\=icon\]\:hidden {
1149
+ &:is(:where(.group)[data-collapsible=icon] *) {
1150
+ display: none;
1151
+ }
1152
+ }
1153
+ .group-data-\[collapsible\=icon\]\:size-8\! {
1154
+ &:is(:where(.group)[data-collapsible=icon] *) {
1155
+ width: calc(var(--spacing) * 8) !important;
1156
+ height: calc(var(--spacing) * 8) !important;
1157
+ }
1158
+ }
1159
+ .group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\) {
1160
+ &:is(:where(.group)[data-collapsible=icon] *) {
1161
+ width: var(--sidebar-width-icon);
1162
+ }
1163
+ }
1164
+ .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\] {
1165
+ &:is(:where(.group)[data-collapsible=icon] *) {
1166
+ width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)));
1167
+ }
1168
+ }
1169
+ .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\] {
1170
+ &:is(:where(.group)[data-collapsible=icon] *) {
1171
+ width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px);
1172
+ }
1173
+ }
1174
+ .group-data-\[collapsible\=icon\]\:overflow-hidden {
1175
+ &:is(:where(.group)[data-collapsible=icon] *) {
1176
+ overflow: hidden;
1177
+ }
1178
+ }
1179
+ .group-data-\[collapsible\=icon\]\:p-0\! {
1180
+ &:is(:where(.group)[data-collapsible=icon] *) {
1181
+ padding: calc(var(--spacing) * 0) !important;
1182
+ }
1183
+ }
1184
+ .group-data-\[collapsible\=icon\]\:p-2\! {
1185
+ &:is(:where(.group)[data-collapsible=icon] *) {
1186
+ padding: calc(var(--spacing) * 2) !important;
1187
+ }
1188
+ }
1189
+ .group-data-\[collapsible\=icon\]\:opacity-0 {
1190
+ &:is(:where(.group)[data-collapsible=icon] *) {
1191
+ opacity: 0%;
1192
+ }
1193
+ }
1194
+ .group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\] {
1195
+ &:is(:where(.group)[data-collapsible=offcanvas] *) {
1196
+ right: calc(var(--sidebar-width) * -1);
1197
+ }
1198
+ }
1199
+ .group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\] {
1200
+ &:is(:where(.group)[data-collapsible=offcanvas] *) {
1201
+ left: calc(var(--sidebar-width) * -1);
1202
+ }
1203
+ }
1204
+ .group-data-\[collapsible\=offcanvas\]\:w-0 {
1205
+ &:is(:where(.group)[data-collapsible=offcanvas] *) {
1206
+ width: calc(var(--spacing) * 0);
1207
+ }
1208
+ }
1209
+ .group-data-\[collapsible\=offcanvas\]\:translate-x-0 {
1210
+ &:is(:where(.group)[data-collapsible=offcanvas] *) {
1211
+ --tw-translate-x: calc(var(--spacing) * 0);
1212
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1213
+ }
1214
+ }
1215
+ .group-data-\[side\=left\]\:-right-4 {
1216
+ &:is(:where(.group)[data-side=left] *) {
1217
+ right: calc(var(--spacing) * -4);
1218
+ }
1219
+ }
1220
+ .group-data-\[side\=left\]\:border-r {
1221
+ &:is(:where(.group)[data-side=left] *) {
1222
+ border-right-style: var(--tw-border-style);
1223
+ border-right-width: 1px;
1224
+ }
1225
+ }
1226
+ .group-data-\[side\=right\]\:left-0 {
1227
+ &:is(:where(.group)[data-side=right] *) {
1228
+ left: calc(var(--spacing) * 0);
1229
+ }
1230
+ }
1231
+ .group-data-\[side\=right\]\:rotate-180 {
1232
+ &:is(:where(.group)[data-side=right] *) {
1233
+ rotate: 180deg;
1234
+ }
1235
+ }
1236
+ .group-data-\[side\=right\]\:border-l {
1237
+ &:is(:where(.group)[data-side=right] *) {
1238
+ border-left-style: var(--tw-border-style);
1239
+ border-left-width: 1px;
1240
+ }
1241
+ }
1242
+ .group-data-\[state\=open\]\:rotate-180 {
1243
+ &:is(:where(.group)[data-state=open] *) {
1244
+ rotate: 180deg;
1245
+ }
1246
+ }
1247
+ .group-data-\[state\=open\]\:bg-sidebar-accent {
1248
+ &:is(:where(.group)[data-state=open] *) {
1249
+ background-color: var(--sidebar-accent);
1250
+ }
1251
+ }
1252
+ .group-data-\[state\=open\]\:text-sidebar-accent-foreground {
1253
+ &:is(:where(.group)[data-state=open] *) {
1254
+ color: var(--sidebar-accent-foreground);
1255
+ }
1256
+ }
1257
+ .group-data-\[state\=open\]\/collapsible\:rotate-90 {
1258
+ &:is(:where(.group\/collapsible)[data-state=open] *) {
1259
+ rotate: 90deg;
1260
+ }
1261
+ }
1262
+ .group-data-\[variant\=floating\]\:rounded-lg {
1263
+ &:is(:where(.group)[data-variant=floating] *) {
1264
+ border-radius: var(--radius);
1265
+ }
1266
+ }
1267
+ .group-data-\[variant\=floating\]\:border {
1268
+ &:is(:where(.group)[data-variant=floating] *) {
1269
+ border-style: var(--tw-border-style);
1270
+ border-width: 1px;
1271
+ }
1272
+ }
1273
+ .group-data-\[variant\=floating\]\:border-sidebar-border {
1274
+ &:is(:where(.group)[data-variant=floating] *) {
1275
+ border-color: var(--sidebar-border);
1276
+ }
1277
+ }
1278
+ .group-data-\[variant\=floating\]\:shadow-sm {
1279
+ &:is(:where(.group)[data-variant=floating] *) {
1280
+ --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));
1281
+ box-shadow:
1282
+ var(--tw-inset-shadow),
1283
+ var(--tw-inset-ring-shadow),
1284
+ var(--tw-ring-offset-shadow),
1285
+ var(--tw-ring-shadow),
1286
+ var(--tw-shadow);
1287
+ }
1288
+ }
1289
+ .group-data-\[viewport\=false\]\/navigation-menu\:top-full {
1290
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1291
+ top: 100%;
1292
+ }
1293
+ }
1294
+ .group-data-\[viewport\=false\]\/navigation-menu\:mt-1\.5 {
1295
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1296
+ margin-top: calc(var(--spacing) * 1.5);
1297
+ }
1298
+ }
1299
+ .group-data-\[viewport\=false\]\/navigation-menu\:overflow-hidden {
1300
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1301
+ overflow: hidden;
1302
+ }
1303
+ }
1304
+ .group-data-\[viewport\=false\]\/navigation-menu\:rounded-md {
1305
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1306
+ border-radius: calc(var(--radius) - 2px);
1307
+ }
1308
+ }
1309
+ .group-data-\[viewport\=false\]\/navigation-menu\:border {
1310
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1311
+ border-style: var(--tw-border-style);
1312
+ border-width: 1px;
1313
+ }
1314
+ }
1315
+ .group-data-\[viewport\=false\]\/navigation-menu\:bg-popover {
1316
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1317
+ background-color: var(--popover);
1318
+ }
1319
+ }
1320
+ .group-data-\[viewport\=false\]\/navigation-menu\:text-popover-foreground {
1321
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1322
+ color: var(--popover-foreground);
1323
+ }
1324
+ }
1325
+ .group-data-\[viewport\=false\]\/navigation-menu\:shadow {
1326
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1327
+ --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));
1328
+ box-shadow:
1329
+ var(--tw-inset-shadow),
1330
+ var(--tw-inset-ring-shadow),
1331
+ var(--tw-ring-offset-shadow),
1332
+ var(--tw-ring-shadow),
1333
+ var(--tw-shadow);
1334
+ }
1335
+ }
1336
+ .group-data-\[viewport\=false\]\/navigation-menu\:duration-200 {
1337
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
1338
+ --tw-duration: 200ms;
1339
+ transition-duration: 200ms;
1340
+ }
1341
+ }
1342
+ .peer-hover\/menu-button\:text-sidebar-accent-foreground {
1343
+ &:is(:where(.peer\/menu-button):hover ~ *) {
1344
+ @media (hover: hover) {
1345
+ color: var(--sidebar-accent-foreground);
1346
+ }
1347
+ }
1348
+ }
1349
+ .peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground {
1350
+ &:is(:where(.peer\/menu-button)[data-active=true] ~ *) {
1351
+ color: var(--sidebar-accent-foreground);
1352
+ }
1353
+ }
1354
+ .peer-data-\[size\=default\]\/menu-button\:top-1\.5 {
1355
+ &:is(:where(.peer\/menu-button)[data-size=default] ~ *) {
1356
+ top: calc(var(--spacing) * 1.5);
1357
+ }
1358
+ }
1359
+ .peer-data-\[size\=lg\]\/menu-button\:top-2\.5 {
1360
+ &:is(:where(.peer\/menu-button)[data-size=lg] ~ *) {
1361
+ top: calc(var(--spacing) * 2.5);
1362
+ }
1363
+ }
1364
+ .peer-data-\[size\=sm\]\/menu-button\:top-1 {
1365
+ &:is(:where(.peer\/menu-button)[data-size=sm] ~ *) {
1366
+ top: calc(var(--spacing) * 1);
1367
+ }
1368
+ }
1369
+ .selection\:bg-primary {
1370
+ & *::selection {
1371
+ background-color: var(--primary);
1372
+ }
1373
+ &::selection {
1374
+ background-color: var(--primary);
1375
+ }
1376
+ }
1377
+ .selection\:text-primary-foreground {
1378
+ & *::selection {
1379
+ color: var(--primary-foreground);
1380
+ }
1381
+ &::selection {
1382
+ color: var(--primary-foreground);
1383
+ }
1384
+ }
1385
+ .file\:inline-flex {
1386
+ &::file-selector-button {
1387
+ display: inline-flex;
1388
+ }
1389
+ }
1390
+ .file\:h-7 {
1391
+ &::file-selector-button {
1392
+ height: calc(var(--spacing) * 7);
1393
+ }
1394
+ }
1395
+ .file\:border-0 {
1396
+ &::file-selector-button {
1397
+ border-style: var(--tw-border-style);
1398
+ border-width: 0px;
1399
+ }
1400
+ }
1401
+ .file\:bg-transparent {
1402
+ &::file-selector-button {
1403
+ background-color: transparent;
1404
+ }
1405
+ }
1406
+ .file\:text-sm {
1407
+ &::file-selector-button {
1408
+ font-size: var(--text-sm);
1409
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1410
+ }
1411
+ }
1412
+ .file\:font-medium {
1413
+ &::file-selector-button {
1414
+ --tw-font-weight: var(--font-weight-medium);
1415
+ font-weight: var(--font-weight-medium);
1416
+ }
1417
+ }
1418
+ .file\:text-foreground {
1419
+ &::file-selector-button {
1420
+ color: var(--foreground);
1421
+ }
1422
+ }
1423
+ .placeholder\:text-muted-foreground {
1424
+ &::placeholder {
1425
+ color: var(--muted-foreground);
1426
+ }
1427
+ }
1428
+ .after\:absolute {
1429
+ &::after {
1430
+ content: var(--tw-content);
1431
+ position: absolute;
1432
+ }
1433
+ }
1434
+ .after\:-inset-2 {
1435
+ &::after {
1436
+ content: var(--tw-content);
1437
+ inset: calc(var(--spacing) * -2);
1438
+ }
1439
+ }
1440
+ .after\:inset-y-0 {
1441
+ &::after {
1442
+ content: var(--tw-content);
1443
+ inset-block: calc(var(--spacing) * 0);
1444
+ }
1445
+ }
1446
+ .after\:left-1\/2 {
1447
+ &::after {
1448
+ content: var(--tw-content);
1449
+ left: calc(1/2 * 100%);
1450
+ }
1451
+ }
1452
+ .after\:w-\[2px\] {
1453
+ &::after {
1454
+ content: var(--tw-content);
1455
+ width: 2px;
1456
+ }
1457
+ }
1458
+ .group-data-\[collapsible\=offcanvas\]\:after\:left-full {
1459
+ &:is(:where(.group)[data-collapsible=offcanvas] *) {
1460
+ &::after {
1461
+ content: var(--tw-content);
1462
+ left: 100%;
1463
+ }
1464
+ }
1465
+ }
1466
+ .hover\:bg-accent {
1467
+ &:hover {
1468
+ @media (hover: hover) {
1469
+ background-color: var(--accent);
1470
+ }
1471
+ }
1472
+ }
1473
+ .hover\:bg-destructive\/90 {
1474
+ &:hover {
1475
+ @media (hover: hover) {
1476
+ background-color: var(--destructive);
1477
+ @supports (color: color-mix(in lab, red, red)) {
1478
+ background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
1479
+ }
1480
+ }
1481
+ }
1482
+ }
1483
+ .hover\:bg-primary\/90 {
1484
+ &:hover {
1485
+ @media (hover: hover) {
1486
+ background-color: var(--primary);
1487
+ @supports (color: color-mix(in lab, red, red)) {
1488
+ background-color: color-mix(in oklab, var(--primary) 90%, transparent);
1489
+ }
1490
+ }
1491
+ }
1492
+ }
1493
+ .hover\:bg-secondary\/80 {
1494
+ &:hover {
1495
+ @media (hover: hover) {
1496
+ background-color: var(--secondary);
1497
+ @supports (color: color-mix(in lab, red, red)) {
1498
+ background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
1499
+ }
1500
+ }
1501
+ }
1502
+ }
1503
+ .hover\:bg-sidebar-accent {
1504
+ &:hover {
1505
+ @media (hover: hover) {
1506
+ background-color: var(--sidebar-accent);
1507
+ }
1508
+ }
1509
+ }
1510
+ .hover\:text-accent-foreground {
1511
+ &:hover {
1512
+ @media (hover: hover) {
1513
+ color: var(--accent-foreground);
1514
+ }
1515
+ }
1516
+ }
1517
+ .hover\:text-foreground {
1518
+ &:hover {
1519
+ @media (hover: hover) {
1520
+ color: var(--foreground);
1521
+ }
1522
+ }
1523
+ }
1524
+ .hover\:text-sidebar-accent-foreground {
1525
+ &:hover {
1526
+ @media (hover: hover) {
1527
+ color: var(--sidebar-accent-foreground);
1528
+ }
1529
+ }
1530
+ }
1531
+ .hover\:underline {
1532
+ &:hover {
1533
+ @media (hover: hover) {
1534
+ text-decoration-line: underline;
1535
+ }
1536
+ }
1537
+ }
1538
+ .hover\:opacity-100 {
1539
+ &:hover {
1540
+ @media (hover: hover) {
1541
+ opacity: 100%;
1542
+ }
1543
+ }
1544
+ }
1545
+ .hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\] {
1546
+ &:hover {
1547
+ @media (hover: hover) {
1548
+ --tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-accent)));
1549
+ box-shadow:
1550
+ var(--tw-inset-shadow),
1551
+ var(--tw-inset-ring-shadow),
1552
+ var(--tw-ring-offset-shadow),
1553
+ var(--tw-ring-shadow),
1554
+ var(--tw-shadow);
1555
+ }
1556
+ }
1557
+ }
1558
+ .hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar {
1559
+ &:hover {
1560
+ @media (hover: hover) {
1561
+ &:is(:where(.group)[data-collapsible=offcanvas] *) {
1562
+ background-color: var(--sidebar);
1563
+ }
1564
+ }
1565
+ }
1566
+ }
1567
+ .hover\:after\:bg-sidebar-border {
1568
+ &:hover {
1569
+ @media (hover: hover) {
1570
+ &::after {
1571
+ content: var(--tw-content);
1572
+ background-color: var(--sidebar-border);
1573
+ }
1574
+ }
1575
+ }
1576
+ }
1577
+ .focus\:bg-accent {
1578
+ &:focus {
1579
+ background-color: var(--accent);
1580
+ }
1581
+ }
1582
+ .focus\:text-accent-foreground {
1583
+ &:focus {
1584
+ color: var(--accent-foreground);
1585
+ }
1586
+ }
1587
+ .focus\:ring-2 {
1588
+ &:focus {
1589
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1590
+ box-shadow:
1591
+ var(--tw-inset-shadow),
1592
+ var(--tw-inset-ring-shadow),
1593
+ var(--tw-ring-offset-shadow),
1594
+ var(--tw-ring-shadow),
1595
+ var(--tw-shadow);
1596
+ }
1597
+ }
1598
+ .focus\:ring-ring {
1599
+ &:focus {
1600
+ --tw-ring-color: var(--ring);
1601
+ }
1602
+ }
1603
+ .focus\:ring-offset-2 {
1604
+ &:focus {
1605
+ --tw-ring-offset-width: 2px;
1606
+ --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1607
+ }
1608
+ }
1609
+ .focus\:outline-hidden {
1610
+ &:focus {
1611
+ --tw-outline-style: none;
1612
+ outline-style: none;
1613
+ @media (forced-colors: active) {
1614
+ outline: 2px solid transparent;
1615
+ outline-offset: 2px;
1616
+ }
1617
+ }
1618
+ }
1619
+ .focus-visible\:border-ring {
1620
+ &:focus-visible {
1621
+ border-color: var(--ring);
1622
+ }
1623
+ }
1624
+ .focus-visible\:ring-2 {
1625
+ &:focus-visible {
1626
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1627
+ box-shadow:
1628
+ var(--tw-inset-shadow),
1629
+ var(--tw-inset-ring-shadow),
1630
+ var(--tw-ring-offset-shadow),
1631
+ var(--tw-ring-shadow),
1632
+ var(--tw-shadow);
1633
+ }
1634
+ }
1635
+ .focus-visible\:ring-\[3px\] {
1636
+ &:focus-visible {
1637
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1638
+ box-shadow:
1639
+ var(--tw-inset-shadow),
1640
+ var(--tw-inset-ring-shadow),
1641
+ var(--tw-ring-offset-shadow),
1642
+ var(--tw-ring-shadow),
1643
+ var(--tw-shadow);
1644
+ }
1645
+ }
1646
+ .focus-visible\:ring-destructive\/20 {
1647
+ &:focus-visible {
1648
+ --tw-ring-color: var(--destructive);
1649
+ @supports (color: color-mix(in lab, red, red)) {
1650
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
1651
+ }
1652
+ }
1653
+ }
1654
+ .focus-visible\:ring-ring\/50 {
1655
+ &:focus-visible {
1656
+ --tw-ring-color: var(--ring);
1657
+ @supports (color: color-mix(in lab, red, red)) {
1658
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
1659
+ }
1660
+ }
1661
+ }
1662
+ .focus-visible\:outline-1 {
1663
+ &:focus-visible {
1664
+ outline-style: var(--tw-outline-style);
1665
+ outline-width: 1px;
1666
+ }
1667
+ }
1668
+ .active\:bg-sidebar-accent {
1669
+ &:active {
1670
+ background-color: var(--sidebar-accent);
1671
+ }
1672
+ }
1673
+ .active\:text-sidebar-accent-foreground {
1674
+ &:active {
1675
+ color: var(--sidebar-accent-foreground);
1676
+ }
1677
+ }
1678
+ .disabled\:pointer-events-none {
1679
+ &:disabled {
1680
+ pointer-events: none;
1681
+ }
1682
+ }
1683
+ .disabled\:cursor-not-allowed {
1684
+ &:disabled {
1685
+ cursor: not-allowed;
1686
+ }
1687
+ }
1688
+ .disabled\:opacity-50 {
1689
+ &:disabled {
1690
+ opacity: 50%;
1691
+ }
1692
+ }
1693
+ .in-data-\[side\=left\]\:cursor-w-resize {
1694
+ :where(*[data-side=left]) & {
1695
+ cursor: w-resize;
1696
+ }
1697
+ }
1698
+ .in-data-\[side\=right\]\:cursor-e-resize {
1699
+ :where(*[data-side=right]) & {
1700
+ cursor: e-resize;
1701
+ }
1702
+ }
1703
+ .has-data-\[variant\=inset\]\:bg-sidebar {
1704
+ &:has(*[data-variant=inset]) {
1705
+ background-color: var(--sidebar);
1706
+ }
1707
+ }
1708
+ .has-\[\>svg\]\:px-2\.5 {
1709
+ &:has(> svg) {
1710
+ padding-inline: calc(var(--spacing) * 2.5);
1711
+ }
1712
+ }
1713
+ .has-\[\>svg\]\:px-3 {
1714
+ &:has(> svg) {
1715
+ padding-inline: calc(var(--spacing) * 3);
1716
+ }
1717
+ }
1718
+ .has-\[\>svg\]\:px-4 {
1719
+ &:has(> svg) {
1720
+ padding-inline: calc(var(--spacing) * 4);
1721
+ }
1722
+ }
1723
+ .aria-disabled\:pointer-events-none {
1724
+ &[aria-disabled=true] {
1725
+ pointer-events: none;
1726
+ }
1727
+ }
1728
+ .aria-disabled\:opacity-50 {
1729
+ &[aria-disabled=true] {
1730
+ opacity: 50%;
1731
+ }
1732
+ }
1733
+ .aria-invalid\:border-destructive {
1734
+ &[aria-invalid=true] {
1735
+ border-color: var(--destructive);
1736
+ }
1737
+ }
1738
+ .aria-invalid\:ring-destructive\/20 {
1739
+ &[aria-invalid=true] {
1740
+ --tw-ring-color: var(--destructive);
1741
+ @supports (color: color-mix(in lab, red, red)) {
1742
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
1743
+ }
1744
+ }
1745
+ }
1746
+ .data-\[active\=true\]\:bg-accent\/50 {
1747
+ &[data-active=true] {
1748
+ background-color: var(--accent);
1749
+ @supports (color: color-mix(in lab, red, red)) {
1750
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
1751
+ }
1752
+ }
1753
+ }
1754
+ .data-\[active\=true\]\:bg-sidebar-accent {
1755
+ &[data-active=true] {
1756
+ background-color: var(--sidebar-accent);
1757
+ }
1758
+ }
1759
+ .data-\[active\=true\]\:font-medium {
1760
+ &[data-active=true] {
1761
+ --tw-font-weight: var(--font-weight-medium);
1762
+ font-weight: var(--font-weight-medium);
1763
+ }
1764
+ }
1765
+ .data-\[active\=true\]\:text-accent-foreground {
1766
+ &[data-active=true] {
1767
+ color: var(--accent-foreground);
1768
+ }
1769
+ }
1770
+ .data-\[active\=true\]\:text-sidebar-accent-foreground {
1771
+ &[data-active=true] {
1772
+ color: var(--sidebar-accent-foreground);
1773
+ }
1774
+ }
1775
+ .data-\[active\=true\]\:hover\:bg-accent {
1776
+ &[data-active=true] {
1777
+ &:hover {
1778
+ @media (hover: hover) {
1779
+ background-color: var(--accent);
1780
+ }
1781
+ }
1782
+ }
1783
+ }
1784
+ .data-\[active\=true\]\:focus\:bg-accent {
1785
+ &[data-active=true] {
1786
+ &:focus {
1787
+ background-color: var(--accent);
1788
+ }
1789
+ }
1790
+ }
1791
+ .data-\[disabled\]\:pointer-events-none {
1792
+ &[data-disabled] {
1793
+ pointer-events: none;
1794
+ }
1795
+ }
1796
+ .data-\[disabled\]\:opacity-50 {
1797
+ &[data-disabled] {
1798
+ opacity: 50%;
1799
+ }
1800
+ }
1801
+ .data-\[inset\]\:pl-8 {
1802
+ &[data-inset] {
1803
+ padding-left: calc(var(--spacing) * 8);
1804
+ }
1805
+ }
1806
+ .data-\[motion\=from-end\]\:slide-in-from-right-52 {
1807
+ &[data-motion=from-end] {
1808
+ --tw-enter-translate-x: calc(var(--spacing) * 52);
1809
+ }
1810
+ }
1811
+ .data-\[motion\=from-start\]\:slide-in-from-left-52 {
1812
+ &[data-motion=from-start] {
1813
+ --tw-enter-translate-x: calc(var(--spacing) * 52*-1);
1814
+ }
1815
+ }
1816
+ .data-\[motion\=to-end\]\:slide-out-to-right-52 {
1817
+ &[data-motion=to-end] {
1818
+ --tw-exit-translate-x: calc(var(--spacing) * 52);
1819
+ }
1820
+ }
1821
+ .data-\[motion\=to-start\]\:slide-out-to-left-52 {
1822
+ &[data-motion=to-start] {
1823
+ --tw-exit-translate-x: calc(var(--spacing) * 52*-1);
1824
+ }
1825
+ }
1826
+ .data-\[motion\^\=from-\]\:animate-in {
1827
+ &[data-motion^=from-] {
1828
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1829
+ }
1830
+ }
1831
+ .data-\[motion\^\=from-\]\:fade-in {
1832
+ &[data-motion^=from-] {
1833
+ --tw-enter-opacity: 0;
1834
+ }
1835
+ }
1836
+ .data-\[motion\^\=to-\]\:animate-out {
1837
+ &[data-motion^=to-] {
1838
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1839
+ }
1840
+ }
1841
+ .data-\[motion\^\=to-\]\:fade-out {
1842
+ &[data-motion^=to-] {
1843
+ --tw-exit-opacity: 0;
1844
+ }
1845
+ }
1846
+ .data-\[orientation\=horizontal\]\:h-px {
1847
+ &[data-orientation=horizontal] {
1848
+ height: 1px;
1849
+ }
1850
+ }
1851
+ .data-\[orientation\=horizontal\]\:w-full {
1852
+ &[data-orientation=horizontal] {
1853
+ width: 100%;
1854
+ }
1855
+ }
1856
+ .data-\[orientation\=vertical\]\:h-full {
1857
+ &[data-orientation=vertical] {
1858
+ height: 100%;
1859
+ }
1860
+ }
1861
+ .data-\[orientation\=vertical\]\:w-px {
1862
+ &[data-orientation=vertical] {
1863
+ width: 1px;
1864
+ }
1865
+ }
1866
+ .data-\[placeholder\]\:text-muted-foreground {
1867
+ &[data-placeholder] {
1868
+ color: var(--muted-foreground);
1869
+ }
1870
+ }
1871
+ .data-\[side\=bottom\]\:translate-y-1 {
1872
+ &[data-side=bottom] {
1873
+ --tw-translate-y: calc(var(--spacing) * 1);
1874
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1875
+ }
1876
+ }
1877
+ .data-\[side\=bottom\]\:slide-in-from-top-2 {
1878
+ &[data-side=bottom] {
1879
+ --tw-enter-translate-y: calc(var(--spacing) * 2*-1);
1880
+ }
1881
+ }
1882
+ .data-\[side\=left\]\:-translate-x-1 {
1883
+ &[data-side=left] {
1884
+ --tw-translate-x: calc(var(--spacing) * -1);
1885
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1886
+ }
1887
+ }
1888
+ .data-\[side\=left\]\:slide-in-from-right-2 {
1889
+ &[data-side=left] {
1890
+ --tw-enter-translate-x: calc(var(--spacing) * 2);
1891
+ }
1892
+ }
1893
+ .data-\[side\=right\]\:translate-x-1 {
1894
+ &[data-side=right] {
1895
+ --tw-translate-x: calc(var(--spacing) * 1);
1896
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1897
+ }
1898
+ }
1899
+ .data-\[side\=right\]\:slide-in-from-left-2 {
1900
+ &[data-side=right] {
1901
+ --tw-enter-translate-x: calc(var(--spacing) * 2*-1);
1902
+ }
1903
+ }
1904
+ .data-\[side\=top\]\:-translate-y-1 {
1905
+ &[data-side=top] {
1906
+ --tw-translate-y: calc(var(--spacing) * -1);
1907
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1908
+ }
1909
+ }
1910
+ .data-\[side\=top\]\:slide-in-from-bottom-2 {
1911
+ &[data-side=top] {
1912
+ --tw-enter-translate-y: calc(var(--spacing) * 2);
1913
+ }
1914
+ }
1915
+ .data-\[size\=default\]\:h-9 {
1916
+ &[data-size=default] {
1917
+ height: calc(var(--spacing) * 9);
1918
+ }
1919
+ }
1920
+ .data-\[size\=sm\]\:h-8 {
1921
+ &[data-size=sm] {
1922
+ height: calc(var(--spacing) * 8);
1923
+ }
1924
+ }
1925
+ .\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 {
1926
+ :is(& *) {
1927
+ &[data-slot=navigation-menu-link] {
1928
+ &:focus {
1929
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
1930
+ box-shadow:
1931
+ var(--tw-inset-shadow),
1932
+ var(--tw-inset-ring-shadow),
1933
+ var(--tw-ring-offset-shadow),
1934
+ var(--tw-ring-shadow),
1935
+ var(--tw-shadow);
1936
+ }
1937
+ }
1938
+ }
1939
+ }
1940
+ .\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:outline-none {
1941
+ :is(& *) {
1942
+ &[data-slot=navigation-menu-link] {
1943
+ &:focus {
1944
+ --tw-outline-style: none;
1945
+ outline-style: none;
1946
+ }
1947
+ }
1948
+ }
1949
+ }
1950
+ .\*\:data-\[slot\=select-value\]\:line-clamp-1 {
1951
+ :is(& > *) {
1952
+ &[data-slot=select-value] {
1953
+ overflow: hidden;
1954
+ display: -webkit-box;
1955
+ -webkit-box-orient: vertical;
1956
+ -webkit-line-clamp: 1;
1957
+ }
1958
+ }
1959
+ }
1960
+ .\*\:data-\[slot\=select-value\]\:flex {
1961
+ :is(& > *) {
1962
+ &[data-slot=select-value] {
1963
+ display: flex;
1964
+ }
1965
+ }
1966
+ }
1967
+ .\*\:data-\[slot\=select-value\]\:items-center {
1968
+ :is(& > *) {
1969
+ &[data-slot=select-value] {
1970
+ align-items: center;
1971
+ }
1972
+ }
1973
+ }
1974
+ .\*\:data-\[slot\=select-value\]\:gap-2 {
1975
+ :is(& > *) {
1976
+ &[data-slot=select-value] {
1977
+ gap: calc(var(--spacing) * 2);
1978
+ }
1979
+ }
1980
+ }
1981
+ .data-\[state\=closed\]\:animate-out {
1982
+ &[data-state=closed] {
1983
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1984
+ }
1985
+ }
1986
+ .data-\[state\=closed\]\:duration-300 {
1987
+ &[data-state=closed] {
1988
+ --tw-duration: 300ms;
1989
+ transition-duration: 300ms;
1990
+ }
1991
+ }
1992
+ .data-\[state\=closed\]\:fade-out-0 {
1993
+ &[data-state=closed] {
1994
+ --tw-exit-opacity: calc(0/100);
1995
+ --tw-exit-opacity: 0;
1996
+ }
1997
+ }
1998
+ .data-\[state\=closed\]\:zoom-out-95 {
1999
+ &[data-state=closed] {
2000
+ --tw-exit-scale: calc(95*1%);
2001
+ --tw-exit-scale: .95;
2002
+ }
2003
+ }
2004
+ .data-\[state\=closed\]\:slide-out-to-bottom {
2005
+ &[data-state=closed] {
2006
+ --tw-exit-translate-y: 100%;
2007
+ }
2008
+ }
2009
+ .data-\[state\=closed\]\:slide-out-to-left {
2010
+ &[data-state=closed] {
2011
+ --tw-exit-translate-x: -100%;
2012
+ }
2013
+ }
2014
+ .data-\[state\=closed\]\:slide-out-to-right {
2015
+ &[data-state=closed] {
2016
+ --tw-exit-translate-x: 100%;
2017
+ }
2018
+ }
2019
+ .data-\[state\=closed\]\:slide-out-to-top {
2020
+ &[data-state=closed] {
2021
+ --tw-exit-translate-y: -100%;
2022
+ }
2023
+ }
2024
+ .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:animate-out {
2025
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
2026
+ &[data-state=closed] {
2027
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
2028
+ }
2029
+ }
2030
+ }
2031
+ .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:fade-out-0 {
2032
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
2033
+ &[data-state=closed] {
2034
+ --tw-exit-opacity: calc(0/100);
2035
+ --tw-exit-opacity: 0;
2036
+ }
2037
+ }
2038
+ }
2039
+ .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:zoom-out-95 {
2040
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
2041
+ &[data-state=closed] {
2042
+ --tw-exit-scale: calc(95*1%);
2043
+ --tw-exit-scale: .95;
2044
+ }
2045
+ }
2046
+ }
2047
+ .data-\[state\=hidden\]\:animate-out {
2048
+ &[data-state=hidden] {
2049
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
2050
+ }
2051
+ }
2052
+ .data-\[state\=hidden\]\:fade-out {
2053
+ &[data-state=hidden] {
2054
+ --tw-exit-opacity: 0;
2055
+ }
2056
+ }
2057
+ .data-\[state\=open\]\:animate-in {
2058
+ &[data-state=open] {
2059
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
2060
+ }
2061
+ }
2062
+ .data-\[state\=open\]\:bg-accent {
2063
+ &[data-state=open] {
2064
+ background-color: var(--accent);
2065
+ }
2066
+ }
2067
+ .data-\[state\=open\]\:bg-accent\/50 {
2068
+ &[data-state=open] {
2069
+ background-color: var(--accent);
2070
+ @supports (color: color-mix(in lab, red, red)) {
2071
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
2072
+ }
2073
+ }
2074
+ }
2075
+ .data-\[state\=open\]\:bg-secondary {
2076
+ &[data-state=open] {
2077
+ background-color: var(--secondary);
2078
+ }
2079
+ }
2080
+ .data-\[state\=open\]\:text-accent-foreground {
2081
+ &[data-state=open] {
2082
+ color: var(--accent-foreground);
2083
+ }
2084
+ }
2085
+ .data-\[state\=open\]\:text-muted-foreground {
2086
+ &[data-state=open] {
2087
+ color: var(--muted-foreground);
2088
+ }
2089
+ }
2090
+ .data-\[state\=open\]\:opacity-100 {
2091
+ &[data-state=open] {
2092
+ opacity: 100%;
2093
+ }
2094
+ }
2095
+ .data-\[state\=open\]\:duration-500 {
2096
+ &[data-state=open] {
2097
+ --tw-duration: 500ms;
2098
+ transition-duration: 500ms;
2099
+ }
2100
+ }
2101
+ .data-\[state\=open\]\:fade-in-0 {
2102
+ &[data-state=open] {
2103
+ --tw-enter-opacity: calc(0/100);
2104
+ --tw-enter-opacity: 0;
2105
+ }
2106
+ }
2107
+ .data-\[state\=open\]\:zoom-in-90 {
2108
+ &[data-state=open] {
2109
+ --tw-enter-scale: calc(90*1%);
2110
+ --tw-enter-scale: .9;
2111
+ }
2112
+ }
2113
+ .data-\[state\=open\]\:zoom-in-95 {
2114
+ &[data-state=open] {
2115
+ --tw-enter-scale: calc(95*1%);
2116
+ --tw-enter-scale: .95;
2117
+ }
2118
+ }
2119
+ .data-\[state\=open\]\:slide-in-from-bottom {
2120
+ &[data-state=open] {
2121
+ --tw-enter-translate-y: 100%;
2122
+ }
2123
+ }
2124
+ .data-\[state\=open\]\:slide-in-from-left {
2125
+ &[data-state=open] {
2126
+ --tw-enter-translate-x: -100%;
2127
+ }
2128
+ }
2129
+ .data-\[state\=open\]\:slide-in-from-right {
2130
+ &[data-state=open] {
2131
+ --tw-enter-translate-x: 100%;
2132
+ }
2133
+ }
2134
+ .data-\[state\=open\]\:slide-in-from-top {
2135
+ &[data-state=open] {
2136
+ --tw-enter-translate-y: -100%;
2137
+ }
2138
+ }
2139
+ .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:animate-in {
2140
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
2141
+ &[data-state=open] {
2142
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
2143
+ }
2144
+ }
2145
+ }
2146
+ .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:fade-in-0 {
2147
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
2148
+ &[data-state=open] {
2149
+ --tw-enter-opacity: calc(0/100);
2150
+ --tw-enter-opacity: 0;
2151
+ }
2152
+ }
2153
+ }
2154
+ .group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:zoom-in-95 {
2155
+ &:is(:where(.group\/navigation-menu)[data-viewport=false] *) {
2156
+ &[data-state=open] {
2157
+ --tw-enter-scale: calc(95*1%);
2158
+ --tw-enter-scale: .95;
2159
+ }
2160
+ }
2161
+ }
2162
+ .data-\[state\=open\]\:hover\:bg-accent {
2163
+ &[data-state=open] {
2164
+ &:hover {
2165
+ @media (hover: hover) {
2166
+ background-color: var(--accent);
2167
+ }
2168
+ }
2169
+ }
2170
+ }
2171
+ .data-\[state\=open\]\:hover\:bg-sidebar-accent {
2172
+ &[data-state=open] {
2173
+ &:hover {
2174
+ @media (hover: hover) {
2175
+ background-color: var(--sidebar-accent);
2176
+ }
2177
+ }
2178
+ }
2179
+ }
2180
+ .data-\[state\=open\]\:hover\:text-sidebar-accent-foreground {
2181
+ &[data-state=open] {
2182
+ &:hover {
2183
+ @media (hover: hover) {
2184
+ color: var(--sidebar-accent-foreground);
2185
+ }
2186
+ }
2187
+ }
2188
+ }
2189
+ .data-\[state\=open\]\:focus\:bg-accent {
2190
+ &[data-state=open] {
2191
+ &:focus {
2192
+ background-color: var(--accent);
2193
+ }
2194
+ }
2195
+ }
2196
+ .data-\[state\=visible\]\:animate-in {
2197
+ &[data-state=visible] {
2198
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
2199
+ }
2200
+ }
2201
+ .data-\[state\=visible\]\:fade-in {
2202
+ &[data-state=visible] {
2203
+ --tw-enter-opacity: 0;
2204
+ }
2205
+ }
2206
+ .data-\[variant\=destructive\]\:text-destructive {
2207
+ &[data-variant=destructive] {
2208
+ color: var(--destructive);
2209
+ }
2210
+ }
2211
+ .data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
2212
+ &[data-variant=destructive] {
2213
+ &:focus {
2214
+ background-color: var(--destructive);
2215
+ @supports (color: color-mix(in lab, red, red)) {
2216
+ background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
2217
+ }
2218
+ }
2219
+ }
2220
+ }
2221
+ .data-\[variant\=destructive\]\:focus\:text-destructive {
2222
+ &[data-variant=destructive] {
2223
+ &:focus {
2224
+ color: var(--destructive);
2225
+ }
2226
+ }
2227
+ }
2228
+ .sm\:flex {
2229
+ @media (width >= 40rem) {
2230
+ display: flex;
2231
+ }
2232
+ }
2233
+ .sm\:max-w-lg {
2234
+ @media (width >= 40rem) {
2235
+ max-width: var(--container-lg);
2236
+ }
2237
+ }
2238
+ .sm\:max-w-sm {
2239
+ @media (width >= 40rem) {
2240
+ max-width: var(--container-sm);
2241
+ }
2242
+ }
2243
+ .sm\:flex-row {
2244
+ @media (width >= 40rem) {
2245
+ flex-direction: row;
2246
+ }
2247
+ }
2248
+ .sm\:justify-end {
2249
+ @media (width >= 40rem) {
2250
+ justify-content: flex-end;
2251
+ }
2252
+ }
2253
+ .sm\:gap-2\.5 {
2254
+ @media (width >= 40rem) {
2255
+ gap: calc(var(--spacing) * 2.5);
2256
+ }
2257
+ }
2258
+ .sm\:text-left {
2259
+ @media (width >= 40rem) {
2260
+ text-align: left;
2261
+ }
2262
+ }
2263
+ .md\:absolute {
2264
+ @media (width >= 48rem) {
2265
+ position: absolute;
2266
+ }
2267
+ }
2268
+ .md\:block {
2269
+ @media (width >= 48rem) {
2270
+ display: block;
2271
+ }
2272
+ }
2273
+ .md\:flex {
2274
+ @media (width >= 48rem) {
2275
+ display: flex;
2276
+ }
2277
+ }
2278
+ .md\:w-\[var\(--radix-navigation-menu-viewport-width\)\] {
2279
+ @media (width >= 48rem) {
2280
+ width: var(--radix-navigation-menu-viewport-width);
2281
+ }
2282
+ }
2283
+ .md\:w-auto {
2284
+ @media (width >= 48rem) {
2285
+ width: auto;
2286
+ }
2287
+ }
2288
+ .md\:text-sm {
2289
+ @media (width >= 48rem) {
2290
+ font-size: var(--text-sm);
2291
+ line-height: var(--tw-leading, var(--text-sm--line-height));
2292
+ }
2293
+ }
2294
+ .md\:opacity-0 {
2295
+ @media (width >= 48rem) {
2296
+ opacity: 0%;
2297
+ }
2298
+ }
2299
+ .md\:peer-data-\[variant\=inset\]\:m-2 {
2300
+ @media (width >= 48rem) {
2301
+ &:is(:where(.peer)[data-variant=inset] ~ *) {
2302
+ margin: calc(var(--spacing) * 2);
2303
+ }
2304
+ }
2305
+ }
2306
+ .md\:peer-data-\[variant\=inset\]\:ml-0 {
2307
+ @media (width >= 48rem) {
2308
+ &:is(:where(.peer)[data-variant=inset] ~ *) {
2309
+ margin-left: calc(var(--spacing) * 0);
2310
+ }
2311
+ }
2312
+ }
2313
+ .md\:peer-data-\[variant\=inset\]\:rounded-xl {
2314
+ @media (width >= 48rem) {
2315
+ &:is(:where(.peer)[data-variant=inset] ~ *) {
2316
+ border-radius: calc(var(--radius) + 4px);
2317
+ }
2318
+ }
2319
+ }
2320
+ .md\:peer-data-\[variant\=inset\]\:shadow-sm {
2321
+ @media (width >= 48rem) {
2322
+ &:is(:where(.peer)[data-variant=inset] ~ *) {
2323
+ --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));
2324
+ box-shadow:
2325
+ var(--tw-inset-shadow),
2326
+ var(--tw-inset-ring-shadow),
2327
+ var(--tw-ring-offset-shadow),
2328
+ var(--tw-ring-shadow),
2329
+ var(--tw-shadow);
2330
+ }
2331
+ }
2332
+ }
2333
+ .md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2 {
2334
+ @media (width >= 48rem) {
2335
+ &:is(:where(.peer)[data-variant=inset] ~ *) {
2336
+ &:is(:where(.peer)[data-state=collapsed] ~ *) {
2337
+ margin-left: calc(var(--spacing) * 2);
2338
+ }
2339
+ }
2340
+ }
2341
+ }
2342
+ .md\:after\:hidden {
2343
+ @media (width >= 48rem) {
2344
+ &::after {
2345
+ content: var(--tw-content);
2346
+ display: none;
2347
+ }
2348
+ }
2349
+ }
2350
+ .dark\:border-input {
2351
+ &:is(.dark *) {
2352
+ border-color: var(--input);
2353
+ }
2354
+ }
2355
+ .dark\:bg-destructive\/60 {
2356
+ &:is(.dark *) {
2357
+ background-color: var(--destructive);
2358
+ @supports (color: color-mix(in lab, red, red)) {
2359
+ background-color: color-mix(in oklab, var(--destructive) 60%, transparent);
2360
+ }
2361
+ }
2362
+ }
2363
+ .dark\:bg-input\/30 {
2364
+ &:is(.dark *) {
2365
+ background-color: var(--input);
2366
+ @supports (color: color-mix(in lab, red, red)) {
2367
+ background-color: color-mix(in oklab, var(--input) 30%, transparent);
2368
+ }
2369
+ }
2370
+ }
2371
+ .dark\:hover\:bg-accent\/50 {
2372
+ &:is(.dark *) {
2373
+ &:hover {
2374
+ @media (hover: hover) {
2375
+ background-color: var(--accent);
2376
+ @supports (color: color-mix(in lab, red, red)) {
2377
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
2378
+ }
2379
+ }
2380
+ }
2381
+ }
2382
+ }
2383
+ .dark\:hover\:bg-input\/50 {
2384
+ &:is(.dark *) {
2385
+ &:hover {
2386
+ @media (hover: hover) {
2387
+ background-color: var(--input);
2388
+ @supports (color: color-mix(in lab, red, red)) {
2389
+ background-color: color-mix(in oklab, var(--input) 50%, transparent);
2390
+ }
2391
+ }
2392
+ }
2393
+ }
2394
+ }
2395
+ .dark\:focus-visible\:ring-destructive\/40 {
2396
+ &:is(.dark *) {
2397
+ &:focus-visible {
2398
+ --tw-ring-color: var(--destructive);
2399
+ @supports (color: color-mix(in lab, red, red)) {
2400
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
2401
+ }
2402
+ }
2403
+ }
2404
+ }
2405
+ .dark\:aria-invalid\:ring-destructive\/40 {
2406
+ &:is(.dark *) {
2407
+ &[aria-invalid=true] {
2408
+ --tw-ring-color: var(--destructive);
2409
+ @supports (color: color-mix(in lab, red, red)) {
2410
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
2411
+ }
2412
+ }
2413
+ }
2414
+ }
2415
+ .dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20 {
2416
+ &:is(.dark *) {
2417
+ &[data-variant=destructive] {
2418
+ &:focus {
2419
+ background-color: var(--destructive);
2420
+ @supports (color: color-mix(in lab, red, red)) {
2421
+ background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
2422
+ }
2423
+ }
2424
+ }
2425
+ }
2426
+ }
2427
+ .\[\&_svg\]\:pointer-events-none {
2428
+ & svg {
2429
+ pointer-events: none;
2430
+ }
2431
+ }
2432
+ .\[\&_svg\]\:shrink-0 {
2433
+ & svg {
2434
+ flex-shrink: 0;
2435
+ }
2436
+ }
2437
+ .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
2438
+ & svg:not([class*=size-]) {
2439
+ width: calc(var(--spacing) * 4);
2440
+ height: calc(var(--spacing) * 4);
2441
+ }
2442
+ }
2443
+ .\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground {
2444
+ & svg:not([class*=text-]) {
2445
+ color: var(--muted-foreground);
2446
+ }
2447
+ }
2448
+ .\*\:\[span\]\:last\:flex {
2449
+ :is(& > *) {
2450
+ &:is(span) {
2451
+ &:last-child {
2452
+ display: flex;
2453
+ }
2454
+ }
2455
+ }
2456
+ }
2457
+ .\*\:\[span\]\:last\:items-center {
2458
+ :is(& > *) {
2459
+ &:is(span) {
2460
+ &:last-child {
2461
+ align-items: center;
2462
+ }
2463
+ }
2464
+ }
2465
+ }
2466
+ .\*\:\[span\]\:last\:gap-2 {
2467
+ :is(& > *) {
2468
+ &:is(span) {
2469
+ &:last-child {
2470
+ gap: calc(var(--spacing) * 2);
2471
+ }
2472
+ }
2473
+ }
2474
+ }
2475
+ .data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive {
2476
+ &[data-variant=destructive] {
2477
+ :is(& > *) {
2478
+ &:is(svg) {
2479
+ color: var(--destructive) !important;
2480
+ }
2481
+ }
2482
+ }
2483
+ }
2484
+ .\[\&\>button\]\:hidden {
2485
+ & > button {
2486
+ display: none;
2487
+ }
2488
+ }
2489
+ .\[\&\>span\:last-child\]\:truncate {
2490
+ & > span:last-child {
2491
+ overflow: hidden;
2492
+ text-overflow: ellipsis;
2493
+ white-space: nowrap;
2494
+ }
2495
+ }
2496
+ .\[\&\>svg\]\:size-3\.5 {
2497
+ & > svg {
2498
+ width: calc(var(--spacing) * 3.5);
2499
+ height: calc(var(--spacing) * 3.5);
2500
+ }
2501
+ }
2502
+ .\[\&\>svg\]\:size-4 {
2503
+ & > svg {
2504
+ width: calc(var(--spacing) * 4);
2505
+ height: calc(var(--spacing) * 4);
2506
+ }
2507
+ }
2508
+ .\[\&\>svg\]\:shrink-0 {
2509
+ & > svg {
2510
+ flex-shrink: 0;
2511
+ }
2512
+ }
2513
+ .\[\&\>svg\]\:text-sidebar-accent-foreground {
2514
+ & > svg {
2515
+ color: var(--sidebar-accent-foreground);
2516
+ }
2517
+ }
2518
+ .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
2519
+ [data-side=left][data-collapsible=offcanvas] & {
2520
+ right: calc(var(--spacing) * -2);
2521
+ }
2522
+ }
2523
+ .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize {
2524
+ [data-side=left][data-state=collapsed] & {
2525
+ cursor: e-resize;
2526
+ }
2527
+ }
2528
+ .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 {
2529
+ [data-side=right][data-collapsible=offcanvas] & {
2530
+ left: calc(var(--spacing) * -2);
2531
+ }
2532
+ }
2533
+ .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
2534
+ [data-side=right][data-state=collapsed] & {
2535
+ cursor: w-resize;
2536
+ }
2537
+ }
2538
+ }
2539
+ @property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
2540
+ @property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
2541
+ @property --tw-animation-duration { syntax: "*"; inherits: false; }
2542
+ @property --tw-animation-fill-mode { syntax: "*"; inherits: false; initial-value: none; }
2543
+ @property --tw-animation-iteration-count { syntax: "*"; inherits: false; initial-value: 1; }
2544
+ @property --tw-enter-blur { syntax: "*"; inherits: false; initial-value: 0; }
2545
+ @property --tw-enter-opacity { syntax: "*"; inherits: false; initial-value: 1; }
2546
+ @property --tw-enter-rotate { syntax: "*"; inherits: false; initial-value: 0; }
2547
+ @property --tw-enter-scale { syntax: "*"; inherits: false; initial-value: 1; }
2548
+ @property --tw-enter-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
2549
+ @property --tw-enter-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
2550
+ @property --tw-exit-blur { syntax: "*"; inherits: false; initial-value: 0; }
2551
+ @property --tw-exit-opacity { syntax: "*"; inherits: false; initial-value: 1; }
2552
+ @property --tw-exit-rotate { syntax: "*"; inherits: false; initial-value: 0; }
2553
+ @property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
2554
+ @property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
2555
+ @property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
2556
+ :root {
2557
+ --radius: 0.625rem;
2558
+ --background: oklch(0.2758 0.0182 262.2);
2559
+ --card: oklch(0.3378 0.0223 256.39);
2560
+ --card-foreground: oklch(0.3906 0.033 257.09);
2561
+ --popover: oklch(0.3906 0.033 257.09);
2562
+ --popover-foreground: oklch(0.9851 0 0);
2563
+ --foreground: oklch(0.9851 0 0);
2564
+ --primary: oklch(0.6437 0.1913 274.74);
2565
+ --primary-foreground: oklch(0.9851 0 0);
2566
+ --secondary: oklch(0.6437 0.1913 274.74);
2567
+ --secondary-foreground: oklch(0.9851 0 0);
2568
+ --muted: oklch(0.6437 0.1913 274.74);
2569
+ --muted-foreground: oklch(0.9851 0 0);
2570
+ --accent: oklch(0.6437 0.1913 274.74);
2571
+ --accent-foreground: oklch(0.9851 0 0);
2572
+ --destructive: oklch(0.577 0.245 27.325);
2573
+ --border: oklch(0.4448 0.0409 263.25);
2574
+ --input: oklch(0.4448 0.0409 263.25);
2575
+ --ring: oklch(0.7122 0 0);
2576
+ --chart-1: oklch(0.646 0.222 41.116);
2577
+ --chart-2: oklch(0.6 0.118 184.704);
2578
+ --chart-3: oklch(0.398 0.07 227.392);
2579
+ --chart-4: oklch(0.828 0.189 84.429);
2580
+ --chart-5: oklch(0.769 0.188 70.08);
2581
+ --sidebar: oklch(0.3378 0.0223 256.39);
2582
+ --sidebar-foreground: oklch(0.9851 0 0);
2583
+ --sidebar-primary: oklch(0.6437 0.1913 274.74);
2584
+ --sidebar-primary-foreground: oklch(0.9851 0 0);
2585
+ --sidebar-accent: oklch(0.6437 0.1913 274.74);
2586
+ --sidebar-accent-foreground: oklch(0.9851 0 0);
2587
+ --sidebar-border: oklch(0.4448 0.0409 263.25);
2588
+ --sidebar-ring: oklch(0.7122 0 0);
2589
+ }
2590
+ .dark {
2591
+ --radius: 0.625rem;
2592
+ --background: oklch(0.2758 0.0182 262.2);
2593
+ --card: oklch(0.3378 0.0223 256.39);
2594
+ --card-foreground: oklch(0.3906 0.033 257.09);
2595
+ --popover: oklch(0.3906 0.033 257.09);
2596
+ --popover-foreground: oklch(0.9851 0 0);
2597
+ --foreground: oklch(0.9851 0 0);
2598
+ --primary: oklch(0.6437 0.1913 274.74);
2599
+ --primary-foreground: oklch(0.9851 0 0);
2600
+ --secondary: oklch(0.6437 0.1913 274.74);
2601
+ --secondary-foreground: oklch(0.9851 0 0);
2602
+ --muted: oklch(0.6437 0.1913 274.74);
2603
+ --muted-foreground: oklch(0.9851 0 0);
2604
+ --accent: oklch(0.6437 0.1913 274.74);
2605
+ --accent-foreground: oklch(0.9851 0 0);
2606
+ --destructive: oklch(0.577 0.245 27.325);
2607
+ --border: oklch(0.4448 0.0409 263.25);
2608
+ --input: oklch(0.4448 0.0409 263.25);
2609
+ --ring: oklch(0.7122 0 0);
2610
+ --chart-1: oklch(0.646 0.222 41.116);
2611
+ --chart-2: oklch(0.6 0.118 184.704);
2612
+ --chart-3: oklch(0.398 0.07 227.392);
2613
+ --chart-4: oklch(0.828 0.189 84.429);
2614
+ --chart-5: oklch(0.769 0.188 70.08);
2615
+ --sidebar: oklch(0.3378 0.0223 256.39);
2616
+ --sidebar-foreground: oklch(0.9851 0 0);
2617
+ --sidebar-primary: oklch(0.6437 0.1913 274.74);
2618
+ --sidebar-primary-foreground: oklch(0.9851 0 0);
2619
+ --sidebar-accent: oklch(0.6437 0.1913 274.74);
2620
+ --sidebar-accent-foreground: oklch(0.9851 0 0);
2621
+ --sidebar-border: oklch(0.4448 0.0409 263.25);
2622
+ --sidebar-ring: oklch(0.7122 0 0);
2623
+ }
2624
+ @layer base {
2625
+ * {
2626
+ border-color: var(--border);
2627
+ outline-color: var(--ring);
2628
+ @supports (color: color-mix(in lab, red, red)) {
2629
+ outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
2630
+ }
2631
+ padding: 0;
2632
+ margin: 0;
2633
+ box-sizing: border-box;
2634
+ }
2635
+ :root {
2636
+ --font-poppins: "Poppins", sans-serif;
2637
+ }
2638
+ body {
2639
+ background-color: var(--background);
2640
+ color: var(--foreground);
2641
+ font-family: var(--font-poppins);
2642
+ }
2643
+ }
2644
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
2645
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
2646
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
2647
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
2648
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
2649
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
2650
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
2651
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
2652
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
2653
+ @property --tw-leading { syntax: "*"; inherits: false; }
2654
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
2655
+ @property --tw-tracking { syntax: "*"; inherits: false; }
2656
+ @property --tw-ordinal { syntax: "*"; inherits: false; }
2657
+ @property --tw-slashed-zero { syntax: "*"; inherits: false; }
2658
+ @property --tw-numeric-figure { syntax: "*"; inherits: false; }
2659
+ @property --tw-numeric-spacing { syntax: "*"; inherits: false; }
2660
+ @property --tw-numeric-fraction { syntax: "*"; inherits: false; }
2661
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2662
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
2663
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
2664
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2665
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
2666
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
2667
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
2668
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2669
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
2670
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2671
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
2672
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
2673
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
2674
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
2675
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
2676
+ @property --tw-duration { syntax: "*"; inherits: false; }
2677
+ @property --tw-ease { syntax: "*"; inherits: false; }
2678
+ @property --tw-content { syntax: "*"; initial-value: ""; inherits: false; }
2679
+ @keyframes pulse {
2680
+ 50% {
2681
+ opacity: 0.5;
2682
+ }
2683
+ }
2684
+ @keyframes enter {
2685
+ from {
2686
+ opacity: var(--tw-enter-opacity,1);
2687
+ transform: translate3d(var(--tw-enter-translate-x,0), var(--tw-enter-translate-y,0), 0)scale3d(var(--tw-enter-scale,1), var(--tw-enter-scale,1), var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
2688
+ filter: blur(var(--tw-enter-blur,0));
2689
+ }
2690
+ }
2691
+ @keyframes exit {
2692
+ to {
2693
+ opacity: var(--tw-exit-opacity,1);
2694
+ transform: translate3d(var(--tw-exit-translate-x,0), var(--tw-exit-translate-y,0), 0)scale3d(var(--tw-exit-scale,1), var(--tw-exit-scale,1), var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
2695
+ filter: blur(var(--tw-exit-blur,0));
2696
+ }
2697
+ }
2698
+ @layer properties {
2699
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
2700
+ *,
2701
+ ::before,
2702
+ ::after,
2703
+ ::backdrop {
2704
+ --tw-translate-x: 0;
2705
+ --tw-translate-y: 0;
2706
+ --tw-translate-z: 0;
2707
+ --tw-rotate-x: initial;
2708
+ --tw-rotate-y: initial;
2709
+ --tw-rotate-z: initial;
2710
+ --tw-skew-x: initial;
2711
+ --tw-skew-y: initial;
2712
+ --tw-border-style: solid;
2713
+ --tw-leading: initial;
2714
+ --tw-font-weight: initial;
2715
+ --tw-tracking: initial;
2716
+ --tw-ordinal: initial;
2717
+ --tw-slashed-zero: initial;
2718
+ --tw-numeric-figure: initial;
2719
+ --tw-numeric-spacing: initial;
2720
+ --tw-numeric-fraction: initial;
2721
+ --tw-shadow: 0 0 #0000;
2722
+ --tw-shadow-color: initial;
2723
+ --tw-shadow-alpha: 100%;
2724
+ --tw-inset-shadow: 0 0 #0000;
2725
+ --tw-inset-shadow-color: initial;
2726
+ --tw-inset-shadow-alpha: 100%;
2727
+ --tw-ring-color: initial;
2728
+ --tw-ring-shadow: 0 0 #0000;
2729
+ --tw-inset-ring-color: initial;
2730
+ --tw-inset-ring-shadow: 0 0 #0000;
2731
+ --tw-ring-inset: initial;
2732
+ --tw-ring-offset-width: 0px;
2733
+ --tw-ring-offset-color: #fff;
2734
+ --tw-ring-offset-shadow: 0 0 #0000;
2735
+ --tw-outline-style: solid;
2736
+ --tw-duration: initial;
2737
+ --tw-ease: initial;
2738
+ --tw-content: "";
2739
+ --tw-animation-delay: 0s;
2740
+ --tw-animation-direction: normal;
2741
+ --tw-animation-duration: initial;
2742
+ --tw-animation-fill-mode: none;
2743
+ --tw-animation-iteration-count: 1;
2744
+ --tw-enter-blur: 0;
2745
+ --tw-enter-opacity: 1;
2746
+ --tw-enter-rotate: 0;
2747
+ --tw-enter-scale: 1;
2748
+ --tw-enter-translate-x: 0;
2749
+ --tw-enter-translate-y: 0;
2750
+ --tw-exit-blur: 0;
2751
+ --tw-exit-opacity: 1;
2752
+ --tw-exit-rotate: 0;
2753
+ --tw-exit-scale: 1;
2754
+ --tw-exit-translate-x: 0;
2755
+ --tw-exit-translate-y: 0;
2756
+ }
2757
+ }
2758
+ }
2759
+ /*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */