prewindcss 1.0.0

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