@baloise/ds-styles 0.0.5-nightly.e56f740

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 (117) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +45 -0
  3. package/bin/index.mjs +1333 -0
  4. package/css/all.css +18468 -0
  5. package/css/all.css.map +1 -0
  6. package/css/all.min.css +1 -0
  7. package/css/baloise-design-system.css +18468 -0
  8. package/css/baloise-design-system.css.map +1 -0
  9. package/css/baloise-design-system.min.css +1 -0
  10. package/css/core.css +4423 -0
  11. package/css/core.css.map +1 -0
  12. package/css/core.min.css +1 -0
  13. package/css/font.css +29 -0
  14. package/css/font.css.map +1 -0
  15. package/css/font.min.css +1 -0
  16. package/css/mixins.css +2 -0
  17. package/css/mixins.css.map +1 -0
  18. package/css/mixins.min.css +0 -0
  19. package/css/normalize.css +351 -0
  20. package/css/normalize.css.map +1 -0
  21. package/css/normalize.min.css +1 -0
  22. package/css/structure.css +147 -0
  23. package/css/structure.css.map +1 -0
  24. package/css/structure.min.css +1 -0
  25. package/css/themes/compact.css +30 -0
  26. package/css/themes/compact.css.map +1 -0
  27. package/css/themes/compact.min.css +1 -0
  28. package/css/utilities/all.css +13112 -0
  29. package/css/utilities/all.css.map +1 -0
  30. package/css/utilities/all.min.css +1 -0
  31. package/css/utilities/background.css +1460 -0
  32. package/css/utilities/background.css.map +1 -0
  33. package/css/utilities/background.min.css +1 -0
  34. package/css/utilities/border.css +4697 -0
  35. package/css/utilities/border.css.map +1 -0
  36. package/css/utilities/border.min.css +1 -0
  37. package/css/utilities/elevation.css +317 -0
  38. package/css/utilities/elevation.css.map +1 -0
  39. package/css/utilities/elevation.min.css +1 -0
  40. package/css/utilities/flex.css +969 -0
  41. package/css/utilities/flex.css.map +1 -0
  42. package/css/utilities/flex.min.css +1 -0
  43. package/css/utilities/grid.css +1209 -0
  44. package/css/utilities/grid.css.map +1 -0
  45. package/css/utilities/grid.min.css +1 -0
  46. package/css/utilities/interaction.css +44 -0
  47. package/css/utilities/interaction.css.map +1 -0
  48. package/css/utilities/interaction.min.css +1 -0
  49. package/css/utilities/layout.css +1055 -0
  50. package/css/utilities/layout.css.map +1 -0
  51. package/css/utilities/layout.min.css +1 -0
  52. package/css/utilities/sizing.css +1931 -0
  53. package/css/utilities/sizing.css.map +1 -0
  54. package/css/utilities/sizing.min.css +1 -0
  55. package/css/utilities/spacing.css +1881 -0
  56. package/css/utilities/spacing.css.map +1 -0
  57. package/css/utilities/spacing.min.css +1 -0
  58. package/css/utilities/typography.css +763 -0
  59. package/css/utilities/typography.css.map +1 -0
  60. package/css/utilities/typography.min.css +1 -0
  61. package/package.json +36 -0
  62. package/sass/all.sass +6 -0
  63. package/sass/baloise-design-system.sass +1 -0
  64. package/sass/core.sass +37 -0
  65. package/sass/font.sass +1 -0
  66. package/sass/mixins.sass +3 -0
  67. package/sass/normalize.sass +359 -0
  68. package/sass/structure.sass +113 -0
  69. package/sass/themes/compact.sass +28 -0
  70. package/sass/utilities/all.sass +9 -0
  71. package/sass/utilities/background.sass +5 -0
  72. package/sass/utilities/border.sass +2 -0
  73. package/sass/utilities/elevation.sass +2 -0
  74. package/sass/utilities/flex.sass +2 -0
  75. package/sass/utilities/grid.sass +2 -0
  76. package/sass/utilities/interaction.sass +2 -0
  77. package/sass/utilities/layout.sass +12 -0
  78. package/sass/utilities/sizing.sass +2 -0
  79. package/sass/utilities/spacing.sass +2 -0
  80. package/sass/utilities/typography.sass +127 -0
  81. package/src/core/_all.sass +18 -0
  82. package/src/core/container.sass +23 -0
  83. package/src/core/form/_all.sass +6 -0
  84. package/src/core/form/button.sass +532 -0
  85. package/src/core/form/file.sass +139 -0
  86. package/src/core/form/input-textarea.sass +80 -0
  87. package/src/core/form/select.sass +111 -0
  88. package/src/core/form/shared.sass +69 -0
  89. package/src/core/form/tools.sass +209 -0
  90. package/src/core/grid.sass +477 -0
  91. package/src/core/link.sass +64 -0
  92. package/src/core/list.sass +85 -0
  93. package/src/core/table.sass +134 -0
  94. package/src/core/typography.sass +33 -0
  95. package/src/core/vars/_all.sass +7 -0
  96. package/src/core/vars/button.vars.sass +282 -0
  97. package/src/core/vars/form.vars.sass +137 -0
  98. package/src/core/vars/link.vars.sass +36 -0
  99. package/src/core/vars/list.vars.sass +20 -0
  100. package/src/core/vars/structure.vars.sass +47 -0
  101. package/src/core/vars/table.vars.sass +55 -0
  102. package/src/core/vars/typography.vars.sass +12 -0
  103. package/src/generated/background.sass +1091 -0
  104. package/src/generated/border.sass +3943 -0
  105. package/src/generated/elevation.sass +283 -0
  106. package/src/generated/flex.sass +831 -0
  107. package/src/generated/interaction.sass +26 -0
  108. package/src/generated/layout.sass +948 -0
  109. package/src/generated/sizing.sass +1703 -0
  110. package/src/generated/spacing.sass +1683 -0
  111. package/src/generated/typography.sass +453 -0
  112. package/src/mixins/_all.sass +7 -0
  113. package/src/mixins/bem.mixin.sass +39 -0
  114. package/src/mixins/breakpoint.mixin.sass +67 -0
  115. package/src/mixins/extends.sass +32 -0
  116. package/src/mixins/general.mixin.sass +95 -0
  117. package/src/mixins/svg.mixin.sass +6 -0
