@sps-woodland/tokens 7.0.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.
Files changed (110) hide show
  1. package/README.md +128 -0
  2. package/config/config.js +89 -0
  3. package/config/config.js.map +1 -0
  4. package/config/formats/fontFace.js +73 -0
  5. package/config/formats/fontFace.js.map +1 -0
  6. package/config/formats/jsSimpleObject.js +59 -0
  7. package/config/formats/jsSimpleObject.js.map +1 -0
  8. package/config/formats/utility-class-builders/color.js +25 -0
  9. package/config/formats/utility-class-builders/color.js.map +1 -0
  10. package/config/formats/utility-class-builders/grid.js +31 -0
  11. package/config/formats/utility-class-builders/grid.js.map +1 -0
  12. package/config/formats/utility-class-builders/icon.js +26 -0
  13. package/config/formats/utility-class-builders/icon.js.map +1 -0
  14. package/config/formats/utility-class-builders/iconSize.js +15 -0
  15. package/config/formats/utility-class-builders/iconSize.js.map +1 -0
  16. package/config/formats/utility-class-builders/spacing.js +44 -0
  17. package/config/formats/utility-class-builders/spacing.js.map +1 -0
  18. package/config/formats/utility-class-builders/typeSize.js +30 -0
  19. package/config/formats/utility-class-builders/typeSize.js.map +1 -0
  20. package/config/formats/utility-class-builders/typeWeight.js +15 -0
  21. package/config/formats/utility-class-builders/typeWeight.js.map +1 -0
  22. package/config/formats/utilityClasses.js +91 -0
  23. package/config/formats/utilityClasses.js.map +1 -0
  24. package/config/formats/utils.js +19 -0
  25. package/config/formats/utils.js.map +1 -0
  26. package/config/formats/vanillaExtractSprinkleValues.js +86 -0
  27. package/config/formats/vanillaExtractSprinkleValues.js.map +1 -0
  28. package/config/transforms/attrFont.js +23 -0
  29. package/config/transforms/attrFont.js.map +1 -0
  30. package/config/transforms/attrGridColumns.js +20 -0
  31. package/config/transforms/attrGridColumns.js.map +1 -0
  32. package/config-src/config.js.map +1 -0
  33. package/config-src/config.ts +89 -0
  34. package/config-src/formats/fontFace.js.map +1 -0
  35. package/config-src/formats/fontFace.ts +68 -0
  36. package/config-src/formats/jsSimpleObject.js.map +1 -0
  37. package/config-src/formats/jsSimpleObject.ts +32 -0
  38. package/config-src/formats/utility-class-builders/UtilityClassBuilder.d.ts +7 -0
  39. package/config-src/formats/utility-class-builders/color.js.map +1 -0
  40. package/config-src/formats/utility-class-builders/color.ts +24 -0
  41. package/config-src/formats/utility-class-builders/grid.js.map +1 -0
  42. package/config-src/formats/utility-class-builders/grid.ts +30 -0
  43. package/config-src/formats/utility-class-builders/icon.js.map +1 -0
  44. package/config-src/formats/utility-class-builders/icon.ts +26 -0
  45. package/config-src/formats/utility-class-builders/iconSize.js.map +1 -0
  46. package/config-src/formats/utility-class-builders/iconSize.ts +13 -0
  47. package/config-src/formats/utility-class-builders/spacing.js.map +1 -0
  48. package/config-src/formats/utility-class-builders/spacing.ts +44 -0
  49. package/config-src/formats/utility-class-builders/typeSize.js.map +1 -0
  50. package/config-src/formats/utility-class-builders/typeSize.ts +30 -0
  51. package/config-src/formats/utility-class-builders/typeWeight.js.map +1 -0
  52. package/config-src/formats/utility-class-builders/typeWeight.ts +13 -0
  53. package/config-src/formats/utilityClasses.js.map +1 -0
  54. package/config-src/formats/utilityClasses.ts +77 -0
  55. package/config-src/formats/utils.js.map +1 -0
  56. package/config-src/formats/utils.ts +14 -0
  57. package/config-src/formats/vanillaExtractSprinkleValues.js.map +1 -0
  58. package/config-src/formats/vanillaExtractSprinkleValues.ts +73 -0
  59. package/config-src/transforms/attrFont.js.map +1 -0
  60. package/config-src/transforms/attrFont.ts +24 -0
  61. package/config-src/transforms/attrGridColumns.js.map +1 -0
  62. package/config-src/transforms/attrGridColumns.ts +15 -0
  63. package/config-src/tsconfig.json +22 -0
  64. package/lib/css/tokens.css +668 -0
  65. package/lib/css/utils.css +1318 -0
  66. package/lib/dictionary.d.ts +33847 -0
  67. package/lib/font.css +102 -0
  68. package/lib/index.cjs.js +1 -0
  69. package/lib/index.d.ts +8 -0
  70. package/lib/index.es.js +1611 -0
  71. package/lib/scss/tokens.scss +665 -0
  72. package/lib/scss/utils.scss +1318 -0
  73. package/lib/tokens.d.ts +1389 -0
  74. package/lib/types.d.ts +5 -0
  75. package/lib/utils/pxToRem.d.ts +5 -0
  76. package/lib/utils/rem.d.ts +7 -0
  77. package/lib/utils/transparentEquivalentColor.d.ts +29 -0
  78. package/lib/vanilla-extract/border.css.d.ts +37 -0
  79. package/lib/vanilla-extract/grid.css.d.ts +15 -0
  80. package/lib/vanilla-extract/properties/border.css.d.ts +1397 -0
  81. package/lib/vanilla-extract/properties/color.css.d.ts +464 -0
  82. package/lib/vanilla-extract/properties/conditions.d.ts +27 -0
  83. package/lib/vanilla-extract/properties/grid.css.d.ts +55 -0
  84. package/lib/vanilla-extract/properties/margin.css.d.ts +321 -0
  85. package/lib/vanilla-extract/properties/padding.css.d.ts +321 -0
  86. package/lib/vanilla-extract/properties/type.css.d.ts +80 -0
  87. package/lib/vanilla-extract/sprinkleValues.d.ts +1114 -0
  88. package/lib/vanilla-extract/sprinkles.css.d.ts +5267 -0
  89. package/lib/vanilla-extract/style.css +1 -0
  90. package/package.json +37 -0
  91. package/src/dictionary.ts +46007 -0
  92. package/src/index.ts +8 -0
  93. package/src/tokens.ts +785 -0
  94. package/src/types.ts +6 -0
  95. package/src/utils/pxToRem.ts +7 -0
  96. package/src/utils/rem.ts +27 -0
  97. package/src/utils/transparentEquivalentColor.ts +42 -0
  98. package/src/vanilla-extract/border.css.ts +46 -0
  99. package/src/vanilla-extract/grid.css.ts +49 -0
  100. package/src/vanilla-extract/properties/border.css.ts +33 -0
  101. package/src/vanilla-extract/properties/color.css.ts +16 -0
  102. package/src/vanilla-extract/properties/conditions.ts +14 -0
  103. package/src/vanilla-extract/properties/grid.css.ts +13 -0
  104. package/src/vanilla-extract/properties/margin.css.ts +40 -0
  105. package/src/vanilla-extract/properties/padding.css.ts +40 -0
  106. package/src/vanilla-extract/properties/type.css.ts +17 -0
  107. package/src/vanilla-extract/sprinkleValues.ts +605 -0
  108. package/src/vanilla-extract/sprinkles.css.ts +19 -0
  109. package/tsconfig.json +13 -0
  110. package/vite.config.js +21 -0
