@propelinc/citrus-ui 1.0.5 → 1.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.
Files changed (201) hide show
  1. package/README.md +39 -14
  2. package/dist/citrus-ui.cdn.css +1 -0
  3. package/dist/citrus-ui.css +1 -0
  4. package/dist/colors/colors.d.ts +31 -0
  5. package/dist/colors/theme.d.ts +3 -0
  6. package/dist/colors/util-classes.d.ts +11 -0
  7. package/dist/components/CAccordion.vue.d.ts +34 -0
  8. package/dist/components/CAccordionItem.vue.d.ts +39 -0
  9. package/dist/components/CAppBar.vue.d.ts +59 -0
  10. package/dist/components/CBadge.vue.d.ts +35 -0
  11. package/dist/components/CBottomSheet.vue.d.ts +90 -0
  12. package/dist/components/CButton/CButton.vue.d.ts +97 -0
  13. package/dist/components/CButton/types.d.ts +5 -0
  14. package/dist/components/CButtonStack.vue.d.ts +27 -0
  15. package/dist/components/CCard.vue.d.ts +53 -0
  16. package/dist/components/CCardFooter.vue.d.ts +20 -0
  17. package/dist/components/CCardHeader.vue.d.ts +22 -0
  18. package/dist/components/CCardSection.vue.d.ts +26 -0
  19. package/dist/components/CCheckbox.vue.d.ts +62 -0
  20. package/dist/components/CCol.vue.d.ts +30 -0
  21. package/dist/components/CDivider.vue.d.ts +9 -0
  22. package/dist/components/CDobField.vue.d.ts +60 -0
  23. package/dist/components/CDobSelect.vue.d.ts +50 -0
  24. package/dist/components/CEmailField.vue.d.ts +48 -0
  25. package/dist/components/CExpandTransition.vue.d.ts +29 -0
  26. package/dist/components/CFadeTransition.vue.d.ts +20 -0
  27. package/dist/components/CFileInput.vue.d.ts +50 -0
  28. package/dist/components/CFixedPageFooter.vue.d.ts +153 -0
  29. package/dist/components/CForm.vue.d.ts +44 -0
  30. package/dist/components/CFormFieldCounter.vue.d.ts +15 -0
  31. package/dist/components/CIconButton.vue.d.ts +97 -0
  32. package/dist/components/CLabel.vue.d.ts +36 -0
  33. package/dist/components/CListItem.vue.d.ts +56 -0
  34. package/dist/components/CListItemContent.vue.d.ts +27 -0
  35. package/dist/components/CListItemIcon.vue.d.ts +28 -0
  36. package/dist/components/CLoader.vue.d.ts +23 -0
  37. package/dist/components/CLogo.vue.d.ts +9 -0
  38. package/dist/components/CMaskedTextField.vue.d.ts +511 -0
  39. package/dist/components/CMenu.vue.d.ts +17 -0
  40. package/dist/components/CMenuItem.vue.d.ts +37 -0
  41. package/dist/components/CMenuLabel.vue.d.ts +20 -0
  42. package/dist/components/CModal.vue.d.ts +59 -0
  43. package/dist/components/CModalLoading.vue.d.ts +36 -0
  44. package/dist/components/CNotification.vue.d.ts +64 -0
  45. package/dist/components/CPhoneField.vue.d.ts +792 -0
  46. package/dist/components/CPill.vue.d.ts +41 -0
  47. package/dist/components/CPillGroup.vue.d.ts +39 -0
  48. package/dist/components/CPopup.vue.d.ts +37 -0
  49. package/dist/components/CProgressLinear.vue.d.ts +21 -0
  50. package/dist/components/CProgressRing.vue.d.ts +48 -0
  51. package/dist/components/CRadio.vue.d.ts +40 -0
  52. package/dist/components/CRadioGroup.vue.d.ts +54 -0
  53. package/dist/components/CRebrand.vue.d.ts +28 -0
  54. package/dist/components/CRow.vue.d.ts +41 -0
  55. package/dist/components/CSafeArea.vue.d.ts +18 -0
  56. package/dist/components/CSectionHeader.vue.d.ts +29 -0
  57. package/dist/components/CSelect.vue.d.ts +96 -0
  58. package/dist/components/CSkeleton.vue.d.ts +3 -0
  59. package/dist/components/CSkeletonLoaderCard.vue.d.ts +9 -0
  60. package/dist/components/CSkeletonLoaderCircle.vue.d.ts +3 -0
  61. package/dist/components/CSkeletonLoaderText.vue.d.ts +16 -0
  62. package/dist/components/CSlideFadeTransition.vue.d.ts +36 -0
  63. package/dist/components/CSplitInput.vue.d.ts +56 -0
  64. package/dist/components/CSquaredIcon.vue.d.ts +33 -0
  65. package/dist/components/CSsnField.vue.d.ts +798 -0
  66. package/dist/components/CStatusDot.vue.d.ts +10 -0
  67. package/dist/components/CSwitch.vue.d.ts +39 -0
  68. package/dist/components/CSwitchListItem.vue.d.ts +48 -0
  69. package/dist/components/CTextArea.vue.d.ts +96 -0
  70. package/dist/components/CTextField.vue.d.ts +129 -0
  71. package/dist/components/CTextLink.vue.d.ts +36 -0
  72. package/dist/components/CThirdPartyLogo.vue.d.ts +22 -0
  73. package/dist/components/CTimeago.vue.d.ts +12 -0
  74. package/dist/components/CToast.vue.d.ts +69 -0
  75. package/dist/components/CToastsList.vue.d.ts +3 -0
  76. package/dist/components/CValidationMessage.vue.d.ts +37 -0
  77. package/dist/components/CZipcodeField.vue.d.ts +796 -0
  78. package/dist/components/index.d.ts +66 -0
  79. package/dist/components/internal/CCloseButton.vue.d.ts +14 -0
  80. package/dist/composables/accessibility.d.ts +1 -0
  81. package/dist/composables/animation.d.ts +12 -0
  82. package/dist/composables/binding.d.ts +19 -0
  83. package/dist/composables/colors.d.ts +13 -0
  84. package/dist/composables/elements.d.ts +3 -0
  85. package/dist/composables/fields.d.ts +10 -0
  86. package/dist/composables/gestures.d.ts +53 -0
  87. package/dist/composables/i18n.d.ts +3 -0
  88. package/dist/composables/id.d.ts +11 -0
  89. package/dist/composables/input-mask.d.ts +18 -0
  90. package/dist/composables/router.d.ts +30 -0
  91. package/dist/composables/slots.d.ts +2 -0
  92. package/dist/composables/toast.d.ts +21 -0
  93. package/dist/composables/validations.d.ts +77 -0
  94. package/dist/icons.cdn.mjs +3 -0
  95. package/dist/icons.cdn.mjs.map +1 -0
  96. package/dist/icons.d.ts +1 -0
  97. package/dist/icons.mjs +6 -0
  98. package/dist/icons.mjs.map +1 -0
  99. package/dist/index.cdn.mjs +9328 -12875
  100. package/dist/index.cdn.mjs.map +1 -1
  101. package/dist/index.cdn2.mjs +55255 -0
  102. package/dist/index.cdn2.mjs.map +1 -0
  103. package/dist/index.d.ts +8 -0
  104. package/dist/index.mjs +3946 -0
  105. package/dist/index.mjs.map +1 -0
  106. package/dist/plugin.d.ts +3 -0
  107. package/dist/services/animation.d.ts +17 -0
  108. package/dist/services/directives/index.d.ts +2 -0
  109. package/dist/services/directives/scroll-into-view.d.ts +7 -0
  110. package/dist/services/directives/tap-animation.d.ts +6 -0
  111. package/dist/services/id.d.ts +22 -0
  112. package/dist/services/injections/accordions.d.ts +3 -0
  113. package/dist/services/injections/animations.d.ts +2 -0
  114. package/dist/services/injections/buttons.d.ts +4 -0
  115. package/dist/services/injections/forms.d.ts +6 -0
  116. package/dist/services/injections/icon-buttons.d.ts +3 -0
  117. package/dist/services/injections/pills.d.ts +4 -0
  118. package/dist/services/injections/radio.d.ts +10 -0
  119. package/dist/{styles/main.css → styles.css} +8 -6
  120. package/dist/theme/icons.d.ts +36 -0
  121. package/dist/types/CForm.d.ts +12 -0
  122. package/dist/types/font-awesome.d.ts +5 -0
  123. package/dist/types.d.ts +13 -0
  124. package/package.json +8 -3
  125. package/src/colors/colors.ts +8 -3
  126. package/src/components/CAccordion.vue +31 -24
  127. package/src/components/CAccordionItem.vue +46 -45
  128. package/src/components/CAppBar.vue +108 -101
  129. package/src/components/CBadge.vue +33 -25
  130. package/src/components/CBottomSheet.vue +212 -199
  131. package/src/components/CButton/CButton.vue +135 -147
  132. package/src/components/CButtonStack.vue +21 -13
  133. package/src/components/CCard.vue +72 -69
  134. package/src/components/CCardFooter.vue +5 -5
  135. package/src/components/CCardHeader.vue +9 -7
  136. package/src/components/CCardSection.vue +15 -8
  137. package/src/components/CCheckbox.vue +68 -69
  138. package/src/components/CCol.vue +21 -22
  139. package/src/components/CDivider.vue +9 -8
  140. package/src/components/CDobField.vue +114 -105
  141. package/src/components/CDobSelect.vue +162 -164
  142. package/src/components/CEmailField.vue +39 -27
  143. package/src/components/CExpandTransition.vue +14 -17
  144. package/src/components/CFadeTransition.vue +3 -3
  145. package/src/components/CFileInput.vue +57 -50
  146. package/src/components/CFixedPageFooter.vue +23 -17
  147. package/src/components/CForm.vue +67 -60
  148. package/src/components/CFormFieldCounter.vue +25 -28
  149. package/src/components/CIconButton.vue +84 -65
  150. package/src/components/CLabel.vue +19 -13
  151. package/src/components/CListItem.vue +67 -66
  152. package/src/components/CListItemContent.vue +14 -16
  153. package/src/components/CListItemIcon.vue +18 -14
  154. package/src/components/CLoader.vue +47 -56
  155. package/src/components/CLogo.vue +13 -12
  156. package/src/components/CMaskedTextField.vue +80 -64
  157. package/src/components/CMenu.vue +14 -6
  158. package/src/components/CMenuItem.vue +28 -22
  159. package/src/components/CMenuLabel.vue +6 -5
  160. package/src/components/CModal.vue +76 -71
  161. package/src/components/CModalLoading.vue +24 -15
  162. package/src/components/CNotification.vue +77 -28
  163. package/src/components/CPhoneField.vue +34 -25
  164. package/src/components/CPill.vue +92 -88
  165. package/src/components/CPillGroup.vue +30 -21
  166. package/src/components/CPopup.vue +46 -37
  167. package/src/components/CProgressLinear.vue +17 -11
  168. package/src/components/CProgressRing.vue +33 -33
  169. package/src/components/CRadio.vue +57 -57
  170. package/src/components/CRadioGroup.vue +85 -72
  171. package/src/components/CRow.vue +22 -20
  172. package/src/components/CSectionHeader.vue +20 -12
  173. package/src/components/CSelect.vue +89 -73
  174. package/src/components/CSkeletonLoaderCard.vue +9 -15
  175. package/src/components/CSkeletonLoaderCircle.vue +1 -9
  176. package/src/components/CSkeletonLoaderText.vue +17 -18
  177. package/src/components/CSlideFadeTransition.vue +12 -34
  178. package/src/components/CSplitInput.vue +46 -45
  179. package/src/components/CSquaredIcon.vue +39 -29
  180. package/src/components/CSsnField.vue +48 -36
  181. package/src/components/CStatusDot.vue +16 -16
  182. package/src/components/CSwitch.vue +31 -22
  183. package/src/components/CSwitchListItem.vue +27 -28
  184. package/src/components/CTextArea.vue +116 -83
  185. package/src/components/CTextField.vue +194 -198
  186. package/src/components/CTextLink.vue +28 -25
  187. package/src/components/CThirdPartyLogo.vue +30 -59
  188. package/src/components/CToast.vue +135 -132
  189. package/src/components/CToastsList.vue +2 -15
  190. package/src/components/CValidationMessage.vue +31 -24
  191. package/src/components/CZipcodeField.vue +40 -27
  192. package/src/composables/elements.ts +1 -1
  193. package/src/composables/fields.ts +4 -4
  194. package/src/composables/router.ts +6 -5
  195. package/src/icons.ts +6 -0
  196. package/src/services/injections/buttons.ts +1 -1
  197. package/src/styles/_core.scss +1 -2
  198. package/src/styles/_reset.scss +1 -1
  199. package/src/types.ts +2 -0
  200. package/dist/index.cdn.css +0 -1
  201. package/dist/styles/utils.css +0 -2709
