@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,1055 @@
1
+ .hidden {
2
+ display: none !important;
3
+ }
4
+
5
+ .block {
6
+ display: block !important;
7
+ }
8
+
9
+ .inline {
10
+ display: inline !important;
11
+ }
12
+
13
+ .inline-block {
14
+ display: inline-block !important;
15
+ }
16
+
17
+ .flex {
18
+ display: flex !important;
19
+ }
20
+
21
+ .inline-flex {
22
+ display: inline-flex !important;
23
+ }
24
+
25
+ @media screen and (max-width: 768px) {
26
+ .mobile\:hidden {
27
+ display: none !important;
28
+ }
29
+ .mobile\:block {
30
+ display: block !important;
31
+ }
32
+ .mobile\:inline {
33
+ display: inline !important;
34
+ }
35
+ .mobile\:inline-block {
36
+ display: inline-block !important;
37
+ }
38
+ .mobile\:flex {
39
+ display: flex !important;
40
+ }
41
+ .mobile\:inline-flex {
42
+ display: inline-flex !important;
43
+ }
44
+ }
45
+ @media screen and (min-width: 769px), print {
46
+ .tablet\:hidden {
47
+ display: none !important;
48
+ }
49
+ .tablet\:block {
50
+ display: block !important;
51
+ }
52
+ .tablet\:inline {
53
+ display: inline !important;
54
+ }
55
+ .tablet\:inline-block {
56
+ display: inline-block !important;
57
+ }
58
+ .tablet\:flex {
59
+ display: flex !important;
60
+ }
61
+ .tablet\:inline-flex {
62
+ display: inline-flex !important;
63
+ }
64
+ }
65
+ @media screen and (min-width: 769px) and (max-width: 1023px) {
66
+ .tablet-only\:hidden {
67
+ display: none !important;
68
+ }
69
+ .tablet-only\:block {
70
+ display: block !important;
71
+ }
72
+ .tablet-only\:inline {
73
+ display: inline !important;
74
+ }
75
+ .tablet-only\:inline-block {
76
+ display: inline-block !important;
77
+ }
78
+ .tablet-only\:flex {
79
+ display: flex !important;
80
+ }
81
+ .tablet-only\:inline-flex {
82
+ display: inline-flex !important;
83
+ }
84
+ }
85
+ @media screen and (max-width: 1023px) {
86
+ .touch\:hidden {
87
+ display: none !important;
88
+ }
89
+ .touch\:block {
90
+ display: block !important;
91
+ }
92
+ .touch\:inline {
93
+ display: inline !important;
94
+ }
95
+ .touch\:inline-block {
96
+ display: inline-block !important;
97
+ }
98
+ .touch\:flex {
99
+ display: flex !important;
100
+ }
101
+ .touch\:inline-flex {
102
+ display: inline-flex !important;
103
+ }
104
+ }
105
+ @media screen and (min-width: 1024px) {
106
+ .desktop\:hidden {
107
+ display: none !important;
108
+ }
109
+ .desktop\:block {
110
+ display: block !important;
111
+ }
112
+ .desktop\:inline {
113
+ display: inline !important;
114
+ }
115
+ .desktop\:inline-block {
116
+ display: inline-block !important;
117
+ }
118
+ .desktop\:flex {
119
+ display: flex !important;
120
+ }
121
+ .desktop\:inline-flex {
122
+ display: inline-flex !important;
123
+ }
124
+ }
125
+ @media screen and (min-width: 1024px) and (max-width: 1279px) {
126
+ .desktop-only\:hidden {
127
+ display: none !important;
128
+ }
129
+ .desktop-only\:block {
130
+ display: block !important;
131
+ }
132
+ .desktop-only\:inline {
133
+ display: inline !important;
134
+ }
135
+ .desktop-only\:inline-block {
136
+ display: inline-block !important;
137
+ }
138
+ .desktop-only\:flex {
139
+ display: flex !important;
140
+ }
141
+ .desktop-only\:inline-flex {
142
+ display: inline-flex !important;
143
+ }
144
+ }
145
+ @media screen and (min-width: 1280px) {
146
+ .high-definition\:hidden {
147
+ display: none !important;
148
+ }
149
+ .high-definition\:block {
150
+ display: block !important;
151
+ }
152
+ .high-definition\:inline {
153
+ display: inline !important;
154
+ }
155
+ .high-definition\:inline-block {
156
+ display: inline-block !important;
157
+ }
158
+ .high-definition\:flex {
159
+ display: flex !important;
160
+ }
161
+ .high-definition\:inline-flex {
162
+ display: inline-flex !important;
163
+ }
164
+ }
165
+ @media screen and (min-width: 1280px) and (max-width: 1439px) {
166
+ .high-definition-only\:hidden {
167
+ display: none !important;
168
+ }
169
+ .high-definition-only\:block {
170
+ display: block !important;
171
+ }
172
+ .high-definition-only\:inline {
173
+ display: inline !important;
174
+ }
175
+ .high-definition-only\:inline-block {
176
+ display: inline-block !important;
177
+ }
178
+ .high-definition-only\:flex {
179
+ display: flex !important;
180
+ }
181
+ .high-definition-only\:inline-flex {
182
+ display: inline-flex !important;
183
+ }
184
+ }
185
+ @media screen and (min-width: 1440px) {
186
+ .widescreen\:hidden {
187
+ display: none !important;
188
+ }
189
+ .widescreen\:block {
190
+ display: block !important;
191
+ }
192
+ .widescreen\:inline {
193
+ display: inline !important;
194
+ }
195
+ .widescreen\:inline-block {
196
+ display: inline-block !important;
197
+ }
198
+ .widescreen\:flex {
199
+ display: flex !important;
200
+ }
201
+ .widescreen\:inline-flex {
202
+ display: inline-flex !important;
203
+ }
204
+ }
205
+ @media screen and (min-width: 1440px) and (max-width: 1919px) {
206
+ .widescreen-only\:hidden {
207
+ display: none !important;
208
+ }
209
+ .widescreen-only\:block {
210
+ display: block !important;
211
+ }
212
+ .widescreen-only\:inline {
213
+ display: inline !important;
214
+ }
215
+ .widescreen-only\:inline-block {
216
+ display: inline-block !important;
217
+ }
218
+ .widescreen-only\:flex {
219
+ display: flex !important;
220
+ }
221
+ .widescreen-only\:inline-flex {
222
+ display: inline-flex !important;
223
+ }
224
+ }
225
+ @media screen and (min-width: 1920px) {
226
+ .fullhd\:hidden {
227
+ display: none !important;
228
+ }
229
+ .fullhd\:block {
230
+ display: block !important;
231
+ }
232
+ .fullhd\:inline {
233
+ display: inline !important;
234
+ }
235
+ .fullhd\:inline-block {
236
+ display: inline-block !important;
237
+ }
238
+ .fullhd\:flex {
239
+ display: flex !important;
240
+ }
241
+ .fullhd\:inline-flex {
242
+ display: inline-flex !important;
243
+ }
244
+ }
245
+ .overflow-auto {
246
+ overflow: auto !important;
247
+ }
248
+
249
+ .overflow-hidden {
250
+ overflow: hidden !important;
251
+ }
252
+
253
+ .overflow-visible {
254
+ overflow: visible !important;
255
+ }
256
+
257
+ .overflow-scroll {
258
+ overflow: scroll !important;
259
+ }
260
+
261
+ .overflow-x-auto {
262
+ overflow: auto !important;
263
+ }
264
+
265
+ .overflow-x-hidden {
266
+ overflow: hidden !important;
267
+ }
268
+
269
+ .overflow-x-visible {
270
+ overflow: visible !important;
271
+ }
272
+
273
+ .overflow-x-scroll {
274
+ overflow: scroll !important;
275
+ }
276
+
277
+ .overflow-y-auto {
278
+ overflow: auto !important;
279
+ }
280
+
281
+ .overflow-y-hidden {
282
+ overflow: hidden !important;
283
+ }
284
+
285
+ .overflow-y-visible {
286
+ overflow: visible !important;
287
+ }
288
+
289
+ .overflow-y-scroll {
290
+ overflow: scroll !important;
291
+ }
292
+
293
+ @media screen and (max-width: 768px) {
294
+ .mobile\:overflow-auto {
295
+ overflow: auto !important;
296
+ }
297
+ .mobile\:overflow-hidden {
298
+ overflow: hidden !important;
299
+ }
300
+ .mobile\:overflow-visible {
301
+ overflow: visible !important;
302
+ }
303
+ .mobile\:overflow-scroll {
304
+ overflow: scroll !important;
305
+ }
306
+ .mobile\:overflow-x-auto {
307
+ overflow: auto !important;
308
+ }
309
+ .mobile\:overflow-x-hidden {
310
+ overflow: hidden !important;
311
+ }
312
+ .mobile\:overflow-x-visible {
313
+ overflow: visible !important;
314
+ }
315
+ .mobile\:overflow-x-scroll {
316
+ overflow: scroll !important;
317
+ }
318
+ .mobile\:overflow-y-auto {
319
+ overflow: auto !important;
320
+ }
321
+ .mobile\:overflow-y-hidden {
322
+ overflow: hidden !important;
323
+ }
324
+ .mobile\:overflow-y-visible {
325
+ overflow: visible !important;
326
+ }
327
+ .mobile\:overflow-y-scroll {
328
+ overflow: scroll !important;
329
+ }
330
+ }
331
+ @media screen and (min-width: 769px), print {
332
+ .tablet\:overflow-auto {
333
+ overflow: auto !important;
334
+ }
335
+ .tablet\:overflow-hidden {
336
+ overflow: hidden !important;
337
+ }
338
+ .tablet\:overflow-visible {
339
+ overflow: visible !important;
340
+ }
341
+ .tablet\:overflow-scroll {
342
+ overflow: scroll !important;
343
+ }
344
+ .tablet\:overflow-x-auto {
345
+ overflow: auto !important;
346
+ }
347
+ .tablet\:overflow-x-hidden {
348
+ overflow: hidden !important;
349
+ }
350
+ .tablet\:overflow-x-visible {
351
+ overflow: visible !important;
352
+ }
353
+ .tablet\:overflow-x-scroll {
354
+ overflow: scroll !important;
355
+ }
356
+ .tablet\:overflow-y-auto {
357
+ overflow: auto !important;
358
+ }
359
+ .tablet\:overflow-y-hidden {
360
+ overflow: hidden !important;
361
+ }
362
+ .tablet\:overflow-y-visible {
363
+ overflow: visible !important;
364
+ }
365
+ .tablet\:overflow-y-scroll {
366
+ overflow: scroll !important;
367
+ }
368
+ }
369
+ @media screen and (min-width: 1024px) {
370
+ .desktop\:overflow-auto {
371
+ overflow: auto !important;
372
+ }
373
+ .desktop\:overflow-hidden {
374
+ overflow: hidden !important;
375
+ }
376
+ .desktop\:overflow-visible {
377
+ overflow: visible !important;
378
+ }
379
+ .desktop\:overflow-scroll {
380
+ overflow: scroll !important;
381
+ }
382
+ .desktop\:overflow-x-auto {
383
+ overflow: auto !important;
384
+ }
385
+ .desktop\:overflow-x-hidden {
386
+ overflow: hidden !important;
387
+ }
388
+ .desktop\:overflow-x-visible {
389
+ overflow: visible !important;
390
+ }
391
+ .desktop\:overflow-x-scroll {
392
+ overflow: scroll !important;
393
+ }
394
+ .desktop\:overflow-y-auto {
395
+ overflow: auto !important;
396
+ }
397
+ .desktop\:overflow-y-hidden {
398
+ overflow: hidden !important;
399
+ }
400
+ .desktop\:overflow-y-visible {
401
+ overflow: visible !important;
402
+ }
403
+ .desktop\:overflow-y-scroll {
404
+ overflow: scroll !important;
405
+ }
406
+ }
407
+ @media screen and (min-width: 1440px) {
408
+ .widescreen\:overflow-auto {
409
+ overflow: auto !important;
410
+ }
411
+ .widescreen\:overflow-hidden {
412
+ overflow: hidden !important;
413
+ }
414
+ .widescreen\:overflow-visible {
415
+ overflow: visible !important;
416
+ }
417
+ .widescreen\:overflow-scroll {
418
+ overflow: scroll !important;
419
+ }
420
+ .widescreen\:overflow-x-auto {
421
+ overflow: auto !important;
422
+ }
423
+ .widescreen\:overflow-x-hidden {
424
+ overflow: hidden !important;
425
+ }
426
+ .widescreen\:overflow-x-visible {
427
+ overflow: visible !important;
428
+ }
429
+ .widescreen\:overflow-x-scroll {
430
+ overflow: scroll !important;
431
+ }
432
+ .widescreen\:overflow-y-auto {
433
+ overflow: auto !important;
434
+ }
435
+ .widescreen\:overflow-y-hidden {
436
+ overflow: hidden !important;
437
+ }
438
+ .widescreen\:overflow-y-visible {
439
+ overflow: visible !important;
440
+ }
441
+ .widescreen\:overflow-y-scroll {
442
+ overflow: scroll !important;
443
+ }
444
+ }
445
+ .static {
446
+ position: static !important;
447
+ }
448
+
449
+ .fixed {
450
+ position: fixed !important;
451
+ }
452
+
453
+ .relative {
454
+ position: relative !important;
455
+ }
456
+
457
+ .absolute {
458
+ position: absolute !important;
459
+ }
460
+
461
+ .sticky {
462
+ position: sticky !important;
463
+ }
464
+
465
+ @media screen and (max-width: 768px) {
466
+ .mobile\:static {
467
+ position: static !important;
468
+ }
469
+ .mobile\:fixed {
470
+ position: fixed !important;
471
+ }
472
+ .mobile\:relative {
473
+ position: relative !important;
474
+ }
475
+ .mobile\:absolute {
476
+ position: absolute !important;
477
+ }
478
+ .mobile\:sticky {
479
+ position: sticky !important;
480
+ }
481
+ }
482
+ @media screen and (min-width: 769px), print {
483
+ .tablet\:static {
484
+ position: static !important;
485
+ }
486
+ .tablet\:fixed {
487
+ position: fixed !important;
488
+ }
489
+ .tablet\:relative {
490
+ position: relative !important;
491
+ }
492
+ .tablet\:absolute {
493
+ position: absolute !important;
494
+ }
495
+ .tablet\:sticky {
496
+ position: sticky !important;
497
+ }
498
+ }
499
+ @media screen and (min-width: 1024px) {
500
+ .desktop\:static {
501
+ position: static !important;
502
+ }
503
+ .desktop\:fixed {
504
+ position: fixed !important;
505
+ }
506
+ .desktop\:relative {
507
+ position: relative !important;
508
+ }
509
+ .desktop\:absolute {
510
+ position: absolute !important;
511
+ }
512
+ .desktop\:sticky {
513
+ position: sticky !important;
514
+ }
515
+ }
516
+ @media screen and (min-width: 1440px) {
517
+ .widescreen\:static {
518
+ position: static !important;
519
+ }
520
+ .widescreen\:fixed {
521
+ position: fixed !important;
522
+ }
523
+ .widescreen\:relative {
524
+ position: relative !important;
525
+ }
526
+ .widescreen\:absolute {
527
+ position: absolute !important;
528
+ }
529
+ .widescreen\:sticky {
530
+ position: sticky !important;
531
+ }
532
+ }
533
+ .top-auto {
534
+ top: auto !important;
535
+ }
536
+
537
+ .top-0 {
538
+ top: 0 !important;
539
+ }
540
+
541
+ .top-50 {
542
+ top: 50% !important;
543
+ }
544
+
545
+ .top-100 {
546
+ top: 100% !important;
547
+ }
548
+
549
+ @media screen and (max-width: 768px) {
550
+ .mobile\:top-auto {
551
+ top: auto !important;
552
+ }
553
+ .mobile\:top-0 {
554
+ top: 0 !important;
555
+ }
556
+ .mobile\:top-50 {
557
+ top: 50% !important;
558
+ }
559
+ .mobile\:top-100 {
560
+ top: 100% !important;
561
+ }
562
+ }
563
+ @media screen and (min-width: 769px), print {
564
+ .tablet\:top-auto {
565
+ top: auto !important;
566
+ }
567
+ .tablet\:top-0 {
568
+ top: 0 !important;
569
+ }
570
+ .tablet\:top-50 {
571
+ top: 50% !important;
572
+ }
573
+ .tablet\:top-100 {
574
+ top: 100% !important;
575
+ }
576
+ }
577
+ @media screen and (min-width: 1024px) {
578
+ .desktop\:top-auto {
579
+ top: auto !important;
580
+ }
581
+ .desktop\:top-0 {
582
+ top: 0 !important;
583
+ }
584
+ .desktop\:top-50 {
585
+ top: 50% !important;
586
+ }
587
+ .desktop\:top-100 {
588
+ top: 100% !important;
589
+ }
590
+ }
591
+ @media screen and (min-width: 1440px) {
592
+ .widescreen\:top-auto {
593
+ top: auto !important;
594
+ }
595
+ .widescreen\:top-0 {
596
+ top: 0 !important;
597
+ }
598
+ .widescreen\:top-50 {
599
+ top: 50% !important;
600
+ }
601
+ .widescreen\:top-100 {
602
+ top: 100% !important;
603
+ }
604
+ }
605
+ .right-auto {
606
+ right: auto !important;
607
+ }
608
+
609
+ .right-0 {
610
+ right: 0 !important;
611
+ }
612
+
613
+ .right-50 {
614
+ right: 50% !important;
615
+ }
616
+
617
+ .right-100 {
618
+ right: 100% !important;
619
+ }
620
+
621
+ @media screen and (max-width: 768px) {
622
+ .mobile\:right-auto {
623
+ right: auto !important;
624
+ }
625
+ .mobile\:right-0 {
626
+ right: 0 !important;
627
+ }
628
+ .mobile\:right-50 {
629
+ right: 50% !important;
630
+ }
631
+ .mobile\:right-100 {
632
+ right: 100% !important;
633
+ }
634
+ }
635
+ @media screen and (min-width: 769px), print {
636
+ .tablet\:right-auto {
637
+ right: auto !important;
638
+ }
639
+ .tablet\:right-0 {
640
+ right: 0 !important;
641
+ }
642
+ .tablet\:right-50 {
643
+ right: 50% !important;
644
+ }
645
+ .tablet\:right-100 {
646
+ right: 100% !important;
647
+ }
648
+ }
649
+ @media screen and (min-width: 1024px) {
650
+ .desktop\:right-auto {
651
+ right: auto !important;
652
+ }
653
+ .desktop\:right-0 {
654
+ right: 0 !important;
655
+ }
656
+ .desktop\:right-50 {
657
+ right: 50% !important;
658
+ }
659
+ .desktop\:right-100 {
660
+ right: 100% !important;
661
+ }
662
+ }
663
+ @media screen and (min-width: 1440px) {
664
+ .widescreen\:right-auto {
665
+ right: auto !important;
666
+ }
667
+ .widescreen\:right-0 {
668
+ right: 0 !important;
669
+ }
670
+ .widescreen\:right-50 {
671
+ right: 50% !important;
672
+ }
673
+ .widescreen\:right-100 {
674
+ right: 100% !important;
675
+ }
676
+ }
677
+ .bottom-auto {
678
+ bottom: auto !important;
679
+ }
680
+
681
+ .bottom-0 {
682
+ bottom: 0 !important;
683
+ }
684
+
685
+ .bottom-50 {
686
+ bottom: 50% !important;
687
+ }
688
+
689
+ .bottom-100 {
690
+ bottom: 100% !important;
691
+ }
692
+
693
+ @media screen and (max-width: 768px) {
694
+ .mobile\:bottom-auto {
695
+ bottom: auto !important;
696
+ }
697
+ .mobile\:bottom-0 {
698
+ bottom: 0 !important;
699
+ }
700
+ .mobile\:bottom-50 {
701
+ bottom: 50% !important;
702
+ }
703
+ .mobile\:bottom-100 {
704
+ bottom: 100% !important;
705
+ }
706
+ }
707
+ @media screen and (min-width: 769px), print {
708
+ .tablet\:bottom-auto {
709
+ bottom: auto !important;
710
+ }
711
+ .tablet\:bottom-0 {
712
+ bottom: 0 !important;
713
+ }
714
+ .tablet\:bottom-50 {
715
+ bottom: 50% !important;
716
+ }
717
+ .tablet\:bottom-100 {
718
+ bottom: 100% !important;
719
+ }
720
+ }
721
+ @media screen and (min-width: 1024px) {
722
+ .desktop\:bottom-auto {
723
+ bottom: auto !important;
724
+ }
725
+ .desktop\:bottom-0 {
726
+ bottom: 0 !important;
727
+ }
728
+ .desktop\:bottom-50 {
729
+ bottom: 50% !important;
730
+ }
731
+ .desktop\:bottom-100 {
732
+ bottom: 100% !important;
733
+ }
734
+ }
735
+ @media screen and (min-width: 1440px) {
736
+ .widescreen\:bottom-auto {
737
+ bottom: auto !important;
738
+ }
739
+ .widescreen\:bottom-0 {
740
+ bottom: 0 !important;
741
+ }
742
+ .widescreen\:bottom-50 {
743
+ bottom: 50% !important;
744
+ }
745
+ .widescreen\:bottom-100 {
746
+ bottom: 100% !important;
747
+ }
748
+ }
749
+ .left-auto {
750
+ left: auto !important;
751
+ }
752
+
753
+ .left-0 {
754
+ left: 0 !important;
755
+ }
756
+
757
+ .left-50 {
758
+ left: 50% !important;
759
+ }
760
+
761
+ .left-100 {
762
+ left: 100% !important;
763
+ }
764
+
765
+ @media screen and (max-width: 768px) {
766
+ .mobile\:left-auto {
767
+ left: auto !important;
768
+ }
769
+ .mobile\:left-0 {
770
+ left: 0 !important;
771
+ }
772
+ .mobile\:left-50 {
773
+ left: 50% !important;
774
+ }
775
+ .mobile\:left-100 {
776
+ left: 100% !important;
777
+ }
778
+ }
779
+ @media screen and (min-width: 769px), print {
780
+ .tablet\:left-auto {
781
+ left: auto !important;
782
+ }
783
+ .tablet\:left-0 {
784
+ left: 0 !important;
785
+ }
786
+ .tablet\:left-50 {
787
+ left: 50% !important;
788
+ }
789
+ .tablet\:left-100 {
790
+ left: 100% !important;
791
+ }
792
+ }
793
+ @media screen and (min-width: 1024px) {
794
+ .desktop\:left-auto {
795
+ left: auto !important;
796
+ }
797
+ .desktop\:left-0 {
798
+ left: 0 !important;
799
+ }
800
+ .desktop\:left-50 {
801
+ left: 50% !important;
802
+ }
803
+ .desktop\:left-100 {
804
+ left: 100% !important;
805
+ }
806
+ }
807
+ @media screen and (min-width: 1440px) {
808
+ .widescreen\:left-auto {
809
+ left: auto !important;
810
+ }
811
+ .widescreen\:left-0 {
812
+ left: 0 !important;
813
+ }
814
+ .widescreen\:left-50 {
815
+ left: 50% !important;
816
+ }
817
+ .widescreen\:left-100 {
818
+ left: 100% !important;
819
+ }
820
+ }
821
+ .z-index-deep {
822
+ z-index: var(--bal-z-index-deep) !important;
823
+ }
824
+
825
+ .z-index {
826
+ z-index: var(--bal-z-index) !important;
827
+ }
828
+
829
+ .z-index-masked {
830
+ z-index: var(--bal-z-index-masked) !important;
831
+ }
832
+
833
+ .z-index-mask {
834
+ z-index: var(--bal-z-index-mask) !important;
835
+ }
836
+
837
+ .z-index-sticky {
838
+ z-index: var(--bal-z-index-sticky) !important;
839
+ }
840
+
841
+ .z-index-navigation {
842
+ z-index: var(--bal-z-index-navigation) !important;
843
+ }
844
+
845
+ .z-index-popup {
846
+ z-index: var(--bal-z-index-popup) !important;
847
+ }
848
+
849
+ .z-index-modal {
850
+ z-index: var(--bal-z-index-modal) !important;
851
+ }
852
+
853
+ .z-index-toast {
854
+ z-index: var(--bal-z-index-toast) !important;
855
+ }
856
+
857
+ .z-index-tooltip {
858
+ z-index: var(--bal-z-index-tooltip) !important;
859
+ }
860
+
861
+ @media screen and (max-width: 768px) {
862
+ .mobile\:z-index-deep {
863
+ z-index: var(--bal-z-index-deep) !important;
864
+ }
865
+ .mobile\:z-index {
866
+ z-index: var(--bal-z-index) !important;
867
+ }
868
+ .mobile\:z-index-masked {
869
+ z-index: var(--bal-z-index-masked) !important;
870
+ }
871
+ .mobile\:z-index-mask {
872
+ z-index: var(--bal-z-index-mask) !important;
873
+ }
874
+ .mobile\:z-index-sticky {
875
+ z-index: var(--bal-z-index-sticky) !important;
876
+ }
877
+ .mobile\:z-index-navigation {
878
+ z-index: var(--bal-z-index-navigation) !important;
879
+ }
880
+ .mobile\:z-index-popup {
881
+ z-index: var(--bal-z-index-popup) !important;
882
+ }
883
+ .mobile\:z-index-modal {
884
+ z-index: var(--bal-z-index-modal) !important;
885
+ }
886
+ .mobile\:z-index-toast {
887
+ z-index: var(--bal-z-index-toast) !important;
888
+ }
889
+ .mobile\:z-index-tooltip {
890
+ z-index: var(--bal-z-index-tooltip) !important;
891
+ }
892
+ }
893
+ @media screen and (min-width: 769px), print {
894
+ .tablet\:z-index-deep {
895
+ z-index: var(--bal-z-index-deep) !important;
896
+ }
897
+ .tablet\:z-index {
898
+ z-index: var(--bal-z-index) !important;
899
+ }
900
+ .tablet\:z-index-masked {
901
+ z-index: var(--bal-z-index-masked) !important;
902
+ }
903
+ .tablet\:z-index-mask {
904
+ z-index: var(--bal-z-index-mask) !important;
905
+ }
906
+ .tablet\:z-index-sticky {
907
+ z-index: var(--bal-z-index-sticky) !important;
908
+ }
909
+ .tablet\:z-index-navigation {
910
+ z-index: var(--bal-z-index-navigation) !important;
911
+ }
912
+ .tablet\:z-index-popup {
913
+ z-index: var(--bal-z-index-popup) !important;
914
+ }
915
+ .tablet\:z-index-modal {
916
+ z-index: var(--bal-z-index-modal) !important;
917
+ }
918
+ .tablet\:z-index-toast {
919
+ z-index: var(--bal-z-index-toast) !important;
920
+ }
921
+ .tablet\:z-index-tooltip {
922
+ z-index: var(--bal-z-index-tooltip) !important;
923
+ }
924
+ }
925
+ @media screen and (min-width: 1024px) {
926
+ .desktop\:z-index-deep {
927
+ z-index: var(--bal-z-index-deep) !important;
928
+ }
929
+ .desktop\:z-index {
930
+ z-index: var(--bal-z-index) !important;
931
+ }
932
+ .desktop\:z-index-masked {
933
+ z-index: var(--bal-z-index-masked) !important;
934
+ }
935
+ .desktop\:z-index-mask {
936
+ z-index: var(--bal-z-index-mask) !important;
937
+ }
938
+ .desktop\:z-index-sticky {
939
+ z-index: var(--bal-z-index-sticky) !important;
940
+ }
941
+ .desktop\:z-index-navigation {
942
+ z-index: var(--bal-z-index-navigation) !important;
943
+ }
944
+ .desktop\:z-index-popup {
945
+ z-index: var(--bal-z-index-popup) !important;
946
+ }
947
+ .desktop\:z-index-modal {
948
+ z-index: var(--bal-z-index-modal) !important;
949
+ }
950
+ .desktop\:z-index-toast {
951
+ z-index: var(--bal-z-index-toast) !important;
952
+ }
953
+ .desktop\:z-index-tooltip {
954
+ z-index: var(--bal-z-index-tooltip) !important;
955
+ }
956
+ }
957
+ @media screen and (min-width: 1440px) {
958
+ .widescreen\:z-index-deep {
959
+ z-index: var(--bal-z-index-deep) !important;
960
+ }
961
+ .widescreen\:z-index {
962
+ z-index: var(--bal-z-index) !important;
963
+ }
964
+ .widescreen\:z-index-masked {
965
+ z-index: var(--bal-z-index-masked) !important;
966
+ }
967
+ .widescreen\:z-index-mask {
968
+ z-index: var(--bal-z-index-mask) !important;
969
+ }
970
+ .widescreen\:z-index-sticky {
971
+ z-index: var(--bal-z-index-sticky) !important;
972
+ }
973
+ .widescreen\:z-index-navigation {
974
+ z-index: var(--bal-z-index-navigation) !important;
975
+ }
976
+ .widescreen\:z-index-popup {
977
+ z-index: var(--bal-z-index-popup) !important;
978
+ }
979
+ .widescreen\:z-index-modal {
980
+ z-index: var(--bal-z-index-modal) !important;
981
+ }
982
+ .widescreen\:z-index-toast {
983
+ z-index: var(--bal-z-index-toast) !important;
984
+ }
985
+ .widescreen\:z-index-tooltip {
986
+ z-index: var(--bal-z-index-tooltip) !important;
987
+ }
988
+ }
989
+ .vertical-align-top {
990
+ vertical-align: top !important;
991
+ }
992
+
993
+ .vertical-align-middle {
994
+ vertical-align: middle !important;
995
+ }
996
+
997
+ .vertical-align-bottom {
998
+ vertical-align: bottom !important;
999
+ }
1000
+
1001
+ @media screen and (max-width: 768px) {
1002
+ .mobile\:vertical-align-top {
1003
+ vertical-align: top !important;
1004
+ }
1005
+ .mobile\:vertical-align-middle {
1006
+ vertical-align: middle !important;
1007
+ }
1008
+ .mobile\:vertical-align-bottom {
1009
+ vertical-align: bottom !important;
1010
+ }
1011
+ }
1012
+ @media screen and (min-width: 769px), print {
1013
+ .tablet\:vertical-align-top {
1014
+ vertical-align: top !important;
1015
+ }
1016
+ .tablet\:vertical-align-middle {
1017
+ vertical-align: middle !important;
1018
+ }
1019
+ .tablet\:vertical-align-bottom {
1020
+ vertical-align: bottom !important;
1021
+ }
1022
+ }
1023
+ @media screen and (min-width: 1024px) {
1024
+ .desktop\:vertical-align-top {
1025
+ vertical-align: top !important;
1026
+ }
1027
+ .desktop\:vertical-align-middle {
1028
+ vertical-align: middle !important;
1029
+ }
1030
+ .desktop\:vertical-align-bottom {
1031
+ vertical-align: bottom !important;
1032
+ }
1033
+ }
1034
+ @media screen and (min-width: 1440px) {
1035
+ .widescreen\:vertical-align-top {
1036
+ vertical-align: top !important;
1037
+ }
1038
+ .widescreen\:vertical-align-middle {
1039
+ vertical-align: middle !important;
1040
+ }
1041
+ .widescreen\:vertical-align-bottom {
1042
+ vertical-align: bottom !important;
1043
+ }
1044
+ }
1045
+ .is-sr-only {
1046
+ border: none !important;
1047
+ clip: rect(0, 0, 0, 0) !important;
1048
+ height: 0.01em !important;
1049
+ overflow: hidden !important;
1050
+ padding: 0 !important;
1051
+ position: absolute !important;
1052
+ white-space: nowrap !important;
1053
+ width: 0.01em !important;
1054
+ }
1055
+ /*# sourceMappingURL=/utilities/layout.css.map */