@superlogic/spree-pay 0.0.1

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