@baloise/ds-styles 16.2.1 → 16.3.0
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.
- package/css/all.css +1409 -1
- package/css/all.css.map +1 -1
- package/css/all.min.css +1 -1
- package/css/baloise-design-system.css +1409 -1
- package/css/baloise-design-system.css.map +1 -1
- package/css/baloise-design-system.min.css +1 -1
- package/css/core.css +1 -1
- package/css/core.css.map +1 -1
- package/css/utilities/all.css +1408 -0
- package/css/utilities/all.css.map +1 -1
- package/css/utilities/all.min.css +1 -1
- package/css/utilities/spacing.css +1409 -1
- package/css/utilities/spacing.css.map +1 -1
- package/css/utilities/spacing.min.css +1 -1
- package/package.json +3 -3
- package/src/generated/spacing.sass +1396 -2
|
@@ -34,6 +34,37 @@
|
|
|
34
34
|
.m-xxxx-large
|
|
35
35
|
margin: var(--bal-space-xxxx-large) !important
|
|
36
36
|
|
|
37
|
+
+mobile
|
|
38
|
+
.mobile:m-xx-small
|
|
39
|
+
margin: var(--bal-space-xx-small-mobile) !important
|
|
40
|
+
|
|
41
|
+
.mobile:m-x-small
|
|
42
|
+
margin: var(--bal-space-x-small-mobile) !important
|
|
43
|
+
|
|
44
|
+
.mobile:m-small
|
|
45
|
+
margin: var(--bal-space-small-mobile) !important
|
|
46
|
+
|
|
47
|
+
.mobile:m-normal
|
|
48
|
+
margin: var(--bal-space-normal-mobile) !important
|
|
49
|
+
|
|
50
|
+
.mobile:m-medium
|
|
51
|
+
margin: var(--bal-space-medium-mobile) !important
|
|
52
|
+
|
|
53
|
+
.mobile:m-large
|
|
54
|
+
margin: var(--bal-space-large-mobile) !important
|
|
55
|
+
|
|
56
|
+
.mobile:m-x-large
|
|
57
|
+
margin: var(--bal-space-x-large-mobile) !important
|
|
58
|
+
|
|
59
|
+
.mobile:m-xx-large
|
|
60
|
+
margin: var(--bal-space-xx-large-mobile) !important
|
|
61
|
+
|
|
62
|
+
.mobile:m-xxx-large
|
|
63
|
+
margin: var(--bal-space-xxx-large-mobile) !important
|
|
64
|
+
|
|
65
|
+
.mobile:m-xxxx-large
|
|
66
|
+
margin: var(--bal-space-xxxx-large-mobile) !important
|
|
67
|
+
|
|
37
68
|
+tablet
|
|
38
69
|
.m-none
|
|
39
70
|
margin: 0 !important
|
|
@@ -44,33 +75,63 @@
|
|
|
44
75
|
.m-xx-small
|
|
45
76
|
margin: var(--bal-space-xx-small-tablet) !important
|
|
46
77
|
|
|
78
|
+
.tablet:m-xx-small
|
|
79
|
+
margin: var(--bal-space-xx-small-tablet) !important
|
|
80
|
+
|
|
47
81
|
.m-x-small
|
|
48
82
|
margin: var(--bal-space-x-small-tablet) !important
|
|
49
83
|
|
|
84
|
+
.tablet:m-x-small
|
|
85
|
+
margin: var(--bal-space-x-small-tablet) !important
|
|
86
|
+
|
|
50
87
|
.m-small
|
|
51
88
|
margin: var(--bal-space-small-tablet) !important
|
|
52
89
|
|
|
90
|
+
.tablet:m-small
|
|
91
|
+
margin: var(--bal-space-small-tablet) !important
|
|
92
|
+
|
|
53
93
|
.m-normal
|
|
54
94
|
margin: var(--bal-space-normal-tablet) !important
|
|
55
95
|
|
|
96
|
+
.tablet:m-normal
|
|
97
|
+
margin: var(--bal-space-normal-tablet) !important
|
|
98
|
+
|
|
56
99
|
.m-medium
|
|
57
100
|
margin: var(--bal-space-medium-tablet) !important
|
|
58
101
|
|
|
102
|
+
.tablet:m-medium
|
|
103
|
+
margin: var(--bal-space-medium-tablet) !important
|
|
104
|
+
|
|
59
105
|
.m-large
|
|
60
106
|
margin: var(--bal-space-large-tablet) !important
|
|
61
107
|
|
|
108
|
+
.tablet:m-large
|
|
109
|
+
margin: var(--bal-space-large-tablet) !important
|
|
110
|
+
|
|
62
111
|
.m-x-large
|
|
63
112
|
margin: var(--bal-space-x-large-tablet) !important
|
|
64
113
|
|
|
114
|
+
.tablet:m-x-large
|
|
115
|
+
margin: var(--bal-space-x-large-tablet) !important
|
|
116
|
+
|
|
65
117
|
.m-xx-large
|
|
66
118
|
margin: var(--bal-space-xx-large-tablet) !important
|
|
67
119
|
|
|
120
|
+
.tablet:m-xx-large
|
|
121
|
+
margin: var(--bal-space-xx-large-tablet) !important
|
|
122
|
+
|
|
68
123
|
.m-xxx-large
|
|
69
124
|
margin: var(--bal-space-xxx-large-tablet) !important
|
|
70
125
|
|
|
126
|
+
.tablet:m-xxx-large
|
|
127
|
+
margin: var(--bal-space-xxx-large-tablet) !important
|
|
128
|
+
|
|
71
129
|
.m-xxxx-large
|
|
72
130
|
margin: var(--bal-space-xxxx-large-tablet) !important
|
|
73
131
|
|
|
132
|
+
.tablet:m-xxxx-large
|
|
133
|
+
margin: var(--bal-space-xxxx-large-tablet) !important
|
|
134
|
+
|
|
74
135
|
+desktop
|
|
75
136
|
.m-none
|
|
76
137
|
margin: 0 !important
|
|
@@ -81,33 +142,63 @@
|
|
|
81
142
|
.m-xx-small
|
|
82
143
|
margin: var(--bal-space-xx-small-desktop) !important
|
|
83
144
|
|
|
145
|
+
.desktop:m-xx-small
|
|
146
|
+
margin: var(--bal-space-xx-small-desktop) !important
|
|
147
|
+
|
|
84
148
|
.m-x-small
|
|
85
149
|
margin: var(--bal-space-x-small-desktop) !important
|
|
86
150
|
|
|
151
|
+
.desktop:m-x-small
|
|
152
|
+
margin: var(--bal-space-x-small-desktop) !important
|
|
153
|
+
|
|
87
154
|
.m-small
|
|
88
155
|
margin: var(--bal-space-small-desktop) !important
|
|
89
156
|
|
|
157
|
+
.desktop:m-small
|
|
158
|
+
margin: var(--bal-space-small-desktop) !important
|
|
159
|
+
|
|
90
160
|
.m-normal
|
|
91
161
|
margin: var(--bal-space-normal-desktop) !important
|
|
92
162
|
|
|
163
|
+
.desktop:m-normal
|
|
164
|
+
margin: var(--bal-space-normal-desktop) !important
|
|
165
|
+
|
|
93
166
|
.m-medium
|
|
94
167
|
margin: var(--bal-space-medium-desktop) !important
|
|
95
168
|
|
|
169
|
+
.desktop:m-medium
|
|
170
|
+
margin: var(--bal-space-medium-desktop) !important
|
|
171
|
+
|
|
96
172
|
.m-large
|
|
97
173
|
margin: var(--bal-space-large-desktop) !important
|
|
98
174
|
|
|
175
|
+
.desktop:m-large
|
|
176
|
+
margin: var(--bal-space-large-desktop) !important
|
|
177
|
+
|
|
99
178
|
.m-x-large
|
|
100
179
|
margin: var(--bal-space-x-large-desktop) !important
|
|
101
180
|
|
|
181
|
+
.desktop:m-x-large
|
|
182
|
+
margin: var(--bal-space-x-large-desktop) !important
|
|
183
|
+
|
|
102
184
|
.m-xx-large
|
|
103
185
|
margin: var(--bal-space-xx-large-desktop) !important
|
|
104
186
|
|
|
187
|
+
.desktop:m-xx-large
|
|
188
|
+
margin: var(--bal-space-xx-large-desktop) !important
|
|
189
|
+
|
|
105
190
|
.m-xxx-large
|
|
106
191
|
margin: var(--bal-space-xxx-large-desktop) !important
|
|
107
192
|
|
|
193
|
+
.desktop:m-xxx-large
|
|
194
|
+
margin: var(--bal-space-xxx-large-desktop) !important
|
|
195
|
+
|
|
108
196
|
.m-xxxx-large
|
|
109
197
|
margin: var(--bal-space-xxxx-large-desktop) !important
|
|
110
198
|
|
|
199
|
+
.desktop:m-xxxx-large
|
|
200
|
+
margin: var(--bal-space-xxxx-large-desktop) !important
|
|
201
|
+
|
|
111
202
|
.mx-none
|
|
112
203
|
margin-left: 0 !important
|
|
113
204
|
margin-right: 0 !important
|
|
@@ -156,6 +247,47 @@
|
|
|
156
247
|
margin-left: var(--bal-space-xxxx-large) !important
|
|
157
248
|
margin-right: var(--bal-space-xxxx-large) !important
|
|
158
249
|
|
|
250
|
+
+mobile
|
|
251
|
+
.mobile:mx-xx-small
|
|
252
|
+
margin-left: var(--bal-space-xx-small-mobile) !important
|
|
253
|
+
margin-right: var(--bal-space-xx-small-mobile) !important
|
|
254
|
+
|
|
255
|
+
.mobile:mx-x-small
|
|
256
|
+
margin-left: var(--bal-space-x-small-mobile) !important
|
|
257
|
+
margin-right: var(--bal-space-x-small-mobile) !important
|
|
258
|
+
|
|
259
|
+
.mobile:mx-small
|
|
260
|
+
margin-left: var(--bal-space-small-mobile) !important
|
|
261
|
+
margin-right: var(--bal-space-small-mobile) !important
|
|
262
|
+
|
|
263
|
+
.mobile:mx-normal
|
|
264
|
+
margin-left: var(--bal-space-normal-mobile) !important
|
|
265
|
+
margin-right: var(--bal-space-normal-mobile) !important
|
|
266
|
+
|
|
267
|
+
.mobile:mx-medium
|
|
268
|
+
margin-left: var(--bal-space-medium-mobile) !important
|
|
269
|
+
margin-right: var(--bal-space-medium-mobile) !important
|
|
270
|
+
|
|
271
|
+
.mobile:mx-large
|
|
272
|
+
margin-left: var(--bal-space-large-mobile) !important
|
|
273
|
+
margin-right: var(--bal-space-large-mobile) !important
|
|
274
|
+
|
|
275
|
+
.mobile:mx-x-large
|
|
276
|
+
margin-left: var(--bal-space-x-large-mobile) !important
|
|
277
|
+
margin-right: var(--bal-space-x-large-mobile) !important
|
|
278
|
+
|
|
279
|
+
.mobile:mx-xx-large
|
|
280
|
+
margin-left: var(--bal-space-xx-large-mobile) !important
|
|
281
|
+
margin-right: var(--bal-space-xx-large-mobile) !important
|
|
282
|
+
|
|
283
|
+
.mobile:mx-xxx-large
|
|
284
|
+
margin-left: var(--bal-space-xxx-large-mobile) !important
|
|
285
|
+
margin-right: var(--bal-space-xxx-large-mobile) !important
|
|
286
|
+
|
|
287
|
+
.mobile:mx-xxxx-large
|
|
288
|
+
margin-left: var(--bal-space-xxxx-large-mobile) !important
|
|
289
|
+
margin-right: var(--bal-space-xxxx-large-mobile) !important
|
|
290
|
+
|
|
159
291
|
+tablet
|
|
160
292
|
.mx-none
|
|
161
293
|
margin-left: 0 !important
|
|
@@ -169,42 +301,82 @@
|
|
|
169
301
|
margin-left: var(--bal-space-xx-small-tablet) !important
|
|
170
302
|
margin-right: var(--bal-space-xx-small-tablet) !important
|
|
171
303
|
|
|
304
|
+
.tablet:mx-xx-small
|
|
305
|
+
margin-left: var(--bal-space-xx-small-tablet) !important
|
|
306
|
+
margin-right: var(--bal-space-xx-small-tablet) !important
|
|
307
|
+
|
|
172
308
|
.mx-x-small
|
|
173
309
|
margin-left: var(--bal-space-x-small-tablet) !important
|
|
174
310
|
margin-right: var(--bal-space-x-small-tablet) !important
|
|
175
311
|
|
|
312
|
+
.tablet:mx-x-small
|
|
313
|
+
margin-left: var(--bal-space-x-small-tablet) !important
|
|
314
|
+
margin-right: var(--bal-space-x-small-tablet) !important
|
|
315
|
+
|
|
176
316
|
.mx-small
|
|
177
317
|
margin-left: var(--bal-space-small-tablet) !important
|
|
178
318
|
margin-right: var(--bal-space-small-tablet) !important
|
|
179
319
|
|
|
320
|
+
.tablet:mx-small
|
|
321
|
+
margin-left: var(--bal-space-small-tablet) !important
|
|
322
|
+
margin-right: var(--bal-space-small-tablet) !important
|
|
323
|
+
|
|
180
324
|
.mx-normal
|
|
181
325
|
margin-left: var(--bal-space-normal-tablet) !important
|
|
182
326
|
margin-right: var(--bal-space-normal-tablet) !important
|
|
183
327
|
|
|
328
|
+
.tablet:mx-normal
|
|
329
|
+
margin-left: var(--bal-space-normal-tablet) !important
|
|
330
|
+
margin-right: var(--bal-space-normal-tablet) !important
|
|
331
|
+
|
|
184
332
|
.mx-medium
|
|
185
333
|
margin-left: var(--bal-space-medium-tablet) !important
|
|
186
334
|
margin-right: var(--bal-space-medium-tablet) !important
|
|
187
335
|
|
|
336
|
+
.tablet:mx-medium
|
|
337
|
+
margin-left: var(--bal-space-medium-tablet) !important
|
|
338
|
+
margin-right: var(--bal-space-medium-tablet) !important
|
|
339
|
+
|
|
188
340
|
.mx-large
|
|
189
341
|
margin-left: var(--bal-space-large-tablet) !important
|
|
190
342
|
margin-right: var(--bal-space-large-tablet) !important
|
|
191
343
|
|
|
344
|
+
.tablet:mx-large
|
|
345
|
+
margin-left: var(--bal-space-large-tablet) !important
|
|
346
|
+
margin-right: var(--bal-space-large-tablet) !important
|
|
347
|
+
|
|
192
348
|
.mx-x-large
|
|
193
349
|
margin-left: var(--bal-space-x-large-tablet) !important
|
|
194
350
|
margin-right: var(--bal-space-x-large-tablet) !important
|
|
195
351
|
|
|
352
|
+
.tablet:mx-x-large
|
|
353
|
+
margin-left: var(--bal-space-x-large-tablet) !important
|
|
354
|
+
margin-right: var(--bal-space-x-large-tablet) !important
|
|
355
|
+
|
|
196
356
|
.mx-xx-large
|
|
197
357
|
margin-left: var(--bal-space-xx-large-tablet) !important
|
|
198
358
|
margin-right: var(--bal-space-xx-large-tablet) !important
|
|
199
359
|
|
|
360
|
+
.tablet:mx-xx-large
|
|
361
|
+
margin-left: var(--bal-space-xx-large-tablet) !important
|
|
362
|
+
margin-right: var(--bal-space-xx-large-tablet) !important
|
|
363
|
+
|
|
200
364
|
.mx-xxx-large
|
|
201
365
|
margin-left: var(--bal-space-xxx-large-tablet) !important
|
|
202
366
|
margin-right: var(--bal-space-xxx-large-tablet) !important
|
|
203
367
|
|
|
368
|
+
.tablet:mx-xxx-large
|
|
369
|
+
margin-left: var(--bal-space-xxx-large-tablet) !important
|
|
370
|
+
margin-right: var(--bal-space-xxx-large-tablet) !important
|
|
371
|
+
|
|
204
372
|
.mx-xxxx-large
|
|
205
373
|
margin-left: var(--bal-space-xxxx-large-tablet) !important
|
|
206
374
|
margin-right: var(--bal-space-xxxx-large-tablet) !important
|
|
207
375
|
|
|
376
|
+
.tablet:mx-xxxx-large
|
|
377
|
+
margin-left: var(--bal-space-xxxx-large-tablet) !important
|
|
378
|
+
margin-right: var(--bal-space-xxxx-large-tablet) !important
|
|
379
|
+
|
|
208
380
|
+desktop
|
|
209
381
|
.mx-none
|
|
210
382
|
margin-left: 0 !important
|
|
@@ -218,42 +390,82 @@
|
|
|
218
390
|
margin-left: var(--bal-space-xx-small-desktop) !important
|
|
219
391
|
margin-right: var(--bal-space-xx-small-desktop) !important
|
|
220
392
|
|
|
393
|
+
.desktop:mx-xx-small
|
|
394
|
+
margin-left: var(--bal-space-xx-small-desktop) !important
|
|
395
|
+
margin-right: var(--bal-space-xx-small-desktop) !important
|
|
396
|
+
|
|
221
397
|
.mx-x-small
|
|
222
398
|
margin-left: var(--bal-space-x-small-desktop) !important
|
|
223
399
|
margin-right: var(--bal-space-x-small-desktop) !important
|
|
224
400
|
|
|
401
|
+
.desktop:mx-x-small
|
|
402
|
+
margin-left: var(--bal-space-x-small-desktop) !important
|
|
403
|
+
margin-right: var(--bal-space-x-small-desktop) !important
|
|
404
|
+
|
|
225
405
|
.mx-small
|
|
226
406
|
margin-left: var(--bal-space-small-desktop) !important
|
|
227
407
|
margin-right: var(--bal-space-small-desktop) !important
|
|
228
408
|
|
|
409
|
+
.desktop:mx-small
|
|
410
|
+
margin-left: var(--bal-space-small-desktop) !important
|
|
411
|
+
margin-right: var(--bal-space-small-desktop) !important
|
|
412
|
+
|
|
229
413
|
.mx-normal
|
|
230
414
|
margin-left: var(--bal-space-normal-desktop) !important
|
|
231
415
|
margin-right: var(--bal-space-normal-desktop) !important
|
|
232
416
|
|
|
417
|
+
.desktop:mx-normal
|
|
418
|
+
margin-left: var(--bal-space-normal-desktop) !important
|
|
419
|
+
margin-right: var(--bal-space-normal-desktop) !important
|
|
420
|
+
|
|
233
421
|
.mx-medium
|
|
234
422
|
margin-left: var(--bal-space-medium-desktop) !important
|
|
235
423
|
margin-right: var(--bal-space-medium-desktop) !important
|
|
236
424
|
|
|
425
|
+
.desktop:mx-medium
|
|
426
|
+
margin-left: var(--bal-space-medium-desktop) !important
|
|
427
|
+
margin-right: var(--bal-space-medium-desktop) !important
|
|
428
|
+
|
|
237
429
|
.mx-large
|
|
238
430
|
margin-left: var(--bal-space-large-desktop) !important
|
|
239
431
|
margin-right: var(--bal-space-large-desktop) !important
|
|
240
432
|
|
|
433
|
+
.desktop:mx-large
|
|
434
|
+
margin-left: var(--bal-space-large-desktop) !important
|
|
435
|
+
margin-right: var(--bal-space-large-desktop) !important
|
|
436
|
+
|
|
241
437
|
.mx-x-large
|
|
242
438
|
margin-left: var(--bal-space-x-large-desktop) !important
|
|
243
439
|
margin-right: var(--bal-space-x-large-desktop) !important
|
|
244
440
|
|
|
441
|
+
.desktop:mx-x-large
|
|
442
|
+
margin-left: var(--bal-space-x-large-desktop) !important
|
|
443
|
+
margin-right: var(--bal-space-x-large-desktop) !important
|
|
444
|
+
|
|
245
445
|
.mx-xx-large
|
|
246
446
|
margin-left: var(--bal-space-xx-large-desktop) !important
|
|
247
447
|
margin-right: var(--bal-space-xx-large-desktop) !important
|
|
248
448
|
|
|
449
|
+
.desktop:mx-xx-large
|
|
450
|
+
margin-left: var(--bal-space-xx-large-desktop) !important
|
|
451
|
+
margin-right: var(--bal-space-xx-large-desktop) !important
|
|
452
|
+
|
|
249
453
|
.mx-xxx-large
|
|
250
454
|
margin-left: var(--bal-space-xxx-large-desktop) !important
|
|
251
455
|
margin-right: var(--bal-space-xxx-large-desktop) !important
|
|
252
456
|
|
|
457
|
+
.desktop:mx-xxx-large
|
|
458
|
+
margin-left: var(--bal-space-xxx-large-desktop) !important
|
|
459
|
+
margin-right: var(--bal-space-xxx-large-desktop) !important
|
|
460
|
+
|
|
253
461
|
.mx-xxxx-large
|
|
254
462
|
margin-left: var(--bal-space-xxxx-large-desktop) !important
|
|
255
463
|
margin-right: var(--bal-space-xxxx-large-desktop) !important
|
|
256
464
|
|
|
465
|
+
.desktop:mx-xxxx-large
|
|
466
|
+
margin-left: var(--bal-space-xxxx-large-desktop) !important
|
|
467
|
+
margin-right: var(--bal-space-xxxx-large-desktop) !important
|
|
468
|
+
|
|
257
469
|
.my-none
|
|
258
470
|
margin-top: 0 !important
|
|
259
471
|
margin-bottom: 0 !important
|
|
@@ -302,6 +514,47 @@
|
|
|
302
514
|
margin-top: var(--bal-space-xxxx-large) !important
|
|
303
515
|
margin-bottom: var(--bal-space-xxxx-large) !important
|
|
304
516
|
|
|
517
|
+
+mobile
|
|
518
|
+
.mobile:my-xx-small
|
|
519
|
+
margin-top: var(--bal-space-xx-small-mobile) !important
|
|
520
|
+
margin-bottom: var(--bal-space-xx-small-mobile) !important
|
|
521
|
+
|
|
522
|
+
.mobile:my-x-small
|
|
523
|
+
margin-top: var(--bal-space-x-small-mobile) !important
|
|
524
|
+
margin-bottom: var(--bal-space-x-small-mobile) !important
|
|
525
|
+
|
|
526
|
+
.mobile:my-small
|
|
527
|
+
margin-top: var(--bal-space-small-mobile) !important
|
|
528
|
+
margin-bottom: var(--bal-space-small-mobile) !important
|
|
529
|
+
|
|
530
|
+
.mobile:my-normal
|
|
531
|
+
margin-top: var(--bal-space-normal-mobile) !important
|
|
532
|
+
margin-bottom: var(--bal-space-normal-mobile) !important
|
|
533
|
+
|
|
534
|
+
.mobile:my-medium
|
|
535
|
+
margin-top: var(--bal-space-medium-mobile) !important
|
|
536
|
+
margin-bottom: var(--bal-space-medium-mobile) !important
|
|
537
|
+
|
|
538
|
+
.mobile:my-large
|
|
539
|
+
margin-top: var(--bal-space-large-mobile) !important
|
|
540
|
+
margin-bottom: var(--bal-space-large-mobile) !important
|
|
541
|
+
|
|
542
|
+
.mobile:my-x-large
|
|
543
|
+
margin-top: var(--bal-space-x-large-mobile) !important
|
|
544
|
+
margin-bottom: var(--bal-space-x-large-mobile) !important
|
|
545
|
+
|
|
546
|
+
.mobile:my-xx-large
|
|
547
|
+
margin-top: var(--bal-space-xx-large-mobile) !important
|
|
548
|
+
margin-bottom: var(--bal-space-xx-large-mobile) !important
|
|
549
|
+
|
|
550
|
+
.mobile:my-xxx-large
|
|
551
|
+
margin-top: var(--bal-space-xxx-large-mobile) !important
|
|
552
|
+
margin-bottom: var(--bal-space-xxx-large-mobile) !important
|
|
553
|
+
|
|
554
|
+
.mobile:my-xxxx-large
|
|
555
|
+
margin-top: var(--bal-space-xxxx-large-mobile) !important
|
|
556
|
+
margin-bottom: var(--bal-space-xxxx-large-mobile) !important
|
|
557
|
+
|
|
305
558
|
+tablet
|
|
306
559
|
.my-none
|
|
307
560
|
margin-top: 0 !important
|
|
@@ -315,42 +568,82 @@
|
|
|
315
568
|
margin-top: var(--bal-space-xx-small-tablet) !important
|
|
316
569
|
margin-bottom: var(--bal-space-xx-small-tablet) !important
|
|
317
570
|
|
|
571
|
+
.tablet:my-xx-small
|
|
572
|
+
margin-top: var(--bal-space-xx-small-tablet) !important
|
|
573
|
+
margin-bottom: var(--bal-space-xx-small-tablet) !important
|
|
574
|
+
|
|
318
575
|
.my-x-small
|
|
319
576
|
margin-top: var(--bal-space-x-small-tablet) !important
|
|
320
577
|
margin-bottom: var(--bal-space-x-small-tablet) !important
|
|
321
578
|
|
|
579
|
+
.tablet:my-x-small
|
|
580
|
+
margin-top: var(--bal-space-x-small-tablet) !important
|
|
581
|
+
margin-bottom: var(--bal-space-x-small-tablet) !important
|
|
582
|
+
|
|
322
583
|
.my-small
|
|
323
584
|
margin-top: var(--bal-space-small-tablet) !important
|
|
324
585
|
margin-bottom: var(--bal-space-small-tablet) !important
|
|
325
586
|
|
|
587
|
+
.tablet:my-small
|
|
588
|
+
margin-top: var(--bal-space-small-tablet) !important
|
|
589
|
+
margin-bottom: var(--bal-space-small-tablet) !important
|
|
590
|
+
|
|
326
591
|
.my-normal
|
|
327
592
|
margin-top: var(--bal-space-normal-tablet) !important
|
|
328
593
|
margin-bottom: var(--bal-space-normal-tablet) !important
|
|
329
594
|
|
|
595
|
+
.tablet:my-normal
|
|
596
|
+
margin-top: var(--bal-space-normal-tablet) !important
|
|
597
|
+
margin-bottom: var(--bal-space-normal-tablet) !important
|
|
598
|
+
|
|
330
599
|
.my-medium
|
|
331
600
|
margin-top: var(--bal-space-medium-tablet) !important
|
|
332
601
|
margin-bottom: var(--bal-space-medium-tablet) !important
|
|
333
602
|
|
|
603
|
+
.tablet:my-medium
|
|
604
|
+
margin-top: var(--bal-space-medium-tablet) !important
|
|
605
|
+
margin-bottom: var(--bal-space-medium-tablet) !important
|
|
606
|
+
|
|
334
607
|
.my-large
|
|
335
608
|
margin-top: var(--bal-space-large-tablet) !important
|
|
336
609
|
margin-bottom: var(--bal-space-large-tablet) !important
|
|
337
610
|
|
|
611
|
+
.tablet:my-large
|
|
612
|
+
margin-top: var(--bal-space-large-tablet) !important
|
|
613
|
+
margin-bottom: var(--bal-space-large-tablet) !important
|
|
614
|
+
|
|
338
615
|
.my-x-large
|
|
339
616
|
margin-top: var(--bal-space-x-large-tablet) !important
|
|
340
617
|
margin-bottom: var(--bal-space-x-large-tablet) !important
|
|
341
618
|
|
|
619
|
+
.tablet:my-x-large
|
|
620
|
+
margin-top: var(--bal-space-x-large-tablet) !important
|
|
621
|
+
margin-bottom: var(--bal-space-x-large-tablet) !important
|
|
622
|
+
|
|
342
623
|
.my-xx-large
|
|
343
624
|
margin-top: var(--bal-space-xx-large-tablet) !important
|
|
344
625
|
margin-bottom: var(--bal-space-xx-large-tablet) !important
|
|
345
626
|
|
|
627
|
+
.tablet:my-xx-large
|
|
628
|
+
margin-top: var(--bal-space-xx-large-tablet) !important
|
|
629
|
+
margin-bottom: var(--bal-space-xx-large-tablet) !important
|
|
630
|
+
|
|
346
631
|
.my-xxx-large
|
|
347
632
|
margin-top: var(--bal-space-xxx-large-tablet) !important
|
|
348
633
|
margin-bottom: var(--bal-space-xxx-large-tablet) !important
|
|
349
634
|
|
|
635
|
+
.tablet:my-xxx-large
|
|
636
|
+
margin-top: var(--bal-space-xxx-large-tablet) !important
|
|
637
|
+
margin-bottom: var(--bal-space-xxx-large-tablet) !important
|
|
638
|
+
|
|
350
639
|
.my-xxxx-large
|
|
351
640
|
margin-top: var(--bal-space-xxxx-large-tablet) !important
|
|
352
641
|
margin-bottom: var(--bal-space-xxxx-large-tablet) !important
|
|
353
642
|
|
|
643
|
+
.tablet:my-xxxx-large
|
|
644
|
+
margin-top: var(--bal-space-xxxx-large-tablet) !important
|
|
645
|
+
margin-bottom: var(--bal-space-xxxx-large-tablet) !important
|
|
646
|
+
|
|
354
647
|
+desktop
|
|
355
648
|
.my-none
|
|
356
649
|
margin-top: 0 !important
|
|
@@ -364,42 +657,82 @@
|
|
|
364
657
|
margin-top: var(--bal-space-xx-small-desktop) !important
|
|
365
658
|
margin-bottom: var(--bal-space-xx-small-desktop) !important
|
|
366
659
|
|
|
660
|
+
.desktop:my-xx-small
|
|
661
|
+
margin-top: var(--bal-space-xx-small-desktop) !important
|
|
662
|
+
margin-bottom: var(--bal-space-xx-small-desktop) !important
|
|
663
|
+
|
|
367
664
|
.my-x-small
|
|
368
665
|
margin-top: var(--bal-space-x-small-desktop) !important
|
|
369
666
|
margin-bottom: var(--bal-space-x-small-desktop) !important
|
|
370
667
|
|
|
668
|
+
.desktop:my-x-small
|
|
669
|
+
margin-top: var(--bal-space-x-small-desktop) !important
|
|
670
|
+
margin-bottom: var(--bal-space-x-small-desktop) !important
|
|
671
|
+
|
|
371
672
|
.my-small
|
|
372
673
|
margin-top: var(--bal-space-small-desktop) !important
|
|
373
674
|
margin-bottom: var(--bal-space-small-desktop) !important
|
|
374
675
|
|
|
676
|
+
.desktop:my-small
|
|
677
|
+
margin-top: var(--bal-space-small-desktop) !important
|
|
678
|
+
margin-bottom: var(--bal-space-small-desktop) !important
|
|
679
|
+
|
|
375
680
|
.my-normal
|
|
376
681
|
margin-top: var(--bal-space-normal-desktop) !important
|
|
377
682
|
margin-bottom: var(--bal-space-normal-desktop) !important
|
|
378
683
|
|
|
684
|
+
.desktop:my-normal
|
|
685
|
+
margin-top: var(--bal-space-normal-desktop) !important
|
|
686
|
+
margin-bottom: var(--bal-space-normal-desktop) !important
|
|
687
|
+
|
|
379
688
|
.my-medium
|
|
380
689
|
margin-top: var(--bal-space-medium-desktop) !important
|
|
381
690
|
margin-bottom: var(--bal-space-medium-desktop) !important
|
|
382
691
|
|
|
692
|
+
.desktop:my-medium
|
|
693
|
+
margin-top: var(--bal-space-medium-desktop) !important
|
|
694
|
+
margin-bottom: var(--bal-space-medium-desktop) !important
|
|
695
|
+
|
|
383
696
|
.my-large
|
|
384
697
|
margin-top: var(--bal-space-large-desktop) !important
|
|
385
698
|
margin-bottom: var(--bal-space-large-desktop) !important
|
|
386
699
|
|
|
700
|
+
.desktop:my-large
|
|
701
|
+
margin-top: var(--bal-space-large-desktop) !important
|
|
702
|
+
margin-bottom: var(--bal-space-large-desktop) !important
|
|
703
|
+
|
|
387
704
|
.my-x-large
|
|
388
705
|
margin-top: var(--bal-space-x-large-desktop) !important
|
|
389
706
|
margin-bottom: var(--bal-space-x-large-desktop) !important
|
|
390
707
|
|
|
708
|
+
.desktop:my-x-large
|
|
709
|
+
margin-top: var(--bal-space-x-large-desktop) !important
|
|
710
|
+
margin-bottom: var(--bal-space-x-large-desktop) !important
|
|
711
|
+
|
|
391
712
|
.my-xx-large
|
|
392
713
|
margin-top: var(--bal-space-xx-large-desktop) !important
|
|
393
714
|
margin-bottom: var(--bal-space-xx-large-desktop) !important
|
|
394
715
|
|
|
716
|
+
.desktop:my-xx-large
|
|
717
|
+
margin-top: var(--bal-space-xx-large-desktop) !important
|
|
718
|
+
margin-bottom: var(--bal-space-xx-large-desktop) !important
|
|
719
|
+
|
|
395
720
|
.my-xxx-large
|
|
396
721
|
margin-top: var(--bal-space-xxx-large-desktop) !important
|
|
397
722
|
margin-bottom: var(--bal-space-xxx-large-desktop) !important
|
|
398
723
|
|
|
724
|
+
.desktop:my-xxx-large
|
|
725
|
+
margin-top: var(--bal-space-xxx-large-desktop) !important
|
|
726
|
+
margin-bottom: var(--bal-space-xxx-large-desktop) !important
|
|
727
|
+
|
|
399
728
|
.my-xxxx-large
|
|
400
729
|
margin-top: var(--bal-space-xxxx-large-desktop) !important
|
|
401
730
|
margin-bottom: var(--bal-space-xxxx-large-desktop) !important
|
|
402
731
|
|
|
732
|
+
.desktop:my-xxxx-large
|
|
733
|
+
margin-top: var(--bal-space-xxxx-large-desktop) !important
|
|
734
|
+
margin-bottom: var(--bal-space-xxxx-large-desktop) !important
|
|
735
|
+
|
|
403
736
|
.mt-none
|
|
404
737
|
margin-top: 0 !important
|
|
405
738
|
|
|
@@ -436,6 +769,37 @@
|
|
|
436
769
|
.mt-xxxx-large
|
|
437
770
|
margin-top: var(--bal-space-xxxx-large) !important
|
|
438
771
|
|
|
772
|
+
+mobile
|
|
773
|
+
.mobile:mt-xx-small
|
|
774
|
+
margin-top: var(--bal-space-xx-small-mobile) !important
|
|
775
|
+
|
|
776
|
+
.mobile:mt-x-small
|
|
777
|
+
margin-top: var(--bal-space-x-small-mobile) !important
|
|
778
|
+
|
|
779
|
+
.mobile:mt-small
|
|
780
|
+
margin-top: var(--bal-space-small-mobile) !important
|
|
781
|
+
|
|
782
|
+
.mobile:mt-normal
|
|
783
|
+
margin-top: var(--bal-space-normal-mobile) !important
|
|
784
|
+
|
|
785
|
+
.mobile:mt-medium
|
|
786
|
+
margin-top: var(--bal-space-medium-mobile) !important
|
|
787
|
+
|
|
788
|
+
.mobile:mt-large
|
|
789
|
+
margin-top: var(--bal-space-large-mobile) !important
|
|
790
|
+
|
|
791
|
+
.mobile:mt-x-large
|
|
792
|
+
margin-top: var(--bal-space-x-large-mobile) !important
|
|
793
|
+
|
|
794
|
+
.mobile:mt-xx-large
|
|
795
|
+
margin-top: var(--bal-space-xx-large-mobile) !important
|
|
796
|
+
|
|
797
|
+
.mobile:mt-xxx-large
|
|
798
|
+
margin-top: var(--bal-space-xxx-large-mobile) !important
|
|
799
|
+
|
|
800
|
+
.mobile:mt-xxxx-large
|
|
801
|
+
margin-top: var(--bal-space-xxxx-large-mobile) !important
|
|
802
|
+
|
|
439
803
|
+tablet
|
|
440
804
|
.mt-none
|
|
441
805
|
margin-top: 0 !important
|
|
@@ -446,33 +810,63 @@
|
|
|
446
810
|
.mt-xx-small
|
|
447
811
|
margin-top: var(--bal-space-xx-small-tablet) !important
|
|
448
812
|
|
|
813
|
+
.tablet:mt-xx-small
|
|
814
|
+
margin-top: var(--bal-space-xx-small-tablet) !important
|
|
815
|
+
|
|
449
816
|
.mt-x-small
|
|
450
817
|
margin-top: var(--bal-space-x-small-tablet) !important
|
|
451
818
|
|
|
819
|
+
.tablet:mt-x-small
|
|
820
|
+
margin-top: var(--bal-space-x-small-tablet) !important
|
|
821
|
+
|
|
452
822
|
.mt-small
|
|
453
823
|
margin-top: var(--bal-space-small-tablet) !important
|
|
454
824
|
|
|
825
|
+
.tablet:mt-small
|
|
826
|
+
margin-top: var(--bal-space-small-tablet) !important
|
|
827
|
+
|
|
455
828
|
.mt-normal
|
|
456
829
|
margin-top: var(--bal-space-normal-tablet) !important
|
|
457
830
|
|
|
831
|
+
.tablet:mt-normal
|
|
832
|
+
margin-top: var(--bal-space-normal-tablet) !important
|
|
833
|
+
|
|
458
834
|
.mt-medium
|
|
459
835
|
margin-top: var(--bal-space-medium-tablet) !important
|
|
460
836
|
|
|
837
|
+
.tablet:mt-medium
|
|
838
|
+
margin-top: var(--bal-space-medium-tablet) !important
|
|
839
|
+
|
|
461
840
|
.mt-large
|
|
462
841
|
margin-top: var(--bal-space-large-tablet) !important
|
|
463
842
|
|
|
843
|
+
.tablet:mt-large
|
|
844
|
+
margin-top: var(--bal-space-large-tablet) !important
|
|
845
|
+
|
|
464
846
|
.mt-x-large
|
|
465
847
|
margin-top: var(--bal-space-x-large-tablet) !important
|
|
466
848
|
|
|
849
|
+
.tablet:mt-x-large
|
|
850
|
+
margin-top: var(--bal-space-x-large-tablet) !important
|
|
851
|
+
|
|
467
852
|
.mt-xx-large
|
|
468
853
|
margin-top: var(--bal-space-xx-large-tablet) !important
|
|
469
854
|
|
|
855
|
+
.tablet:mt-xx-large
|
|
856
|
+
margin-top: var(--bal-space-xx-large-tablet) !important
|
|
857
|
+
|
|
470
858
|
.mt-xxx-large
|
|
471
859
|
margin-top: var(--bal-space-xxx-large-tablet) !important
|
|
472
860
|
|
|
861
|
+
.tablet:mt-xxx-large
|
|
862
|
+
margin-top: var(--bal-space-xxx-large-tablet) !important
|
|
863
|
+
|
|
473
864
|
.mt-xxxx-large
|
|
474
865
|
margin-top: var(--bal-space-xxxx-large-tablet) !important
|
|
475
866
|
|
|
867
|
+
.tablet:mt-xxxx-large
|
|
868
|
+
margin-top: var(--bal-space-xxxx-large-tablet) !important
|
|
869
|
+
|
|
476
870
|
+desktop
|
|
477
871
|
.mt-none
|
|
478
872
|
margin-top: 0 !important
|
|
@@ -483,33 +877,63 @@
|
|
|
483
877
|
.mt-xx-small
|
|
484
878
|
margin-top: var(--bal-space-xx-small-desktop) !important
|
|
485
879
|
|
|
880
|
+
.desktop:mt-xx-small
|
|
881
|
+
margin-top: var(--bal-space-xx-small-desktop) !important
|
|
882
|
+
|
|
486
883
|
.mt-x-small
|
|
487
884
|
margin-top: var(--bal-space-x-small-desktop) !important
|
|
488
885
|
|
|
886
|
+
.desktop:mt-x-small
|
|
887
|
+
margin-top: var(--bal-space-x-small-desktop) !important
|
|
888
|
+
|
|
489
889
|
.mt-small
|
|
490
890
|
margin-top: var(--bal-space-small-desktop) !important
|
|
491
891
|
|
|
892
|
+
.desktop:mt-small
|
|
893
|
+
margin-top: var(--bal-space-small-desktop) !important
|
|
894
|
+
|
|
492
895
|
.mt-normal
|
|
493
896
|
margin-top: var(--bal-space-normal-desktop) !important
|
|
494
897
|
|
|
898
|
+
.desktop:mt-normal
|
|
899
|
+
margin-top: var(--bal-space-normal-desktop) !important
|
|
900
|
+
|
|
495
901
|
.mt-medium
|
|
496
902
|
margin-top: var(--bal-space-medium-desktop) !important
|
|
497
903
|
|
|
904
|
+
.desktop:mt-medium
|
|
905
|
+
margin-top: var(--bal-space-medium-desktop) !important
|
|
906
|
+
|
|
498
907
|
.mt-large
|
|
499
908
|
margin-top: var(--bal-space-large-desktop) !important
|
|
500
909
|
|
|
910
|
+
.desktop:mt-large
|
|
911
|
+
margin-top: var(--bal-space-large-desktop) !important
|
|
912
|
+
|
|
501
913
|
.mt-x-large
|
|
502
914
|
margin-top: var(--bal-space-x-large-desktop) !important
|
|
503
915
|
|
|
916
|
+
.desktop:mt-x-large
|
|
917
|
+
margin-top: var(--bal-space-x-large-desktop) !important
|
|
918
|
+
|
|
504
919
|
.mt-xx-large
|
|
505
920
|
margin-top: var(--bal-space-xx-large-desktop) !important
|
|
506
921
|
|
|
922
|
+
.desktop:mt-xx-large
|
|
923
|
+
margin-top: var(--bal-space-xx-large-desktop) !important
|
|
924
|
+
|
|
507
925
|
.mt-xxx-large
|
|
508
926
|
margin-top: var(--bal-space-xxx-large-desktop) !important
|
|
509
927
|
|
|
928
|
+
.desktop:mt-xxx-large
|
|
929
|
+
margin-top: var(--bal-space-xxx-large-desktop) !important
|
|
930
|
+
|
|
510
931
|
.mt-xxxx-large
|
|
511
932
|
margin-top: var(--bal-space-xxxx-large-desktop) !important
|
|
512
933
|
|
|
934
|
+
.desktop:mt-xxxx-large
|
|
935
|
+
margin-top: var(--bal-space-xxxx-large-desktop) !important
|
|
936
|
+
|
|
513
937
|
.mr-none
|
|
514
938
|
margin-right: 0 !important
|
|
515
939
|
|
|
@@ -546,6 +970,37 @@
|
|
|
546
970
|
.mr-xxxx-large
|
|
547
971
|
margin-right: var(--bal-space-xxxx-large) !important
|
|
548
972
|
|
|
973
|
+
+mobile
|
|
974
|
+
.mobile:mr-xx-small
|
|
975
|
+
margin-right: var(--bal-space-xx-small-mobile) !important
|
|
976
|
+
|
|
977
|
+
.mobile:mr-x-small
|
|
978
|
+
margin-right: var(--bal-space-x-small-mobile) !important
|
|
979
|
+
|
|
980
|
+
.mobile:mr-small
|
|
981
|
+
margin-right: var(--bal-space-small-mobile) !important
|
|
982
|
+
|
|
983
|
+
.mobile:mr-normal
|
|
984
|
+
margin-right: var(--bal-space-normal-mobile) !important
|
|
985
|
+
|
|
986
|
+
.mobile:mr-medium
|
|
987
|
+
margin-right: var(--bal-space-medium-mobile) !important
|
|
988
|
+
|
|
989
|
+
.mobile:mr-large
|
|
990
|
+
margin-right: var(--bal-space-large-mobile) !important
|
|
991
|
+
|
|
992
|
+
.mobile:mr-x-large
|
|
993
|
+
margin-right: var(--bal-space-x-large-mobile) !important
|
|
994
|
+
|
|
995
|
+
.mobile:mr-xx-large
|
|
996
|
+
margin-right: var(--bal-space-xx-large-mobile) !important
|
|
997
|
+
|
|
998
|
+
.mobile:mr-xxx-large
|
|
999
|
+
margin-right: var(--bal-space-xxx-large-mobile) !important
|
|
1000
|
+
|
|
1001
|
+
.mobile:mr-xxxx-large
|
|
1002
|
+
margin-right: var(--bal-space-xxxx-large-mobile) !important
|
|
1003
|
+
|
|
549
1004
|
+tablet
|
|
550
1005
|
.mr-none
|
|
551
1006
|
margin-right: 0 !important
|
|
@@ -556,33 +1011,63 @@
|
|
|
556
1011
|
.mr-xx-small
|
|
557
1012
|
margin-right: var(--bal-space-xx-small-tablet) !important
|
|
558
1013
|
|
|
1014
|
+
.tablet:mr-xx-small
|
|
1015
|
+
margin-right: var(--bal-space-xx-small-tablet) !important
|
|
1016
|
+
|
|
559
1017
|
.mr-x-small
|
|
560
1018
|
margin-right: var(--bal-space-x-small-tablet) !important
|
|
561
1019
|
|
|
1020
|
+
.tablet:mr-x-small
|
|
1021
|
+
margin-right: var(--bal-space-x-small-tablet) !important
|
|
1022
|
+
|
|
562
1023
|
.mr-small
|
|
563
1024
|
margin-right: var(--bal-space-small-tablet) !important
|
|
564
1025
|
|
|
1026
|
+
.tablet:mr-small
|
|
1027
|
+
margin-right: var(--bal-space-small-tablet) !important
|
|
1028
|
+
|
|
565
1029
|
.mr-normal
|
|
566
1030
|
margin-right: var(--bal-space-normal-tablet) !important
|
|
567
1031
|
|
|
1032
|
+
.tablet:mr-normal
|
|
1033
|
+
margin-right: var(--bal-space-normal-tablet) !important
|
|
1034
|
+
|
|
568
1035
|
.mr-medium
|
|
569
1036
|
margin-right: var(--bal-space-medium-tablet) !important
|
|
570
1037
|
|
|
1038
|
+
.tablet:mr-medium
|
|
1039
|
+
margin-right: var(--bal-space-medium-tablet) !important
|
|
1040
|
+
|
|
571
1041
|
.mr-large
|
|
572
1042
|
margin-right: var(--bal-space-large-tablet) !important
|
|
573
1043
|
|
|
1044
|
+
.tablet:mr-large
|
|
1045
|
+
margin-right: var(--bal-space-large-tablet) !important
|
|
1046
|
+
|
|
574
1047
|
.mr-x-large
|
|
575
1048
|
margin-right: var(--bal-space-x-large-tablet) !important
|
|
576
1049
|
|
|
1050
|
+
.tablet:mr-x-large
|
|
1051
|
+
margin-right: var(--bal-space-x-large-tablet) !important
|
|
1052
|
+
|
|
577
1053
|
.mr-xx-large
|
|
578
1054
|
margin-right: var(--bal-space-xx-large-tablet) !important
|
|
579
1055
|
|
|
1056
|
+
.tablet:mr-xx-large
|
|
1057
|
+
margin-right: var(--bal-space-xx-large-tablet) !important
|
|
1058
|
+
|
|
580
1059
|
.mr-xxx-large
|
|
581
1060
|
margin-right: var(--bal-space-xxx-large-tablet) !important
|
|
582
1061
|
|
|
1062
|
+
.tablet:mr-xxx-large
|
|
1063
|
+
margin-right: var(--bal-space-xxx-large-tablet) !important
|
|
1064
|
+
|
|
583
1065
|
.mr-xxxx-large
|
|
584
1066
|
margin-right: var(--bal-space-xxxx-large-tablet) !important
|
|
585
1067
|
|
|
1068
|
+
.tablet:mr-xxxx-large
|
|
1069
|
+
margin-right: var(--bal-space-xxxx-large-tablet) !important
|
|
1070
|
+
|
|
586
1071
|
+desktop
|
|
587
1072
|
.mr-none
|
|
588
1073
|
margin-right: 0 !important
|
|
@@ -593,33 +1078,63 @@
|
|
|
593
1078
|
.mr-xx-small
|
|
594
1079
|
margin-right: var(--bal-space-xx-small-desktop) !important
|
|
595
1080
|
|
|
1081
|
+
.desktop:mr-xx-small
|
|
1082
|
+
margin-right: var(--bal-space-xx-small-desktop) !important
|
|
1083
|
+
|
|
596
1084
|
.mr-x-small
|
|
597
1085
|
margin-right: var(--bal-space-x-small-desktop) !important
|
|
598
1086
|
|
|
1087
|
+
.desktop:mr-x-small
|
|
1088
|
+
margin-right: var(--bal-space-x-small-desktop) !important
|
|
1089
|
+
|
|
599
1090
|
.mr-small
|
|
600
1091
|
margin-right: var(--bal-space-small-desktop) !important
|
|
601
1092
|
|
|
1093
|
+
.desktop:mr-small
|
|
1094
|
+
margin-right: var(--bal-space-small-desktop) !important
|
|
1095
|
+
|
|
602
1096
|
.mr-normal
|
|
603
1097
|
margin-right: var(--bal-space-normal-desktop) !important
|
|
604
1098
|
|
|
1099
|
+
.desktop:mr-normal
|
|
1100
|
+
margin-right: var(--bal-space-normal-desktop) !important
|
|
1101
|
+
|
|
605
1102
|
.mr-medium
|
|
606
1103
|
margin-right: var(--bal-space-medium-desktop) !important
|
|
607
1104
|
|
|
1105
|
+
.desktop:mr-medium
|
|
1106
|
+
margin-right: var(--bal-space-medium-desktop) !important
|
|
1107
|
+
|
|
608
1108
|
.mr-large
|
|
609
1109
|
margin-right: var(--bal-space-large-desktop) !important
|
|
610
1110
|
|
|
1111
|
+
.desktop:mr-large
|
|
1112
|
+
margin-right: var(--bal-space-large-desktop) !important
|
|
1113
|
+
|
|
611
1114
|
.mr-x-large
|
|
612
1115
|
margin-right: var(--bal-space-x-large-desktop) !important
|
|
613
1116
|
|
|
1117
|
+
.desktop:mr-x-large
|
|
1118
|
+
margin-right: var(--bal-space-x-large-desktop) !important
|
|
1119
|
+
|
|
614
1120
|
.mr-xx-large
|
|
615
1121
|
margin-right: var(--bal-space-xx-large-desktop) !important
|
|
616
1122
|
|
|
1123
|
+
.desktop:mr-xx-large
|
|
1124
|
+
margin-right: var(--bal-space-xx-large-desktop) !important
|
|
1125
|
+
|
|
617
1126
|
.mr-xxx-large
|
|
618
1127
|
margin-right: var(--bal-space-xxx-large-desktop) !important
|
|
619
1128
|
|
|
1129
|
+
.desktop:mr-xxx-large
|
|
1130
|
+
margin-right: var(--bal-space-xxx-large-desktop) !important
|
|
1131
|
+
|
|
620
1132
|
.mr-xxxx-large
|
|
621
1133
|
margin-right: var(--bal-space-xxxx-large-desktop) !important
|
|
622
1134
|
|
|
1135
|
+
.desktop:mr-xxxx-large
|
|
1136
|
+
margin-right: var(--bal-space-xxxx-large-desktop) !important
|
|
1137
|
+
|
|
623
1138
|
.mb-none
|
|
624
1139
|
margin-bottom: 0 !important
|
|
625
1140
|
|
|
@@ -656,6 +1171,37 @@
|
|
|
656
1171
|
.mb-xxxx-large
|
|
657
1172
|
margin-bottom: var(--bal-space-xxxx-large) !important
|
|
658
1173
|
|
|
1174
|
+
+mobile
|
|
1175
|
+
.mobile:mb-xx-small
|
|
1176
|
+
margin-bottom: var(--bal-space-xx-small-mobile) !important
|
|
1177
|
+
|
|
1178
|
+
.mobile:mb-x-small
|
|
1179
|
+
margin-bottom: var(--bal-space-x-small-mobile) !important
|
|
1180
|
+
|
|
1181
|
+
.mobile:mb-small
|
|
1182
|
+
margin-bottom: var(--bal-space-small-mobile) !important
|
|
1183
|
+
|
|
1184
|
+
.mobile:mb-normal
|
|
1185
|
+
margin-bottom: var(--bal-space-normal-mobile) !important
|
|
1186
|
+
|
|
1187
|
+
.mobile:mb-medium
|
|
1188
|
+
margin-bottom: var(--bal-space-medium-mobile) !important
|
|
1189
|
+
|
|
1190
|
+
.mobile:mb-large
|
|
1191
|
+
margin-bottom: var(--bal-space-large-mobile) !important
|
|
1192
|
+
|
|
1193
|
+
.mobile:mb-x-large
|
|
1194
|
+
margin-bottom: var(--bal-space-x-large-mobile) !important
|
|
1195
|
+
|
|
1196
|
+
.mobile:mb-xx-large
|
|
1197
|
+
margin-bottom: var(--bal-space-xx-large-mobile) !important
|
|
1198
|
+
|
|
1199
|
+
.mobile:mb-xxx-large
|
|
1200
|
+
margin-bottom: var(--bal-space-xxx-large-mobile) !important
|
|
1201
|
+
|
|
1202
|
+
.mobile:mb-xxxx-large
|
|
1203
|
+
margin-bottom: var(--bal-space-xxxx-large-mobile) !important
|
|
1204
|
+
|
|
659
1205
|
+tablet
|
|
660
1206
|
.mb-none
|
|
661
1207
|
margin-bottom: 0 !important
|
|
@@ -666,33 +1212,63 @@
|
|
|
666
1212
|
.mb-xx-small
|
|
667
1213
|
margin-bottom: var(--bal-space-xx-small-tablet) !important
|
|
668
1214
|
|
|
1215
|
+
.tablet:mb-xx-small
|
|
1216
|
+
margin-bottom: var(--bal-space-xx-small-tablet) !important
|
|
1217
|
+
|
|
669
1218
|
.mb-x-small
|
|
670
1219
|
margin-bottom: var(--bal-space-x-small-tablet) !important
|
|
671
1220
|
|
|
1221
|
+
.tablet:mb-x-small
|
|
1222
|
+
margin-bottom: var(--bal-space-x-small-tablet) !important
|
|
1223
|
+
|
|
672
1224
|
.mb-small
|
|
673
1225
|
margin-bottom: var(--bal-space-small-tablet) !important
|
|
674
1226
|
|
|
1227
|
+
.tablet:mb-small
|
|
1228
|
+
margin-bottom: var(--bal-space-small-tablet) !important
|
|
1229
|
+
|
|
675
1230
|
.mb-normal
|
|
676
1231
|
margin-bottom: var(--bal-space-normal-tablet) !important
|
|
677
1232
|
|
|
1233
|
+
.tablet:mb-normal
|
|
1234
|
+
margin-bottom: var(--bal-space-normal-tablet) !important
|
|
1235
|
+
|
|
678
1236
|
.mb-medium
|
|
679
1237
|
margin-bottom: var(--bal-space-medium-tablet) !important
|
|
680
1238
|
|
|
1239
|
+
.tablet:mb-medium
|
|
1240
|
+
margin-bottom: var(--bal-space-medium-tablet) !important
|
|
1241
|
+
|
|
681
1242
|
.mb-large
|
|
682
1243
|
margin-bottom: var(--bal-space-large-tablet) !important
|
|
683
1244
|
|
|
1245
|
+
.tablet:mb-large
|
|
1246
|
+
margin-bottom: var(--bal-space-large-tablet) !important
|
|
1247
|
+
|
|
684
1248
|
.mb-x-large
|
|
685
1249
|
margin-bottom: var(--bal-space-x-large-tablet) !important
|
|
686
1250
|
|
|
1251
|
+
.tablet:mb-x-large
|
|
1252
|
+
margin-bottom: var(--bal-space-x-large-tablet) !important
|
|
1253
|
+
|
|
687
1254
|
.mb-xx-large
|
|
688
1255
|
margin-bottom: var(--bal-space-xx-large-tablet) !important
|
|
689
1256
|
|
|
1257
|
+
.tablet:mb-xx-large
|
|
1258
|
+
margin-bottom: var(--bal-space-xx-large-tablet) !important
|
|
1259
|
+
|
|
690
1260
|
.mb-xxx-large
|
|
691
1261
|
margin-bottom: var(--bal-space-xxx-large-tablet) !important
|
|
692
1262
|
|
|
1263
|
+
.tablet:mb-xxx-large
|
|
1264
|
+
margin-bottom: var(--bal-space-xxx-large-tablet) !important
|
|
1265
|
+
|
|
693
1266
|
.mb-xxxx-large
|
|
694
1267
|
margin-bottom: var(--bal-space-xxxx-large-tablet) !important
|
|
695
1268
|
|
|
1269
|
+
.tablet:mb-xxxx-large
|
|
1270
|
+
margin-bottom: var(--bal-space-xxxx-large-tablet) !important
|
|
1271
|
+
|
|
696
1272
|
+desktop
|
|
697
1273
|
.mb-none
|
|
698
1274
|
margin-bottom: 0 !important
|
|
@@ -703,33 +1279,63 @@
|
|
|
703
1279
|
.mb-xx-small
|
|
704
1280
|
margin-bottom: var(--bal-space-xx-small-desktop) !important
|
|
705
1281
|
|
|
1282
|
+
.desktop:mb-xx-small
|
|
1283
|
+
margin-bottom: var(--bal-space-xx-small-desktop) !important
|
|
1284
|
+
|
|
706
1285
|
.mb-x-small
|
|
707
1286
|
margin-bottom: var(--bal-space-x-small-desktop) !important
|
|
708
1287
|
|
|
1288
|
+
.desktop:mb-x-small
|
|
1289
|
+
margin-bottom: var(--bal-space-x-small-desktop) !important
|
|
1290
|
+
|
|
709
1291
|
.mb-small
|
|
710
1292
|
margin-bottom: var(--bal-space-small-desktop) !important
|
|
711
1293
|
|
|
1294
|
+
.desktop:mb-small
|
|
1295
|
+
margin-bottom: var(--bal-space-small-desktop) !important
|
|
1296
|
+
|
|
712
1297
|
.mb-normal
|
|
713
1298
|
margin-bottom: var(--bal-space-normal-desktop) !important
|
|
714
1299
|
|
|
1300
|
+
.desktop:mb-normal
|
|
1301
|
+
margin-bottom: var(--bal-space-normal-desktop) !important
|
|
1302
|
+
|
|
715
1303
|
.mb-medium
|
|
716
1304
|
margin-bottom: var(--bal-space-medium-desktop) !important
|
|
717
1305
|
|
|
1306
|
+
.desktop:mb-medium
|
|
1307
|
+
margin-bottom: var(--bal-space-medium-desktop) !important
|
|
1308
|
+
|
|
718
1309
|
.mb-large
|
|
719
1310
|
margin-bottom: var(--bal-space-large-desktop) !important
|
|
720
1311
|
|
|
1312
|
+
.desktop:mb-large
|
|
1313
|
+
margin-bottom: var(--bal-space-large-desktop) !important
|
|
1314
|
+
|
|
721
1315
|
.mb-x-large
|
|
722
1316
|
margin-bottom: var(--bal-space-x-large-desktop) !important
|
|
723
1317
|
|
|
1318
|
+
.desktop:mb-x-large
|
|
1319
|
+
margin-bottom: var(--bal-space-x-large-desktop) !important
|
|
1320
|
+
|
|
724
1321
|
.mb-xx-large
|
|
725
1322
|
margin-bottom: var(--bal-space-xx-large-desktop) !important
|
|
726
1323
|
|
|
1324
|
+
.desktop:mb-xx-large
|
|
1325
|
+
margin-bottom: var(--bal-space-xx-large-desktop) !important
|
|
1326
|
+
|
|
727
1327
|
.mb-xxx-large
|
|
728
1328
|
margin-bottom: var(--bal-space-xxx-large-desktop) !important
|
|
729
1329
|
|
|
1330
|
+
.desktop:mb-xxx-large
|
|
1331
|
+
margin-bottom: var(--bal-space-xxx-large-desktop) !important
|
|
1332
|
+
|
|
730
1333
|
.mb-xxxx-large
|
|
731
1334
|
margin-bottom: var(--bal-space-xxxx-large-desktop) !important
|
|
732
1335
|
|
|
1336
|
+
.desktop:mb-xxxx-large
|
|
1337
|
+
margin-bottom: var(--bal-space-xxxx-large-desktop) !important
|
|
1338
|
+
|
|
733
1339
|
.ml-none
|
|
734
1340
|
margin-left: 0 !important
|
|
735
1341
|
|
|
@@ -766,6 +1372,37 @@
|
|
|
766
1372
|
.ml-xxxx-large
|
|
767
1373
|
margin-left: var(--bal-space-xxxx-large) !important
|
|
768
1374
|
|
|
1375
|
+
+mobile
|
|
1376
|
+
.mobile:ml-xx-small
|
|
1377
|
+
margin-left: var(--bal-space-xx-small-mobile) !important
|
|
1378
|
+
|
|
1379
|
+
.mobile:ml-x-small
|
|
1380
|
+
margin-left: var(--bal-space-x-small-mobile) !important
|
|
1381
|
+
|
|
1382
|
+
.mobile:ml-small
|
|
1383
|
+
margin-left: var(--bal-space-small-mobile) !important
|
|
1384
|
+
|
|
1385
|
+
.mobile:ml-normal
|
|
1386
|
+
margin-left: var(--bal-space-normal-mobile) !important
|
|
1387
|
+
|
|
1388
|
+
.mobile:ml-medium
|
|
1389
|
+
margin-left: var(--bal-space-medium-mobile) !important
|
|
1390
|
+
|
|
1391
|
+
.mobile:ml-large
|
|
1392
|
+
margin-left: var(--bal-space-large-mobile) !important
|
|
1393
|
+
|
|
1394
|
+
.mobile:ml-x-large
|
|
1395
|
+
margin-left: var(--bal-space-x-large-mobile) !important
|
|
1396
|
+
|
|
1397
|
+
.mobile:ml-xx-large
|
|
1398
|
+
margin-left: var(--bal-space-xx-large-mobile) !important
|
|
1399
|
+
|
|
1400
|
+
.mobile:ml-xxx-large
|
|
1401
|
+
margin-left: var(--bal-space-xxx-large-mobile) !important
|
|
1402
|
+
|
|
1403
|
+
.mobile:ml-xxxx-large
|
|
1404
|
+
margin-left: var(--bal-space-xxxx-large-mobile) !important
|
|
1405
|
+
|
|
769
1406
|
+tablet
|
|
770
1407
|
.ml-none
|
|
771
1408
|
margin-left: 0 !important
|
|
@@ -776,33 +1413,63 @@
|
|
|
776
1413
|
.ml-xx-small
|
|
777
1414
|
margin-left: var(--bal-space-xx-small-tablet) !important
|
|
778
1415
|
|
|
1416
|
+
.tablet:ml-xx-small
|
|
1417
|
+
margin-left: var(--bal-space-xx-small-tablet) !important
|
|
1418
|
+
|
|
779
1419
|
.ml-x-small
|
|
780
1420
|
margin-left: var(--bal-space-x-small-tablet) !important
|
|
781
1421
|
|
|
1422
|
+
.tablet:ml-x-small
|
|
1423
|
+
margin-left: var(--bal-space-x-small-tablet) !important
|
|
1424
|
+
|
|
782
1425
|
.ml-small
|
|
783
1426
|
margin-left: var(--bal-space-small-tablet) !important
|
|
784
1427
|
|
|
1428
|
+
.tablet:ml-small
|
|
1429
|
+
margin-left: var(--bal-space-small-tablet) !important
|
|
1430
|
+
|
|
785
1431
|
.ml-normal
|
|
786
1432
|
margin-left: var(--bal-space-normal-tablet) !important
|
|
787
1433
|
|
|
1434
|
+
.tablet:ml-normal
|
|
1435
|
+
margin-left: var(--bal-space-normal-tablet) !important
|
|
1436
|
+
|
|
788
1437
|
.ml-medium
|
|
789
1438
|
margin-left: var(--bal-space-medium-tablet) !important
|
|
790
1439
|
|
|
1440
|
+
.tablet:ml-medium
|
|
1441
|
+
margin-left: var(--bal-space-medium-tablet) !important
|
|
1442
|
+
|
|
791
1443
|
.ml-large
|
|
792
1444
|
margin-left: var(--bal-space-large-tablet) !important
|
|
793
1445
|
|
|
1446
|
+
.tablet:ml-large
|
|
1447
|
+
margin-left: var(--bal-space-large-tablet) !important
|
|
1448
|
+
|
|
794
1449
|
.ml-x-large
|
|
795
1450
|
margin-left: var(--bal-space-x-large-tablet) !important
|
|
796
1451
|
|
|
1452
|
+
.tablet:ml-x-large
|
|
1453
|
+
margin-left: var(--bal-space-x-large-tablet) !important
|
|
1454
|
+
|
|
797
1455
|
.ml-xx-large
|
|
798
1456
|
margin-left: var(--bal-space-xx-large-tablet) !important
|
|
799
1457
|
|
|
1458
|
+
.tablet:ml-xx-large
|
|
1459
|
+
margin-left: var(--bal-space-xx-large-tablet) !important
|
|
1460
|
+
|
|
800
1461
|
.ml-xxx-large
|
|
801
1462
|
margin-left: var(--bal-space-xxx-large-tablet) !important
|
|
802
1463
|
|
|
1464
|
+
.tablet:ml-xxx-large
|
|
1465
|
+
margin-left: var(--bal-space-xxx-large-tablet) !important
|
|
1466
|
+
|
|
803
1467
|
.ml-xxxx-large
|
|
804
1468
|
margin-left: var(--bal-space-xxxx-large-tablet) !important
|
|
805
1469
|
|
|
1470
|
+
.tablet:ml-xxxx-large
|
|
1471
|
+
margin-left: var(--bal-space-xxxx-large-tablet) !important
|
|
1472
|
+
|
|
806
1473
|
+desktop
|
|
807
1474
|
.ml-none
|
|
808
1475
|
margin-left: 0 !important
|
|
@@ -813,33 +1480,63 @@
|
|
|
813
1480
|
.ml-xx-small
|
|
814
1481
|
margin-left: var(--bal-space-xx-small-desktop) !important
|
|
815
1482
|
|
|
1483
|
+
.desktop:ml-xx-small
|
|
1484
|
+
margin-left: var(--bal-space-xx-small-desktop) !important
|
|
1485
|
+
|
|
816
1486
|
.ml-x-small
|
|
817
1487
|
margin-left: var(--bal-space-x-small-desktop) !important
|
|
818
1488
|
|
|
1489
|
+
.desktop:ml-x-small
|
|
1490
|
+
margin-left: var(--bal-space-x-small-desktop) !important
|
|
1491
|
+
|
|
819
1492
|
.ml-small
|
|
820
1493
|
margin-left: var(--bal-space-small-desktop) !important
|
|
821
1494
|
|
|
1495
|
+
.desktop:ml-small
|
|
1496
|
+
margin-left: var(--bal-space-small-desktop) !important
|
|
1497
|
+
|
|
822
1498
|
.ml-normal
|
|
823
1499
|
margin-left: var(--bal-space-normal-desktop) !important
|
|
824
1500
|
|
|
1501
|
+
.desktop:ml-normal
|
|
1502
|
+
margin-left: var(--bal-space-normal-desktop) !important
|
|
1503
|
+
|
|
825
1504
|
.ml-medium
|
|
826
1505
|
margin-left: var(--bal-space-medium-desktop) !important
|
|
827
1506
|
|
|
1507
|
+
.desktop:ml-medium
|
|
1508
|
+
margin-left: var(--bal-space-medium-desktop) !important
|
|
1509
|
+
|
|
828
1510
|
.ml-large
|
|
829
1511
|
margin-left: var(--bal-space-large-desktop) !important
|
|
830
1512
|
|
|
1513
|
+
.desktop:ml-large
|
|
1514
|
+
margin-left: var(--bal-space-large-desktop) !important
|
|
1515
|
+
|
|
831
1516
|
.ml-x-large
|
|
832
1517
|
margin-left: var(--bal-space-x-large-desktop) !important
|
|
833
1518
|
|
|
1519
|
+
.desktop:ml-x-large
|
|
1520
|
+
margin-left: var(--bal-space-x-large-desktop) !important
|
|
1521
|
+
|
|
834
1522
|
.ml-xx-large
|
|
835
1523
|
margin-left: var(--bal-space-xx-large-desktop) !important
|
|
836
1524
|
|
|
1525
|
+
.desktop:ml-xx-large
|
|
1526
|
+
margin-left: var(--bal-space-xx-large-desktop) !important
|
|
1527
|
+
|
|
837
1528
|
.ml-xxx-large
|
|
838
1529
|
margin-left: var(--bal-space-xxx-large-desktop) !important
|
|
839
1530
|
|
|
1531
|
+
.desktop:ml-xxx-large
|
|
1532
|
+
margin-left: var(--bal-space-xxx-large-desktop) !important
|
|
1533
|
+
|
|
840
1534
|
.ml-xxxx-large
|
|
841
1535
|
margin-left: var(--bal-space-xxxx-large-desktop) !important
|
|
842
1536
|
|
|
1537
|
+
.desktop:ml-xxxx-large
|
|
1538
|
+
margin-left: var(--bal-space-xxxx-large-desktop) !important
|
|
1539
|
+
|
|
843
1540
|
.p-none
|
|
844
1541
|
padding: 0 !important
|
|
845
1542
|
|
|
@@ -876,6 +1573,37 @@
|
|
|
876
1573
|
.p-xxxx-large
|
|
877
1574
|
padding: var(--bal-space-xxxx-large) !important
|
|
878
1575
|
|
|
1576
|
+
+mobile
|
|
1577
|
+
.mobile:p-xx-small
|
|
1578
|
+
padding: var(--bal-space-xx-small-mobile) !important
|
|
1579
|
+
|
|
1580
|
+
.mobile:p-x-small
|
|
1581
|
+
padding: var(--bal-space-x-small-mobile) !important
|
|
1582
|
+
|
|
1583
|
+
.mobile:p-small
|
|
1584
|
+
padding: var(--bal-space-small-mobile) !important
|
|
1585
|
+
|
|
1586
|
+
.mobile:p-normal
|
|
1587
|
+
padding: var(--bal-space-normal-mobile) !important
|
|
1588
|
+
|
|
1589
|
+
.mobile:p-medium
|
|
1590
|
+
padding: var(--bal-space-medium-mobile) !important
|
|
1591
|
+
|
|
1592
|
+
.mobile:p-large
|
|
1593
|
+
padding: var(--bal-space-large-mobile) !important
|
|
1594
|
+
|
|
1595
|
+
.mobile:p-x-large
|
|
1596
|
+
padding: var(--bal-space-x-large-mobile) !important
|
|
1597
|
+
|
|
1598
|
+
.mobile:p-xx-large
|
|
1599
|
+
padding: var(--bal-space-xx-large-mobile) !important
|
|
1600
|
+
|
|
1601
|
+
.mobile:p-xxx-large
|
|
1602
|
+
padding: var(--bal-space-xxx-large-mobile) !important
|
|
1603
|
+
|
|
1604
|
+
.mobile:p-xxxx-large
|
|
1605
|
+
padding: var(--bal-space-xxxx-large-mobile) !important
|
|
1606
|
+
|
|
879
1607
|
+tablet
|
|
880
1608
|
.p-none
|
|
881
1609
|
padding: 0 !important
|
|
@@ -886,33 +1614,63 @@
|
|
|
886
1614
|
.p-xx-small
|
|
887
1615
|
padding: var(--bal-space-xx-small-tablet) !important
|
|
888
1616
|
|
|
1617
|
+
.tablet:p-xx-small
|
|
1618
|
+
padding: var(--bal-space-xx-small-tablet) !important
|
|
1619
|
+
|
|
889
1620
|
.p-x-small
|
|
890
1621
|
padding: var(--bal-space-x-small-tablet) !important
|
|
891
1622
|
|
|
1623
|
+
.tablet:p-x-small
|
|
1624
|
+
padding: var(--bal-space-x-small-tablet) !important
|
|
1625
|
+
|
|
892
1626
|
.p-small
|
|
893
1627
|
padding: var(--bal-space-small-tablet) !important
|
|
894
1628
|
|
|
1629
|
+
.tablet:p-small
|
|
1630
|
+
padding: var(--bal-space-small-tablet) !important
|
|
1631
|
+
|
|
895
1632
|
.p-normal
|
|
896
1633
|
padding: var(--bal-space-normal-tablet) !important
|
|
897
1634
|
|
|
1635
|
+
.tablet:p-normal
|
|
1636
|
+
padding: var(--bal-space-normal-tablet) !important
|
|
1637
|
+
|
|
898
1638
|
.p-medium
|
|
899
1639
|
padding: var(--bal-space-medium-tablet) !important
|
|
900
1640
|
|
|
1641
|
+
.tablet:p-medium
|
|
1642
|
+
padding: var(--bal-space-medium-tablet) !important
|
|
1643
|
+
|
|
901
1644
|
.p-large
|
|
902
1645
|
padding: var(--bal-space-large-tablet) !important
|
|
903
1646
|
|
|
1647
|
+
.tablet:p-large
|
|
1648
|
+
padding: var(--bal-space-large-tablet) !important
|
|
1649
|
+
|
|
904
1650
|
.p-x-large
|
|
905
1651
|
padding: var(--bal-space-x-large-tablet) !important
|
|
906
1652
|
|
|
1653
|
+
.tablet:p-x-large
|
|
1654
|
+
padding: var(--bal-space-x-large-tablet) !important
|
|
1655
|
+
|
|
907
1656
|
.p-xx-large
|
|
908
1657
|
padding: var(--bal-space-xx-large-tablet) !important
|
|
909
1658
|
|
|
1659
|
+
.tablet:p-xx-large
|
|
1660
|
+
padding: var(--bal-space-xx-large-tablet) !important
|
|
1661
|
+
|
|
910
1662
|
.p-xxx-large
|
|
911
1663
|
padding: var(--bal-space-xxx-large-tablet) !important
|
|
912
1664
|
|
|
1665
|
+
.tablet:p-xxx-large
|
|
1666
|
+
padding: var(--bal-space-xxx-large-tablet) !important
|
|
1667
|
+
|
|
913
1668
|
.p-xxxx-large
|
|
914
1669
|
padding: var(--bal-space-xxxx-large-tablet) !important
|
|
915
1670
|
|
|
1671
|
+
.tablet:p-xxxx-large
|
|
1672
|
+
padding: var(--bal-space-xxxx-large-tablet) !important
|
|
1673
|
+
|
|
916
1674
|
+desktop
|
|
917
1675
|
.p-none
|
|
918
1676
|
padding: 0 !important
|
|
@@ -923,33 +1681,63 @@
|
|
|
923
1681
|
.p-xx-small
|
|
924
1682
|
padding: var(--bal-space-xx-small-desktop) !important
|
|
925
1683
|
|
|
1684
|
+
.desktop:p-xx-small
|
|
1685
|
+
padding: var(--bal-space-xx-small-desktop) !important
|
|
1686
|
+
|
|
926
1687
|
.p-x-small
|
|
927
1688
|
padding: var(--bal-space-x-small-desktop) !important
|
|
928
1689
|
|
|
1690
|
+
.desktop:p-x-small
|
|
1691
|
+
padding: var(--bal-space-x-small-desktop) !important
|
|
1692
|
+
|
|
929
1693
|
.p-small
|
|
930
1694
|
padding: var(--bal-space-small-desktop) !important
|
|
931
1695
|
|
|
1696
|
+
.desktop:p-small
|
|
1697
|
+
padding: var(--bal-space-small-desktop) !important
|
|
1698
|
+
|
|
932
1699
|
.p-normal
|
|
933
1700
|
padding: var(--bal-space-normal-desktop) !important
|
|
934
1701
|
|
|
1702
|
+
.desktop:p-normal
|
|
1703
|
+
padding: var(--bal-space-normal-desktop) !important
|
|
1704
|
+
|
|
935
1705
|
.p-medium
|
|
936
1706
|
padding: var(--bal-space-medium-desktop) !important
|
|
937
1707
|
|
|
1708
|
+
.desktop:p-medium
|
|
1709
|
+
padding: var(--bal-space-medium-desktop) !important
|
|
1710
|
+
|
|
938
1711
|
.p-large
|
|
939
1712
|
padding: var(--bal-space-large-desktop) !important
|
|
940
1713
|
|
|
1714
|
+
.desktop:p-large
|
|
1715
|
+
padding: var(--bal-space-large-desktop) !important
|
|
1716
|
+
|
|
941
1717
|
.p-x-large
|
|
942
1718
|
padding: var(--bal-space-x-large-desktop) !important
|
|
943
1719
|
|
|
1720
|
+
.desktop:p-x-large
|
|
1721
|
+
padding: var(--bal-space-x-large-desktop) !important
|
|
1722
|
+
|
|
944
1723
|
.p-xx-large
|
|
945
1724
|
padding: var(--bal-space-xx-large-desktop) !important
|
|
946
1725
|
|
|
1726
|
+
.desktop:p-xx-large
|
|
1727
|
+
padding: var(--bal-space-xx-large-desktop) !important
|
|
1728
|
+
|
|
947
1729
|
.p-xxx-large
|
|
948
1730
|
padding: var(--bal-space-xxx-large-desktop) !important
|
|
949
1731
|
|
|
1732
|
+
.desktop:p-xxx-large
|
|
1733
|
+
padding: var(--bal-space-xxx-large-desktop) !important
|
|
1734
|
+
|
|
950
1735
|
.p-xxxx-large
|
|
951
1736
|
padding: var(--bal-space-xxxx-large-desktop) !important
|
|
952
1737
|
|
|
1738
|
+
.desktop:p-xxxx-large
|
|
1739
|
+
padding: var(--bal-space-xxxx-large-desktop) !important
|
|
1740
|
+
|
|
953
1741
|
.px-none
|
|
954
1742
|
padding-left: 0 !important
|
|
955
1743
|
padding-right: 0 !important
|
|
@@ -998,6 +1786,47 @@
|
|
|
998
1786
|
padding-left: var(--bal-space-xxxx-large) !important
|
|
999
1787
|
padding-right: var(--bal-space-xxxx-large) !important
|
|
1000
1788
|
|
|
1789
|
+
+mobile
|
|
1790
|
+
.mobile:px-xx-small
|
|
1791
|
+
padding-left: var(--bal-space-xx-small-mobile) !important
|
|
1792
|
+
padding-right: var(--bal-space-xx-small-mobile) !important
|
|
1793
|
+
|
|
1794
|
+
.mobile:px-x-small
|
|
1795
|
+
padding-left: var(--bal-space-x-small-mobile) !important
|
|
1796
|
+
padding-right: var(--bal-space-x-small-mobile) !important
|
|
1797
|
+
|
|
1798
|
+
.mobile:px-small
|
|
1799
|
+
padding-left: var(--bal-space-small-mobile) !important
|
|
1800
|
+
padding-right: var(--bal-space-small-mobile) !important
|
|
1801
|
+
|
|
1802
|
+
.mobile:px-normal
|
|
1803
|
+
padding-left: var(--bal-space-normal-mobile) !important
|
|
1804
|
+
padding-right: var(--bal-space-normal-mobile) !important
|
|
1805
|
+
|
|
1806
|
+
.mobile:px-medium
|
|
1807
|
+
padding-left: var(--bal-space-medium-mobile) !important
|
|
1808
|
+
padding-right: var(--bal-space-medium-mobile) !important
|
|
1809
|
+
|
|
1810
|
+
.mobile:px-large
|
|
1811
|
+
padding-left: var(--bal-space-large-mobile) !important
|
|
1812
|
+
padding-right: var(--bal-space-large-mobile) !important
|
|
1813
|
+
|
|
1814
|
+
.mobile:px-x-large
|
|
1815
|
+
padding-left: var(--bal-space-x-large-mobile) !important
|
|
1816
|
+
padding-right: var(--bal-space-x-large-mobile) !important
|
|
1817
|
+
|
|
1818
|
+
.mobile:px-xx-large
|
|
1819
|
+
padding-left: var(--bal-space-xx-large-mobile) !important
|
|
1820
|
+
padding-right: var(--bal-space-xx-large-mobile) !important
|
|
1821
|
+
|
|
1822
|
+
.mobile:px-xxx-large
|
|
1823
|
+
padding-left: var(--bal-space-xxx-large-mobile) !important
|
|
1824
|
+
padding-right: var(--bal-space-xxx-large-mobile) !important
|
|
1825
|
+
|
|
1826
|
+
.mobile:px-xxxx-large
|
|
1827
|
+
padding-left: var(--bal-space-xxxx-large-mobile) !important
|
|
1828
|
+
padding-right: var(--bal-space-xxxx-large-mobile) !important
|
|
1829
|
+
|
|
1001
1830
|
+tablet
|
|
1002
1831
|
.px-none
|
|
1003
1832
|
padding-left: 0 !important
|
|
@@ -1011,42 +1840,82 @@
|
|
|
1011
1840
|
padding-left: var(--bal-space-xx-small-tablet) !important
|
|
1012
1841
|
padding-right: var(--bal-space-xx-small-tablet) !important
|
|
1013
1842
|
|
|
1843
|
+
.tablet:px-xx-small
|
|
1844
|
+
padding-left: var(--bal-space-xx-small-tablet) !important
|
|
1845
|
+
padding-right: var(--bal-space-xx-small-tablet) !important
|
|
1846
|
+
|
|
1014
1847
|
.px-x-small
|
|
1015
1848
|
padding-left: var(--bal-space-x-small-tablet) !important
|
|
1016
1849
|
padding-right: var(--bal-space-x-small-tablet) !important
|
|
1017
1850
|
|
|
1851
|
+
.tablet:px-x-small
|
|
1852
|
+
padding-left: var(--bal-space-x-small-tablet) !important
|
|
1853
|
+
padding-right: var(--bal-space-x-small-tablet) !important
|
|
1854
|
+
|
|
1018
1855
|
.px-small
|
|
1019
1856
|
padding-left: var(--bal-space-small-tablet) !important
|
|
1020
1857
|
padding-right: var(--bal-space-small-tablet) !important
|
|
1021
1858
|
|
|
1859
|
+
.tablet:px-small
|
|
1860
|
+
padding-left: var(--bal-space-small-tablet) !important
|
|
1861
|
+
padding-right: var(--bal-space-small-tablet) !important
|
|
1862
|
+
|
|
1022
1863
|
.px-normal
|
|
1023
1864
|
padding-left: var(--bal-space-normal-tablet) !important
|
|
1024
1865
|
padding-right: var(--bal-space-normal-tablet) !important
|
|
1025
1866
|
|
|
1867
|
+
.tablet:px-normal
|
|
1868
|
+
padding-left: var(--bal-space-normal-tablet) !important
|
|
1869
|
+
padding-right: var(--bal-space-normal-tablet) !important
|
|
1870
|
+
|
|
1026
1871
|
.px-medium
|
|
1027
1872
|
padding-left: var(--bal-space-medium-tablet) !important
|
|
1028
1873
|
padding-right: var(--bal-space-medium-tablet) !important
|
|
1029
1874
|
|
|
1875
|
+
.tablet:px-medium
|
|
1876
|
+
padding-left: var(--bal-space-medium-tablet) !important
|
|
1877
|
+
padding-right: var(--bal-space-medium-tablet) !important
|
|
1878
|
+
|
|
1030
1879
|
.px-large
|
|
1031
1880
|
padding-left: var(--bal-space-large-tablet) !important
|
|
1032
1881
|
padding-right: var(--bal-space-large-tablet) !important
|
|
1033
1882
|
|
|
1883
|
+
.tablet:px-large
|
|
1884
|
+
padding-left: var(--bal-space-large-tablet) !important
|
|
1885
|
+
padding-right: var(--bal-space-large-tablet) !important
|
|
1886
|
+
|
|
1034
1887
|
.px-x-large
|
|
1035
1888
|
padding-left: var(--bal-space-x-large-tablet) !important
|
|
1036
1889
|
padding-right: var(--bal-space-x-large-tablet) !important
|
|
1037
1890
|
|
|
1891
|
+
.tablet:px-x-large
|
|
1892
|
+
padding-left: var(--bal-space-x-large-tablet) !important
|
|
1893
|
+
padding-right: var(--bal-space-x-large-tablet) !important
|
|
1894
|
+
|
|
1038
1895
|
.px-xx-large
|
|
1039
1896
|
padding-left: var(--bal-space-xx-large-tablet) !important
|
|
1040
1897
|
padding-right: var(--bal-space-xx-large-tablet) !important
|
|
1041
1898
|
|
|
1899
|
+
.tablet:px-xx-large
|
|
1900
|
+
padding-left: var(--bal-space-xx-large-tablet) !important
|
|
1901
|
+
padding-right: var(--bal-space-xx-large-tablet) !important
|
|
1902
|
+
|
|
1042
1903
|
.px-xxx-large
|
|
1043
1904
|
padding-left: var(--bal-space-xxx-large-tablet) !important
|
|
1044
1905
|
padding-right: var(--bal-space-xxx-large-tablet) !important
|
|
1045
1906
|
|
|
1907
|
+
.tablet:px-xxx-large
|
|
1908
|
+
padding-left: var(--bal-space-xxx-large-tablet) !important
|
|
1909
|
+
padding-right: var(--bal-space-xxx-large-tablet) !important
|
|
1910
|
+
|
|
1046
1911
|
.px-xxxx-large
|
|
1047
1912
|
padding-left: var(--bal-space-xxxx-large-tablet) !important
|
|
1048
1913
|
padding-right: var(--bal-space-xxxx-large-tablet) !important
|
|
1049
1914
|
|
|
1915
|
+
.tablet:px-xxxx-large
|
|
1916
|
+
padding-left: var(--bal-space-xxxx-large-tablet) !important
|
|
1917
|
+
padding-right: var(--bal-space-xxxx-large-tablet) !important
|
|
1918
|
+
|
|
1050
1919
|
+desktop
|
|
1051
1920
|
.px-none
|
|
1052
1921
|
padding-left: 0 !important
|
|
@@ -1060,42 +1929,82 @@
|
|
|
1060
1929
|
padding-left: var(--bal-space-xx-small-desktop) !important
|
|
1061
1930
|
padding-right: var(--bal-space-xx-small-desktop) !important
|
|
1062
1931
|
|
|
1932
|
+
.desktop:px-xx-small
|
|
1933
|
+
padding-left: var(--bal-space-xx-small-desktop) !important
|
|
1934
|
+
padding-right: var(--bal-space-xx-small-desktop) !important
|
|
1935
|
+
|
|
1063
1936
|
.px-x-small
|
|
1064
1937
|
padding-left: var(--bal-space-x-small-desktop) !important
|
|
1065
1938
|
padding-right: var(--bal-space-x-small-desktop) !important
|
|
1066
1939
|
|
|
1940
|
+
.desktop:px-x-small
|
|
1941
|
+
padding-left: var(--bal-space-x-small-desktop) !important
|
|
1942
|
+
padding-right: var(--bal-space-x-small-desktop) !important
|
|
1943
|
+
|
|
1067
1944
|
.px-small
|
|
1068
1945
|
padding-left: var(--bal-space-small-desktop) !important
|
|
1069
1946
|
padding-right: var(--bal-space-small-desktop) !important
|
|
1070
1947
|
|
|
1948
|
+
.desktop:px-small
|
|
1949
|
+
padding-left: var(--bal-space-small-desktop) !important
|
|
1950
|
+
padding-right: var(--bal-space-small-desktop) !important
|
|
1951
|
+
|
|
1071
1952
|
.px-normal
|
|
1072
1953
|
padding-left: var(--bal-space-normal-desktop) !important
|
|
1073
1954
|
padding-right: var(--bal-space-normal-desktop) !important
|
|
1074
1955
|
|
|
1956
|
+
.desktop:px-normal
|
|
1957
|
+
padding-left: var(--bal-space-normal-desktop) !important
|
|
1958
|
+
padding-right: var(--bal-space-normal-desktop) !important
|
|
1959
|
+
|
|
1075
1960
|
.px-medium
|
|
1076
1961
|
padding-left: var(--bal-space-medium-desktop) !important
|
|
1077
1962
|
padding-right: var(--bal-space-medium-desktop) !important
|
|
1078
1963
|
|
|
1964
|
+
.desktop:px-medium
|
|
1965
|
+
padding-left: var(--bal-space-medium-desktop) !important
|
|
1966
|
+
padding-right: var(--bal-space-medium-desktop) !important
|
|
1967
|
+
|
|
1079
1968
|
.px-large
|
|
1080
1969
|
padding-left: var(--bal-space-large-desktop) !important
|
|
1081
1970
|
padding-right: var(--bal-space-large-desktop) !important
|
|
1082
1971
|
|
|
1972
|
+
.desktop:px-large
|
|
1973
|
+
padding-left: var(--bal-space-large-desktop) !important
|
|
1974
|
+
padding-right: var(--bal-space-large-desktop) !important
|
|
1975
|
+
|
|
1083
1976
|
.px-x-large
|
|
1084
1977
|
padding-left: var(--bal-space-x-large-desktop) !important
|
|
1085
1978
|
padding-right: var(--bal-space-x-large-desktop) !important
|
|
1086
1979
|
|
|
1980
|
+
.desktop:px-x-large
|
|
1981
|
+
padding-left: var(--bal-space-x-large-desktop) !important
|
|
1982
|
+
padding-right: var(--bal-space-x-large-desktop) !important
|
|
1983
|
+
|
|
1087
1984
|
.px-xx-large
|
|
1088
1985
|
padding-left: var(--bal-space-xx-large-desktop) !important
|
|
1089
1986
|
padding-right: var(--bal-space-xx-large-desktop) !important
|
|
1090
1987
|
|
|
1988
|
+
.desktop:px-xx-large
|
|
1989
|
+
padding-left: var(--bal-space-xx-large-desktop) !important
|
|
1990
|
+
padding-right: var(--bal-space-xx-large-desktop) !important
|
|
1991
|
+
|
|
1091
1992
|
.px-xxx-large
|
|
1092
1993
|
padding-left: var(--bal-space-xxx-large-desktop) !important
|
|
1093
1994
|
padding-right: var(--bal-space-xxx-large-desktop) !important
|
|
1094
1995
|
|
|
1996
|
+
.desktop:px-xxx-large
|
|
1997
|
+
padding-left: var(--bal-space-xxx-large-desktop) !important
|
|
1998
|
+
padding-right: var(--bal-space-xxx-large-desktop) !important
|
|
1999
|
+
|
|
1095
2000
|
.px-xxxx-large
|
|
1096
2001
|
padding-left: var(--bal-space-xxxx-large-desktop) !important
|
|
1097
2002
|
padding-right: var(--bal-space-xxxx-large-desktop) !important
|
|
1098
2003
|
|
|
2004
|
+
.desktop:px-xxxx-large
|
|
2005
|
+
padding-left: var(--bal-space-xxxx-large-desktop) !important
|
|
2006
|
+
padding-right: var(--bal-space-xxxx-large-desktop) !important
|
|
2007
|
+
|
|
1099
2008
|
.py-none
|
|
1100
2009
|
padding-top: 0 !important
|
|
1101
2010
|
padding-bottom: 0 !important
|
|
@@ -1144,8 +2053,49 @@
|
|
|
1144
2053
|
padding-top: var(--bal-space-xxxx-large) !important
|
|
1145
2054
|
padding-bottom: var(--bal-space-xxxx-large) !important
|
|
1146
2055
|
|
|
1147
|
-
+
|
|
1148
|
-
.py-
|
|
2056
|
+
+mobile
|
|
2057
|
+
.mobile:py-xx-small
|
|
2058
|
+
padding-top: var(--bal-space-xx-small-mobile) !important
|
|
2059
|
+
padding-bottom: var(--bal-space-xx-small-mobile) !important
|
|
2060
|
+
|
|
2061
|
+
.mobile:py-x-small
|
|
2062
|
+
padding-top: var(--bal-space-x-small-mobile) !important
|
|
2063
|
+
padding-bottom: var(--bal-space-x-small-mobile) !important
|
|
2064
|
+
|
|
2065
|
+
.mobile:py-small
|
|
2066
|
+
padding-top: var(--bal-space-small-mobile) !important
|
|
2067
|
+
padding-bottom: var(--bal-space-small-mobile) !important
|
|
2068
|
+
|
|
2069
|
+
.mobile:py-normal
|
|
2070
|
+
padding-top: var(--bal-space-normal-mobile) !important
|
|
2071
|
+
padding-bottom: var(--bal-space-normal-mobile) !important
|
|
2072
|
+
|
|
2073
|
+
.mobile:py-medium
|
|
2074
|
+
padding-top: var(--bal-space-medium-mobile) !important
|
|
2075
|
+
padding-bottom: var(--bal-space-medium-mobile) !important
|
|
2076
|
+
|
|
2077
|
+
.mobile:py-large
|
|
2078
|
+
padding-top: var(--bal-space-large-mobile) !important
|
|
2079
|
+
padding-bottom: var(--bal-space-large-mobile) !important
|
|
2080
|
+
|
|
2081
|
+
.mobile:py-x-large
|
|
2082
|
+
padding-top: var(--bal-space-x-large-mobile) !important
|
|
2083
|
+
padding-bottom: var(--bal-space-x-large-mobile) !important
|
|
2084
|
+
|
|
2085
|
+
.mobile:py-xx-large
|
|
2086
|
+
padding-top: var(--bal-space-xx-large-mobile) !important
|
|
2087
|
+
padding-bottom: var(--bal-space-xx-large-mobile) !important
|
|
2088
|
+
|
|
2089
|
+
.mobile:py-xxx-large
|
|
2090
|
+
padding-top: var(--bal-space-xxx-large-mobile) !important
|
|
2091
|
+
padding-bottom: var(--bal-space-xxx-large-mobile) !important
|
|
2092
|
+
|
|
2093
|
+
.mobile:py-xxxx-large
|
|
2094
|
+
padding-top: var(--bal-space-xxxx-large-mobile) !important
|
|
2095
|
+
padding-bottom: var(--bal-space-xxxx-large-mobile) !important
|
|
2096
|
+
|
|
2097
|
+
+tablet
|
|
2098
|
+
.py-none
|
|
1149
2099
|
padding-top: 0 !important
|
|
1150
2100
|
padding-bottom: 0 !important
|
|
1151
2101
|
|
|
@@ -1157,42 +2107,82 @@
|
|
|
1157
2107
|
padding-top: var(--bal-space-xx-small-tablet) !important
|
|
1158
2108
|
padding-bottom: var(--bal-space-xx-small-tablet) !important
|
|
1159
2109
|
|
|
2110
|
+
.tablet:py-xx-small
|
|
2111
|
+
padding-top: var(--bal-space-xx-small-tablet) !important
|
|
2112
|
+
padding-bottom: var(--bal-space-xx-small-tablet) !important
|
|
2113
|
+
|
|
1160
2114
|
.py-x-small
|
|
1161
2115
|
padding-top: var(--bal-space-x-small-tablet) !important
|
|
1162
2116
|
padding-bottom: var(--bal-space-x-small-tablet) !important
|
|
1163
2117
|
|
|
2118
|
+
.tablet:py-x-small
|
|
2119
|
+
padding-top: var(--bal-space-x-small-tablet) !important
|
|
2120
|
+
padding-bottom: var(--bal-space-x-small-tablet) !important
|
|
2121
|
+
|
|
1164
2122
|
.py-small
|
|
1165
2123
|
padding-top: var(--bal-space-small-tablet) !important
|
|
1166
2124
|
padding-bottom: var(--bal-space-small-tablet) !important
|
|
1167
2125
|
|
|
2126
|
+
.tablet:py-small
|
|
2127
|
+
padding-top: var(--bal-space-small-tablet) !important
|
|
2128
|
+
padding-bottom: var(--bal-space-small-tablet) !important
|
|
2129
|
+
|
|
1168
2130
|
.py-normal
|
|
1169
2131
|
padding-top: var(--bal-space-normal-tablet) !important
|
|
1170
2132
|
padding-bottom: var(--bal-space-normal-tablet) !important
|
|
1171
2133
|
|
|
2134
|
+
.tablet:py-normal
|
|
2135
|
+
padding-top: var(--bal-space-normal-tablet) !important
|
|
2136
|
+
padding-bottom: var(--bal-space-normal-tablet) !important
|
|
2137
|
+
|
|
1172
2138
|
.py-medium
|
|
1173
2139
|
padding-top: var(--bal-space-medium-tablet) !important
|
|
1174
2140
|
padding-bottom: var(--bal-space-medium-tablet) !important
|
|
1175
2141
|
|
|
2142
|
+
.tablet:py-medium
|
|
2143
|
+
padding-top: var(--bal-space-medium-tablet) !important
|
|
2144
|
+
padding-bottom: var(--bal-space-medium-tablet) !important
|
|
2145
|
+
|
|
1176
2146
|
.py-large
|
|
1177
2147
|
padding-top: var(--bal-space-large-tablet) !important
|
|
1178
2148
|
padding-bottom: var(--bal-space-large-tablet) !important
|
|
1179
2149
|
|
|
2150
|
+
.tablet:py-large
|
|
2151
|
+
padding-top: var(--bal-space-large-tablet) !important
|
|
2152
|
+
padding-bottom: var(--bal-space-large-tablet) !important
|
|
2153
|
+
|
|
1180
2154
|
.py-x-large
|
|
1181
2155
|
padding-top: var(--bal-space-x-large-tablet) !important
|
|
1182
2156
|
padding-bottom: var(--bal-space-x-large-tablet) !important
|
|
1183
2157
|
|
|
2158
|
+
.tablet:py-x-large
|
|
2159
|
+
padding-top: var(--bal-space-x-large-tablet) !important
|
|
2160
|
+
padding-bottom: var(--bal-space-x-large-tablet) !important
|
|
2161
|
+
|
|
1184
2162
|
.py-xx-large
|
|
1185
2163
|
padding-top: var(--bal-space-xx-large-tablet) !important
|
|
1186
2164
|
padding-bottom: var(--bal-space-xx-large-tablet) !important
|
|
1187
2165
|
|
|
2166
|
+
.tablet:py-xx-large
|
|
2167
|
+
padding-top: var(--bal-space-xx-large-tablet) !important
|
|
2168
|
+
padding-bottom: var(--bal-space-xx-large-tablet) !important
|
|
2169
|
+
|
|
1188
2170
|
.py-xxx-large
|
|
1189
2171
|
padding-top: var(--bal-space-xxx-large-tablet) !important
|
|
1190
2172
|
padding-bottom: var(--bal-space-xxx-large-tablet) !important
|
|
1191
2173
|
|
|
2174
|
+
.tablet:py-xxx-large
|
|
2175
|
+
padding-top: var(--bal-space-xxx-large-tablet) !important
|
|
2176
|
+
padding-bottom: var(--bal-space-xxx-large-tablet) !important
|
|
2177
|
+
|
|
1192
2178
|
.py-xxxx-large
|
|
1193
2179
|
padding-top: var(--bal-space-xxxx-large-tablet) !important
|
|
1194
2180
|
padding-bottom: var(--bal-space-xxxx-large-tablet) !important
|
|
1195
2181
|
|
|
2182
|
+
.tablet:py-xxxx-large
|
|
2183
|
+
padding-top: var(--bal-space-xxxx-large-tablet) !important
|
|
2184
|
+
padding-bottom: var(--bal-space-xxxx-large-tablet) !important
|
|
2185
|
+
|
|
1196
2186
|
+desktop
|
|
1197
2187
|
.py-none
|
|
1198
2188
|
padding-top: 0 !important
|
|
@@ -1206,42 +2196,82 @@
|
|
|
1206
2196
|
padding-top: var(--bal-space-xx-small-desktop) !important
|
|
1207
2197
|
padding-bottom: var(--bal-space-xx-small-desktop) !important
|
|
1208
2198
|
|
|
2199
|
+
.desktop:py-xx-small
|
|
2200
|
+
padding-top: var(--bal-space-xx-small-desktop) !important
|
|
2201
|
+
padding-bottom: var(--bal-space-xx-small-desktop) !important
|
|
2202
|
+
|
|
1209
2203
|
.py-x-small
|
|
1210
2204
|
padding-top: var(--bal-space-x-small-desktop) !important
|
|
1211
2205
|
padding-bottom: var(--bal-space-x-small-desktop) !important
|
|
1212
2206
|
|
|
2207
|
+
.desktop:py-x-small
|
|
2208
|
+
padding-top: var(--bal-space-x-small-desktop) !important
|
|
2209
|
+
padding-bottom: var(--bal-space-x-small-desktop) !important
|
|
2210
|
+
|
|
1213
2211
|
.py-small
|
|
1214
2212
|
padding-top: var(--bal-space-small-desktop) !important
|
|
1215
2213
|
padding-bottom: var(--bal-space-small-desktop) !important
|
|
1216
2214
|
|
|
2215
|
+
.desktop:py-small
|
|
2216
|
+
padding-top: var(--bal-space-small-desktop) !important
|
|
2217
|
+
padding-bottom: var(--bal-space-small-desktop) !important
|
|
2218
|
+
|
|
1217
2219
|
.py-normal
|
|
1218
2220
|
padding-top: var(--bal-space-normal-desktop) !important
|
|
1219
2221
|
padding-bottom: var(--bal-space-normal-desktop) !important
|
|
1220
2222
|
|
|
2223
|
+
.desktop:py-normal
|
|
2224
|
+
padding-top: var(--bal-space-normal-desktop) !important
|
|
2225
|
+
padding-bottom: var(--bal-space-normal-desktop) !important
|
|
2226
|
+
|
|
1221
2227
|
.py-medium
|
|
1222
2228
|
padding-top: var(--bal-space-medium-desktop) !important
|
|
1223
2229
|
padding-bottom: var(--bal-space-medium-desktop) !important
|
|
1224
2230
|
|
|
2231
|
+
.desktop:py-medium
|
|
2232
|
+
padding-top: var(--bal-space-medium-desktop) !important
|
|
2233
|
+
padding-bottom: var(--bal-space-medium-desktop) !important
|
|
2234
|
+
|
|
1225
2235
|
.py-large
|
|
1226
2236
|
padding-top: var(--bal-space-large-desktop) !important
|
|
1227
2237
|
padding-bottom: var(--bal-space-large-desktop) !important
|
|
1228
2238
|
|
|
2239
|
+
.desktop:py-large
|
|
2240
|
+
padding-top: var(--bal-space-large-desktop) !important
|
|
2241
|
+
padding-bottom: var(--bal-space-large-desktop) !important
|
|
2242
|
+
|
|
1229
2243
|
.py-x-large
|
|
1230
2244
|
padding-top: var(--bal-space-x-large-desktop) !important
|
|
1231
2245
|
padding-bottom: var(--bal-space-x-large-desktop) !important
|
|
1232
2246
|
|
|
2247
|
+
.desktop:py-x-large
|
|
2248
|
+
padding-top: var(--bal-space-x-large-desktop) !important
|
|
2249
|
+
padding-bottom: var(--bal-space-x-large-desktop) !important
|
|
2250
|
+
|
|
1233
2251
|
.py-xx-large
|
|
1234
2252
|
padding-top: var(--bal-space-xx-large-desktop) !important
|
|
1235
2253
|
padding-bottom: var(--bal-space-xx-large-desktop) !important
|
|
1236
2254
|
|
|
2255
|
+
.desktop:py-xx-large
|
|
2256
|
+
padding-top: var(--bal-space-xx-large-desktop) !important
|
|
2257
|
+
padding-bottom: var(--bal-space-xx-large-desktop) !important
|
|
2258
|
+
|
|
1237
2259
|
.py-xxx-large
|
|
1238
2260
|
padding-top: var(--bal-space-xxx-large-desktop) !important
|
|
1239
2261
|
padding-bottom: var(--bal-space-xxx-large-desktop) !important
|
|
1240
2262
|
|
|
2263
|
+
.desktop:py-xxx-large
|
|
2264
|
+
padding-top: var(--bal-space-xxx-large-desktop) !important
|
|
2265
|
+
padding-bottom: var(--bal-space-xxx-large-desktop) !important
|
|
2266
|
+
|
|
1241
2267
|
.py-xxxx-large
|
|
1242
2268
|
padding-top: var(--bal-space-xxxx-large-desktop) !important
|
|
1243
2269
|
padding-bottom: var(--bal-space-xxxx-large-desktop) !important
|
|
1244
2270
|
|
|
2271
|
+
.desktop:py-xxxx-large
|
|
2272
|
+
padding-top: var(--bal-space-xxxx-large-desktop) !important
|
|
2273
|
+
padding-bottom: var(--bal-space-xxxx-large-desktop) !important
|
|
2274
|
+
|
|
1245
2275
|
.pt-none
|
|
1246
2276
|
padding-top: 0 !important
|
|
1247
2277
|
|
|
@@ -1278,6 +2308,37 @@
|
|
|
1278
2308
|
.pt-xxxx-large
|
|
1279
2309
|
padding-top: var(--bal-space-xxxx-large) !important
|
|
1280
2310
|
|
|
2311
|
+
+mobile
|
|
2312
|
+
.mobile:pt-xx-small
|
|
2313
|
+
padding-top: var(--bal-space-xx-small-mobile) !important
|
|
2314
|
+
|
|
2315
|
+
.mobile:pt-x-small
|
|
2316
|
+
padding-top: var(--bal-space-x-small-mobile) !important
|
|
2317
|
+
|
|
2318
|
+
.mobile:pt-small
|
|
2319
|
+
padding-top: var(--bal-space-small-mobile) !important
|
|
2320
|
+
|
|
2321
|
+
.mobile:pt-normal
|
|
2322
|
+
padding-top: var(--bal-space-normal-mobile) !important
|
|
2323
|
+
|
|
2324
|
+
.mobile:pt-medium
|
|
2325
|
+
padding-top: var(--bal-space-medium-mobile) !important
|
|
2326
|
+
|
|
2327
|
+
.mobile:pt-large
|
|
2328
|
+
padding-top: var(--bal-space-large-mobile) !important
|
|
2329
|
+
|
|
2330
|
+
.mobile:pt-x-large
|
|
2331
|
+
padding-top: var(--bal-space-x-large-mobile) !important
|
|
2332
|
+
|
|
2333
|
+
.mobile:pt-xx-large
|
|
2334
|
+
padding-top: var(--bal-space-xx-large-mobile) !important
|
|
2335
|
+
|
|
2336
|
+
.mobile:pt-xxx-large
|
|
2337
|
+
padding-top: var(--bal-space-xxx-large-mobile) !important
|
|
2338
|
+
|
|
2339
|
+
.mobile:pt-xxxx-large
|
|
2340
|
+
padding-top: var(--bal-space-xxxx-large-mobile) !important
|
|
2341
|
+
|
|
1281
2342
|
+tablet
|
|
1282
2343
|
.pt-none
|
|
1283
2344
|
padding-top: 0 !important
|
|
@@ -1288,33 +2349,63 @@
|
|
|
1288
2349
|
.pt-xx-small
|
|
1289
2350
|
padding-top: var(--bal-space-xx-small-tablet) !important
|
|
1290
2351
|
|
|
2352
|
+
.tablet:pt-xx-small
|
|
2353
|
+
padding-top: var(--bal-space-xx-small-tablet) !important
|
|
2354
|
+
|
|
1291
2355
|
.pt-x-small
|
|
1292
2356
|
padding-top: var(--bal-space-x-small-tablet) !important
|
|
1293
2357
|
|
|
2358
|
+
.tablet:pt-x-small
|
|
2359
|
+
padding-top: var(--bal-space-x-small-tablet) !important
|
|
2360
|
+
|
|
1294
2361
|
.pt-small
|
|
1295
2362
|
padding-top: var(--bal-space-small-tablet) !important
|
|
1296
2363
|
|
|
2364
|
+
.tablet:pt-small
|
|
2365
|
+
padding-top: var(--bal-space-small-tablet) !important
|
|
2366
|
+
|
|
1297
2367
|
.pt-normal
|
|
1298
2368
|
padding-top: var(--bal-space-normal-tablet) !important
|
|
1299
2369
|
|
|
2370
|
+
.tablet:pt-normal
|
|
2371
|
+
padding-top: var(--bal-space-normal-tablet) !important
|
|
2372
|
+
|
|
1300
2373
|
.pt-medium
|
|
1301
2374
|
padding-top: var(--bal-space-medium-tablet) !important
|
|
1302
2375
|
|
|
2376
|
+
.tablet:pt-medium
|
|
2377
|
+
padding-top: var(--bal-space-medium-tablet) !important
|
|
2378
|
+
|
|
1303
2379
|
.pt-large
|
|
1304
2380
|
padding-top: var(--bal-space-large-tablet) !important
|
|
1305
2381
|
|
|
2382
|
+
.tablet:pt-large
|
|
2383
|
+
padding-top: var(--bal-space-large-tablet) !important
|
|
2384
|
+
|
|
1306
2385
|
.pt-x-large
|
|
1307
2386
|
padding-top: var(--bal-space-x-large-tablet) !important
|
|
1308
2387
|
|
|
2388
|
+
.tablet:pt-x-large
|
|
2389
|
+
padding-top: var(--bal-space-x-large-tablet) !important
|
|
2390
|
+
|
|
1309
2391
|
.pt-xx-large
|
|
1310
2392
|
padding-top: var(--bal-space-xx-large-tablet) !important
|
|
1311
2393
|
|
|
2394
|
+
.tablet:pt-xx-large
|
|
2395
|
+
padding-top: var(--bal-space-xx-large-tablet) !important
|
|
2396
|
+
|
|
1312
2397
|
.pt-xxx-large
|
|
1313
2398
|
padding-top: var(--bal-space-xxx-large-tablet) !important
|
|
1314
2399
|
|
|
2400
|
+
.tablet:pt-xxx-large
|
|
2401
|
+
padding-top: var(--bal-space-xxx-large-tablet) !important
|
|
2402
|
+
|
|
1315
2403
|
.pt-xxxx-large
|
|
1316
2404
|
padding-top: var(--bal-space-xxxx-large-tablet) !important
|
|
1317
2405
|
|
|
2406
|
+
.tablet:pt-xxxx-large
|
|
2407
|
+
padding-top: var(--bal-space-xxxx-large-tablet) !important
|
|
2408
|
+
|
|
1318
2409
|
+desktop
|
|
1319
2410
|
.pt-none
|
|
1320
2411
|
padding-top: 0 !important
|
|
@@ -1325,33 +2416,63 @@
|
|
|
1325
2416
|
.pt-xx-small
|
|
1326
2417
|
padding-top: var(--bal-space-xx-small-desktop) !important
|
|
1327
2418
|
|
|
2419
|
+
.desktop:pt-xx-small
|
|
2420
|
+
padding-top: var(--bal-space-xx-small-desktop) !important
|
|
2421
|
+
|
|
1328
2422
|
.pt-x-small
|
|
1329
2423
|
padding-top: var(--bal-space-x-small-desktop) !important
|
|
1330
2424
|
|
|
2425
|
+
.desktop:pt-x-small
|
|
2426
|
+
padding-top: var(--bal-space-x-small-desktop) !important
|
|
2427
|
+
|
|
1331
2428
|
.pt-small
|
|
1332
2429
|
padding-top: var(--bal-space-small-desktop) !important
|
|
1333
2430
|
|
|
2431
|
+
.desktop:pt-small
|
|
2432
|
+
padding-top: var(--bal-space-small-desktop) !important
|
|
2433
|
+
|
|
1334
2434
|
.pt-normal
|
|
1335
2435
|
padding-top: var(--bal-space-normal-desktop) !important
|
|
1336
2436
|
|
|
2437
|
+
.desktop:pt-normal
|
|
2438
|
+
padding-top: var(--bal-space-normal-desktop) !important
|
|
2439
|
+
|
|
1337
2440
|
.pt-medium
|
|
1338
2441
|
padding-top: var(--bal-space-medium-desktop) !important
|
|
1339
2442
|
|
|
2443
|
+
.desktop:pt-medium
|
|
2444
|
+
padding-top: var(--bal-space-medium-desktop) !important
|
|
2445
|
+
|
|
1340
2446
|
.pt-large
|
|
1341
2447
|
padding-top: var(--bal-space-large-desktop) !important
|
|
1342
2448
|
|
|
2449
|
+
.desktop:pt-large
|
|
2450
|
+
padding-top: var(--bal-space-large-desktop) !important
|
|
2451
|
+
|
|
1343
2452
|
.pt-x-large
|
|
1344
2453
|
padding-top: var(--bal-space-x-large-desktop) !important
|
|
1345
2454
|
|
|
2455
|
+
.desktop:pt-x-large
|
|
2456
|
+
padding-top: var(--bal-space-x-large-desktop) !important
|
|
2457
|
+
|
|
1346
2458
|
.pt-xx-large
|
|
1347
2459
|
padding-top: var(--bal-space-xx-large-desktop) !important
|
|
1348
2460
|
|
|
2461
|
+
.desktop:pt-xx-large
|
|
2462
|
+
padding-top: var(--bal-space-xx-large-desktop) !important
|
|
2463
|
+
|
|
1349
2464
|
.pt-xxx-large
|
|
1350
2465
|
padding-top: var(--bal-space-xxx-large-desktop) !important
|
|
1351
2466
|
|
|
2467
|
+
.desktop:pt-xxx-large
|
|
2468
|
+
padding-top: var(--bal-space-xxx-large-desktop) !important
|
|
2469
|
+
|
|
1352
2470
|
.pt-xxxx-large
|
|
1353
2471
|
padding-top: var(--bal-space-xxxx-large-desktop) !important
|
|
1354
2472
|
|
|
2473
|
+
.desktop:pt-xxxx-large
|
|
2474
|
+
padding-top: var(--bal-space-xxxx-large-desktop) !important
|
|
2475
|
+
|
|
1355
2476
|
.pr-none
|
|
1356
2477
|
padding-right: 0 !important
|
|
1357
2478
|
|
|
@@ -1388,6 +2509,37 @@
|
|
|
1388
2509
|
.pr-xxxx-large
|
|
1389
2510
|
padding-right: var(--bal-space-xxxx-large) !important
|
|
1390
2511
|
|
|
2512
|
+
+mobile
|
|
2513
|
+
.mobile:pr-xx-small
|
|
2514
|
+
padding-right: var(--bal-space-xx-small-mobile) !important
|
|
2515
|
+
|
|
2516
|
+
.mobile:pr-x-small
|
|
2517
|
+
padding-right: var(--bal-space-x-small-mobile) !important
|
|
2518
|
+
|
|
2519
|
+
.mobile:pr-small
|
|
2520
|
+
padding-right: var(--bal-space-small-mobile) !important
|
|
2521
|
+
|
|
2522
|
+
.mobile:pr-normal
|
|
2523
|
+
padding-right: var(--bal-space-normal-mobile) !important
|
|
2524
|
+
|
|
2525
|
+
.mobile:pr-medium
|
|
2526
|
+
padding-right: var(--bal-space-medium-mobile) !important
|
|
2527
|
+
|
|
2528
|
+
.mobile:pr-large
|
|
2529
|
+
padding-right: var(--bal-space-large-mobile) !important
|
|
2530
|
+
|
|
2531
|
+
.mobile:pr-x-large
|
|
2532
|
+
padding-right: var(--bal-space-x-large-mobile) !important
|
|
2533
|
+
|
|
2534
|
+
.mobile:pr-xx-large
|
|
2535
|
+
padding-right: var(--bal-space-xx-large-mobile) !important
|
|
2536
|
+
|
|
2537
|
+
.mobile:pr-xxx-large
|
|
2538
|
+
padding-right: var(--bal-space-xxx-large-mobile) !important
|
|
2539
|
+
|
|
2540
|
+
.mobile:pr-xxxx-large
|
|
2541
|
+
padding-right: var(--bal-space-xxxx-large-mobile) !important
|
|
2542
|
+
|
|
1391
2543
|
+tablet
|
|
1392
2544
|
.pr-none
|
|
1393
2545
|
padding-right: 0 !important
|
|
@@ -1398,33 +2550,63 @@
|
|
|
1398
2550
|
.pr-xx-small
|
|
1399
2551
|
padding-right: var(--bal-space-xx-small-tablet) !important
|
|
1400
2552
|
|
|
2553
|
+
.tablet:pr-xx-small
|
|
2554
|
+
padding-right: var(--bal-space-xx-small-tablet) !important
|
|
2555
|
+
|
|
1401
2556
|
.pr-x-small
|
|
1402
2557
|
padding-right: var(--bal-space-x-small-tablet) !important
|
|
1403
2558
|
|
|
2559
|
+
.tablet:pr-x-small
|
|
2560
|
+
padding-right: var(--bal-space-x-small-tablet) !important
|
|
2561
|
+
|
|
1404
2562
|
.pr-small
|
|
1405
2563
|
padding-right: var(--bal-space-small-tablet) !important
|
|
1406
2564
|
|
|
2565
|
+
.tablet:pr-small
|
|
2566
|
+
padding-right: var(--bal-space-small-tablet) !important
|
|
2567
|
+
|
|
1407
2568
|
.pr-normal
|
|
1408
2569
|
padding-right: var(--bal-space-normal-tablet) !important
|
|
1409
2570
|
|
|
2571
|
+
.tablet:pr-normal
|
|
2572
|
+
padding-right: var(--bal-space-normal-tablet) !important
|
|
2573
|
+
|
|
1410
2574
|
.pr-medium
|
|
1411
2575
|
padding-right: var(--bal-space-medium-tablet) !important
|
|
1412
2576
|
|
|
2577
|
+
.tablet:pr-medium
|
|
2578
|
+
padding-right: var(--bal-space-medium-tablet) !important
|
|
2579
|
+
|
|
1413
2580
|
.pr-large
|
|
1414
2581
|
padding-right: var(--bal-space-large-tablet) !important
|
|
1415
2582
|
|
|
2583
|
+
.tablet:pr-large
|
|
2584
|
+
padding-right: var(--bal-space-large-tablet) !important
|
|
2585
|
+
|
|
1416
2586
|
.pr-x-large
|
|
1417
2587
|
padding-right: var(--bal-space-x-large-tablet) !important
|
|
1418
2588
|
|
|
2589
|
+
.tablet:pr-x-large
|
|
2590
|
+
padding-right: var(--bal-space-x-large-tablet) !important
|
|
2591
|
+
|
|
1419
2592
|
.pr-xx-large
|
|
1420
2593
|
padding-right: var(--bal-space-xx-large-tablet) !important
|
|
1421
2594
|
|
|
2595
|
+
.tablet:pr-xx-large
|
|
2596
|
+
padding-right: var(--bal-space-xx-large-tablet) !important
|
|
2597
|
+
|
|
1422
2598
|
.pr-xxx-large
|
|
1423
2599
|
padding-right: var(--bal-space-xxx-large-tablet) !important
|
|
1424
2600
|
|
|
2601
|
+
.tablet:pr-xxx-large
|
|
2602
|
+
padding-right: var(--bal-space-xxx-large-tablet) !important
|
|
2603
|
+
|
|
1425
2604
|
.pr-xxxx-large
|
|
1426
2605
|
padding-right: var(--bal-space-xxxx-large-tablet) !important
|
|
1427
2606
|
|
|
2607
|
+
.tablet:pr-xxxx-large
|
|
2608
|
+
padding-right: var(--bal-space-xxxx-large-tablet) !important
|
|
2609
|
+
|
|
1428
2610
|
+desktop
|
|
1429
2611
|
.pr-none
|
|
1430
2612
|
padding-right: 0 !important
|
|
@@ -1435,33 +2617,63 @@
|
|
|
1435
2617
|
.pr-xx-small
|
|
1436
2618
|
padding-right: var(--bal-space-xx-small-desktop) !important
|
|
1437
2619
|
|
|
2620
|
+
.desktop:pr-xx-small
|
|
2621
|
+
padding-right: var(--bal-space-xx-small-desktop) !important
|
|
2622
|
+
|
|
1438
2623
|
.pr-x-small
|
|
1439
2624
|
padding-right: var(--bal-space-x-small-desktop) !important
|
|
1440
2625
|
|
|
2626
|
+
.desktop:pr-x-small
|
|
2627
|
+
padding-right: var(--bal-space-x-small-desktop) !important
|
|
2628
|
+
|
|
1441
2629
|
.pr-small
|
|
1442
2630
|
padding-right: var(--bal-space-small-desktop) !important
|
|
1443
2631
|
|
|
2632
|
+
.desktop:pr-small
|
|
2633
|
+
padding-right: var(--bal-space-small-desktop) !important
|
|
2634
|
+
|
|
1444
2635
|
.pr-normal
|
|
1445
2636
|
padding-right: var(--bal-space-normal-desktop) !important
|
|
1446
2637
|
|
|
2638
|
+
.desktop:pr-normal
|
|
2639
|
+
padding-right: var(--bal-space-normal-desktop) !important
|
|
2640
|
+
|
|
1447
2641
|
.pr-medium
|
|
1448
2642
|
padding-right: var(--bal-space-medium-desktop) !important
|
|
1449
2643
|
|
|
2644
|
+
.desktop:pr-medium
|
|
2645
|
+
padding-right: var(--bal-space-medium-desktop) !important
|
|
2646
|
+
|
|
1450
2647
|
.pr-large
|
|
1451
2648
|
padding-right: var(--bal-space-large-desktop) !important
|
|
1452
2649
|
|
|
2650
|
+
.desktop:pr-large
|
|
2651
|
+
padding-right: var(--bal-space-large-desktop) !important
|
|
2652
|
+
|
|
1453
2653
|
.pr-x-large
|
|
1454
2654
|
padding-right: var(--bal-space-x-large-desktop) !important
|
|
1455
2655
|
|
|
2656
|
+
.desktop:pr-x-large
|
|
2657
|
+
padding-right: var(--bal-space-x-large-desktop) !important
|
|
2658
|
+
|
|
1456
2659
|
.pr-xx-large
|
|
1457
2660
|
padding-right: var(--bal-space-xx-large-desktop) !important
|
|
1458
2661
|
|
|
2662
|
+
.desktop:pr-xx-large
|
|
2663
|
+
padding-right: var(--bal-space-xx-large-desktop) !important
|
|
2664
|
+
|
|
1459
2665
|
.pr-xxx-large
|
|
1460
2666
|
padding-right: var(--bal-space-xxx-large-desktop) !important
|
|
1461
2667
|
|
|
2668
|
+
.desktop:pr-xxx-large
|
|
2669
|
+
padding-right: var(--bal-space-xxx-large-desktop) !important
|
|
2670
|
+
|
|
1462
2671
|
.pr-xxxx-large
|
|
1463
2672
|
padding-right: var(--bal-space-xxxx-large-desktop) !important
|
|
1464
2673
|
|
|
2674
|
+
.desktop:pr-xxxx-large
|
|
2675
|
+
padding-right: var(--bal-space-xxxx-large-desktop) !important
|
|
2676
|
+
|
|
1465
2677
|
.pb-none
|
|
1466
2678
|
padding-bottom: 0 !important
|
|
1467
2679
|
|
|
@@ -1498,6 +2710,37 @@
|
|
|
1498
2710
|
.pb-xxxx-large
|
|
1499
2711
|
padding-bottom: var(--bal-space-xxxx-large) !important
|
|
1500
2712
|
|
|
2713
|
+
+mobile
|
|
2714
|
+
.mobile:pb-xx-small
|
|
2715
|
+
padding-bottom: var(--bal-space-xx-small-mobile) !important
|
|
2716
|
+
|
|
2717
|
+
.mobile:pb-x-small
|
|
2718
|
+
padding-bottom: var(--bal-space-x-small-mobile) !important
|
|
2719
|
+
|
|
2720
|
+
.mobile:pb-small
|
|
2721
|
+
padding-bottom: var(--bal-space-small-mobile) !important
|
|
2722
|
+
|
|
2723
|
+
.mobile:pb-normal
|
|
2724
|
+
padding-bottom: var(--bal-space-normal-mobile) !important
|
|
2725
|
+
|
|
2726
|
+
.mobile:pb-medium
|
|
2727
|
+
padding-bottom: var(--bal-space-medium-mobile) !important
|
|
2728
|
+
|
|
2729
|
+
.mobile:pb-large
|
|
2730
|
+
padding-bottom: var(--bal-space-large-mobile) !important
|
|
2731
|
+
|
|
2732
|
+
.mobile:pb-x-large
|
|
2733
|
+
padding-bottom: var(--bal-space-x-large-mobile) !important
|
|
2734
|
+
|
|
2735
|
+
.mobile:pb-xx-large
|
|
2736
|
+
padding-bottom: var(--bal-space-xx-large-mobile) !important
|
|
2737
|
+
|
|
2738
|
+
.mobile:pb-xxx-large
|
|
2739
|
+
padding-bottom: var(--bal-space-xxx-large-mobile) !important
|
|
2740
|
+
|
|
2741
|
+
.mobile:pb-xxxx-large
|
|
2742
|
+
padding-bottom: var(--bal-space-xxxx-large-mobile) !important
|
|
2743
|
+
|
|
1501
2744
|
+tablet
|
|
1502
2745
|
.pb-none
|
|
1503
2746
|
padding-bottom: 0 !important
|
|
@@ -1508,33 +2751,63 @@
|
|
|
1508
2751
|
.pb-xx-small
|
|
1509
2752
|
padding-bottom: var(--bal-space-xx-small-tablet) !important
|
|
1510
2753
|
|
|
2754
|
+
.tablet:pb-xx-small
|
|
2755
|
+
padding-bottom: var(--bal-space-xx-small-tablet) !important
|
|
2756
|
+
|
|
1511
2757
|
.pb-x-small
|
|
1512
2758
|
padding-bottom: var(--bal-space-x-small-tablet) !important
|
|
1513
2759
|
|
|
2760
|
+
.tablet:pb-x-small
|
|
2761
|
+
padding-bottom: var(--bal-space-x-small-tablet) !important
|
|
2762
|
+
|
|
1514
2763
|
.pb-small
|
|
1515
2764
|
padding-bottom: var(--bal-space-small-tablet) !important
|
|
1516
2765
|
|
|
2766
|
+
.tablet:pb-small
|
|
2767
|
+
padding-bottom: var(--bal-space-small-tablet) !important
|
|
2768
|
+
|
|
1517
2769
|
.pb-normal
|
|
1518
2770
|
padding-bottom: var(--bal-space-normal-tablet) !important
|
|
1519
2771
|
|
|
2772
|
+
.tablet:pb-normal
|
|
2773
|
+
padding-bottom: var(--bal-space-normal-tablet) !important
|
|
2774
|
+
|
|
1520
2775
|
.pb-medium
|
|
1521
2776
|
padding-bottom: var(--bal-space-medium-tablet) !important
|
|
1522
2777
|
|
|
2778
|
+
.tablet:pb-medium
|
|
2779
|
+
padding-bottom: var(--bal-space-medium-tablet) !important
|
|
2780
|
+
|
|
1523
2781
|
.pb-large
|
|
1524
2782
|
padding-bottom: var(--bal-space-large-tablet) !important
|
|
1525
2783
|
|
|
2784
|
+
.tablet:pb-large
|
|
2785
|
+
padding-bottom: var(--bal-space-large-tablet) !important
|
|
2786
|
+
|
|
1526
2787
|
.pb-x-large
|
|
1527
2788
|
padding-bottom: var(--bal-space-x-large-tablet) !important
|
|
1528
2789
|
|
|
2790
|
+
.tablet:pb-x-large
|
|
2791
|
+
padding-bottom: var(--bal-space-x-large-tablet) !important
|
|
2792
|
+
|
|
1529
2793
|
.pb-xx-large
|
|
1530
2794
|
padding-bottom: var(--bal-space-xx-large-tablet) !important
|
|
1531
2795
|
|
|
2796
|
+
.tablet:pb-xx-large
|
|
2797
|
+
padding-bottom: var(--bal-space-xx-large-tablet) !important
|
|
2798
|
+
|
|
1532
2799
|
.pb-xxx-large
|
|
1533
2800
|
padding-bottom: var(--bal-space-xxx-large-tablet) !important
|
|
1534
2801
|
|
|
2802
|
+
.tablet:pb-xxx-large
|
|
2803
|
+
padding-bottom: var(--bal-space-xxx-large-tablet) !important
|
|
2804
|
+
|
|
1535
2805
|
.pb-xxxx-large
|
|
1536
2806
|
padding-bottom: var(--bal-space-xxxx-large-tablet) !important
|
|
1537
2807
|
|
|
2808
|
+
.tablet:pb-xxxx-large
|
|
2809
|
+
padding-bottom: var(--bal-space-xxxx-large-tablet) !important
|
|
2810
|
+
|
|
1538
2811
|
+desktop
|
|
1539
2812
|
.pb-none
|
|
1540
2813
|
padding-bottom: 0 !important
|
|
@@ -1545,33 +2818,63 @@
|
|
|
1545
2818
|
.pb-xx-small
|
|
1546
2819
|
padding-bottom: var(--bal-space-xx-small-desktop) !important
|
|
1547
2820
|
|
|
2821
|
+
.desktop:pb-xx-small
|
|
2822
|
+
padding-bottom: var(--bal-space-xx-small-desktop) !important
|
|
2823
|
+
|
|
1548
2824
|
.pb-x-small
|
|
1549
2825
|
padding-bottom: var(--bal-space-x-small-desktop) !important
|
|
1550
2826
|
|
|
2827
|
+
.desktop:pb-x-small
|
|
2828
|
+
padding-bottom: var(--bal-space-x-small-desktop) !important
|
|
2829
|
+
|
|
1551
2830
|
.pb-small
|
|
1552
2831
|
padding-bottom: var(--bal-space-small-desktop) !important
|
|
1553
2832
|
|
|
2833
|
+
.desktop:pb-small
|
|
2834
|
+
padding-bottom: var(--bal-space-small-desktop) !important
|
|
2835
|
+
|
|
1554
2836
|
.pb-normal
|
|
1555
2837
|
padding-bottom: var(--bal-space-normal-desktop) !important
|
|
1556
2838
|
|
|
2839
|
+
.desktop:pb-normal
|
|
2840
|
+
padding-bottom: var(--bal-space-normal-desktop) !important
|
|
2841
|
+
|
|
1557
2842
|
.pb-medium
|
|
1558
2843
|
padding-bottom: var(--bal-space-medium-desktop) !important
|
|
1559
2844
|
|
|
2845
|
+
.desktop:pb-medium
|
|
2846
|
+
padding-bottom: var(--bal-space-medium-desktop) !important
|
|
2847
|
+
|
|
1560
2848
|
.pb-large
|
|
1561
2849
|
padding-bottom: var(--bal-space-large-desktop) !important
|
|
1562
2850
|
|
|
2851
|
+
.desktop:pb-large
|
|
2852
|
+
padding-bottom: var(--bal-space-large-desktop) !important
|
|
2853
|
+
|
|
1563
2854
|
.pb-x-large
|
|
1564
2855
|
padding-bottom: var(--bal-space-x-large-desktop) !important
|
|
1565
2856
|
|
|
2857
|
+
.desktop:pb-x-large
|
|
2858
|
+
padding-bottom: var(--bal-space-x-large-desktop) !important
|
|
2859
|
+
|
|
1566
2860
|
.pb-xx-large
|
|
1567
2861
|
padding-bottom: var(--bal-space-xx-large-desktop) !important
|
|
1568
2862
|
|
|
2863
|
+
.desktop:pb-xx-large
|
|
2864
|
+
padding-bottom: var(--bal-space-xx-large-desktop) !important
|
|
2865
|
+
|
|
1569
2866
|
.pb-xxx-large
|
|
1570
2867
|
padding-bottom: var(--bal-space-xxx-large-desktop) !important
|
|
1571
2868
|
|
|
2869
|
+
.desktop:pb-xxx-large
|
|
2870
|
+
padding-bottom: var(--bal-space-xxx-large-desktop) !important
|
|
2871
|
+
|
|
1572
2872
|
.pb-xxxx-large
|
|
1573
2873
|
padding-bottom: var(--bal-space-xxxx-large-desktop) !important
|
|
1574
2874
|
|
|
2875
|
+
.desktop:pb-xxxx-large
|
|
2876
|
+
padding-bottom: var(--bal-space-xxxx-large-desktop) !important
|
|
2877
|
+
|
|
1575
2878
|
.pl-none
|
|
1576
2879
|
padding-left: 0 !important
|
|
1577
2880
|
|
|
@@ -1608,6 +2911,37 @@
|
|
|
1608
2911
|
.pl-xxxx-large
|
|
1609
2912
|
padding-left: var(--bal-space-xxxx-large) !important
|
|
1610
2913
|
|
|
2914
|
+
+mobile
|
|
2915
|
+
.mobile:pl-xx-small
|
|
2916
|
+
padding-left: var(--bal-space-xx-small-mobile) !important
|
|
2917
|
+
|
|
2918
|
+
.mobile:pl-x-small
|
|
2919
|
+
padding-left: var(--bal-space-x-small-mobile) !important
|
|
2920
|
+
|
|
2921
|
+
.mobile:pl-small
|
|
2922
|
+
padding-left: var(--bal-space-small-mobile) !important
|
|
2923
|
+
|
|
2924
|
+
.mobile:pl-normal
|
|
2925
|
+
padding-left: var(--bal-space-normal-mobile) !important
|
|
2926
|
+
|
|
2927
|
+
.mobile:pl-medium
|
|
2928
|
+
padding-left: var(--bal-space-medium-mobile) !important
|
|
2929
|
+
|
|
2930
|
+
.mobile:pl-large
|
|
2931
|
+
padding-left: var(--bal-space-large-mobile) !important
|
|
2932
|
+
|
|
2933
|
+
.mobile:pl-x-large
|
|
2934
|
+
padding-left: var(--bal-space-x-large-mobile) !important
|
|
2935
|
+
|
|
2936
|
+
.mobile:pl-xx-large
|
|
2937
|
+
padding-left: var(--bal-space-xx-large-mobile) !important
|
|
2938
|
+
|
|
2939
|
+
.mobile:pl-xxx-large
|
|
2940
|
+
padding-left: var(--bal-space-xxx-large-mobile) !important
|
|
2941
|
+
|
|
2942
|
+
.mobile:pl-xxxx-large
|
|
2943
|
+
padding-left: var(--bal-space-xxxx-large-mobile) !important
|
|
2944
|
+
|
|
1611
2945
|
+tablet
|
|
1612
2946
|
.pl-none
|
|
1613
2947
|
padding-left: 0 !important
|
|
@@ -1618,33 +2952,63 @@
|
|
|
1618
2952
|
.pl-xx-small
|
|
1619
2953
|
padding-left: var(--bal-space-xx-small-tablet) !important
|
|
1620
2954
|
|
|
2955
|
+
.tablet:pl-xx-small
|
|
2956
|
+
padding-left: var(--bal-space-xx-small-tablet) !important
|
|
2957
|
+
|
|
1621
2958
|
.pl-x-small
|
|
1622
2959
|
padding-left: var(--bal-space-x-small-tablet) !important
|
|
1623
2960
|
|
|
2961
|
+
.tablet:pl-x-small
|
|
2962
|
+
padding-left: var(--bal-space-x-small-tablet) !important
|
|
2963
|
+
|
|
1624
2964
|
.pl-small
|
|
1625
2965
|
padding-left: var(--bal-space-small-tablet) !important
|
|
1626
2966
|
|
|
2967
|
+
.tablet:pl-small
|
|
2968
|
+
padding-left: var(--bal-space-small-tablet) !important
|
|
2969
|
+
|
|
1627
2970
|
.pl-normal
|
|
1628
2971
|
padding-left: var(--bal-space-normal-tablet) !important
|
|
1629
2972
|
|
|
2973
|
+
.tablet:pl-normal
|
|
2974
|
+
padding-left: var(--bal-space-normal-tablet) !important
|
|
2975
|
+
|
|
1630
2976
|
.pl-medium
|
|
1631
2977
|
padding-left: var(--bal-space-medium-tablet) !important
|
|
1632
2978
|
|
|
2979
|
+
.tablet:pl-medium
|
|
2980
|
+
padding-left: var(--bal-space-medium-tablet) !important
|
|
2981
|
+
|
|
1633
2982
|
.pl-large
|
|
1634
2983
|
padding-left: var(--bal-space-large-tablet) !important
|
|
1635
2984
|
|
|
2985
|
+
.tablet:pl-large
|
|
2986
|
+
padding-left: var(--bal-space-large-tablet) !important
|
|
2987
|
+
|
|
1636
2988
|
.pl-x-large
|
|
1637
2989
|
padding-left: var(--bal-space-x-large-tablet) !important
|
|
1638
2990
|
|
|
2991
|
+
.tablet:pl-x-large
|
|
2992
|
+
padding-left: var(--bal-space-x-large-tablet) !important
|
|
2993
|
+
|
|
1639
2994
|
.pl-xx-large
|
|
1640
2995
|
padding-left: var(--bal-space-xx-large-tablet) !important
|
|
1641
2996
|
|
|
2997
|
+
.tablet:pl-xx-large
|
|
2998
|
+
padding-left: var(--bal-space-xx-large-tablet) !important
|
|
2999
|
+
|
|
1642
3000
|
.pl-xxx-large
|
|
1643
3001
|
padding-left: var(--bal-space-xxx-large-tablet) !important
|
|
1644
3002
|
|
|
3003
|
+
.tablet:pl-xxx-large
|
|
3004
|
+
padding-left: var(--bal-space-xxx-large-tablet) !important
|
|
3005
|
+
|
|
1645
3006
|
.pl-xxxx-large
|
|
1646
3007
|
padding-left: var(--bal-space-xxxx-large-tablet) !important
|
|
1647
3008
|
|
|
3009
|
+
.tablet:pl-xxxx-large
|
|
3010
|
+
padding-left: var(--bal-space-xxxx-large-tablet) !important
|
|
3011
|
+
|
|
1648
3012
|
+desktop
|
|
1649
3013
|
.pl-none
|
|
1650
3014
|
padding-left: 0 !important
|
|
@@ -1655,29 +3019,59 @@
|
|
|
1655
3019
|
.pl-xx-small
|
|
1656
3020
|
padding-left: var(--bal-space-xx-small-desktop) !important
|
|
1657
3021
|
|
|
3022
|
+
.desktop:pl-xx-small
|
|
3023
|
+
padding-left: var(--bal-space-xx-small-desktop) !important
|
|
3024
|
+
|
|
1658
3025
|
.pl-x-small
|
|
1659
3026
|
padding-left: var(--bal-space-x-small-desktop) !important
|
|
1660
3027
|
|
|
3028
|
+
.desktop:pl-x-small
|
|
3029
|
+
padding-left: var(--bal-space-x-small-desktop) !important
|
|
3030
|
+
|
|
1661
3031
|
.pl-small
|
|
1662
3032
|
padding-left: var(--bal-space-small-desktop) !important
|
|
1663
3033
|
|
|
3034
|
+
.desktop:pl-small
|
|
3035
|
+
padding-left: var(--bal-space-small-desktop) !important
|
|
3036
|
+
|
|
1664
3037
|
.pl-normal
|
|
1665
3038
|
padding-left: var(--bal-space-normal-desktop) !important
|
|
1666
3039
|
|
|
3040
|
+
.desktop:pl-normal
|
|
3041
|
+
padding-left: var(--bal-space-normal-desktop) !important
|
|
3042
|
+
|
|
1667
3043
|
.pl-medium
|
|
1668
3044
|
padding-left: var(--bal-space-medium-desktop) !important
|
|
1669
3045
|
|
|
3046
|
+
.desktop:pl-medium
|
|
3047
|
+
padding-left: var(--bal-space-medium-desktop) !important
|
|
3048
|
+
|
|
1670
3049
|
.pl-large
|
|
1671
3050
|
padding-left: var(--bal-space-large-desktop) !important
|
|
1672
3051
|
|
|
3052
|
+
.desktop:pl-large
|
|
3053
|
+
padding-left: var(--bal-space-large-desktop) !important
|
|
3054
|
+
|
|
1673
3055
|
.pl-x-large
|
|
1674
3056
|
padding-left: var(--bal-space-x-large-desktop) !important
|
|
1675
3057
|
|
|
3058
|
+
.desktop:pl-x-large
|
|
3059
|
+
padding-left: var(--bal-space-x-large-desktop) !important
|
|
3060
|
+
|
|
1676
3061
|
.pl-xx-large
|
|
1677
3062
|
padding-left: var(--bal-space-xx-large-desktop) !important
|
|
1678
3063
|
|
|
3064
|
+
.desktop:pl-xx-large
|
|
3065
|
+
padding-left: var(--bal-space-xx-large-desktop) !important
|
|
3066
|
+
|
|
1679
3067
|
.pl-xxx-large
|
|
1680
3068
|
padding-left: var(--bal-space-xxx-large-desktop) !important
|
|
1681
3069
|
|
|
3070
|
+
.desktop:pl-xxx-large
|
|
3071
|
+
padding-left: var(--bal-space-xxx-large-desktop) !important
|
|
3072
|
+
|
|
1682
3073
|
.pl-xxxx-large
|
|
1683
3074
|
padding-left: var(--bal-space-xxxx-large-desktop) !important
|
|
3075
|
+
|
|
3076
|
+
.desktop:pl-xxxx-large
|
|
3077
|
+
padding-left: var(--bal-space-xxxx-large-desktop) !important
|