@@ -1,2709 +0,0 @@
1
- /** NOTE(ej): These styles address an issue with 'ghost' hover states caused
2
- * by Vuetify's default hover styles compatible with browser-based apps that
3
- * support hovering. If an additional component is reported displaying a 'ghost'
4
- * hover use this mixin in that component's scoped styles.
5
- * Original bug ticket: https://join-propel.atlassian.net/browse/EUFL-15
6
- */
7
- :export {
8
- ACCENT_BLUE: #5560cb;
9
- ACCENT_BLUE_SHADE_1: #404898;
10
- ACCENT_BLUE_SHADE_2: #2f3570;
11
- ACCENT_GREEN: #49a24c;
12
- ACCENT_GREEN_SHADE_1: #3a823d;
13
- ACCENT_GREEN_SHADE_2: #17551a;
14
- ACCENT_ORANGE: #fc8247;
15
- ACCENT_ORANGE_SHADE_1: #e15c1b;
16
- ACCENT_ORANGE_SHADE_2: #a9440b;
17
- ACCENT_PINK: #d75fae;
18
- ACCENT_PINK_SHADE_1: #7c3872;
19
- ACCENT_PINK_SHADE_2: #56204e;
20
- ACCENT_RED_SHADE_1: #981d31;
21
- ACCENT_RED_SHADE_2: #701323;
22
- ALERT_RED: #c34459;
23
- BACKGROUND: #fff;
24
- BLACK: #000;
25
- BLUE_100: #e0edff;
26
- BLUE_200: #b2cffa;
27
- BLUE_300: #7a95f8;
28
- BLUE_400: #496ae0;
29
- BLUE_500: #1a43d7;
30
- BORDER: rgba(0, 0, 0, 0.1);
31
- BUTTON_BACKGROUND: #000;
32
- GOLD_100: #fff0ba;
33
- GOLD_200: #fcde74;
34
- GOLD_300: #ffc120;
35
- GOLD_400: #f99500;
36
- GOLD_500: #f47500;
37
- GRAY_100: rgba(0, 0, 0, 0.04);
38
- GRAY_200: rgba(0, 0, 0, 0.1);
39
- GRAY_300: rgba(0, 0, 0, 0.31);
40
- GRAY_400: rgba(0, 0, 0, 0.48);
41
- GRAY_500: rgba(0, 0, 0, 0.69);
42
- GREEN_100: #dcf2cb;
43
- GREEN_200: #b8da96;
44
- GREEN_300: #8bc95a;
45
- GREEN_400: #3fa41c;
46
- GREEN_500: #1f7400;
47
- ORANGE: #ffa895;
48
- ORANGE_TINT_1: #fdcab7;
49
- ORANGE_TINT_2: #ffdbce;
50
- PINK: #f6a0d1;
51
- PINK_TINT_1: #fdc3e4;
52
- PINK_TINT_2: #ffdef1;
53
- PROVIDERS_BLUE: black;
54
- PROVIDERS_BLUE_TINT_1: #d1d7fc;
55
- PROVIDERS_BLUE_TINT_2: #e8ebfd;
56
- PROVIDERS_GREEN: #51d156;
57
- PROVIDERS_GREEN_TINT_1: #b3f6a2;
58
- PROVIDERS_GREEN_TINT_2: #d1fac7;
59
- PURPLE_100: #ebe4ff;
60
- PURPLE_200: #cdbcff;
61
- PURPLE_300: #ac8eff;
62
- PURPLE_400: #804fe8;
63
- PURPLE_500: #6431d0;
64
- RED_100: #ffe5dd;
65
- RED_200: #ffaaa5;
66
- RED_300: #ff6969;
67
- RED_400: #f52323;
68
- RED_500: #cd000c;
69
- STATUS_ERROR: #cd000c;
70
- STATUS_SUCCESS: #1f7400;
71
- STATUS_WARNING: #f47500;
72
- TEXT_DISABLED: rgba(0, 0, 0, 0.31);
73
- TEXT_PLACEHOLDER: rgba(0, 0, 0, 0.48);
74
- TEXT_PRIMARY: #000;
75
- TEXT_SECONDARY: rgba(0, 0, 0, 0.69);
76
- WHITE: #fff;
77
- YELLOW: #ffc200;
78
- YELLOW_TINT_1: #ffdc6b;
79
- YELLOW_TINT_2: #fee69a;
80
- }
81
-
82
- .d-block {
83
- display: block !important;
84
- }
85
-
86
- .d-flex {
87
- display: flex !important;
88
- }
89
-
90
- .d-grid {
91
- display: grid !important;
92
- }
93
-
94
- .d-inline-flex {
95
- display: inline-flex !important;
96
- }
97
-
98
- .d-inline {
99
- display: inline !important;
100
- }
101
-
102
- .d-none {
103
- display: none !important;
104
- }
105
-
106
- .position-absolute,
107
- .absolute {
108
- position: absolute;
109
- }
110
-
111
- .position-fixed,
112
- .fixed {
113
- position: fixed;
114
- }
115
-
116
- .position-relative,
117
- .relative {
118
- position: relative;
119
- }
120
-
121
- .position-static,
122
- .static {
123
- position: static;
124
- }
125
-
126
- .position-sticky,
127
- .sticky {
128
- position: sticky;
129
- }
130
-
131
- .top-0 {
132
- top: 0;
133
- }
134
-
135
- .right-0 {
136
- right: 0;
137
- }
138
-
139
- .bottom-0 {
140
- bottom: 0;
141
- }
142
-
143
- .left-0 {
144
- left: 0;
145
- }
146
-
147
- .inset-0 {
148
- inset: 0;
149
- }
150
-
151
- .w-auto {
152
- width: auto;
153
- }
154
-
155
- .w-full {
156
- width: 100%;
157
- }
158
-
159
- .w-0 {
160
- width: 0;
161
- }
162
-
163
- .w-25 {
164
- width: 25%;
165
- }
166
-
167
- .w-33 {
168
- width: 33.3333%;
169
- }
170
-
171
- .w-50 {
172
- width: 50%;
173
- }
174
-
175
- .w-66 {
176
- width: 66.6666%;
177
- }
178
-
179
- .w-75 {
180
- width: 75%;
181
- }
182
-
183
- .w-100 {
184
- width: 100%;
185
- }
186
-
187
- .h-auto {
188
- height: auto;
189
- }
190
-
191
- .h-full {
192
- height: 100%;
193
- }
194
-
195
- .h-0 {
196
- height: 0;
197
- }
198
-
199
- .h-25 {
200
- height: 25%;
201
- }
202
-
203
- .h-33 {
204
- height: 33.3333%;
205
- }
206
-
207
- .h-50 {
208
- height: 50%;
209
- }
210
-
211
- .h-66 {
212
- height: 66.6666%;
213
- }
214
-
215
- .h-75 {
216
- height: 75%;
217
- }
218
-
219
- .h-100 {
220
- height: 100%;
221
- }
222
-
223
- .flex-col {
224
- flex-direction: column !important;
225
- }
226
-
227
- .flex-col-reverse {
228
- flex-direction: column-reverse !important;
229
- }
230
-
231
- .flex-column {
232
- flex-direction: column !important;
233
- }
234
-
235
- .flex-column-reverse {
236
- flex-direction: column-reverse !important;
237
- }
238
-
239
- .flex-row {
240
- flex-direction: row !important;
241
- }
242
-
243
- .flex-row-reverse {
244
- flex-direction: row-reverse !important;
245
- }
246
-
247
- .align-baseline {
248
- align-items: baseline !important;
249
- }
250
-
251
- .items-baseline {
252
- align-items: baseline;
253
- }
254
-
255
- .align-content-baseline {
256
- align-content: baseline !important;
257
- }
258
-
259
- .content-baseline {
260
- align-content: baseline;
261
- }
262
-
263
- .self-baseline {
264
- align-self: baseline;
265
- }
266
-
267
- .align-center {
268
- align-items: center !important;
269
- }
270
-
271
- .items-center {
272
- align-items: center;
273
- }
274
-
275
- .align-content-center {
276
- align-content: center !important;
277
- }
278
-
279
- .content-center {
280
- align-content: center;
281
- }
282
-
283
- .self-center {
284
- align-self: center;
285
- }
286
-
287
- .align-end {
288
- align-items: flex-end !important;
289
- }
290
-
291
- .items-end {
292
- align-items: flex-end;
293
- }
294
-
295
- .align-content-end {
296
- align-content: flex-end !important;
297
- }
298
-
299
- .content-end {
300
- align-content: flex-end;
301
- }
302
-
303
- .self-end {
304
- align-self: flex-end;
305
- }
306
-
307
- .align-start {
308
- align-items: flex-start !important;
309
- }
310
-
311
- .items-start {
312
- align-items: flex-start;
313
- }
314
-
315
- .align-content-start {
316
- align-content: flex-start !important;
317
- }
318
-
319
- .content-start {
320
- align-content: flex-start;
321
- }
322
-
323
- .self-start {
324
- align-self: flex-start;
325
- }
326
-
327
- .align-stretch {
328
- align-items: stretch !important;
329
- }
330
-
331
- .items-stretch {
332
- align-items: stretch;
333
- }
334
-
335
- .align-content-stretch {
336
- align-content: stretch !important;
337
- }
338
-
339
- .content-stretch {
340
- align-content: stretch;
341
- }
342
-
343
- .self-stretch {
344
- align-self: stretch;
345
- }
346
-
347
- .justify-around {
348
- justify-content: space-around !important;
349
- }
350
-
351
- .justify-between {
352
- justify-content: space-between !important;
353
- }
354
-
355
- .justify-center {
356
- justify-content: center !important;
357
- }
358
-
359
- .justify-end {
360
- justify-content: flex-end !important;
361
- }
362
-
363
- .justify-evenly {
364
- justify-content: space-evenly !important;
365
- }
366
-
367
- .justify-space-around {
368
- justify-content: space-around !important;
369
- }
370
-
371
- .justify-space-between {
372
- justify-content: space-between !important;
373
- }
374
-
375
- .justify-space-evenly {
376
- justify-content: space-evenly !important;
377
- }
378
-
379
- .justify-start {
380
- justify-content: flex-start !important;
381
- }
382
-
383
- .flex-1 {
384
- flex: 1 1 auto;
385
- }
386
-
387
- .flex-grow,
388
- .grow {
389
- flex-grow: 1;
390
- }
391
-
392
- .flex-grow-1,
393
- .grow-1 {
394
- flex-grow: 1;
395
- }
396
-
397
- .flex-grow-0,
398
- .grow-0 {
399
- flex-grow: 0;
400
- }
401
-
402
- .flex-shrink,
403
- .shrink {
404
- flex-shrink: 1;
405
- }
406
-
407
- .flex-shrink-1,
408
- .shrink-1 {
409
- flex-shrink: 1;
410
- }
411
-
412
- .flex-shrink-0,
413
- .shrink-0 {
414
- flex-shrink: 0;
415
- }
416
-
417
- .basis-auto,
418
- .flex-basis-auto {
419
- flex-basis: auto;
420
- }
421
-
422
- .basis-full,
423
- .flex-basis-full {
424
- flex-basis: 100%;
425
- }
426
-
427
- .basis-0,
428
- .flex-basis-0 {
429
- flex-basis: 0;
430
- }
431
-
432
- .basis-25,
433
- .flex-basis-25 {
434
- flex-basis: 25%;
435
- }
436
-
437
- .basis-33,
438
- .flex-basis-33 {
439
- flex-basis: 33.3333%;
440
- }
441
-
442
- .basis-50,
443
- .flex-basis-50 {
444
- flex-basis: 50%;
445
- }
446
-
447
- .basis-66,
448
- .flex-basis-66 {
449
- flex-basis: 66.6666%;
450
- }
451
-
452
- .basis-75,
453
- .flex-basis-75 {
454
- flex-basis: 75%;
455
- }
456
-
457
- .basis-100,
458
- .flex-basis-100 {
459
- flex-basis: 100%;
460
- }
461
-
462
- .flex-wrap {
463
- flex-wrap: wrap;
464
- }
465
-
466
- .flex-nowrap {
467
- flex-wrap: nowrap;
468
- }
469
-
470
- .flex-wrap-reverse {
471
- flex-wrap: wrap-reverse;
472
- }
473
-
474
- .gap-0 {
475
- gap: 0px;
476
- }
477
-
478
- .gap-x-0 {
479
- column-gap: 0px;
480
- }
481
-
482
- .gap-y-0 {
483
- row-gap: 0px;
484
- }
485
-
486
- .gap-1 {
487
- gap: 4px;
488
- }
489
-
490
- .gap-x-1 {
491
- column-gap: 4px;
492
- }
493
-
494
- .gap-y-1 {
495
- row-gap: 4px;
496
- }
497
-
498
- .gap-2 {
499
- gap: 8px;
500
- }
501
-
502
- .gap-x-2 {
503
- column-gap: 8px;
504
- }
505
-
506
- .gap-y-2 {
507
- row-gap: 8px;
508
- }
509
-
510
- .gap-3 {
511
- gap: 12px;
512
- }
513
-
514
- .gap-x-3 {
515
- column-gap: 12px;
516
- }
517
-
518
- .gap-y-3 {
519
- row-gap: 12px;
520
- }
521
-
522
- .gap-4 {
523
- gap: 16px;
524
- }
525
-
526
- .gap-x-4 {
527
- column-gap: 16px;
528
- }
529
-
530
- .gap-y-4 {
531
- row-gap: 16px;
532
- }
533
-
534
- .gap-5 {
535
- gap: 20px;
536
- }
537
-
538
- .gap-x-5 {
539
- column-gap: 20px;
540
- }
541
-
542
- .gap-y-5 {
543
- row-gap: 20px;
544
- }
545
-
546
- .gap-6 {
547
- gap: 24px;
548
- }
549
-
550
- .gap-x-6 {
551
- column-gap: 24px;
552
- }
553
-
554
- .gap-y-6 {
555
- row-gap: 24px;
556
- }
557
-
558
- .gap-7 {
559
- gap: 28px;
560
- }
561
-
562
- .gap-x-7 {
563
- column-gap: 28px;
564
- }
565
-
566
- .gap-y-7 {
567
- row-gap: 28px;
568
- }
569
-
570
- .gap-8 {
571
- gap: 32px;
572
- }
573
-
574
- .gap-x-8 {
575
- column-gap: 32px;
576
- }
577
-
578
- .gap-y-8 {
579
- row-gap: 32px;
580
- }
581
-
582
- .grid-cols-2 {
583
- grid-template-columns: repeat(2, minmax(0, 1fr));
584
- }
585
-
586
- .grid-rows-2 {
587
- grid-template-rows: repeat(2, minmax(0, 1fr));
588
- }
589
-
590
- .grid-cols-3 {
591
- grid-template-columns: repeat(3, minmax(0, 1fr));
592
- }
593
-
594
- .grid-rows-3 {
595
- grid-template-rows: repeat(3, minmax(0, 1fr));
596
- }
597
-
598
- .grid-cols-4 {
599
- grid-template-columns: repeat(4, minmax(0, 1fr));
600
- }
601
-
602
- .grid-rows-4 {
603
- grid-template-rows: repeat(4, minmax(0, 1fr));
604
- }
605
-
606
- .grid-cols-5 {
607
- grid-template-columns: repeat(5, minmax(0, 1fr));
608
- }
609
-
610
- .grid-rows-5 {
611
- grid-template-rows: repeat(5, minmax(0, 1fr));
612
- }
613
-
614
- .grid-cols-6 {
615
- grid-template-columns: repeat(6, minmax(0, 1fr));
616
- }
617
-
618
- .grid-rows-6 {
619
- grid-template-rows: repeat(6, minmax(0, 1fr));
620
- }
621
-
622
- .grid-cols-7 {
623
- grid-template-columns: repeat(7, minmax(0, 1fr));
624
- }
625
-
626
- .grid-rows-7 {
627
- grid-template-rows: repeat(7, minmax(0, 1fr));
628
- }
629
-
630
- .grid-cols-8 {
631
- grid-template-columns: repeat(8, minmax(0, 1fr));
632
- }
633
-
634
- .grid-rows-8 {
635
- grid-template-rows: repeat(8, minmax(0, 1fr));
636
- }
637
-
638
- .grid-cols-9 {
639
- grid-template-columns: repeat(9, minmax(0, 1fr));
640
- }
641
-
642
- .grid-rows-9 {
643
- grid-template-rows: repeat(9, minmax(0, 1fr));
644
- }
645
-
646
- .grid-cols-10 {
647
- grid-template-columns: repeat(10, minmax(0, 1fr));
648
- }
649
-
650
- .grid-rows-10 {
651
- grid-template-rows: repeat(10, minmax(0, 1fr));
652
- }
653
-
654
- .grid-cols-11 {
655
- grid-template-columns: repeat(11, minmax(0, 1fr));
656
- }
657
-
658
- .grid-rows-11 {
659
- grid-template-rows: repeat(11, minmax(0, 1fr));
660
- }
661
-
662
- .grid-cols-12 {
663
- grid-template-columns: repeat(12, minmax(0, 1fr));
664
- }
665
-
666
- .grid-rows-12 {
667
- grid-template-rows: repeat(12, minmax(0, 1fr));
668
- }
669
-
670
- .ma-auto,
671
- .m-auto {
672
- margin: auto !important;
673
- }
674
-
675
- .mx-auto {
676
- margin-left: auto !important;
677
- margin-right: auto !important;
678
- }
679
-
680
- .my-auto {
681
- margin-bottom: auto !important;
682
- margin-top: auto !important;
683
- }
684
-
685
- .mt-auto {
686
- margin-top: auto !important;
687
- }
688
-
689
- .mr-auto {
690
- margin-right: auto !important;
691
- }
692
-
693
- .mb-auto {
694
- margin-bottom: auto !important;
695
- }
696
-
697
- .ml-auto {
698
- margin-left: auto !important;
699
- }
700
-
701
- .-ma-12,
702
- .-m-12 {
703
- margin: -48px !important;
704
- }
705
-
706
- .-mx-12 {
707
- margin-left: -48px !important;
708
- margin-right: -48px !important;
709
- }
710
-
711
- .-my-12 {
712
- margin-bottom: -48px !important;
713
- margin-top: -48px !important;
714
- }
715
-
716
- .-mt-12 {
717
- margin-top: -48px !important;
718
- }
719
-
720
- .-mr-12 {
721
- margin-right: -48px !important;
722
- }
723
-
724
- .-mb-12 {
725
- margin-bottom: -48px !important;
726
- }
727
-
728
- .-ml-12 {
729
- margin-left: -48px !important;
730
- }
731
-
732
- .-ma-11,
733
- .-m-11 {
734
- margin: -44px !important;
735
- }
736
-
737
- .-mx-11 {
738
- margin-left: -44px !important;
739
- margin-right: -44px !important;
740
- }
741
-
742
- .-my-11 {
743
- margin-bottom: -44px !important;
744
- margin-top: -44px !important;
745
- }
746
-
747
- .-mt-11 {
748
- margin-top: -44px !important;
749
- }
750
-
751
- .-mr-11 {
752
- margin-right: -44px !important;
753
- }
754
-
755
- .-mb-11 {
756
- margin-bottom: -44px !important;
757
- }
758
-
759
- .-ml-11 {
760
- margin-left: -44px !important;
761
- }
762
-
763
- .-ma-10,
764
- .-m-10 {
765
- margin: -40px !important;
766
- }
767
-
768
- .-mx-10 {
769
- margin-left: -40px !important;
770
- margin-right: -40px !important;
771
- }
772
-
773
- .-my-10 {
774
- margin-bottom: -40px !important;
775
- margin-top: -40px !important;
776
- }
777
-
778
- .-mt-10 {
779
- margin-top: -40px !important;
780
- }
781
-
782
- .-mr-10 {
783
- margin-right: -40px !important;
784
- }
785
-
786
- .-mb-10 {
787
- margin-bottom: -40px !important;
788
- }
789
-
790
- .-ml-10 {
791
- margin-left: -40px !important;
792
- }
793
-
794
- .-ma-9,
795
- .-m-9 {
796
- margin: -36px !important;
797
- }
798
-
799
- .-mx-9 {
800
- margin-left: -36px !important;
801
- margin-right: -36px !important;
802
- }
803
-
804
- .-my-9 {
805
- margin-bottom: -36px !important;
806
- margin-top: -36px !important;
807
- }
808
-
809
- .-mt-9 {
810
- margin-top: -36px !important;
811
- }
812
-
813
- .-mr-9 {
814
- margin-right: -36px !important;
815
- }
816
-
817
- .-mb-9 {
818
- margin-bottom: -36px !important;
819
- }
820
-
821
- .-ml-9 {
822
- margin-left: -36px !important;
823
- }
824
-
825
- .-ma-8,
826
- .-m-8 {
827
- margin: -32px !important;
828
- }
829
-
830
- .-mx-8 {
831
- margin-left: -32px !important;
832
- margin-right: -32px !important;
833
- }
834
-
835
- .-my-8 {
836
- margin-bottom: -32px !important;
837
- margin-top: -32px !important;
838
- }
839
-
840
- .-mt-8 {
841
- margin-top: -32px !important;
842
- }
843
-
844
- .-mr-8 {
845
- margin-right: -32px !important;
846
- }
847
-
848
- .-mb-8 {
849
- margin-bottom: -32px !important;
850
- }
851
-
852
- .-ml-8 {
853
- margin-left: -32px !important;
854
- }
855
-
856
- .-ma-7,
857
- .-m-7 {
858
- margin: -28px !important;
859
- }
860
-
861
- .-mx-7 {
862
- margin-left: -28px !important;
863
- margin-right: -28px !important;
864
- }
865
-
866
- .-my-7 {
867
- margin-bottom: -28px !important;
868
- margin-top: -28px !important;
869
- }
870
-
871
- .-mt-7 {
872
- margin-top: -28px !important;
873
- }
874
-
875
- .-mr-7 {
876
- margin-right: -28px !important;
877
- }
878
-
879
- .-mb-7 {
880
- margin-bottom: -28px !important;
881
- }
882
-
883
- .-ml-7 {
884
- margin-left: -28px !important;
885
- }
886
-
887
- .-ma-6,
888
- .-m-6 {
889
- margin: -24px !important;
890
- }
891
-
892
- .-mx-6 {
893
- margin-left: -24px !important;
894
- margin-right: -24px !important;
895
- }
896
-
897
- .-my-6 {
898
- margin-bottom: -24px !important;
899
- margin-top: -24px !important;
900
- }
901
-
902
- .-mt-6 {
903
- margin-top: -24px !important;
904
- }
905
-
906
- .-mr-6 {
907
- margin-right: -24px !important;
908
- }
909
-
910
- .-mb-6 {
911
- margin-bottom: -24px !important;
912
- }
913
-
914
- .-ml-6 {
915
- margin-left: -24px !important;
916
- }
917
-
918
- .-ma-5,
919
- .-m-5 {
920
- margin: -20px !important;
921
- }
922
-
923
- .-mx-5 {
924
- margin-left: -20px !important;
925
- margin-right: -20px !important;
926
- }
927
-
928
- .-my-5 {
929
- margin-bottom: -20px !important;
930
- margin-top: -20px !important;
931
- }
932
-
933
- .-mt-5 {
934
- margin-top: -20px !important;
935
- }
936
-
937
- .-mr-5 {
938
- margin-right: -20px !important;
939
- }
940
-
941
- .-mb-5 {
942
- margin-bottom: -20px !important;
943
- }
944
-
945
- .-ml-5 {
946
- margin-left: -20px !important;
947
- }
948
-
949
- .-ma-4,
950
- .-m-4 {
951
- margin: -16px !important;
952
- }
953
-
954
- .-mx-4 {
955
- margin-left: -16px !important;
956
- margin-right: -16px !important;
957
- }
958
-
959
- .-my-4 {
960
- margin-bottom: -16px !important;
961
- margin-top: -16px !important;
962
- }
963
-
964
- .-mt-4 {
965
- margin-top: -16px !important;
966
- }
967
-
968
- .-mr-4 {
969
- margin-right: -16px !important;
970
- }
971
-
972
- .-mb-4 {
973
- margin-bottom: -16px !important;
974
- }
975
-
976
- .-ml-4 {
977
- margin-left: -16px !important;
978
- }
979
-
980
- .-ma-3,
981
- .-m-3 {
982
- margin: -12px !important;
983
- }
984
-
985
- .-mx-3 {
986
- margin-left: -12px !important;
987
- margin-right: -12px !important;
988
- }
989
-
990
- .-my-3 {
991
- margin-bottom: -12px !important;
992
- margin-top: -12px !important;
993
- }
994
-
995
- .-mt-3 {
996
- margin-top: -12px !important;
997
- }
998
-
999
- .-mr-3 {
1000
- margin-right: -12px !important;
1001
- }
1002
-
1003
- .-mb-3 {
1004
- margin-bottom: -12px !important;
1005
- }
1006
-
1007
- .-ml-3 {
1008
- margin-left: -12px !important;
1009
- }
1010
-
1011
- .-ma-2,
1012
- .-m-2 {
1013
- margin: -8px !important;
1014
- }
1015
-
1016
- .-mx-2 {
1017
- margin-left: -8px !important;
1018
- margin-right: -8px !important;
1019
- }
1020
-
1021
- .-my-2 {
1022
- margin-bottom: -8px !important;
1023
- margin-top: -8px !important;
1024
- }
1025
-
1026
- .-mt-2 {
1027
- margin-top: -8px !important;
1028
- }
1029
-
1030
- .-mr-2 {
1031
- margin-right: -8px !important;
1032
- }
1033
-
1034
- .-mb-2 {
1035
- margin-bottom: -8px !important;
1036
- }
1037
-
1038
- .-ml-2 {
1039
- margin-left: -8px !important;
1040
- }
1041
-
1042
- .-ma-1,
1043
- .-m-1 {
1044
- margin: -4px !important;
1045
- }
1046
-
1047
- .-mx-1 {
1048
- margin-left: -4px !important;
1049
- margin-right: -4px !important;
1050
- }
1051
-
1052
- .-my-1 {
1053
- margin-bottom: -4px !important;
1054
- margin-top: -4px !important;
1055
- }
1056
-
1057
- .-mt-1 {
1058
- margin-top: -4px !important;
1059
- }
1060
-
1061
- .-mr-1 {
1062
- margin-right: -4px !important;
1063
- }
1064
-
1065
- .-mb-1 {
1066
- margin-bottom: -4px !important;
1067
- }
1068
-
1069
- .-ml-1 {
1070
- margin-left: -4px !important;
1071
- }
1072
-
1073
- .ma-0,
1074
- .m-0 {
1075
- margin: 0px !important;
1076
- }
1077
-
1078
- .mx-0 {
1079
- margin-left: 0px !important;
1080
- margin-right: 0px !important;
1081
- }
1082
-
1083
- .my-0 {
1084
- margin-bottom: 0px !important;
1085
- margin-top: 0px !important;
1086
- }
1087
-
1088
- .mt-0 {
1089
- margin-top: 0px !important;
1090
- }
1091
-
1092
- .mr-0 {
1093
- margin-right: 0px !important;
1094
- }
1095
-
1096
- .mb-0 {
1097
- margin-bottom: 0px !important;
1098
- }
1099
-
1100
- .ml-0 {
1101
- margin-left: 0px !important;
1102
- }
1103
-
1104
- .ma-1,
1105
- .m-1 {
1106
- margin: 4px !important;
1107
- }
1108
-
1109
- .mx-1 {
1110
- margin-left: 4px !important;
1111
- margin-right: 4px !important;
1112
- }
1113
-
1114
- .my-1 {
1115
- margin-bottom: 4px !important;
1116
- margin-top: 4px !important;
1117
- }
1118
-
1119
- .mt-1 {
1120
- margin-top: 4px !important;
1121
- }
1122
-
1123
- .mr-1 {
1124
- margin-right: 4px !important;
1125
- }
1126
-
1127
- .mb-1 {
1128
- margin-bottom: 4px !important;
1129
- }
1130
-
1131
- .ml-1 {
1132
- margin-left: 4px !important;
1133
- }
1134
-
1135
- .ma-2,
1136
- .m-2 {
1137
- margin: 8px !important;
1138
- }
1139
-
1140
- .mx-2 {
1141
- margin-left: 8px !important;
1142
- margin-right: 8px !important;
1143
- }
1144
-
1145
- .my-2 {
1146
- margin-bottom: 8px !important;
1147
- margin-top: 8px !important;
1148
- }
1149
-
1150
- .mt-2 {
1151
- margin-top: 8px !important;
1152
- }
1153
-
1154
- .mr-2 {
1155
- margin-right: 8px !important;
1156
- }
1157
-
1158
- .mb-2 {
1159
- margin-bottom: 8px !important;
1160
- }
1161
-
1162
- .ml-2 {
1163
- margin-left: 8px !important;
1164
- }
1165
-
1166
- .ma-3,
1167
- .m-3 {
1168
- margin: 12px !important;
1169
- }
1170
-
1171
- .mx-3 {
1172
- margin-left: 12px !important;
1173
- margin-right: 12px !important;
1174
- }
1175
-
1176
- .my-3 {
1177
- margin-bottom: 12px !important;
1178
- margin-top: 12px !important;
1179
- }
1180
-
1181
- .mt-3 {
1182
- margin-top: 12px !important;
1183
- }
1184
-
1185
- .mr-3 {
1186
- margin-right: 12px !important;
1187
- }
1188
-
1189
- .mb-3 {
1190
- margin-bottom: 12px !important;
1191
- }
1192
-
1193
- .ml-3 {
1194
- margin-left: 12px !important;
1195
- }
1196
-
1197
- .ma-4,
1198
- .m-4 {
1199
- margin: 16px !important;
1200
- }
1201
-
1202
- .mx-4 {
1203
- margin-left: 16px !important;
1204
- margin-right: 16px !important;
1205
- }
1206
-
1207
- .my-4 {
1208
- margin-bottom: 16px !important;
1209
- margin-top: 16px !important;
1210
- }
1211
-
1212
- .mt-4 {
1213
- margin-top: 16px !important;
1214
- }
1215
-
1216
- .mr-4 {
1217
- margin-right: 16px !important;
1218
- }
1219
-
1220
- .mb-4 {
1221
- margin-bottom: 16px !important;
1222
- }
1223
-
1224
- .ml-4 {
1225
- margin-left: 16px !important;
1226
- }
1227
-
1228
- .ma-5,
1229
- .m-5 {
1230
- margin: 20px !important;
1231
- }
1232
-
1233
- .mx-5 {
1234
- margin-left: 20px !important;
1235
- margin-right: 20px !important;
1236
- }
1237
-
1238
- .my-5 {
1239
- margin-bottom: 20px !important;
1240
- margin-top: 20px !important;
1241
- }
1242
-
1243
- .mt-5 {
1244
- margin-top: 20px !important;
1245
- }
1246
-
1247
- .mr-5 {
1248
- margin-right: 20px !important;
1249
- }
1250
-
1251
- .mb-5 {
1252
- margin-bottom: 20px !important;
1253
- }
1254
-
1255
- .ml-5 {
1256
- margin-left: 20px !important;
1257
- }
1258
-
1259
- .ma-6,
1260
- .m-6 {
1261
- margin: 24px !important;
1262
- }
1263
-
1264
- .mx-6 {
1265
- margin-left: 24px !important;
1266
- margin-right: 24px !important;
1267
- }
1268
-
1269
- .my-6 {
1270
- margin-bottom: 24px !important;
1271
- margin-top: 24px !important;
1272
- }
1273
-
1274
- .mt-6 {
1275
- margin-top: 24px !important;
1276
- }
1277
-
1278
- .mr-6 {
1279
- margin-right: 24px !important;
1280
- }
1281
-
1282
- .mb-6 {
1283
- margin-bottom: 24px !important;
1284
- }
1285
-
1286
- .ml-6 {
1287
- margin-left: 24px !important;
1288
- }
1289
-
1290
- .ma-7,
1291
- .m-7 {
1292
- margin: 28px !important;
1293
- }
1294
-
1295
- .mx-7 {
1296
- margin-left: 28px !important;
1297
- margin-right: 28px !important;
1298
- }
1299
-
1300
- .my-7 {
1301
- margin-bottom: 28px !important;
1302
- margin-top: 28px !important;
1303
- }
1304
-
1305
- .mt-7 {
1306
- margin-top: 28px !important;
1307
- }
1308
-
1309
- .mr-7 {
1310
- margin-right: 28px !important;
1311
- }
1312
-
1313
- .mb-7 {
1314
- margin-bottom: 28px !important;
1315
- }
1316
-
1317
- .ml-7 {
1318
- margin-left: 28px !important;
1319
- }
1320
-
1321
- .ma-8,
1322
- .m-8 {
1323
- margin: 32px !important;
1324
- }
1325
-
1326
- .mx-8 {
1327
- margin-left: 32px !important;
1328
- margin-right: 32px !important;
1329
- }
1330
-
1331
- .my-8 {
1332
- margin-bottom: 32px !important;
1333
- margin-top: 32px !important;
1334
- }
1335
-
1336
- .mt-8 {
1337
- margin-top: 32px !important;
1338
- }
1339
-
1340
- .mr-8 {
1341
- margin-right: 32px !important;
1342
- }
1343
-
1344
- .mb-8 {
1345
- margin-bottom: 32px !important;
1346
- }
1347
-
1348
- .ml-8 {
1349
- margin-left: 32px !important;
1350
- }
1351
-
1352
- .ma-9,
1353
- .m-9 {
1354
- margin: 36px !important;
1355
- }
1356
-
1357
- .mx-9 {
1358
- margin-left: 36px !important;
1359
- margin-right: 36px !important;
1360
- }
1361
-
1362
- .my-9 {
1363
- margin-bottom: 36px !important;
1364
- margin-top: 36px !important;
1365
- }
1366
-
1367
- .mt-9 {
1368
- margin-top: 36px !important;
1369
- }
1370
-
1371
- .mr-9 {
1372
- margin-right: 36px !important;
1373
- }
1374
-
1375
- .mb-9 {
1376
- margin-bottom: 36px !important;
1377
- }
1378
-
1379
- .ml-9 {
1380
- margin-left: 36px !important;
1381
- }
1382
-
1383
- .ma-10,
1384
- .m-10 {
1385
- margin: 40px !important;
1386
- }
1387
-
1388
- .mx-10 {
1389
- margin-left: 40px !important;
1390
- margin-right: 40px !important;
1391
- }
1392
-
1393
- .my-10 {
1394
- margin-bottom: 40px !important;
1395
- margin-top: 40px !important;
1396
- }
1397
-
1398
- .mt-10 {
1399
- margin-top: 40px !important;
1400
- }
1401
-
1402
- .mr-10 {
1403
- margin-right: 40px !important;
1404
- }
1405
-
1406
- .mb-10 {
1407
- margin-bottom: 40px !important;
1408
- }
1409
-
1410
- .ml-10 {
1411
- margin-left: 40px !important;
1412
- }
1413
-
1414
- .ma-11,
1415
- .m-11 {
1416
- margin: 44px !important;
1417
- }
1418
-
1419
- .mx-11 {
1420
- margin-left: 44px !important;
1421
- margin-right: 44px !important;
1422
- }
1423
-
1424
- .my-11 {
1425
- margin-bottom: 44px !important;
1426
- margin-top: 44px !important;
1427
- }
1428
-
1429
- .mt-11 {
1430
- margin-top: 44px !important;
1431
- }
1432
-
1433
- .mr-11 {
1434
- margin-right: 44px !important;
1435
- }
1436
-
1437
- .mb-11 {
1438
- margin-bottom: 44px !important;
1439
- }
1440
-
1441
- .ml-11 {
1442
- margin-left: 44px !important;
1443
- }
1444
-
1445
- .ma-12,
1446
- .m-12 {
1447
- margin: 48px !important;
1448
- }
1449
-
1450
- .mx-12 {
1451
- margin-left: 48px !important;
1452
- margin-right: 48px !important;
1453
- }
1454
-
1455
- .my-12 {
1456
- margin-bottom: 48px !important;
1457
- margin-top: 48px !important;
1458
- }
1459
-
1460
- .mt-12 {
1461
- margin-top: 48px !important;
1462
- }
1463
-
1464
- .mr-12 {
1465
- margin-right: 48px !important;
1466
- }
1467
-
1468
- .mb-12 {
1469
- margin-bottom: 48px !important;
1470
- }
1471
-
1472
- .ml-12 {
1473
- margin-left: 48px !important;
1474
- }
1475
-
1476
- .pa-0,
1477
- .p-0 {
1478
- padding: 0px !important;
1479
- }
1480
-
1481
- .px-0 {
1482
- padding-left: 0px !important;
1483
- padding-right: 0px !important;
1484
- }
1485
-
1486
- .py-0 {
1487
- padding-bottom: 0px !important;
1488
- padding-top: 0px !important;
1489
- }
1490
-
1491
- .pt-0 {
1492
- padding-top: 0px !important;
1493
- }
1494
-
1495
- .pr-0 {
1496
- padding-right: 0px !important;
1497
- }
1498
-
1499
- .pb-0 {
1500
- padding-bottom: 0px !important;
1501
- }
1502
-
1503
- .pl-0 {
1504
- padding-left: 0px !important;
1505
- }
1506
-
1507
- .pa-1,
1508
- .p-1 {
1509
- padding: 4px !important;
1510
- }
1511
-
1512
- .px-1 {
1513
- padding-left: 4px !important;
1514
- padding-right: 4px !important;
1515
- }
1516
-
1517
- .py-1 {
1518
- padding-bottom: 4px !important;
1519
- padding-top: 4px !important;
1520
- }
1521
-
1522
- .pt-1 {
1523
- padding-top: 4px !important;
1524
- }
1525
-
1526
- .pr-1 {
1527
- padding-right: 4px !important;
1528
- }
1529
-
1530
- .pb-1 {
1531
- padding-bottom: 4px !important;
1532
- }
1533
-
1534
- .pl-1 {
1535
- padding-left: 4px !important;
1536
- }
1537
-
1538
- .pa-2,
1539
- .p-2 {
1540
- padding: 8px !important;
1541
- }
1542
-
1543
- .px-2 {
1544
- padding-left: 8px !important;
1545
- padding-right: 8px !important;
1546
- }
1547
-
1548
- .py-2 {
1549
- padding-bottom: 8px !important;
1550
- padding-top: 8px !important;
1551
- }
1552
-
1553
- .pt-2 {
1554
- padding-top: 8px !important;
1555
- }
1556
-
1557
- .pr-2 {
1558
- padding-right: 8px !important;
1559
- }
1560
-
1561
- .pb-2 {
1562
- padding-bottom: 8px !important;
1563
- }
1564
-
1565
- .pl-2 {
1566
- padding-left: 8px !important;
1567
- }
1568
-
1569
- .pa-3,
1570
- .p-3 {
1571
- padding: 12px !important;
1572
- }
1573
-
1574
- .px-3 {
1575
- padding-left: 12px !important;
1576
- padding-right: 12px !important;
1577
- }
1578
-
1579
- .py-3 {
1580
- padding-bottom: 12px !important;
1581
- padding-top: 12px !important;
1582
- }
1583
-
1584
- .pt-3 {
1585
- padding-top: 12px !important;
1586
- }
1587
-
1588
- .pr-3 {
1589
- padding-right: 12px !important;
1590
- }
1591
-
1592
- .pb-3 {
1593
- padding-bottom: 12px !important;
1594
- }
1595
-
1596
- .pl-3 {
1597
- padding-left: 12px !important;
1598
- }
1599
-
1600
- .pa-4,
1601
- .p-4 {
1602
- padding: 16px !important;
1603
- }
1604
-
1605
- .px-4 {
1606
- padding-left: 16px !important;
1607
- padding-right: 16px !important;
1608
- }
1609
-
1610
- .py-4 {
1611
- padding-bottom: 16px !important;
1612
- padding-top: 16px !important;
1613
- }
1614
-
1615
- .pt-4 {
1616
- padding-top: 16px !important;
1617
- }
1618
-
1619
- .pr-4 {
1620
- padding-right: 16px !important;
1621
- }
1622
-
1623
- .pb-4 {
1624
- padding-bottom: 16px !important;
1625
- }
1626
-
1627
- .pl-4 {
1628
- padding-left: 16px !important;
1629
- }
1630
-
1631
- .pa-5,
1632
- .p-5 {
1633
- padding: 20px !important;
1634
- }
1635
-
1636
- .px-5 {
1637
- padding-left: 20px !important;
1638
- padding-right: 20px !important;
1639
- }
1640
-
1641
- .py-5 {
1642
- padding-bottom: 20px !important;
1643
- padding-top: 20px !important;
1644
- }
1645
-
1646
- .pt-5 {
1647
- padding-top: 20px !important;
1648
- }
1649
-
1650
- .pr-5 {
1651
- padding-right: 20px !important;
1652
- }
1653
-
1654
- .pb-5 {
1655
- padding-bottom: 20px !important;
1656
- }
1657
-
1658
- .pl-5 {
1659
- padding-left: 20px !important;
1660
- }
1661
-
1662
- .pa-6,
1663
- .p-6 {
1664
- padding: 24px !important;
1665
- }
1666
-
1667
- .px-6 {
1668
- padding-left: 24px !important;
1669
- padding-right: 24px !important;
1670
- }
1671
-
1672
- .py-6 {
1673
- padding-bottom: 24px !important;
1674
- padding-top: 24px !important;
1675
- }
1676
-
1677
- .pt-6 {
1678
- padding-top: 24px !important;
1679
- }
1680
-
1681
- .pr-6 {
1682
- padding-right: 24px !important;
1683
- }
1684
-
1685
- .pb-6 {
1686
- padding-bottom: 24px !important;
1687
- }
1688
-
1689
- .pl-6 {
1690
- padding-left: 24px !important;
1691
- }
1692
-
1693
- .pa-7,
1694
- .p-7 {
1695
- padding: 28px !important;
1696
- }
1697
-
1698
- .px-7 {
1699
- padding-left: 28px !important;
1700
- padding-right: 28px !important;
1701
- }
1702
-
1703
- .py-7 {
1704
- padding-bottom: 28px !important;
1705
- padding-top: 28px !important;
1706
- }
1707
-
1708
- .pt-7 {
1709
- padding-top: 28px !important;
1710
- }
1711
-
1712
- .pr-7 {
1713
- padding-right: 28px !important;
1714
- }
1715
-
1716
- .pb-7 {
1717
- padding-bottom: 28px !important;
1718
- }
1719
-
1720
- .pl-7 {
1721
- padding-left: 28px !important;
1722
- }
1723
-
1724
- .pa-8,
1725
- .p-8 {
1726
- padding: 32px !important;
1727
- }
1728
-
1729
- .px-8 {
1730
- padding-left: 32px !important;
1731
- padding-right: 32px !important;
1732
- }
1733
-
1734
- .py-8 {
1735
- padding-bottom: 32px !important;
1736
- padding-top: 32px !important;
1737
- }
1738
-
1739
- .pt-8 {
1740
- padding-top: 32px !important;
1741
- }
1742
-
1743
- .pr-8 {
1744
- padding-right: 32px !important;
1745
- }
1746
-
1747
- .pb-8 {
1748
- padding-bottom: 32px !important;
1749
- }
1750
-
1751
- .pl-8 {
1752
- padding-left: 32px !important;
1753
- }
1754
-
1755
- .pa-9,
1756
- .p-9 {
1757
- padding: 36px !important;
1758
- }
1759
-
1760
- .px-9 {
1761
- padding-left: 36px !important;
1762
- padding-right: 36px !important;
1763
- }
1764
-
1765
- .py-9 {
1766
- padding-bottom: 36px !important;
1767
- padding-top: 36px !important;
1768
- }
1769
-
1770
- .pt-9 {
1771
- padding-top: 36px !important;
1772
- }
1773
-
1774
- .pr-9 {
1775
- padding-right: 36px !important;
1776
- }
1777
-
1778
- .pb-9 {
1779
- padding-bottom: 36px !important;
1780
- }
1781
-
1782
- .pl-9 {
1783
- padding-left: 36px !important;
1784
- }
1785
-
1786
- .pa-10,
1787
- .p-10 {
1788
- padding: 40px !important;
1789
- }
1790
-
1791
- .px-10 {
1792
- padding-left: 40px !important;
1793
- padding-right: 40px !important;
1794
- }
1795
-
1796
- .py-10 {
1797
- padding-bottom: 40px !important;
1798
- padding-top: 40px !important;
1799
- }
1800
-
1801
- .pt-10 {
1802
- padding-top: 40px !important;
1803
- }
1804
-
1805
- .pr-10 {
1806
- padding-right: 40px !important;
1807
- }
1808
-
1809
- .pb-10 {
1810
- padding-bottom: 40px !important;
1811
- }
1812
-
1813
- .pl-10 {
1814
- padding-left: 40px !important;
1815
- }
1816
-
1817
- .pa-11,
1818
- .p-11 {
1819
- padding: 44px !important;
1820
- }
1821
-
1822
- .px-11 {
1823
- padding-left: 44px !important;
1824
- padding-right: 44px !important;
1825
- }
1826
-
1827
- .py-11 {
1828
- padding-bottom: 44px !important;
1829
- padding-top: 44px !important;
1830
- }
1831
-
1832
- .pt-11 {
1833
- padding-top: 44px !important;
1834
- }
1835
-
1836
- .pr-11 {
1837
- padding-right: 44px !important;
1838
- }
1839
-
1840
- .pb-11 {
1841
- padding-bottom: 44px !important;
1842
- }
1843
-
1844
- .pl-11 {
1845
- padding-left: 44px !important;
1846
- }
1847
-
1848
- .pa-12,
1849
- .p-12 {
1850
- padding: 48px !important;
1851
- }
1852
-
1853
- .px-12 {
1854
- padding-left: 48px !important;
1855
- padding-right: 48px !important;
1856
- }
1857
-
1858
- .py-12 {
1859
- padding-bottom: 48px !important;
1860
- padding-top: 48px !important;
1861
- }
1862
-
1863
- .pt-12 {
1864
- padding-top: 48px !important;
1865
- }
1866
-
1867
- .pr-12 {
1868
- padding-right: 48px !important;
1869
- }
1870
-
1871
- .pb-12 {
1872
- padding-bottom: 48px !important;
1873
- }
1874
-
1875
- .pl-12 {
1876
- padding-left: 48px !important;
1877
- }
1878
-
1879
- .bg-accent-blue {
1880
- background-color: #5560cb !important;
1881
- }
1882
-
1883
- .text-accent-blue {
1884
- color: #5560cb !important;
1885
- }
1886
-
1887
- .bg-accent-blue-shade-1 {
1888
- background-color: #404898 !important;
1889
- }
1890
-
1891
- .text-accent-blue-shade-1 {
1892
- color: #404898 !important;
1893
- }
1894
-
1895
- .bg-accent-blue-shade-2 {
1896
- background-color: #2f3570 !important;
1897
- }
1898
-
1899
- .text-accent-blue-shade-2 {
1900
- color: #2f3570 !important;
1901
- }
1902
-
1903
- .bg-accent-green {
1904
- background-color: #49a24c !important;
1905
- }
1906
-
1907
- .text-accent-green {
1908
- color: #49a24c !important;
1909
- }
1910
-
1911
- .bg-accent-green-shade-1 {
1912
- background-color: #3a823d !important;
1913
- }
1914
-
1915
- .text-accent-green-shade-1 {
1916
- color: #3a823d !important;
1917
- }
1918
-
1919
- .bg-accent-green-shade-2 {
1920
- background-color: #17551a !important;
1921
- }
1922
-
1923
- .text-accent-green-shade-2 {
1924
- color: #17551a !important;
1925
- }
1926
-
1927
- .bg-accent-orange {
1928
- background-color: #fc8247 !important;
1929
- }
1930
-
1931
- .text-accent-orange {
1932
- color: #fc8247 !important;
1933
- }
1934
-
1935
- .bg-accent-orange-shade-1 {
1936
- background-color: #e15c1b !important;
1937
- }
1938
-
1939
- .text-accent-orange-shade-1 {
1940
- color: #e15c1b !important;
1941
- }
1942
-
1943
- .bg-accent-orange-shade-2 {
1944
- background-color: #a9440b !important;
1945
- }
1946
-
1947
- .text-accent-orange-shade-2 {
1948
- color: #a9440b !important;
1949
- }
1950
-
1951
- .bg-accent-pink {
1952
- background-color: #d75fae !important;
1953
- }
1954
-
1955
- .text-accent-pink {
1956
- color: #d75fae !important;
1957
- }
1958
-
1959
- .bg-accent-pink-shade-1 {
1960
- background-color: #7c3872 !important;
1961
- }
1962
-
1963
- .text-accent-pink-shade-1 {
1964
- color: #7c3872 !important;
1965
- }
1966
-
1967
- .bg-accent-pink-shade-2 {
1968
- background-color: #56204e !important;
1969
- }
1970
-
1971
- .text-accent-pink-shade-2 {
1972
- color: #56204e !important;
1973
- }
1974
-
1975
- .bg-accent-red-shade-1 {
1976
- background-color: #981d31 !important;
1977
- }
1978
-
1979
- .text-accent-red-shade-1 {
1980
- color: #981d31 !important;
1981
- }
1982
-
1983
- .bg-accent-red-shade-2 {
1984
- background-color: #701323 !important;
1985
- }
1986
-
1987
- .text-accent-red-shade-2 {
1988
- color: #701323 !important;
1989
- }
1990
-
1991
- .bg-alert-red {
1992
- background-color: #c34459 !important;
1993
- }
1994
-
1995
- .text-alert-red {
1996
- color: #c34459 !important;
1997
- }
1998
-
1999
- .bg-background {
2000
- background-color: #fff !important;
2001
- }
2002
-
2003
- .text-background {
2004
- color: #fff !important;
2005
- }
2006
-
2007
- .bg-black {
2008
- background-color: #000 !important;
2009
- }
2010
-
2011
- .text-black {
2012
- color: #000 !important;
2013
- }
2014
-
2015
- .bg-blue-100 {
2016
- background-color: #e0edff !important;
2017
- }
2018
-
2019
- .text-blue-100 {
2020
- color: #e0edff !important;
2021
- }
2022
-
2023
- .bg-blue-200 {
2024
- background-color: #b2cffa !important;
2025
- }
2026
-
2027
- .text-blue-200 {
2028
- color: #b2cffa !important;
2029
- }
2030
-
2031
- .bg-blue-300 {
2032
- background-color: #7a95f8 !important;
2033
- }
2034
-
2035
- .text-blue-300 {
2036
- color: #7a95f8 !important;
2037
- }
2038
-
2039
- .bg-blue-400 {
2040
- background-color: #496ae0 !important;
2041
- }
2042
-
2043
- .text-blue-400 {
2044
- color: #496ae0 !important;
2045
- }
2046
-
2047
- .bg-blue-500 {
2048
- background-color: #1a43d7 !important;
2049
- }
2050
-
2051
- .text-blue-500 {
2052
- color: #1a43d7 !important;
2053
- }
2054
-
2055
- .bg-border {
2056
- background-color: rgba(0, 0, 0, 0.1) !important;
2057
- }
2058
-
2059
- .text-border {
2060
- color: rgba(0, 0, 0, 0.1) !important;
2061
- }
2062
-
2063
- .bg-button-background {
2064
- background-color: #000 !important;
2065
- }
2066
-
2067
- .text-button-background {
2068
- color: #000 !important;
2069
- }
2070
-
2071
- .bg-gold-100 {
2072
- background-color: #fff0ba !important;
2073
- }
2074
-
2075
- .text-gold-100 {
2076
- color: #fff0ba !important;
2077
- }
2078
-
2079
- .bg-gold-200 {
2080
- background-color: #fcde74 !important;
2081
- }
2082
-
2083
- .text-gold-200 {
2084
- color: #fcde74 !important;
2085
- }
2086
-
2087
- .bg-gold-300 {
2088
- background-color: #ffc120 !important;
2089
- }
2090
-
2091
- .text-gold-300 {
2092
- color: #ffc120 !important;
2093
- }
2094
-
2095
- .bg-gold-400 {
2096
- background-color: #f99500 !important;
2097
- }
2098
-
2099
- .text-gold-400 {
2100
- color: #f99500 !important;
2101
- }
2102
-
2103
- .bg-gold-500 {
2104
- background-color: #f47500 !important;
2105
- }
2106
-
2107
- .text-gold-500 {
2108
- color: #f47500 !important;
2109
- }
2110
-
2111
- .bg-gray-100 {
2112
- background-color: rgba(0, 0, 0, 0.04) !important;
2113
- }
2114
-
2115
- .text-gray-100 {
2116
- color: rgba(0, 0, 0, 0.04) !important;
2117
- }
2118
-
2119
- .bg-gray-200 {
2120
- background-color: rgba(0, 0, 0, 0.1) !important;
2121
- }
2122
-
2123
- .text-gray-200 {
2124
- color: rgba(0, 0, 0, 0.1) !important;
2125
- }
2126
-
2127
- .bg-gray-300 {
2128
- background-color: rgba(0, 0, 0, 0.31) !important;
2129
- }
2130
-
2131
- .text-gray-300 {
2132
- color: rgba(0, 0, 0, 0.31) !important;
2133
- }
2134
-
2135
- .bg-gray-400 {
2136
- background-color: rgba(0, 0, 0, 0.48) !important;
2137
- }
2138
-
2139
- .text-gray-400 {
2140
- color: rgba(0, 0, 0, 0.48) !important;
2141
- }
2142
-
2143
- .bg-gray-500 {
2144
- background-color: rgba(0, 0, 0, 0.69) !important;
2145
- }
2146
-
2147
- .text-gray-500 {
2148
- color: rgba(0, 0, 0, 0.69) !important;
2149
- }
2150
-
2151
- .bg-green-100 {
2152
- background-color: #dcf2cb !important;
2153
- }
2154
-
2155
- .text-green-100 {
2156
- color: #dcf2cb !important;
2157
- }
2158
-
2159
- .bg-green-200 {
2160
- background-color: #b8da96 !important;
2161
- }
2162
-
2163
- .text-green-200 {
2164
- color: #b8da96 !important;
2165
- }
2166
-
2167
- .bg-green-300 {
2168
- background-color: #8bc95a !important;
2169
- }
2170
-
2171
- .text-green-300 {
2172
- color: #8bc95a !important;
2173
- }
2174
-
2175
- .bg-green-400 {
2176
- background-color: #3fa41c !important;
2177
- }
2178
-
2179
- .text-green-400 {
2180
- color: #3fa41c !important;
2181
- }
2182
-
2183
- .bg-green-500 {
2184
- background-color: #1f7400 !important;
2185
- }
2186
-
2187
- .text-green-500 {
2188
- color: #1f7400 !important;
2189
- }
2190
-
2191
- .bg-orange {
2192
- background-color: #ffa895 !important;
2193
- }
2194
-
2195
- .text-orange {
2196
- color: #ffa895 !important;
2197
- }
2198
-
2199
- .bg-orange-tint-1 {
2200
- background-color: #fdcab7 !important;
2201
- }
2202
-
2203
- .text-orange-tint-1 {
2204
- color: #fdcab7 !important;
2205
- }
2206
-
2207
- .bg-orange-tint-2 {
2208
- background-color: #ffdbce !important;
2209
- }
2210
-
2211
- .text-orange-tint-2 {
2212
- color: #ffdbce !important;
2213
- }
2214
-
2215
- .bg-pink {
2216
- background-color: #f6a0d1 !important;
2217
- }
2218
-
2219
- .text-pink {
2220
- color: #f6a0d1 !important;
2221
- }
2222
-
2223
- .bg-pink-tint-1 {
2224
- background-color: #fdc3e4 !important;
2225
- }
2226
-
2227
- .text-pink-tint-1 {
2228
- color: #fdc3e4 !important;
2229
- }
2230
-
2231
- .bg-pink-tint-2 {
2232
- background-color: #ffdef1 !important;
2233
- }
2234
-
2235
- .text-pink-tint-2 {
2236
- color: #ffdef1 !important;
2237
- }
2238
-
2239
- .bg-providers-blue {
2240
- background-color: black !important;
2241
- }
2242
-
2243
- .text-providers-blue {
2244
- color: black !important;
2245
- }
2246
-
2247
- .bg-providers-blue-tint-1 {
2248
- background-color: #d1d7fc !important;
2249
- }
2250
-
2251
- .text-providers-blue-tint-1 {
2252
- color: #d1d7fc !important;
2253
- }
2254
-
2255
- .bg-providers-blue-tint-2 {
2256
- background-color: #e8ebfd !important;
2257
- }
2258
-
2259
- .text-providers-blue-tint-2 {
2260
- color: #e8ebfd !important;
2261
- }
2262
-
2263
- .bg-providers-green {
2264
- background-color: #51d156 !important;
2265
- }
2266
-
2267
- .text-providers-green {
2268
- color: #51d156 !important;
2269
- }
2270
-
2271
- .bg-providers-green-tint-1 {
2272
- background-color: #b3f6a2 !important;
2273
- }
2274
-
2275
- .text-providers-green-tint-1 {
2276
- color: #b3f6a2 !important;
2277
- }
2278
-
2279
- .bg-providers-green-tint-2 {
2280
- background-color: #d1fac7 !important;
2281
- }
2282
-
2283
- .text-providers-green-tint-2 {
2284
- color: #d1fac7 !important;
2285
- }
2286
-
2287
- .bg-purple-100 {
2288
- background-color: #ebe4ff !important;
2289
- }
2290
-
2291
- .text-purple-100 {
2292
- color: #ebe4ff !important;
2293
- }
2294
-
2295
- .bg-purple-200 {
2296
- background-color: #cdbcff !important;
2297
- }
2298
-
2299
- .text-purple-200 {
2300
- color: #cdbcff !important;
2301
- }
2302
-
2303
- .bg-purple-300 {
2304
- background-color: #ac8eff !important;
2305
- }
2306
-
2307
- .text-purple-300 {
2308
- color: #ac8eff !important;
2309
- }
2310
-
2311
- .bg-purple-400 {
2312
- background-color: #804fe8 !important;
2313
- }
2314
-
2315
- .text-purple-400 {
2316
- color: #804fe8 !important;
2317
- }
2318
-
2319
- .bg-purple-500 {
2320
- background-color: #6431d0 !important;
2321
- }
2322
-
2323
- .text-purple-500 {
2324
- color: #6431d0 !important;
2325
- }
2326
-
2327
- .bg-red-100 {
2328
- background-color: #ffe5dd !important;
2329
- }
2330
-
2331
- .text-red-100 {
2332
- color: #ffe5dd !important;
2333
- }
2334
-
2335
- .bg-red-200 {
2336
- background-color: #ffaaa5 !important;
2337
- }
2338
-
2339
- .text-red-200 {
2340
- color: #ffaaa5 !important;
2341
- }
2342
-
2343
- .bg-red-300 {
2344
- background-color: #ff6969 !important;
2345
- }
2346
-
2347
- .text-red-300 {
2348
- color: #ff6969 !important;
2349
- }
2350
-
2351
- .bg-red-400 {
2352
- background-color: #f52323 !important;
2353
- }
2354
-
2355
- .text-red-400 {
2356
- color: #f52323 !important;
2357
- }
2358
-
2359
- .bg-red-500 {
2360
- background-color: #cd000c !important;
2361
- }
2362
-
2363
- .text-red-500 {
2364
- color: #cd000c !important;
2365
- }
2366
-
2367
- .bg-status-error {
2368
- background-color: #cd000c !important;
2369
- }
2370
-
2371
- .text-status-error {
2372
- color: #cd000c !important;
2373
- }
2374
-
2375
- .bg-status-success {
2376
- background-color: #1f7400 !important;
2377
- }
2378
-
2379
- .text-status-success {
2380
- color: #1f7400 !important;
2381
- }
2382
-
2383
- .bg-status-warning {
2384
- background-color: #f47500 !important;
2385
- }
2386
-
2387
- .text-status-warning {
2388
- color: #f47500 !important;
2389
- }
2390
-
2391
- .bg-text-disabled {
2392
- background-color: rgba(0, 0, 0, 0.31) !important;
2393
- }
2394
-
2395
- .text-text-disabled {
2396
- color: rgba(0, 0, 0, 0.31) !important;
2397
- }
2398
-
2399
- .bg-text-placeholder {
2400
- background-color: rgba(0, 0, 0, 0.48) !important;
2401
- }
2402
-
2403
- .text-text-placeholder {
2404
- color: rgba(0, 0, 0, 0.48) !important;
2405
- }
2406
-
2407
- .bg-text-primary {
2408
- background-color: #000 !important;
2409
- }
2410
-
2411
- .text-text-primary {
2412
- color: #000 !important;
2413
- }
2414
-
2415
- .bg-text-secondary {
2416
- background-color: rgba(0, 0, 0, 0.69) !important;
2417
- }
2418
-
2419
- .text-text-secondary {
2420
- color: rgba(0, 0, 0, 0.69) !important;
2421
- }
2422
-
2423
- .bg-white {
2424
- background-color: #fff !important;
2425
- }
2426
-
2427
- .text-white {
2428
- color: #fff !important;
2429
- }
2430
-
2431
- .bg-yellow {
2432
- background-color: #ffc200 !important;
2433
- }
2434
-
2435
- .text-yellow {
2436
- color: #ffc200 !important;
2437
- }
2438
-
2439
- .bg-yellow-tint-1 {
2440
- background-color: #ffdc6b !important;
2441
- }
2442
-
2443
- .text-yellow-tint-1 {
2444
- color: #ffdc6b !important;
2445
- }
2446
-
2447
- .bg-yellow-tint-2 {
2448
- background-color: #fee69a !important;
2449
- }
2450
-
2451
- .text-yellow-tint-2 {
2452
- color: #fee69a !important;
2453
- }
2454
-
2455
- .text-center {
2456
- text-align: center !important;
2457
- }
2458
-
2459
- .text-left {
2460
- text-align: left !important;
2461
- }
2462
-
2463
- .text-right {
2464
- text-align: right !important;
2465
- }
2466
-
2467
- .font-grenette {
2468
- font-family: "Grenette";
2469
- }
2470
-
2471
- .font-polymath {
2472
- font-family: "Polymath";
2473
- }
2474
-
2475
- .text-xs {
2476
- font-size: 12px;
2477
- }
2478
-
2479
- .text-sm {
2480
- font-size: 14px;
2481
- }
2482
-
2483
- .text-md {
2484
- font-size: 16px;
2485
- }
2486
-
2487
- .text-ml {
2488
- font-size: 18px;
2489
- }
2490
-
2491
- .text-lg {
2492
- font-size: 20px;
2493
- }
2494
-
2495
- .text-xl {
2496
- font-size: 24px;
2497
- }
2498
-
2499
- .text-2xl {
2500
- font-size: 26px;
2501
- }
2502
-
2503
- .text-3xl {
2504
- font-size: 32px;
2505
- }
2506
-
2507
- .font-light {
2508
- font-weight: 300 !important;
2509
- }
2510
-
2511
- .font-normal {
2512
- font-weight: 400 !important;
2513
- }
2514
-
2515
- .font-regular {
2516
- font-weight: 400 !important;
2517
- }
2518
-
2519
- .font-medium {
2520
- font-weight: 500 !important;
2521
- }
2522
-
2523
- .font-semibold {
2524
- font-weight: 650 !important;
2525
- }
2526
-
2527
- .font-bold {
2528
- font-weight: 700 !important;
2529
- }
2530
-
2531
- .font-italic {
2532
- font-style: italic !important;
2533
- }
2534
-
2535
- /* Using the same naming convention as Tailwind */
2536
- .tracking-tighter {
2537
- letter-spacing: -0.5px;
2538
- }
2539
-
2540
- .tracking-tight {
2541
- letter-spacing: -0.25px;
2542
- }
2543
-
2544
- .tracking-normal {
2545
- letter-spacing: normal;
2546
- }
2547
-
2548
- .tracking-wide {
2549
- letter-spacing: 0.25px;
2550
- }
2551
-
2552
- .tracking-wider {
2553
- letter-spacing: 0.5px;
2554
- }
2555
-
2556
- /* This does not use the same naming convention as Tailwind, but we can make ours match it when implemented */
2557
- .leading-none {
2558
- line-height: 1;
2559
- }
2560
-
2561
- .leading-small {
2562
- line-height: 120%;
2563
- }
2564
-
2565
- .leading-medium {
2566
- line-height: 125%;
2567
- }
2568
-
2569
- .leading-large {
2570
- line-height: 140%;
2571
- }
2572
-
2573
- .text-uppercase {
2574
- text-transform: uppercase !important;
2575
- }
2576
-
2577
- .text-lowercase {
2578
- text-transform: lowercase !important;
2579
- }
2580
-
2581
- .text-capitalize {
2582
- text-transform: capitalize !important;
2583
- }
2584
-
2585
- .text-decoration-none {
2586
- text-decoration: none !important;
2587
- }
2588
-
2589
- .line-through {
2590
- text-decoration: line-through !important;
2591
- }
2592
-
2593
- .text-truncate {
2594
- overflow: hidden;
2595
- text-overflow: ellipsis;
2596
- white-space: nowrap;
2597
- }
2598
-
2599
- .elevation-0 {
2600
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12) !important;
2601
- }
2602
-
2603
- .elevation-4 {
2604
- box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12) !important;
2605
- }
2606
-
2607
- .object-cover {
2608
- object-fit: cover;
2609
- }
2610
-
2611
- .object-contain {
2612
- object-fit: contain;
2613
- }
2614
-
2615
- .overflow-auto {
2616
- overflow: auto !important;
2617
- }
2618
-
2619
- .overflow-x-auto {
2620
- overflow-x: auto !important;
2621
- }
2622
-
2623
- .overflow-y-auto {
2624
- overflow-y: auto !important;
2625
- }
2626
-
2627
- .overflow-hidden {
2628
- overflow: hidden !important;
2629
- }
2630
-
2631
- .overflow-x-hidden {
2632
- overflow-x: hidden !important;
2633
- }
2634
-
2635
- .overflow-y-hidden {
2636
- overflow-y: hidden !important;
2637
- }
2638
-
2639
- .overflow-scroll {
2640
- overflow: scroll !important;
2641
- }
2642
-
2643
- .overflow-x-scroll {
2644
- overflow-x: scroll !important;
2645
- }
2646
-
2647
- .overflow-y-scroll {
2648
- overflow-y: scroll !important;
2649
- }
2650
-
2651
- .overflow-visible {
2652
- overflow: visible !important;
2653
- }
2654
-
2655
- .overflow-x-visible {
2656
- overflow-x: visible !important;
2657
- }
2658
-
2659
- .overflow-y-visible {
2660
- overflow-y: visible !important;
2661
- }
2662
-
2663
- .float-left {
2664
- float: left !important;
2665
- }
2666
-
2667
- .float-right {
2668
- float: right !important;
2669
- }
2670
-
2671
- .rounded-0 {
2672
- border-radius: 0;
2673
- }
2674
-
2675
- .rounded-circle {
2676
- border-radius: 50%;
2677
- }
2678
-
2679
- .rounded-none {
2680
- border-radius: 0;
2681
- }
2682
-
2683
- .rounded-pill {
2684
- border-radius: 9999px;
2685
- }
2686
-
2687
- .rounded-sm {
2688
- border-radius: 2px;
2689
- }
2690
-
2691
- .rounded {
2692
- border-radius: 4px;
2693
- }
2694
-
2695
- .rounded-lg {
2696
- border-radius: 8px;
2697
- }
2698
-
2699
- .rounded-xl {
2700
- border-radius: 12px;
2701
- }
2702
-
2703
- .rounded-2xl {
2704
- border-radius: 24px;
2705
- }
2706
-
2707
- .rounded-xxl {
2708
- border-radius: 24px;
2709
- }