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