@@ -0,0 +1,1318 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Tue, 03 Jan 2023 21:10:14 GMT
4
+ */
5
+
6
+ .red-light {
7
+ color: $color-red-light !important;
8
+ }
9
+ .bg-red-light {
10
+ background-color: $color-red-light !important;
11
+ }
12
+ .border-red-light {
13
+ border-color: $color-red-light !important;
14
+ border-style: solid;
15
+ border-width: $size-border-width-standard;
16
+ }
17
+ .red-medium {
18
+ color: $color-red-medium !important;
19
+ }
20
+ .bg-red-medium {
21
+ background-color: $color-red-medium !important;
22
+ }
23
+ .border-red-medium {
24
+ border-color: $color-red-medium !important;
25
+ border-style: solid;
26
+ border-width: $size-border-width-standard;
27
+ }
28
+ .red-dark {
29
+ color: $color-red-dark !important;
30
+ }
31
+ .bg-red-dark {
32
+ background-color: $color-red-dark !important;
33
+ }
34
+ .border-red-dark {
35
+ border-color: $color-red-dark !important;
36
+ border-style: solid;
37
+ border-width: $size-border-width-standard;
38
+ }
39
+ .blue-extra-light {
40
+ color: $color-blue-extra-light !important;
41
+ }
42
+ .bg-blue-extra-light {
43
+ background-color: $color-blue-extra-light !important;
44
+ }
45
+ .border-blue-extra-light {
46
+ border-color: $color-blue-extra-light !important;
47
+ border-style: solid;
48
+ border-width: $size-border-width-standard;
49
+ }
50
+ .blue-light {
51
+ color: $color-blue-light !important;
52
+ }
53
+ .bg-blue-light {
54
+ background-color: $color-blue-light !important;
55
+ }
56
+ .border-blue-light {
57
+ border-color: $color-blue-light !important;
58
+ border-style: solid;
59
+ border-width: $size-border-width-standard;
60
+ }
61
+ .blue-medium {
62
+ color: $color-blue-medium !important;
63
+ }
64
+ .bg-blue-medium {
65
+ background-color: $color-blue-medium !important;
66
+ }
67
+ .border-blue-medium {
68
+ border-color: $color-blue-medium !important;
69
+ border-style: solid;
70
+ border-width: $size-border-width-standard;
71
+ }
72
+ .blue-dark {
73
+ color: $color-blue-dark !important;
74
+ }
75
+ .bg-blue-dark {
76
+ background-color: $color-blue-dark !important;
77
+ }
78
+ .border-blue-dark {
79
+ border-color: $color-blue-dark !important;
80
+ border-style: solid;
81
+ border-width: $size-border-width-standard;
82
+ }
83
+ .green-light {
84
+ color: $color-green-light !important;
85
+ }
86
+ .bg-green-light {
87
+ background-color: $color-green-light !important;
88
+ }
89
+ .border-green-light {
90
+ border-color: $color-green-light !important;
91
+ border-style: solid;
92
+ border-width: $size-border-width-standard;
93
+ }
94
+ .green-medium {
95
+ color: $color-green-medium !important;
96
+ }
97
+ .bg-green-medium {
98
+ background-color: $color-green-medium !important;
99
+ }
100
+ .border-green-medium {
101
+ border-color: $color-green-medium !important;
102
+ border-style: solid;
103
+ border-width: $size-border-width-standard;
104
+ }
105
+ .green-dark {
106
+ color: $color-green-dark !important;
107
+ }
108
+ .bg-green-dark {
109
+ background-color: $color-green-dark !important;
110
+ }
111
+ .border-green-dark {
112
+ border-color: $color-green-dark !important;
113
+ border-style: solid;
114
+ border-width: $size-border-width-standard;
115
+ }
116
+ .purple-light {
117
+ color: $color-purple-light !important;
118
+ }
119
+ .bg-purple-light {
120
+ background-color: $color-purple-light !important;
121
+ }
122
+ .border-purple-light {
123
+ border-color: $color-purple-light !important;
124
+ border-style: solid;
125
+ border-width: $size-border-width-standard;
126
+ }
127
+ .purple-medium-light {
128
+ color: $color-purple-medium-light !important;
129
+ }
130
+ .bg-purple-medium-light {
131
+ background-color: $color-purple-medium-light !important;
132
+ }
133
+ .border-purple-medium-light {
134
+ border-color: $color-purple-medium-light !important;
135
+ border-style: solid;
136
+ border-width: $size-border-width-standard;
137
+ }
138
+ .purple-medium {
139
+ color: $color-purple-medium !important;
140
+ }
141
+ .bg-purple-medium {
142
+ background-color: $color-purple-medium !important;
143
+ }
144
+ .border-purple-medium {
145
+ border-color: $color-purple-medium !important;
146
+ border-style: solid;
147
+ border-width: $size-border-width-standard;
148
+ }
149
+ .purple-dark {
150
+ color: $color-purple-dark !important;
151
+ }
152
+ .bg-purple-dark {
153
+ background-color: $color-purple-dark !important;
154
+ }
155
+ .border-purple-dark {
156
+ border-color: $color-purple-dark !important;
157
+ border-style: solid;
158
+ border-width: $size-border-width-standard;
159
+ }
160
+ .orange-light {
161
+ color: $color-orange-light !important;
162
+ }
163
+ .bg-orange-light {
164
+ background-color: $color-orange-light !important;
165
+ }
166
+ .border-orange-light {
167
+ border-color: $color-orange-light !important;
168
+ border-style: solid;
169
+ border-width: $size-border-width-standard;
170
+ }
171
+ .orange-medium {
172
+ color: $color-orange-medium !important;
173
+ }
174
+ .bg-orange-medium {
175
+ background-color: $color-orange-medium !important;
176
+ }
177
+ .border-orange-medium {
178
+ border-color: $color-orange-medium !important;
179
+ border-style: solid;
180
+ border-width: $size-border-width-standard;
181
+ }
182
+ .orange-dark {
183
+ color: $color-orange-dark !important;
184
+ }
185
+ .bg-orange-dark {
186
+ background-color: $color-orange-dark !important;
187
+ }
188
+ .border-orange-dark {
189
+ border-color: $color-orange-dark !important;
190
+ border-style: solid;
191
+ border-width: $size-border-width-standard;
192
+ }
193
+ .grey-extra-light {
194
+ color: $color-grey-extra-light !important;
195
+ }
196
+ .bg-grey-extra-light {
197
+ background-color: $color-grey-extra-light !important;
198
+ }
199
+ .border-grey-extra-light {
200
+ border-color: $color-grey-extra-light !important;
201
+ border-style: solid;
202
+ border-width: $size-border-width-standard;
203
+ }
204
+ .grey-light {
205
+ color: $color-grey-light !important;
206
+ }
207
+ .bg-grey-light {
208
+ background-color: $color-grey-light !important;
209
+ }
210
+ .border-grey-light {
211
+ border-color: $color-grey-light !important;
212
+ border-style: solid;
213
+ border-width: $size-border-width-standard;
214
+ }
215
+ .grey-medium-light {
216
+ color: $color-grey-medium-light !important;
217
+ }
218
+ .bg-grey-medium-light {
219
+ background-color: $color-grey-medium-light !important;
220
+ }
221
+ .border-grey-medium-light {
222
+ border-color: $color-grey-medium-light !important;
223
+ border-style: solid;
224
+ border-width: $size-border-width-standard;
225
+ }
226
+ .grey-medium {
227
+ color: $color-grey-medium !important;
228
+ }
229
+ .bg-grey-medium {
230
+ background-color: $color-grey-medium !important;
231
+ }
232
+ .border-grey-medium {
233
+ border-color: $color-grey-medium !important;
234
+ border-style: solid;
235
+ border-width: $size-border-width-standard;
236
+ }
237
+ .grey-medium-dark {
238
+ color: $color-grey-medium-dark !important;
239
+ }
240
+ .bg-grey-medium-dark {
241
+ background-color: $color-grey-medium-dark !important;
242
+ }
243
+ .border-grey-medium-dark {
244
+ border-color: $color-grey-medium-dark !important;
245
+ border-style: solid;
246
+ border-width: $size-border-width-standard;
247
+ }
248
+ .grey-dark {
249
+ color: $color-grey-dark !important;
250
+ }
251
+ .bg-grey-dark {
252
+ background-color: $color-grey-dark !important;
253
+ }
254
+ .border-grey-dark {
255
+ border-color: $color-grey-dark !important;
256
+ border-style: solid;
257
+ border-width: $size-border-width-standard;
258
+ }
259
+ .yellow-light {
260
+ color: $color-yellow-light !important;
261
+ }
262
+ .bg-yellow-light {
263
+ background-color: $color-yellow-light !important;
264
+ }
265
+ .border-yellow-light {
266
+ border-color: $color-yellow-light !important;
267
+ border-style: solid;
268
+ border-width: $size-border-width-standard;
269
+ }
270
+ .yellow-medium {
271
+ color: $color-yellow-medium !important;
272
+ }
273
+ .bg-yellow-medium {
274
+ background-color: $color-yellow-medium !important;
275
+ }
276
+ .border-yellow-medium {
277
+ border-color: $color-yellow-medium !important;
278
+ border-style: solid;
279
+ border-width: $size-border-width-standard;
280
+ }
281
+ .white {
282
+ color: $color-white !important;
283
+ }
284
+ .bg-white {
285
+ background-color: $color-white !important;
286
+ }
287
+ .border-white {
288
+ border-color: $color-white !important;
289
+ border-style: solid;
290
+ border-width: $size-border-width-standard;
291
+ }
292
+ .black {
293
+ color: $color-black !important;
294
+ }
295
+ .bg-black {
296
+ background-color: $color-black !important;
297
+ }
298
+ .border-black {
299
+ border-color: $color-black !important;
300
+ border-style: solid;
301
+ border-width: $size-border-width-standard;
302
+ }
303
+ .none {
304
+ color: $color-none !important;
305
+ }
306
+ .bg-none {
307
+ background-color: $color-none !important;
308
+ }
309
+ .border-none {
310
+ border-color: $color-none !important;
311
+ border-style: solid;
312
+ border-width: $size-border-width-standard;
313
+ }
314
+
315
+ .grid-root {
316
+ display: grid !important;
317
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr !important;
318
+ gap: $size-grid-gutter !important;
319
+ }
320
+ .grid-1 {
321
+ grid-column: span 1 !important;
322
+ }
323
+ .grid-2 {
324
+ grid-column: span 2 !important;
325
+ }
326
+ .grid-3 {
327
+ grid-column: span 3 !important;
328
+ }
329
+ .grid-4 {
330
+ grid-column: span 4 !important;
331
+ }
332
+ .grid-5 {
333
+ grid-column: span 5 !important;
334
+ }
335
+ .grid-6 {
336
+ grid-column: span 6 !important;
337
+ }
338
+ .grid-7 {
339
+ grid-column: span 7 !important;
340
+ }
341
+ .grid-8 {
342
+ grid-column: span 8 !important;
343
+ }
344
+ .grid-9 {
345
+ grid-column: span 9 !important;
346
+ }
347
+ .grid-10 {
348
+ grid-column: span 10 !important;
349
+ }
350
+ .grid-11 {
351
+ grid-column: span 11 !important;
352
+ }
353
+ .grid-12 {
354
+ grid-column: span 12 !important;
355
+ }
356
+ .icon-angle-left::before {
357
+ content: $icon-angle-left-character !important;
358
+ }
359
+ .icon-angle-right::before {
360
+ content: $icon-angle-right-character !important;
361
+ }
362
+ .icon-archive::before {
363
+ content: $icon-archive-character !important;
364
+ }
365
+ .icon-arrow-down::before {
366
+ content: $icon-arrow-down-character !important;
367
+ }
368
+ .icon-arrow-left-circle::before {
369
+ content: $icon-arrow-left-circle-character !important;
370
+ }
371
+ .icon-arrow-left::before {
372
+ content: $icon-arrow-left-character !important;
373
+ }
374
+ .icon-arrow-right::before {
375
+ content: $icon-arrow-right-character !important;
376
+ }
377
+ .icon-arrow-up::before {
378
+ content: $icon-arrow-up-character !important;
379
+ }
380
+ .icon-asterisk::before {
381
+ content: $icon-asterisk-character !important;
382
+ }
383
+ .icon-ban::before {
384
+ content: $icon-ban-character !important;
385
+ }
386
+ .icon-barcode::before {
387
+ content: $icon-barcode-character !important;
388
+ }
389
+ .icon-bell::before {
390
+ content: $icon-bell-character !important;
391
+ }
392
+ .icon-bolt::before {
393
+ content: $icon-bolt-character !important;
394
+ }
395
+ .icon-book::before {
396
+ content: $icon-book-character !important;
397
+ }
398
+ .icon-building::before {
399
+ content: $icon-building-character !important;
400
+ }
401
+ .icon-burst-bolt::before {
402
+ content: $icon-burst-bolt-character !important;
403
+ }
404
+ .icon-burst::before {
405
+ content: $icon-burst-character !important;
406
+ }
407
+ .icon-calendar-blank::before {
408
+ content: $icon-calendar-blank-character !important;
409
+ }
410
+ .icon-calendar::before {
411
+ content: $icon-calendar-character !important;
412
+ }
413
+ .icon-camera::before {
414
+ content: $icon-camera-character !important;
415
+ }
416
+ .icon-chart-area::before {
417
+ content: $icon-chart-area-character !important;
418
+ }
419
+ .icon-chart-bar::before {
420
+ content: $icon-chart-bar-character !important;
421
+ }
422
+ .icon-chart-line::before {
423
+ content: $icon-chart-line-character !important;
424
+ }
425
+ .icon-chart-pie::before {
426
+ content: $icon-chart-pie-character !important;
427
+ }
428
+ .icon-checkmark::before {
429
+ content: $icon-checkmark-character !important;
430
+ }
431
+ .icon-chevron-down::before {
432
+ content: $icon-chevron-down-character !important;
433
+ }
434
+ .icon-chevron-left::before {
435
+ content: $icon-chevron-left-character !important;
436
+ }
437
+ .icon-chevron-right::before {
438
+ content: $icon-chevron-right-character !important;
439
+ }
440
+ .icon-chevron-up::before {
441
+ content: $icon-chevron-up-character !important;
442
+ }
443
+ .icon-circle-outline::before {
444
+ content: $icon-circle-outline-character !important;
445
+ }
446
+ .icon-clock::before {
447
+ content: $icon-clock-character !important;
448
+ }
449
+ .icon-code-fork::before {
450
+ content: $icon-code-fork-character !important;
451
+ }
452
+ .icon-comment-bubble-question::before {
453
+ content: $icon-comment-bubble-question-character !important;
454
+ }
455
+ .icon-comment-bubble::before {
456
+ content: $icon-comment-bubble-character !important;
457
+ }
458
+ .icon-conversation::before {
459
+ content: $icon-conversation-character !important;
460
+ }
461
+ .icon-column-switcher::before {
462
+ content: $icon-column-switcher-character !important;
463
+ }
464
+ .icon-credit-card::before {
465
+ content: $icon-credit-card-character !important;
466
+ }
467
+ .icon-dashboard::before {
468
+ content: $icon-dashboard-character !important;
469
+ }
470
+ .icon-database::before {
471
+ content: $icon-database-character !important;
472
+ }
473
+ .icon-disk::before {
474
+ content: $icon-disk-character !important;
475
+ }
476
+ .icon-dollar-sign::before {
477
+ content: $icon-dollar-sign-character !important;
478
+ }
479
+ .icon-double-angle-left::before {
480
+ content: $icon-double-angle-left-character !important;
481
+ }
482
+ .icon-double-angle-right::before {
483
+ content: $icon-double-angle-right-character !important;
484
+ }
485
+ .icon-download-cloud::before {
486
+ content: $icon-download-cloud-character !important;
487
+ }
488
+ .icon-drill::before {
489
+ content: $icon-drill-character !important;
490
+ }
491
+ .icon-duplicate::before {
492
+ content: $icon-duplicate-character !important;
493
+ }
494
+ .icon-ellipses::before {
495
+ content: $icon-ellipses-character !important;
496
+ }
497
+ .icon-envelope::before {
498
+ content: $icon-envelope-character !important;
499
+ }
500
+ .icon-exchange::before {
501
+ content: $icon-exchange-character !important;
502
+ }
503
+ .icon-expand-collapse::before {
504
+ content: $icon-expand-collapse-character !important;
505
+ }
506
+ .icon-eye::before {
507
+ content: $icon-eye-character !important;
508
+ }
509
+ .icon-file-duplicate::before {
510
+ content: $icon-file-duplicate-character !important;
511
+ }
512
+ .icon-file-pdf::before {
513
+ content: $icon-file-pdf-character !important;
514
+ }
515
+ .icon-file-presentation::before {
516
+ content: $icon-file-presentation-character !important;
517
+ }
518
+ .icon-file-size::before {
519
+ content: $icon-file-size-character !important;
520
+ }
521
+ .icon-file-solid-text::before {
522
+ content: $icon-file-solid-text-character !important;
523
+ }
524
+ .icon-file-solid::before {
525
+ content: $icon-file-solid-character !important;
526
+ }
527
+ .icon-file-spreadsheet::before {
528
+ content: $icon-file-spreadsheet-character !important;
529
+ }
530
+ .icon-file-text::before {
531
+ content: $icon-file-text-character !important;
532
+ }
533
+ .icon-file::before {
534
+ content: $icon-file-character !important;
535
+ }
536
+ .icon-filter::before {
537
+ content: $icon-filter-character !important;
538
+ }
539
+ .icon-flag::before {
540
+ content: $icon-flag-character !important;
541
+ }
542
+ .icon-folder-open::before {
543
+ content: $icon-folder-open-character !important;
544
+ }
545
+ .icon-folder-solid-open::before {
546
+ content: $icon-folder-solid-open-character !important;
547
+ }
548
+ .icon-folder-solid::before {
549
+ content: $icon-folder-solid-character !important;
550
+ }
551
+ .icon-folder::before {
552
+ content: $icon-folder-character !important;
553
+ }
554
+ .icon-gear::before {
555
+ content: $icon-gear-character !important;
556
+ }
557
+ .icon-globe::before {
558
+ content: $icon-globe-character !important;
559
+ }
560
+ .icon-grid::before {
561
+ content: $icon-grid-character !important;
562
+ }
563
+ .icon-group::before {
564
+ content: $icon-group-character !important;
565
+ }
566
+ .icon-hand-stop::before {
567
+ content: $icon-hand-stop-character !important;
568
+ }
569
+ .icon-handshake::before {
570
+ content: $icon-handshake-character !important;
571
+ }
572
+ .icon-hat::before {
573
+ content: $icon-hat-character !important;
574
+ }
575
+ .icon-heart::before {
576
+ content: $icon-heart-character !important;
577
+ }
578
+ .icon-history::before {
579
+ content: $icon-history-character !important;
580
+ }
581
+ .icon-inbox::before {
582
+ content: $icon-inbox-character !important;
583
+ }
584
+ .icon-incoming::before {
585
+ content: $icon-incoming-character !important;
586
+ }
587
+ .icon-info-circle::before {
588
+ content: $icon-info-circle-character !important;
589
+ }
590
+ .icon-intercom::before {
591
+ content: $icon-intercom-character !important;
592
+ }
593
+ .icon-item-tag::before {
594
+ content: $icon-item-tag-character !important;
595
+ }
596
+ .icon-key::before {
597
+ content: $icon-key-character !important;
598
+ }
599
+ .icon-life-preserver::before {
600
+ content: $icon-life-preserver-character !important;
601
+ }
602
+ .icon-lightbulb::before {
603
+ content: $icon-lightbulb-character !important;
604
+ }
605
+ .icon-link::before {
606
+ content: $icon-link-character !important;
607
+ }
608
+ .icon-linkedin::before {
609
+ content: $icon-linkedin-character !important;
610
+ }
611
+ .icon-list-cards::before {
612
+ content: $icon-list-cards-character !important;
613
+ }
614
+ .icon-list-columns::before {
615
+ content: $icon-list-columns-character !important;
616
+ }
617
+ .icon-list-summary::before {
618
+ content: $icon-list-summary-character !important;
619
+ }
620
+ .icon-list-table::before {
621
+ content: $icon-list-table-character !important;
622
+ }
623
+ .icon-list::before {
624
+ content: $icon-list-character !important;
625
+ }
626
+ .icon-location::before {
627
+ content: $icon-location-character !important;
628
+ }
629
+ .icon-locked::before {
630
+ content: $icon-locked-character !important;
631
+ }
632
+ .icon-map-marker::before {
633
+ content: $icon-map-marker-character !important;
634
+ }
635
+ .icon-map::before {
636
+ content: $icon-map-character !important;
637
+ }
638
+ .icon-maximize::before {
639
+ content: $icon-maximize-character !important;
640
+ }
641
+ .icon-minimize::before {
642
+ content: $icon-minimize-character !important;
643
+ }
644
+ .icon-minus-circle::before {
645
+ content: $icon-minus-circle-character !important;
646
+ }
647
+ .icon-minus::before {
648
+ content: $icon-minus-character !important;
649
+ }
650
+ .icon-new-file::before {
651
+ content: $icon-new-file-character !important;
652
+ }
653
+ .icon-new-screen::before {
654
+ content: $icon-new-screen-character !important;
655
+ }
656
+ .icon-outgoing::before {
657
+ content: $icon-outgoing-character !important;
658
+ }
659
+ .icon-paper-plane::before {
660
+ content: $icon-paper-plane-character !important;
661
+ }
662
+ .icon-pencil::before {
663
+ content: $icon-pencil-character !important;
664
+ }
665
+ .icon-photo::before {
666
+ content: $icon-photo-character !important;
667
+ }
668
+ .icon-pinterest::before {
669
+ content: $icon-pinterest-character !important;
670
+ }
671
+ .icon-play::before {
672
+ content: $icon-play-character !important;
673
+ }
674
+ .icon-plus-circle::before {
675
+ content: $icon-plus-circle-character !important;
676
+ }
677
+ .icon-plus-sign::before {
678
+ content: $icon-plus-sign-character !important;
679
+ }
680
+ .icon-presentation::before {
681
+ content: $icon-presentation-character !important;
682
+ }
683
+ .icon-printer::before {
684
+ content: $icon-printer-character !important;
685
+ }
686
+ .icon-qr-code::before {
687
+ content: $icon-qr-code-character !important;
688
+ }
689
+ .icon-question-circle::before {
690
+ content: $icon-question-circle-character !important;
691
+ }
692
+ .icon-quote-left::before {
693
+ content: $icon-quote-left-character !important;
694
+ }
695
+ .icon-quote-right::before {
696
+ content: $icon-quote-right-character !important;
697
+ }
698
+ .icon-random::before {
699
+ content: $icon-random-character !important;
700
+ }
701
+ .icon-refresh::before {
702
+ content: $icon-refresh-character !important;
703
+ }
704
+ .icon-rocket::before {
705
+ content: $icon-rocket-character !important;
706
+ }
707
+ .icon-search-plus::before {
708
+ content: $icon-search-plus-character !important;
709
+ }
710
+ .icon-search::before {
711
+ content: $icon-search-character !important;
712
+ }
713
+ .icon-share::before {
714
+ content: $icon-share-character !important;
715
+ }
716
+ .icon-shopping-cart::before {
717
+ content: $icon-shopping-cart-character !important;
718
+ }
719
+ .icon-sort-alpha-asc::before {
720
+ content: $icon-sort-alpha-asc-character !important;
721
+ }
722
+ .icon-sort-alpha-desc::before {
723
+ content: $icon-sort-alpha-desc-character !important;
724
+ }
725
+ .icon-sort-num-asc::before {
726
+ content: $icon-sort-num-asc-character !important;
727
+ }
728
+ .icon-sort-num-desc::before {
729
+ content: $icon-sort-num-desc-character !important;
730
+ }
731
+ .icon-star-outline::before {
732
+ content: $icon-star-outline-character !important;
733
+ }
734
+ .icon-star::before {
735
+ content: $icon-star-character !important;
736
+ }
737
+ .icon-archive-circle::before {
738
+ content: $icon-archive-circle-character !important;
739
+ }
740
+ .icon-x-circle::before {
741
+ content: $icon-x-circle-character !important;
742
+ }
743
+ .icon-exclamation-circle::before {
744
+ content: $icon-exclamation-circle-character !important;
745
+ }
746
+ .icon-descending-ellipses-circle::before {
747
+ content: $icon-descending-ellipses-circle-character !important;
748
+ }
749
+ .icon-double-angle-right-circle::before {
750
+ content: $icon-double-angle-right-circle-character !important;
751
+ }
752
+ .icon-locked-circle::before {
753
+ content: $icon-locked-circle-character !important;
754
+ }
755
+ .icon-asterisk-circle::before {
756
+ content: $icon-asterisk-circle-character !important;
757
+ }
758
+ .icon-checkmark-circle::before {
759
+ content: $icon-checkmark-circle-character !important;
760
+ }
761
+ .icon-clock-circle::before {
762
+ content: $icon-clock-circle-character !important;
763
+ }
764
+ .icon-calendar-blank-circle::before {
765
+ content: $icon-calendar-blank-circle-character !important;
766
+ }
767
+ .icon-ban-circle::before {
768
+ content: $icon-ban-circle-character !important;
769
+ }
770
+ .icon-disk-circle::before {
771
+ content: $icon-disk-circle-character !important;
772
+ }
773
+ .icon-template-circle::before {
774
+ content: $icon-template-circle-character !important;
775
+ }
776
+ .icon-exclamation-triangle::before {
777
+ content: $icon-exclamation-triangle-character !important;
778
+ }
779
+ .icon-table::before {
780
+ content: $icon-table-character !important;
781
+ }
782
+ .icon-tabs::before {
783
+ content: $icon-tabs-character !important;
784
+ }
785
+ .icon-thumbs-down-outline::before {
786
+ content: $icon-thumbs-down-outline-character !important;
787
+ }
788
+ .icon-thumbs-down::before {
789
+ content: $icon-thumbs-down-character !important;
790
+ }
791
+ .icon-thumbs-up-outline::before {
792
+ content: $icon-thumbs-up-outline-character !important;
793
+ }
794
+ .icon-thumbs-up::before {
795
+ content: $icon-thumbs-up-character !important;
796
+ }
797
+ .icon-trash::before {
798
+ content: $icon-trash-character !important;
799
+ }
800
+ .icon-truck-shipping::before {
801
+ content: $icon-truck-shipping-character !important;
802
+ }
803
+ .icon-twitter::before {
804
+ content: $icon-twitter-character !important;
805
+ }
806
+ .icon-undo::before {
807
+ content: $icon-undo-character !important;
808
+ }
809
+ .icon-unlocked::before {
810
+ content: $icon-unlocked-character !important;
811
+ }
812
+ .icon-upload-cloud::before {
813
+ content: $icon-upload-cloud-character !important;
814
+ }
815
+ .icon-wrench::before {
816
+ content: $icon-wrench-character !important;
817
+ }
818
+ .icon-x::before {
819
+ content: $icon-x-character !important;
820
+ }
821
+ .icon-arrow-right-circle::before {
822
+ content: $icon-arrow-right-circle-character !important;
823
+ }
824
+ .icon-calendar-select::before {
825
+ content: $icon-calendar-select-character !important;
826
+ }
827
+ .icon-tag::before {
828
+ content: $icon-tag-character !important;
829
+ }
830
+ .icon-user::before {
831
+ content: $icon-user-character !important;
832
+ }
833
+ .icon-eye-slash::before {
834
+ content: $icon-eye-slash-character !important;
835
+ }
836
+ .icon-bell-filled::before {
837
+ content: $icon-bell-filled-character !important;
838
+ }
839
+ .icon-nested-list::before {
840
+ content: $icon-nested-list-character !important;
841
+ }
842
+ .icon-pin::before {
843
+ content: $icon-pin-character !important;
844
+ }
845
+ .icon-user-impersonation::before {
846
+ content: $icon-user-impersonation-character !important;
847
+ }
848
+ .icon-status-archived {
849
+ color: $icon-status-archived-color !important;
850
+ }
851
+ .icon-status-archived::before {
852
+ content: $icon-status-archived-character !important;
853
+ }
854
+
855
+ .icon-status-cancelled {
856
+ color: $icon-status-cancelled-color !important;
857
+ }
858
+ .icon-status-cancelled::before {
859
+ content: $icon-status-cancelled-character !important;
860
+ }
861
+
862
+ .icon-status-error {
863
+ color: $icon-status-error-color !important;
864
+ }
865
+ .icon-status-error::before {
866
+ content: $icon-status-error-character !important;
867
+ }
868
+
869
+ .icon-status-in-process {
870
+ color: $icon-status-in-process-color !important;
871
+ }
872
+ .icon-status-in-process::before {
873
+ content: $icon-status-in-process-character !important;
874
+ }
875
+
876
+ .icon-status-in-transit {
877
+ color: $icon-status-in-transit-color !important;
878
+ }
879
+ .icon-status-in-transit::before {
880
+ content: $icon-status-in-transit-character !important;
881
+ }
882
+
883
+ .icon-status-locked {
884
+ color: $icon-status-locked-color !important;
885
+ }
886
+ .icon-status-locked::before {
887
+ content: $icon-status-locked-character !important;
888
+ }
889
+
890
+ .icon-status-new {
891
+ color: $icon-status-new-color !important;
892
+ }
893
+ .icon-status-new::before {
894
+ content: $icon-status-new-character !important;
895
+ }
896
+
897
+ .icon-status-ok {
898
+ color: $icon-status-ok-color !important;
899
+ }
900
+ .icon-status-ok::before {
901
+ content: $icon-status-ok-character !important;
902
+ }
903
+
904
+ .icon-status-on-hold {
905
+ color: $icon-status-on-hold-color !important;
906
+ }
907
+ .icon-status-on-hold::before {
908
+ content: $icon-status-on-hold-character !important;
909
+ }
910
+
911
+ .icon-status-outdated {
912
+ color: $icon-status-outdated-color !important;
913
+ }
914
+ .icon-status-outdated::before {
915
+ content: $icon-status-outdated-character !important;
916
+ }
917
+
918
+ .icon-status-rejected {
919
+ color: $icon-status-rejected-color !important;
920
+ }
921
+ .icon-status-rejected::before {
922
+ content: $icon-status-rejected-character !important;
923
+ }
924
+
925
+ .icon-status-saved {
926
+ color: $icon-status-saved-color !important;
927
+ }
928
+ .icon-status-saved::before {
929
+ content: $icon-status-saved-character !important;
930
+ }
931
+
932
+ .icon-status-saving {
933
+ color: $icon-status-saving-color !important;
934
+ }
935
+ .icon-status-saving::before {
936
+ content: $icon-status-saving-character !important;
937
+ }
938
+
939
+ .icon-status-template {
940
+ color: $icon-status-template-color !important;
941
+ }
942
+ .icon-status-template::before {
943
+ content: $icon-status-template-character !important;
944
+ }
945
+
946
+ .icon-status-warning {
947
+ color: $icon-status-warning-color !important;
948
+ }
949
+ .icon-status-warning::before {
950
+ content: $icon-status-warning-character !important;
951
+ }
952
+
953
+ .icon_size-xs {
954
+ font-size: $size-icon-xs !important;
955
+ }
956
+ .icon_size-sm {
957
+ font-size: $size-icon-sm !important;
958
+ }
959
+ .icon_size-md {
960
+ font-size: $size-icon-md !important;
961
+ }
962
+ .icon_size-lg {
963
+ font-size: $size-icon-lg !important;
964
+ }
965
+ .m-xs {
966
+ margin: $size-spacing-xs !important;
967
+ }
968
+ .mx-xs {
969
+ margin-left: $size-spacing-xs !important;
970
+ margin-right: $size-spacing-xs !important;
971
+ }
972
+ .my-xs {
973
+ margin-top: $size-spacing-xs !important;
974
+ margin-bottom: $size-spacing-xs !important;
975
+ }
976
+ .mt-xs {
977
+ margin-top: $size-spacing-xs !important;
978
+ }
979
+ .mr-xs {
980
+ margin-right: $size-spacing-xs !important;
981
+ }
982
+ .mb-xs {
983
+ margin-bottom: $size-spacing-xs !important;
984
+ }
985
+ .ml-xs {
986
+ margin-left: $size-spacing-xs !important;
987
+ }
988
+ .p-xs {
989
+ padding: $size-spacing-xs !important;
990
+ }
991
+ .px-xs {
992
+ padding-left: $size-spacing-xs !important;
993
+ padding-right: $size-spacing-xs !important;
994
+ }
995
+ .py-xs {
996
+ padding-top: $size-spacing-xs !important;
997
+ padding-bottom: $size-spacing-xs !important;
998
+ }
999
+ .pt-xs {
1000
+ padding-top: $size-spacing-xs !important;
1001
+ }
1002
+ .pr-xs {
1003
+ padding-right: $size-spacing-xs !important;
1004
+ }
1005
+ .pb-xs {
1006
+ padding-bottom: $size-spacing-xs !important;
1007
+ }
1008
+ .pl-xs {
1009
+ padding-left: $size-spacing-xs !important;
1010
+ }
1011
+ .m-sm {
1012
+ margin: $size-spacing-sm !important;
1013
+ }
1014
+ .mx-sm {
1015
+ margin-left: $size-spacing-sm !important;
1016
+ margin-right: $size-spacing-sm !important;
1017
+ }
1018
+ .my-sm {
1019
+ margin-top: $size-spacing-sm !important;
1020
+ margin-bottom: $size-spacing-sm !important;
1021
+ }
1022
+ .mt-sm {
1023
+ margin-top: $size-spacing-sm !important;
1024
+ }
1025
+ .mr-sm {
1026
+ margin-right: $size-spacing-sm !important;
1027
+ }
1028
+ .mb-sm {
1029
+ margin-bottom: $size-spacing-sm !important;
1030
+ }
1031
+ .ml-sm {
1032
+ margin-left: $size-spacing-sm !important;
1033
+ }
1034
+ .p-sm {
1035
+ padding: $size-spacing-sm !important;
1036
+ }
1037
+ .px-sm {
1038
+ padding-left: $size-spacing-sm !important;
1039
+ padding-right: $size-spacing-sm !important;
1040
+ }
1041
+ .py-sm {
1042
+ padding-top: $size-spacing-sm !important;
1043
+ padding-bottom: $size-spacing-sm !important;
1044
+ }
1045
+ .pt-sm {
1046
+ padding-top: $size-spacing-sm !important;
1047
+ }
1048
+ .pr-sm {
1049
+ padding-right: $size-spacing-sm !important;
1050
+ }
1051
+ .pb-sm {
1052
+ padding-bottom: $size-spacing-sm !important;
1053
+ }
1054
+ .pl-sm {
1055
+ padding-left: $size-spacing-sm !important;
1056
+ }
1057
+ .m-md {
1058
+ margin: $size-spacing-md !important;
1059
+ }
1060
+ .mx-md {
1061
+ margin-left: $size-spacing-md !important;
1062
+ margin-right: $size-spacing-md !important;
1063
+ }
1064
+ .my-md {
1065
+ margin-top: $size-spacing-md !important;
1066
+ margin-bottom: $size-spacing-md !important;
1067
+ }
1068
+ .mt-md {
1069
+ margin-top: $size-spacing-md !important;
1070
+ }
1071
+ .mr-md {
1072
+ margin-right: $size-spacing-md !important;
1073
+ }
1074
+ .mb-md {
1075
+ margin-bottom: $size-spacing-md !important;
1076
+ }
1077
+ .ml-md {
1078
+ margin-left: $size-spacing-md !important;
1079
+ }
1080
+ .p-md {
1081
+ padding: $size-spacing-md !important;
1082
+ }
1083
+ .px-md {
1084
+ padding-left: $size-spacing-md !important;
1085
+ padding-right: $size-spacing-md !important;
1086
+ }
1087
+ .py-md {
1088
+ padding-top: $size-spacing-md !important;
1089
+ padding-bottom: $size-spacing-md !important;
1090
+ }
1091
+ .pt-md {
1092
+ padding-top: $size-spacing-md !important;
1093
+ }
1094
+ .pr-md {
1095
+ padding-right: $size-spacing-md !important;
1096
+ }
1097
+ .pb-md {
1098
+ padding-bottom: $size-spacing-md !important;
1099
+ }
1100
+ .pl-md {
1101
+ padding-left: $size-spacing-md !important;
1102
+ }
1103
+ .m-lg {
1104
+ margin: $size-spacing-lg !important;
1105
+ }
1106
+ .mx-lg {
1107
+ margin-left: $size-spacing-lg !important;
1108
+ margin-right: $size-spacing-lg !important;
1109
+ }
1110
+ .my-lg {
1111
+ margin-top: $size-spacing-lg !important;
1112
+ margin-bottom: $size-spacing-lg !important;
1113
+ }
1114
+ .mt-lg {
1115
+ margin-top: $size-spacing-lg !important;
1116
+ }
1117
+ .mr-lg {
1118
+ margin-right: $size-spacing-lg !important;
1119
+ }
1120
+ .mb-lg {
1121
+ margin-bottom: $size-spacing-lg !important;
1122
+ }
1123
+ .ml-lg {
1124
+ margin-left: $size-spacing-lg !important;
1125
+ }
1126
+ .p-lg {
1127
+ padding: $size-spacing-lg !important;
1128
+ }
1129
+ .px-lg {
1130
+ padding-left: $size-spacing-lg !important;
1131
+ padding-right: $size-spacing-lg !important;
1132
+ }
1133
+ .py-lg {
1134
+ padding-top: $size-spacing-lg !important;
1135
+ padding-bottom: $size-spacing-lg !important;
1136
+ }
1137
+ .pt-lg {
1138
+ padding-top: $size-spacing-lg !important;
1139
+ }
1140
+ .pr-lg {
1141
+ padding-right: $size-spacing-lg !important;
1142
+ }
1143
+ .pb-lg {
1144
+ padding-bottom: $size-spacing-lg !important;
1145
+ }
1146
+ .pl-lg {
1147
+ padding-left: $size-spacing-lg !important;
1148
+ }
1149
+
1150
+ .fs-body-sm {
1151
+ font-size: $size-type-body-sm-font !important;
1152
+ }
1153
+ .type-body-sm {
1154
+ font-size: $size-type-body-sm-font !important;
1155
+ line-height: $size-type-body-sm-line !important;
1156
+ }
1157
+ .lh-body-sm {
1158
+ line-height: $size-type-body-sm-line !important;
1159
+ }
1160
+ .fs-body-md {
1161
+ font-size: $size-type-body-md-font !important;
1162
+ }
1163
+ .type-body-md {
1164
+ font-size: $size-type-body-md-font !important;
1165
+ line-height: $size-type-body-md-line !important;
1166
+ }
1167
+ .lh-body-md {
1168
+ line-height: $size-type-body-md-line !important;
1169
+ }
1170
+ .fs-component-sm {
1171
+ font-size: $size-type-component-sm-font !important;
1172
+ }
1173
+ .type-component-sm {
1174
+ font-size: $size-type-component-sm-font !important;
1175
+ line-height: $size-type-component-sm-line !important;
1176
+ }
1177
+ .lh-component-sm {
1178
+ line-height: $size-type-component-sm-line !important;
1179
+ }
1180
+ .fs-title-sm {
1181
+ font-size: $size-type-title-sm-font !important;
1182
+ }
1183
+ .type-title-sm {
1184
+ font-size: $size-type-title-sm-font !important;
1185
+ line-height: $size-type-title-sm-line !important;
1186
+ }
1187
+ .lh-title-sm {
1188
+ line-height: $size-type-title-sm-line !important;
1189
+ }
1190
+ .fs-title-md {
1191
+ font-size: $size-type-title-md-font !important;
1192
+ }
1193
+ .type-title-md {
1194
+ font-size: $size-type-title-md-font !important;
1195
+ line-height: $size-type-title-md-line !important;
1196
+ }
1197
+ .lh-title-md {
1198
+ line-height: $size-type-title-md-line !important;
1199
+ }
1200
+ .fs-title-lg {
1201
+ font-size: $size-type-title-lg-font !important;
1202
+ }
1203
+ .type-title-lg {
1204
+ font-size: $size-type-title-lg-font !important;
1205
+ line-height: $size-type-title-lg-line !important;
1206
+ }
1207
+ .lh-title-lg {
1208
+ line-height: $size-type-title-lg-line !important;
1209
+ }
1210
+ .fs-title-xl {
1211
+ font-size: $size-type-title-xl-font !important;
1212
+ }
1213
+ .type-title-xl {
1214
+ font-size: $size-type-title-xl-font !important;
1215
+ line-height: $size-type-title-xl-line !important;
1216
+ }
1217
+ .lh-title-xl {
1218
+ line-height: $size-type-title-xl-line !important;
1219
+ }
1220
+ .fw-normal {
1221
+ font-weight: $type-weight-normal !important;
1222
+ }
1223
+ .fw-bold {
1224
+ font-weight: $type-weight-bold !important;
1225
+ }
1226
+
1227
+ .m-none {
1228
+ margin: 0 !important;
1229
+ }
1230
+ .mx-none {
1231
+ margin-left: 0 !important;
1232
+ margin-right: 0 !important;
1233
+ }
1234
+ .my-none {
1235
+ margin-top: 0 !important;
1236
+ margin-bottom: 0 !important;
1237
+ }
1238
+ .mt-none {
1239
+ margin-top: 0 !important;
1240
+ }
1241
+ .mr-none {
1242
+ margin-right: 0 !important;
1243
+ }
1244
+ .mb-none {
1245
+ margin-bottom: 0 !important;
1246
+ }
1247
+ .ml-none {
1248
+ margin-left: 0 !important;
1249
+ }
1250
+ .p-none {
1251
+ padding: 0 !important;
1252
+ }
1253
+ .px-none {
1254
+ padding-left: 0 !important;
1255
+ padding-right: 0 !important;
1256
+ }
1257
+ .py-none {
1258
+ padding-top: 0 !important;
1259
+ padding-bottom: 0 !important;
1260
+ }
1261
+ .pt-none {
1262
+ padding-top: 0 !important;
1263
+ }
1264
+ .pr-none {
1265
+ padding-right: 0 !important;
1266
+ }
1267
+ .pb-none {
1268
+ padding-bottom: 0 !important;
1269
+ }
1270
+ .pl-none {
1271
+ padding-left: 0 !important;
1272
+ }
1273
+ .m-auto {
1274
+ margin: auto !important;
1275
+ }
1276
+ .mx-auto {
1277
+ margin-left: auto !important;
1278
+ margin-right: auto !important;
1279
+ }
1280
+ .my-auto {
1281
+ margin-top: auto !important;
1282
+ margin-bottom: auto !important;
1283
+ }
1284
+ .mt-auto {
1285
+ margin-top: auto !important;
1286
+ }
1287
+ .mr-auto {
1288
+ margin-right: auto !important;
1289
+ }
1290
+ .mb-auto {
1291
+ margin-bottom: auto !important;
1292
+ }
1293
+ .ml-auto {
1294
+ margin-left: auto !important;
1295
+ }
1296
+ .p-auto {
1297
+ padding: auto !important;
1298
+ }
1299
+ .px-auto {
1300
+ padding-left: auto !important;
1301
+ padding-right: auto !important;
1302
+ }
1303
+ .py-auto {
1304
+ padding-top: auto !important;
1305
+ padding-bottom: auto !important;
1306
+ }
1307
+ .pt-auto {
1308
+ padding-top: auto !important;
1309
+ }
1310
+ .pr-auto {
1311
+ padding-right: auto !important;
1312
+ }
1313
+ .pb-auto {
1314
+ padding-bottom: auto !important;
1315
+ }
1316
+ .pl-auto {
1317
+ padding-left: auto !important;
1318
+ }