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