@baloise/ds-styles 0.0.5-nightly.20240301

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