@@ -0,0 +1,1703 @@
1
+ .h-full
2
+ height: 100% !important
3
+
4
+ .h-screen
5
+ height: 100vh !important
6
+
7
+ .h-auto
8
+ height: auto !important
9
+
10
+ .h-min
11
+ height: min-content !important
12
+
13
+ .h-max
14
+ height: max-content !important
15
+
16
+ .h-fit
17
+ height: fit-content !important
18
+
19
+ .h-1rem
20
+ height: 1rem !important
21
+
22
+ .h-2rem
23
+ height: 2rem !important
24
+
25
+ .h-3rem
26
+ height: 3rem !important
27
+
28
+ .h-4rem
29
+ height: 4rem !important
30
+
31
+ .h-5rem
32
+ height: 5rem !important
33
+
34
+ .h-6rem
35
+ height: 6rem !important
36
+
37
+ .h-7rem
38
+ height: 7rem !important
39
+
40
+ .h-8rem
41
+ height: 8rem !important
42
+
43
+ .h-9rem
44
+ height: 9rem !important
45
+
46
+ .h-10rem
47
+ height: 10rem !important
48
+
49
+ .h-11rem
50
+ height: 11rem !important
51
+
52
+ .h-12rem
53
+ height: 12rem !important
54
+
55
+ .h-13rem
56
+ height: 13rem !important
57
+
58
+ .h-14rem
59
+ height: 14rem !important
60
+
61
+ .h-15rem
62
+ height: 15rem !important
63
+
64
+ .h-16rem
65
+ height: 16rem !important
66
+
67
+ .h-17rem
68
+ height: 17rem !important
69
+
70
+ .h-18rem
71
+ height: 18rem !important
72
+
73
+ .h-19rem
74
+ height: 19rem !important
75
+
76
+ .h-20rem
77
+ height: 20rem !important
78
+
79
+ .h-21rem
80
+ height: 21rem !important
81
+
82
+ .h-22rem
83
+ height: 22rem !important
84
+
85
+ .h-23rem
86
+ height: 23rem !important
87
+
88
+ .h-24rem
89
+ height: 24rem !important
90
+
91
+ .h-25rem
92
+ height: 25rem !important
93
+
94
+ .h-26rem
95
+ height: 26rem !important
96
+
97
+ .h-27rem
98
+ height: 27rem !important
99
+
100
+ .h-28rem
101
+ height: 28rem !important
102
+
103
+ .h-29rem
104
+ height: 29rem !important
105
+
106
+ .h-30rem
107
+ height: 30rem !important
108
+
109
+ +mobile
110
+ .mobile\:h-full
111
+ height: 100% !important
112
+
113
+ .mobile\:h-screen
114
+ height: 100vh !important
115
+
116
+ .mobile\:h-auto
117
+ height: auto !important
118
+
119
+ .mobile\:h-min
120
+ height: min-content !important
121
+
122
+ .mobile\:h-max
123
+ height: max-content !important
124
+
125
+ .mobile\:h-fit
126
+ height: fit-content !important
127
+
128
+ .mobile\:h-1rem
129
+ height: 1rem !important
130
+
131
+ .mobile\:h-2rem
132
+ height: 2rem !important
133
+
134
+ .mobile\:h-3rem
135
+ height: 3rem !important
136
+
137
+ .mobile\:h-4rem
138
+ height: 4rem !important
139
+
140
+ .mobile\:h-5rem
141
+ height: 5rem !important
142
+
143
+ .mobile\:h-6rem
144
+ height: 6rem !important
145
+
146
+ .mobile\:h-7rem
147
+ height: 7rem !important
148
+
149
+ .mobile\:h-8rem
150
+ height: 8rem !important
151
+
152
+ .mobile\:h-9rem
153
+ height: 9rem !important
154
+
155
+ .mobile\:h-10rem
156
+ height: 10rem !important
157
+
158
+ .mobile\:h-11rem
159
+ height: 11rem !important
160
+
161
+ .mobile\:h-12rem
162
+ height: 12rem !important
163
+
164
+ .mobile\:h-13rem
165
+ height: 13rem !important
166
+
167
+ .mobile\:h-14rem
168
+ height: 14rem !important
169
+
170
+ .mobile\:h-15rem
171
+ height: 15rem !important
172
+
173
+ .mobile\:h-16rem
174
+ height: 16rem !important
175
+
176
+ .mobile\:h-17rem
177
+ height: 17rem !important
178
+
179
+ .mobile\:h-18rem
180
+ height: 18rem !important
181
+
182
+ .mobile\:h-19rem
183
+ height: 19rem !important
184
+
185
+ .mobile\:h-20rem
186
+ height: 20rem !important
187
+
188
+ .mobile\:h-21rem
189
+ height: 21rem !important
190
+
191
+ .mobile\:h-22rem
192
+ height: 22rem !important
193
+
194
+ .mobile\:h-23rem
195
+ height: 23rem !important
196
+
197
+ .mobile\:h-24rem
198
+ height: 24rem !important
199
+
200
+ .mobile\:h-25rem
201
+ height: 25rem !important
202
+
203
+ .mobile\:h-26rem
204
+ height: 26rem !important
205
+
206
+ .mobile\:h-27rem
207
+ height: 27rem !important
208
+
209
+ .mobile\:h-28rem
210
+ height: 28rem !important
211
+
212
+ .mobile\:h-29rem
213
+ height: 29rem !important
214
+
215
+ .mobile\:h-30rem
216
+ height: 30rem !important
217
+
218
+ +tablet
219
+ .tablet\:h-full
220
+ height: 100% !important
221
+
222
+ .tablet\:h-screen
223
+ height: 100vh !important
224
+
225
+ .tablet\:h-auto
226
+ height: auto !important
227
+
228
+ .tablet\:h-min
229
+ height: min-content !important
230
+
231
+ .tablet\:h-max
232
+ height: max-content !important
233
+
234
+ .tablet\:h-fit
235
+ height: fit-content !important
236
+
237
+ .tablet\:h-1rem
238
+ height: 1rem !important
239
+
240
+ .tablet\:h-2rem
241
+ height: 2rem !important
242
+
243
+ .tablet\:h-3rem
244
+ height: 3rem !important
245
+
246
+ .tablet\:h-4rem
247
+ height: 4rem !important
248
+
249
+ .tablet\:h-5rem
250
+ height: 5rem !important
251
+
252
+ .tablet\:h-6rem
253
+ height: 6rem !important
254
+
255
+ .tablet\:h-7rem
256
+ height: 7rem !important
257
+
258
+ .tablet\:h-8rem
259
+ height: 8rem !important
260
+
261
+ .tablet\:h-9rem
262
+ height: 9rem !important
263
+
264
+ .tablet\:h-10rem
265
+ height: 10rem !important
266
+
267
+ .tablet\:h-11rem
268
+ height: 11rem !important
269
+
270
+ .tablet\:h-12rem
271
+ height: 12rem !important
272
+
273
+ .tablet\:h-13rem
274
+ height: 13rem !important
275
+
276
+ .tablet\:h-14rem
277
+ height: 14rem !important
278
+
279
+ .tablet\:h-15rem
280
+ height: 15rem !important
281
+
282
+ .tablet\:h-16rem
283
+ height: 16rem !important
284
+
285
+ .tablet\:h-17rem
286
+ height: 17rem !important
287
+
288
+ .tablet\:h-18rem
289
+ height: 18rem !important
290
+
291
+ .tablet\:h-19rem
292
+ height: 19rem !important
293
+
294
+ .tablet\:h-20rem
295
+ height: 20rem !important
296
+
297
+ .tablet\:h-21rem
298
+ height: 21rem !important
299
+
300
+ .tablet\:h-22rem
301
+ height: 22rem !important
302
+
303
+ .tablet\:h-23rem
304
+ height: 23rem !important
305
+
306
+ .tablet\:h-24rem
307
+ height: 24rem !important
308
+
309
+ .tablet\:h-25rem
310
+ height: 25rem !important
311
+
312
+ .tablet\:h-26rem
313
+ height: 26rem !important
314
+
315
+ .tablet\:h-27rem
316
+ height: 27rem !important
317
+
318
+ .tablet\:h-28rem
319
+ height: 28rem !important
320
+
321
+ .tablet\:h-29rem
322
+ height: 29rem !important
323
+
324
+ .tablet\:h-30rem
325
+ height: 30rem !important
326
+
327
+ +desktop
328
+ .desktop\:h-full
329
+ height: 100% !important
330
+
331
+ .desktop\:h-screen
332
+ height: 100vh !important
333
+
334
+ .desktop\:h-auto
335
+ height: auto !important
336
+
337
+ .desktop\:h-min
338
+ height: min-content !important
339
+
340
+ .desktop\:h-max
341
+ height: max-content !important
342
+
343
+ .desktop\:h-fit
344
+ height: fit-content !important
345
+
346
+ .desktop\:h-1rem
347
+ height: 1rem !important
348
+
349
+ .desktop\:h-2rem
350
+ height: 2rem !important
351
+
352
+ .desktop\:h-3rem
353
+ height: 3rem !important
354
+
355
+ .desktop\:h-4rem
356
+ height: 4rem !important
357
+
358
+ .desktop\:h-5rem
359
+ height: 5rem !important
360
+
361
+ .desktop\:h-6rem
362
+ height: 6rem !important
363
+
364
+ .desktop\:h-7rem
365
+ height: 7rem !important
366
+
367
+ .desktop\:h-8rem
368
+ height: 8rem !important
369
+
370
+ .desktop\:h-9rem
371
+ height: 9rem !important
372
+
373
+ .desktop\:h-10rem
374
+ height: 10rem !important
375
+
376
+ .desktop\:h-11rem
377
+ height: 11rem !important
378
+
379
+ .desktop\:h-12rem
380
+ height: 12rem !important
381
+
382
+ .desktop\:h-13rem
383
+ height: 13rem !important
384
+
385
+ .desktop\:h-14rem
386
+ height: 14rem !important
387
+
388
+ .desktop\:h-15rem
389
+ height: 15rem !important
390
+
391
+ .desktop\:h-16rem
392
+ height: 16rem !important
393
+
394
+ .desktop\:h-17rem
395
+ height: 17rem !important
396
+
397
+ .desktop\:h-18rem
398
+ height: 18rem !important
399
+
400
+ .desktop\:h-19rem
401
+ height: 19rem !important
402
+
403
+ .desktop\:h-20rem
404
+ height: 20rem !important
405
+
406
+ .desktop\:h-21rem
407
+ height: 21rem !important
408
+
409
+ .desktop\:h-22rem
410
+ height: 22rem !important
411
+
412
+ .desktop\:h-23rem
413
+ height: 23rem !important
414
+
415
+ .desktop\:h-24rem
416
+ height: 24rem !important
417
+
418
+ .desktop\:h-25rem
419
+ height: 25rem !important
420
+
421
+ .desktop\:h-26rem
422
+ height: 26rem !important
423
+
424
+ .desktop\:h-27rem
425
+ height: 27rem !important
426
+
427
+ .desktop\:h-28rem
428
+ height: 28rem !important
429
+
430
+ .desktop\:h-29rem
431
+ height: 29rem !important
432
+
433
+ .desktop\:h-30rem
434
+ height: 30rem !important
435
+
436
+ +widescreen
437
+ .widescreen\:h-full
438
+ height: 100% !important
439
+
440
+ .widescreen\:h-screen
441
+ height: 100vh !important
442
+
443
+ .widescreen\:h-auto
444
+ height: auto !important
445
+
446
+ .widescreen\:h-min
447
+ height: min-content !important
448
+
449
+ .widescreen\:h-max
450
+ height: max-content !important
451
+
452
+ .widescreen\:h-fit
453
+ height: fit-content !important
454
+
455
+ .widescreen\:h-1rem
456
+ height: 1rem !important
457
+
458
+ .widescreen\:h-2rem
459
+ height: 2rem !important
460
+
461
+ .widescreen\:h-3rem
462
+ height: 3rem !important
463
+
464
+ .widescreen\:h-4rem
465
+ height: 4rem !important
466
+
467
+ .widescreen\:h-5rem
468
+ height: 5rem !important
469
+
470
+ .widescreen\:h-6rem
471
+ height: 6rem !important
472
+
473
+ .widescreen\:h-7rem
474
+ height: 7rem !important
475
+
476
+ .widescreen\:h-8rem
477
+ height: 8rem !important
478
+
479
+ .widescreen\:h-9rem
480
+ height: 9rem !important
481
+
482
+ .widescreen\:h-10rem
483
+ height: 10rem !important
484
+
485
+ .widescreen\:h-11rem
486
+ height: 11rem !important
487
+
488
+ .widescreen\:h-12rem
489
+ height: 12rem !important
490
+
491
+ .widescreen\:h-13rem
492
+ height: 13rem !important
493
+
494
+ .widescreen\:h-14rem
495
+ height: 14rem !important
496
+
497
+ .widescreen\:h-15rem
498
+ height: 15rem !important
499
+
500
+ .widescreen\:h-16rem
501
+ height: 16rem !important
502
+
503
+ .widescreen\:h-17rem
504
+ height: 17rem !important
505
+
506
+ .widescreen\:h-18rem
507
+ height: 18rem !important
508
+
509
+ .widescreen\:h-19rem
510
+ height: 19rem !important
511
+
512
+ .widescreen\:h-20rem
513
+ height: 20rem !important
514
+
515
+ .widescreen\:h-21rem
516
+ height: 21rem !important
517
+
518
+ .widescreen\:h-22rem
519
+ height: 22rem !important
520
+
521
+ .widescreen\:h-23rem
522
+ height: 23rem !important
523
+
524
+ .widescreen\:h-24rem
525
+ height: 24rem !important
526
+
527
+ .widescreen\:h-25rem
528
+ height: 25rem !important
529
+
530
+ .widescreen\:h-26rem
531
+ height: 26rem !important
532
+
533
+ .widescreen\:h-27rem
534
+ height: 27rem !important
535
+
536
+ .widescreen\:h-28rem
537
+ height: 28rem !important
538
+
539
+ .widescreen\:h-29rem
540
+ height: 29rem !important
541
+
542
+ .widescreen\:h-30rem
543
+ height: 30rem !important
544
+
545
+ .w-full
546
+ width: 100% !important
547
+
548
+ .w-screen
549
+ width: 100vw !important
550
+
551
+ .w-auto
552
+ width: auto !important
553
+
554
+ .w-min
555
+ width: min-content !important
556
+
557
+ .w-max
558
+ width: max-content !important
559
+
560
+ .w-fit
561
+ width: fit-content !important
562
+
563
+ .w-1
564
+ width: 8.3333% !important
565
+
566
+ .w-2
567
+ width: 16.6667% !important
568
+
569
+ .w-3
570
+ width: 25% !important
571
+
572
+ .w-4
573
+ width: 33.3333% !important
574
+
575
+ .w-5
576
+ width: 41.6667% !important
577
+
578
+ .w-6
579
+ width: 50% !important
580
+
581
+ .w-7
582
+ width: 58.3333% !important
583
+
584
+ .w-8
585
+ width: 66.6667% !important
586
+
587
+ .w-9
588
+ width: 75% !important
589
+
590
+ .w-10
591
+ width: 83.3333% !important
592
+
593
+ .w-11
594
+ width: 91.6667% !important
595
+
596
+ .w-12
597
+ width: 100% !important
598
+
599
+ .w-1rem
600
+ width: 1rem !important
601
+
602
+ .w-2rem
603
+ width: 2rem !important
604
+
605
+ .w-3rem
606
+ width: 3rem !important
607
+
608
+ .w-4rem
609
+ width: 4rem !important
610
+
611
+ .w-5rem
612
+ width: 5rem !important
613
+
614
+ .w-6rem
615
+ width: 6rem !important
616
+
617
+ .w-7rem
618
+ width: 7rem !important
619
+
620
+ .w-8rem
621
+ width: 8rem !important
622
+
623
+ .w-9rem
624
+ width: 9rem !important
625
+
626
+ .w-10rem
627
+ width: 10rem !important
628
+
629
+ .w-11rem
630
+ width: 11rem !important
631
+
632
+ .w-12rem
633
+ width: 12rem !important
634
+
635
+ .w-13rem
636
+ width: 13rem !important
637
+
638
+ .w-14rem
639
+ width: 14rem !important
640
+
641
+ .w-15rem
642
+ width: 15rem !important
643
+
644
+ .w-16rem
645
+ width: 16rem !important
646
+
647
+ .w-17rem
648
+ width: 17rem !important
649
+
650
+ .w-18rem
651
+ width: 18rem !important
652
+
653
+ .w-19rem
654
+ width: 19rem !important
655
+
656
+ .w-20rem
657
+ width: 20rem !important
658
+
659
+ .w-21rem
660
+ width: 21rem !important
661
+
662
+ .w-22rem
663
+ width: 22rem !important
664
+
665
+ .w-23rem
666
+ width: 23rem !important
667
+
668
+ .w-24rem
669
+ width: 24rem !important
670
+
671
+ .w-25rem
672
+ width: 25rem !important
673
+
674
+ .w-26rem
675
+ width: 26rem !important
676
+
677
+ .w-27rem
678
+ width: 27rem !important
679
+
680
+ .w-28rem
681
+ width: 28rem !important
682
+
683
+ .w-29rem
684
+ width: 29rem !important
685
+
686
+ .w-30rem
687
+ width: 30rem !important
688
+
689
+ +mobile
690
+ .mobile\:w-full
691
+ width: 100% !important
692
+
693
+ .mobile\:w-screen
694
+ width: 100vw !important
695
+
696
+ .mobile\:w-auto
697
+ width: auto !important
698
+
699
+ .mobile\:w-min
700
+ width: min-content !important
701
+
702
+ .mobile\:w-max
703
+ width: max-content !important
704
+
705
+ .mobile\:w-fit
706
+ width: fit-content !important
707
+
708
+ .mobile\:w-1
709
+ width: 8.3333% !important
710
+
711
+ .mobile\:w-2
712
+ width: 16.6667% !important
713
+
714
+ .mobile\:w-3
715
+ width: 25% !important
716
+
717
+ .mobile\:w-4
718
+ width: 33.3333% !important
719
+
720
+ .mobile\:w-5
721
+ width: 41.6667% !important
722
+
723
+ .mobile\:w-6
724
+ width: 50% !important
725
+
726
+ .mobile\:w-7
727
+ width: 58.3333% !important
728
+
729
+ .mobile\:w-8
730
+ width: 66.6667% !important
731
+
732
+ .mobile\:w-9
733
+ width: 75% !important
734
+
735
+ .mobile\:w-10
736
+ width: 83.3333% !important
737
+
738
+ .mobile\:w-11
739
+ width: 91.6667% !important
740
+
741
+ .mobile\:w-12
742
+ width: 100% !important
743
+
744
+ .mobile\:w-1rem
745
+ width: 1rem !important
746
+
747
+ .mobile\:w-2rem
748
+ width: 2rem !important
749
+
750
+ .mobile\:w-3rem
751
+ width: 3rem !important
752
+
753
+ .mobile\:w-4rem
754
+ width: 4rem !important
755
+
756
+ .mobile\:w-5rem
757
+ width: 5rem !important
758
+
759
+ .mobile\:w-6rem
760
+ width: 6rem !important
761
+
762
+ .mobile\:w-7rem
763
+ width: 7rem !important
764
+
765
+ .mobile\:w-8rem
766
+ width: 8rem !important
767
+
768
+ .mobile\:w-9rem
769
+ width: 9rem !important
770
+
771
+ .mobile\:w-10rem
772
+ width: 10rem !important
773
+
774
+ .mobile\:w-11rem
775
+ width: 11rem !important
776
+
777
+ .mobile\:w-12rem
778
+ width: 12rem !important
779
+
780
+ .mobile\:w-13rem
781
+ width: 13rem !important
782
+
783
+ .mobile\:w-14rem
784
+ width: 14rem !important
785
+
786
+ .mobile\:w-15rem
787
+ width: 15rem !important
788
+
789
+ .mobile\:w-16rem
790
+ width: 16rem !important
791
+
792
+ .mobile\:w-17rem
793
+ width: 17rem !important
794
+
795
+ .mobile\:w-18rem
796
+ width: 18rem !important
797
+
798
+ .mobile\:w-19rem
799
+ width: 19rem !important
800
+
801
+ .mobile\:w-20rem
802
+ width: 20rem !important
803
+
804
+ .mobile\:w-21rem
805
+ width: 21rem !important
806
+
807
+ .mobile\:w-22rem
808
+ width: 22rem !important
809
+
810
+ .mobile\:w-23rem
811
+ width: 23rem !important
812
+
813
+ .mobile\:w-24rem
814
+ width: 24rem !important
815
+
816
+ .mobile\:w-25rem
817
+ width: 25rem !important
818
+
819
+ .mobile\:w-26rem
820
+ width: 26rem !important
821
+
822
+ .mobile\:w-27rem
823
+ width: 27rem !important
824
+
825
+ .mobile\:w-28rem
826
+ width: 28rem !important
827
+
828
+ .mobile\:w-29rem
829
+ width: 29rem !important
830
+
831
+ .mobile\:w-30rem
832
+ width: 30rem !important
833
+
834
+ +tablet
835
+ .tablet\:w-full
836
+ width: 100% !important
837
+
838
+ .tablet\:w-screen
839
+ width: 100vw !important
840
+
841
+ .tablet\:w-auto
842
+ width: auto !important
843
+
844
+ .tablet\:w-min
845
+ width: min-content !important
846
+
847
+ .tablet\:w-max
848
+ width: max-content !important
849
+
850
+ .tablet\:w-fit
851
+ width: fit-content !important
852
+
853
+ .tablet\:w-1
854
+ width: 8.3333% !important
855
+
856
+ .tablet\:w-2
857
+ width: 16.6667% !important
858
+
859
+ .tablet\:w-3
860
+ width: 25% !important
861
+
862
+ .tablet\:w-4
863
+ width: 33.3333% !important
864
+
865
+ .tablet\:w-5
866
+ width: 41.6667% !important
867
+
868
+ .tablet\:w-6
869
+ width: 50% !important
870
+
871
+ .tablet\:w-7
872
+ width: 58.3333% !important
873
+
874
+ .tablet\:w-8
875
+ width: 66.6667% !important
876
+
877
+ .tablet\:w-9
878
+ width: 75% !important
879
+
880
+ .tablet\:w-10
881
+ width: 83.3333% !important
882
+
883
+ .tablet\:w-11
884
+ width: 91.6667% !important
885
+
886
+ .tablet\:w-12
887
+ width: 100% !important
888
+
889
+ .tablet\:w-1rem
890
+ width: 1rem !important
891
+
892
+ .tablet\:w-2rem
893
+ width: 2rem !important
894
+
895
+ .tablet\:w-3rem
896
+ width: 3rem !important
897
+
898
+ .tablet\:w-4rem
899
+ width: 4rem !important
900
+
901
+ .tablet\:w-5rem
902
+ width: 5rem !important
903
+
904
+ .tablet\:w-6rem
905
+ width: 6rem !important
906
+
907
+ .tablet\:w-7rem
908
+ width: 7rem !important
909
+
910
+ .tablet\:w-8rem
911
+ width: 8rem !important
912
+
913
+ .tablet\:w-9rem
914
+ width: 9rem !important
915
+
916
+ .tablet\:w-10rem
917
+ width: 10rem !important
918
+
919
+ .tablet\:w-11rem
920
+ width: 11rem !important
921
+
922
+ .tablet\:w-12rem
923
+ width: 12rem !important
924
+
925
+ .tablet\:w-13rem
926
+ width: 13rem !important
927
+
928
+ .tablet\:w-14rem
929
+ width: 14rem !important
930
+
931
+ .tablet\:w-15rem
932
+ width: 15rem !important
933
+
934
+ .tablet\:w-16rem
935
+ width: 16rem !important
936
+
937
+ .tablet\:w-17rem
938
+ width: 17rem !important
939
+
940
+ .tablet\:w-18rem
941
+ width: 18rem !important
942
+
943
+ .tablet\:w-19rem
944
+ width: 19rem !important
945
+
946
+ .tablet\:w-20rem
947
+ width: 20rem !important
948
+
949
+ .tablet\:w-21rem
950
+ width: 21rem !important
951
+
952
+ .tablet\:w-22rem
953
+ width: 22rem !important
954
+
955
+ .tablet\:w-23rem
956
+ width: 23rem !important
957
+
958
+ .tablet\:w-24rem
959
+ width: 24rem !important
960
+
961
+ .tablet\:w-25rem
962
+ width: 25rem !important
963
+
964
+ .tablet\:w-26rem
965
+ width: 26rem !important
966
+
967
+ .tablet\:w-27rem
968
+ width: 27rem !important
969
+
970
+ .tablet\:w-28rem
971
+ width: 28rem !important
972
+
973
+ .tablet\:w-29rem
974
+ width: 29rem !important
975
+
976
+ .tablet\:w-30rem
977
+ width: 30rem !important
978
+
979
+ +desktop
980
+ .desktop\:w-full
981
+ width: 100% !important
982
+
983
+ .desktop\:w-screen
984
+ width: 100vw !important
985
+
986
+ .desktop\:w-auto
987
+ width: auto !important
988
+
989
+ .desktop\:w-min
990
+ width: min-content !important
991
+
992
+ .desktop\:w-max
993
+ width: max-content !important
994
+
995
+ .desktop\:w-fit
996
+ width: fit-content !important
997
+
998
+ .desktop\:w-1
999
+ width: 8.3333% !important
1000
+
1001
+ .desktop\:w-2
1002
+ width: 16.6667% !important
1003
+
1004
+ .desktop\:w-3
1005
+ width: 25% !important
1006
+
1007
+ .desktop\:w-4
1008
+ width: 33.3333% !important
1009
+
1010
+ .desktop\:w-5
1011
+ width: 41.6667% !important
1012
+
1013
+ .desktop\:w-6
1014
+ width: 50% !important
1015
+
1016
+ .desktop\:w-7
1017
+ width: 58.3333% !important
1018
+
1019
+ .desktop\:w-8
1020
+ width: 66.6667% !important
1021
+
1022
+ .desktop\:w-9
1023
+ width: 75% !important
1024
+
1025
+ .desktop\:w-10
1026
+ width: 83.3333% !important
1027
+
1028
+ .desktop\:w-11
1029
+ width: 91.6667% !important
1030
+
1031
+ .desktop\:w-12
1032
+ width: 100% !important
1033
+
1034
+ .desktop\:w-1rem
1035
+ width: 1rem !important
1036
+
1037
+ .desktop\:w-2rem
1038
+ width: 2rem !important
1039
+
1040
+ .desktop\:w-3rem
1041
+ width: 3rem !important
1042
+
1043
+ .desktop\:w-4rem
1044
+ width: 4rem !important
1045
+
1046
+ .desktop\:w-5rem
1047
+ width: 5rem !important
1048
+
1049
+ .desktop\:w-6rem
1050
+ width: 6rem !important
1051
+
1052
+ .desktop\:w-7rem
1053
+ width: 7rem !important
1054
+
1055
+ .desktop\:w-8rem
1056
+ width: 8rem !important
1057
+
1058
+ .desktop\:w-9rem
1059
+ width: 9rem !important
1060
+
1061
+ .desktop\:w-10rem
1062
+ width: 10rem !important
1063
+
1064
+ .desktop\:w-11rem
1065
+ width: 11rem !important
1066
+
1067
+ .desktop\:w-12rem
1068
+ width: 12rem !important
1069
+
1070
+ .desktop\:w-13rem
1071
+ width: 13rem !important
1072
+
1073
+ .desktop\:w-14rem
1074
+ width: 14rem !important
1075
+
1076
+ .desktop\:w-15rem
1077
+ width: 15rem !important
1078
+
1079
+ .desktop\:w-16rem
1080
+ width: 16rem !important
1081
+
1082
+ .desktop\:w-17rem
1083
+ width: 17rem !important
1084
+
1085
+ .desktop\:w-18rem
1086
+ width: 18rem !important
1087
+
1088
+ .desktop\:w-19rem
1089
+ width: 19rem !important
1090
+
1091
+ .desktop\:w-20rem
1092
+ width: 20rem !important
1093
+
1094
+ .desktop\:w-21rem
1095
+ width: 21rem !important
1096
+
1097
+ .desktop\:w-22rem
1098
+ width: 22rem !important
1099
+
1100
+ .desktop\:w-23rem
1101
+ width: 23rem !important
1102
+
1103
+ .desktop\:w-24rem
1104
+ width: 24rem !important
1105
+
1106
+ .desktop\:w-25rem
1107
+ width: 25rem !important
1108
+
1109
+ .desktop\:w-26rem
1110
+ width: 26rem !important
1111
+
1112
+ .desktop\:w-27rem
1113
+ width: 27rem !important
1114
+
1115
+ .desktop\:w-28rem
1116
+ width: 28rem !important
1117
+
1118
+ .desktop\:w-29rem
1119
+ width: 29rem !important
1120
+
1121
+ .desktop\:w-30rem
1122
+ width: 30rem !important
1123
+
1124
+ +widescreen
1125
+ .widescreen\:w-full
1126
+ width: 100% !important
1127
+
1128
+ .widescreen\:w-screen
1129
+ width: 100vw !important
1130
+
1131
+ .widescreen\:w-auto
1132
+ width: auto !important
1133
+
1134
+ .widescreen\:w-min
1135
+ width: min-content !important
1136
+
1137
+ .widescreen\:w-max
1138
+ width: max-content !important
1139
+
1140
+ .widescreen\:w-fit
1141
+ width: fit-content !important
1142
+
1143
+ .widescreen\:w-1
1144
+ width: 8.3333% !important
1145
+
1146
+ .widescreen\:w-2
1147
+ width: 16.6667% !important
1148
+
1149
+ .widescreen\:w-3
1150
+ width: 25% !important
1151
+
1152
+ .widescreen\:w-4
1153
+ width: 33.3333% !important
1154
+
1155
+ .widescreen\:w-5
1156
+ width: 41.6667% !important
1157
+
1158
+ .widescreen\:w-6
1159
+ width: 50% !important
1160
+
1161
+ .widescreen\:w-7
1162
+ width: 58.3333% !important
1163
+
1164
+ .widescreen\:w-8
1165
+ width: 66.6667% !important
1166
+
1167
+ .widescreen\:w-9
1168
+ width: 75% !important
1169
+
1170
+ .widescreen\:w-10
1171
+ width: 83.3333% !important
1172
+
1173
+ .widescreen\:w-11
1174
+ width: 91.6667% !important
1175
+
1176
+ .widescreen\:w-12
1177
+ width: 100% !important
1178
+
1179
+ .widescreen\:w-1rem
1180
+ width: 1rem !important
1181
+
1182
+ .widescreen\:w-2rem
1183
+ width: 2rem !important
1184
+
1185
+ .widescreen\:w-3rem
1186
+ width: 3rem !important
1187
+
1188
+ .widescreen\:w-4rem
1189
+ width: 4rem !important
1190
+
1191
+ .widescreen\:w-5rem
1192
+ width: 5rem !important
1193
+
1194
+ .widescreen\:w-6rem
1195
+ width: 6rem !important
1196
+
1197
+ .widescreen\:w-7rem
1198
+ width: 7rem !important
1199
+
1200
+ .widescreen\:w-8rem
1201
+ width: 8rem !important
1202
+
1203
+ .widescreen\:w-9rem
1204
+ width: 9rem !important
1205
+
1206
+ .widescreen\:w-10rem
1207
+ width: 10rem !important
1208
+
1209
+ .widescreen\:w-11rem
1210
+ width: 11rem !important
1211
+
1212
+ .widescreen\:w-12rem
1213
+ width: 12rem !important
1214
+
1215
+ .widescreen\:w-13rem
1216
+ width: 13rem !important
1217
+
1218
+ .widescreen\:w-14rem
1219
+ width: 14rem !important
1220
+
1221
+ .widescreen\:w-15rem
1222
+ width: 15rem !important
1223
+
1224
+ .widescreen\:w-16rem
1225
+ width: 16rem !important
1226
+
1227
+ .widescreen\:w-17rem
1228
+ width: 17rem !important
1229
+
1230
+ .widescreen\:w-18rem
1231
+ width: 18rem !important
1232
+
1233
+ .widescreen\:w-19rem
1234
+ width: 19rem !important
1235
+
1236
+ .widescreen\:w-20rem
1237
+ width: 20rem !important
1238
+
1239
+ .widescreen\:w-21rem
1240
+ width: 21rem !important
1241
+
1242
+ .widescreen\:w-22rem
1243
+ width: 22rem !important
1244
+
1245
+ .widescreen\:w-23rem
1246
+ width: 23rem !important
1247
+
1248
+ .widescreen\:w-24rem
1249
+ width: 24rem !important
1250
+
1251
+ .widescreen\:w-25rem
1252
+ width: 25rem !important
1253
+
1254
+ .widescreen\:w-26rem
1255
+ width: 26rem !important
1256
+
1257
+ .widescreen\:w-27rem
1258
+ width: 27rem !important
1259
+
1260
+ .widescreen\:w-28rem
1261
+ width: 28rem !important
1262
+
1263
+ .widescreen\:w-29rem
1264
+ width: 29rem !important
1265
+
1266
+ .widescreen\:w-30rem
1267
+ width: 30rem !important
1268
+
1269
+ .min-h-auto
1270
+ min-height: auto !important
1271
+
1272
+ .min-h-0
1273
+ min-height: 0px !important
1274
+
1275
+ .min-h-full
1276
+ min-height: 100% !important
1277
+
1278
+ .min-h-screen
1279
+ min-height: 100vh !important
1280
+
1281
+ .min-h-min
1282
+ min-height: min-content !important
1283
+
1284
+ .min-h-max
1285
+ min-height: max-content !important
1286
+
1287
+ .min-h-fit
1288
+ min-height: fit-content !important
1289
+
1290
+ +mobile
1291
+ .mobile\:min-h-auto
1292
+ min-height: auto !important
1293
+
1294
+ .mobile\:min-h-0
1295
+ min-height: 0px !important
1296
+
1297
+ .mobile\:min-h-full
1298
+ min-height: 100% !important
1299
+
1300
+ .mobile\:min-h-screen
1301
+ min-height: 100vh !important
1302
+
1303
+ .mobile\:min-h-min
1304
+ min-height: min-content !important
1305
+
1306
+ .mobile\:min-h-max
1307
+ min-height: max-content !important
1308
+
1309
+ .mobile\:min-h-fit
1310
+ min-height: fit-content !important
1311
+
1312
+ +tablet
1313
+ .tablet\:min-h-auto
1314
+ min-height: auto !important
1315
+
1316
+ .tablet\:min-h-0
1317
+ min-height: 0px !important
1318
+
1319
+ .tablet\:min-h-full
1320
+ min-height: 100% !important
1321
+
1322
+ .tablet\:min-h-screen
1323
+ min-height: 100vh !important
1324
+
1325
+ .tablet\:min-h-min
1326
+ min-height: min-content !important
1327
+
1328
+ .tablet\:min-h-max
1329
+ min-height: max-content !important
1330
+
1331
+ .tablet\:min-h-fit
1332
+ min-height: fit-content !important
1333
+
1334
+ +desktop
1335
+ .desktop\:min-h-auto
1336
+ min-height: auto !important
1337
+
1338
+ .desktop\:min-h-0
1339
+ min-height: 0px !important
1340
+
1341
+ .desktop\:min-h-full
1342
+ min-height: 100% !important
1343
+
1344
+ .desktop\:min-h-screen
1345
+ min-height: 100vh !important
1346
+
1347
+ .desktop\:min-h-min
1348
+ min-height: min-content !important
1349
+
1350
+ .desktop\:min-h-max
1351
+ min-height: max-content !important
1352
+
1353
+ .desktop\:min-h-fit
1354
+ min-height: fit-content !important
1355
+
1356
+ +widescreen
1357
+ .widescreen\:min-h-auto
1358
+ min-height: auto !important
1359
+
1360
+ .widescreen\:min-h-0
1361
+ min-height: 0px !important
1362
+
1363
+ .widescreen\:min-h-full
1364
+ min-height: 100% !important
1365
+
1366
+ .widescreen\:min-h-screen
1367
+ min-height: 100vh !important
1368
+
1369
+ .widescreen\:min-h-min
1370
+ min-height: min-content !important
1371
+
1372
+ .widescreen\:min-h-max
1373
+ min-height: max-content !important
1374
+
1375
+ .widescreen\:min-h-fit
1376
+ min-height: fit-content !important
1377
+
1378
+ .min-w-auto
1379
+ min-width: auto !important
1380
+
1381
+ .min-w-0
1382
+ min-width: 0px !important
1383
+
1384
+ .min-w-full
1385
+ min-width: 100% !important
1386
+
1387
+ .min-w-screen
1388
+ min-width: 100vw !important
1389
+
1390
+ .min-w-min
1391
+ min-width: min-content !important
1392
+
1393
+ .min-w-max
1394
+ min-width: max-content !important
1395
+
1396
+ .min-w-fit
1397
+ min-width: fit-content !important
1398
+
1399
+ +mobile
1400
+ .mobile\:min-w-auto
1401
+ min-width: auto !important
1402
+
1403
+ .mobile\:min-w-0
1404
+ min-width: 0px !important
1405
+
1406
+ .mobile\:min-w-full
1407
+ min-width: 100% !important
1408
+
1409
+ .mobile\:min-w-screen
1410
+ min-width: 100vw !important
1411
+
1412
+ .mobile\:min-w-min
1413
+ min-width: min-content !important
1414
+
1415
+ .mobile\:min-w-max
1416
+ min-width: max-content !important
1417
+
1418
+ .mobile\:min-w-fit
1419
+ min-width: fit-content !important
1420
+
1421
+ +tablet
1422
+ .tablet\:min-w-auto
1423
+ min-width: auto !important
1424
+
1425
+ .tablet\:min-w-0
1426
+ min-width: 0px !important
1427
+
1428
+ .tablet\:min-w-full
1429
+ min-width: 100% !important
1430
+
1431
+ .tablet\:min-w-screen
1432
+ min-width: 100vw !important
1433
+
1434
+ .tablet\:min-w-min
1435
+ min-width: min-content !important
1436
+
1437
+ .tablet\:min-w-max
1438
+ min-width: max-content !important
1439
+
1440
+ .tablet\:min-w-fit
1441
+ min-width: fit-content !important
1442
+
1443
+ +desktop
1444
+ .desktop\:min-w-auto
1445
+ min-width: auto !important
1446
+
1447
+ .desktop\:min-w-0
1448
+ min-width: 0px !important
1449
+
1450
+ .desktop\:min-w-full
1451
+ min-width: 100% !important
1452
+
1453
+ .desktop\:min-w-screen
1454
+ min-width: 100vw !important
1455
+
1456
+ .desktop\:min-w-min
1457
+ min-width: min-content !important
1458
+
1459
+ .desktop\:min-w-max
1460
+ min-width: max-content !important
1461
+
1462
+ .desktop\:min-w-fit
1463
+ min-width: fit-content !important
1464
+
1465
+ +widescreen
1466
+ .widescreen\:min-w-auto
1467
+ min-width: auto !important
1468
+
1469
+ .widescreen\:min-w-0
1470
+ min-width: 0px !important
1471
+
1472
+ .widescreen\:min-w-full
1473
+ min-width: 100% !important
1474
+
1475
+ .widescreen\:min-w-screen
1476
+ min-width: 100vw !important
1477
+
1478
+ .widescreen\:min-w-min
1479
+ min-width: min-content !important
1480
+
1481
+ .widescreen\:min-w-max
1482
+ min-width: max-content !important
1483
+
1484
+ .widescreen\:min-w-fit
1485
+ min-width: fit-content !important
1486
+
1487
+ .max-h-auto
1488
+ max-height: auto !important
1489
+
1490
+ .max-h-0
1491
+ max-height: 0px !important
1492
+
1493
+ .max-h-full
1494
+ max-height: 100% !important
1495
+
1496
+ .max-h-screen
1497
+ max-height: 100vh !important
1498
+
1499
+ .min-h-min
1500
+ max-height: min-content !important
1501
+
1502
+ .min-h-max
1503
+ max-height: max-content !important
1504
+
1505
+ .min-h-fit
1506
+ max-height: fit-content !important
1507
+
1508
+ +mobile
1509
+ .mobile\:max-h-auto
1510
+ max-height: auto !important
1511
+
1512
+ .mobile\:max-h-0
1513
+ max-height: 0px !important
1514
+
1515
+ .mobile\:max-h-full
1516
+ max-height: 100% !important
1517
+
1518
+ .mobile\:max-h-screen
1519
+ max-height: 100vh !important
1520
+
1521
+ .mobile\:min-h-min
1522
+ max-height: min-content !important
1523
+
1524
+ .mobile\:min-h-max
1525
+ max-height: max-content !important
1526
+
1527
+ .mobile\:min-h-fit
1528
+ max-height: fit-content !important
1529
+
1530
+ +tablet
1531
+ .tablet\:max-h-auto
1532
+ max-height: auto !important
1533
+
1534
+ .tablet\:max-h-0
1535
+ max-height: 0px !important
1536
+
1537
+ .tablet\:max-h-full
1538
+ max-height: 100% !important
1539
+
1540
+ .tablet\:max-h-screen
1541
+ max-height: 100vh !important
1542
+
1543
+ .tablet\:min-h-min
1544
+ max-height: min-content !important
1545
+
1546
+ .tablet\:min-h-max
1547
+ max-height: max-content !important
1548
+
1549
+ .tablet\:min-h-fit
1550
+ max-height: fit-content !important
1551
+
1552
+ +desktop
1553
+ .desktop\:max-h-auto
1554
+ max-height: auto !important
1555
+
1556
+ .desktop\:max-h-0
1557
+ max-height: 0px !important
1558
+
1559
+ .desktop\:max-h-full
1560
+ max-height: 100% !important
1561
+
1562
+ .desktop\:max-h-screen
1563
+ max-height: 100vh !important
1564
+
1565
+ .desktop\:min-h-min
1566
+ max-height: min-content !important
1567
+
1568
+ .desktop\:min-h-max
1569
+ max-height: max-content !important
1570
+
1571
+ .desktop\:min-h-fit
1572
+ max-height: fit-content !important
1573
+
1574
+ +widescreen
1575
+ .widescreen\:max-h-auto
1576
+ max-height: auto !important
1577
+
1578
+ .widescreen\:max-h-0
1579
+ max-height: 0px !important
1580
+
1581
+ .widescreen\:max-h-full
1582
+ max-height: 100% !important
1583
+
1584
+ .widescreen\:max-h-screen
1585
+ max-height: 100vh !important
1586
+
1587
+ .widescreen\:min-h-min
1588
+ max-height: min-content !important
1589
+
1590
+ .widescreen\:min-h-max
1591
+ max-height: max-content !important
1592
+
1593
+ .widescreen\:min-h-fit
1594
+ max-height: fit-content !important
1595
+
1596
+ .max-w-auto
1597
+ max-width: auto !important
1598
+
1599
+ .max-w-0
1600
+ max-width: 0px !important
1601
+
1602
+ .max-w-full
1603
+ max-width: 100% !important
1604
+
1605
+ .max-w-screen
1606
+ max-width: 100vw !important
1607
+
1608
+ .max-w-min
1609
+ max-width: min-content !important
1610
+
1611
+ .max-w-max
1612
+ max-width: max-content !important
1613
+
1614
+ .max-w-fit
1615
+ max-width: fit-content !important
1616
+
1617
+ +mobile
1618
+ .mobile\:max-w-auto
1619
+ max-width: auto !important
1620
+
1621
+ .mobile\:max-w-0
1622
+ max-width: 0px !important
1623
+
1624
+ .mobile\:max-w-full
1625
+ max-width: 100% !important
1626
+
1627
+ .mobile\:max-w-screen
1628
+ max-width: 100vw !important
1629
+
1630
+ .mobile\:max-w-min
1631
+ max-width: min-content !important
1632
+
1633
+ .mobile\:max-w-max
1634
+ max-width: max-content !important
1635
+
1636
+ .mobile\:max-w-fit
1637
+ max-width: fit-content !important
1638
+
1639
+ +tablet
1640
+ .tablet\:max-w-auto
1641
+ max-width: auto !important
1642
+
1643
+ .tablet\:max-w-0
1644
+ max-width: 0px !important
1645
+
1646
+ .tablet\:max-w-full
1647
+ max-width: 100% !important
1648
+
1649
+ .tablet\:max-w-screen
1650
+ max-width: 100vw !important
1651
+
1652
+ .tablet\:max-w-min
1653
+ max-width: min-content !important
1654
+
1655
+ .tablet\:max-w-max
1656
+ max-width: max-content !important
1657
+
1658
+ .tablet\:max-w-fit
1659
+ max-width: fit-content !important
1660
+
1661
+ +desktop
1662
+ .desktop\:max-w-auto
1663
+ max-width: auto !important
1664
+
1665
+ .desktop\:max-w-0
1666
+ max-width: 0px !important
1667
+
1668
+ .desktop\:max-w-full
1669
+ max-width: 100% !important
1670
+
1671
+ .desktop\:max-w-screen
1672
+ max-width: 100vw !important
1673
+
1674
+ .desktop\:max-w-min
1675
+ max-width: min-content !important
1676
+
1677
+ .desktop\:max-w-max
1678
+ max-width: max-content !important
1679
+
1680
+ .desktop\:max-w-fit
1681
+ max-width: fit-content !important
1682
+
1683
+ +widescreen
1684
+ .widescreen\:max-w-auto
1685
+ max-width: auto !important
1686
+
1687
+ .widescreen\:max-w-0
1688
+ max-width: 0px !important
1689
+
1690
+ .widescreen\:max-w-full
1691
+ max-width: 100% !important
1692
+
1693
+ .widescreen\:max-w-screen
1694
+ max-width: 100vw !important
1695
+
1696
+ .widescreen\:max-w-min
1697
+ max-width: min-content !important
1698
+
1699
+ .widescreen\:max-w-max
1700
+ max-width: max-content !important
1701
+
1702
+ .widescreen\:max-w-fit
1703
+ max-width: fit-content !important