@ivds/core 0.1.1

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 (154) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/README.md +215 -0
  3. package/lib/all.css +6802 -0
  4. package/lib/all.min.css +1 -0
  5. package/lib/base/base.css +215 -0
  6. package/lib/base/base.min.css +1 -0
  7. package/lib/components/_breadcrumb-mixins.scss +173 -0
  8. package/lib/components/_button-mixin.scss +120 -0
  9. package/lib/components/_card-mixin.scss +196 -0
  10. package/lib/components/_checkbox-mixin.scss +208 -0
  11. package/lib/components/_footer-mixin.scss +385 -0
  12. package/lib/components/_header-mixin.scss +275 -0
  13. package/lib/components/_navigation-mixins.scss +270 -0
  14. package/lib/components/_notification-mixin.scss +239 -0
  15. package/lib/components/_pagination-mixins.scss +280 -0
  16. package/lib/components/_radio-button-mixin.scss +207 -0
  17. package/lib/components/_tag-mixin.scss +261 -0
  18. package/lib/components/_text-input-mixin.scss +203 -0
  19. package/lib/components/all.css +3005 -0
  20. package/lib/components/all.min.css +1 -0
  21. package/lib/components/breadcrumb/breadcrumb.css +141 -0
  22. package/lib/components/breadcrumb/breadcrumb.min.css +1 -0
  23. package/lib/components/button/button.css +221 -0
  24. package/lib/components/button/button.min.css +1 -0
  25. package/lib/components/card/card.css +236 -0
  26. package/lib/components/card/card.min.css +1 -0
  27. package/lib/components/checkbox/checkbox.css +305 -0
  28. package/lib/components/checkbox/checkbox.min.css +1 -0
  29. package/lib/components/footer/footer.css +466 -0
  30. package/lib/components/footer/footer.min.css +1 -0
  31. package/lib/components/header/header.css +274 -0
  32. package/lib/components/header/header.min.css +1 -0
  33. package/lib/components/navigation/navigation.css +214 -0
  34. package/lib/components/navigation/navigation.min.css +1 -0
  35. package/lib/components/notification/notification.css +253 -0
  36. package/lib/components/notification/notification.min.css +1 -0
  37. package/lib/components/pagination/pagination.css +221 -0
  38. package/lib/components/pagination/pagination.min.css +1 -0
  39. package/lib/components/radio-button/radio-button.css +326 -0
  40. package/lib/components/radio-button/radio-button.min.css +1 -0
  41. package/lib/components/tag/tag.css +367 -0
  42. package/lib/components/tag/tag.min.css +1 -0
  43. package/lib/components/text-input/text-input.css +243 -0
  44. package/lib/components/text-input/text-input.min.css +1 -0
  45. package/lib/icons/icon-arrow-left.css +139 -0
  46. package/lib/icons/icon-arrow-left.min.css +1 -0
  47. package/lib/icons/icon-arrow-right.css +139 -0
  48. package/lib/icons/icon-arrow-right.min.css +1 -0
  49. package/lib/icons/icon-check.css +139 -0
  50. package/lib/icons/icon-check.min.css +1 -0
  51. package/lib/icons/icon-close.css +140 -0
  52. package/lib/icons/icon-close.min.css +1 -0
  53. package/lib/icons/icon-error.css +140 -0
  54. package/lib/icons/icon-error.min.css +1 -0
  55. package/lib/icons/icon-info.css +140 -0
  56. package/lib/icons/icon-info.min.css +1 -0
  57. package/lib/icons/icon-success.css +139 -0
  58. package/lib/icons/icon-success.min.css +1 -0
  59. package/lib/icons/icon-warning.css +139 -0
  60. package/lib/icons/icon-warning.min.css +1 -0
  61. package/lib/icons/icons.css +1158 -0
  62. package/lib/icons/icons.min.css +1 -0
  63. package/lib/utils/_flex.scss +200 -0
  64. package/lib/utils/_grid.scss +211 -0
  65. package/lib/utils/_layout.scss +253 -0
  66. package/lib/utils/_spacing.scss +260 -0
  67. package/lib/utils/_typography.scss +111 -0
  68. package/lib/utils/utils.css +2434 -0
  69. package/lib/utils/utils.min.css +1 -0
  70. package/lib/utils-only.css +2801 -0
  71. package/lib/utils-only.min.css +1 -0
  72. package/lib/variables/variables.css +2 -0
  73. package/lib/variables/variables.min.css +0 -0
  74. package/package.json +194 -0
  75. package/src/__tests__/example.test.scss +12 -0
  76. package/src/accessibility.stories.js +416 -0
  77. package/src/all.scss +9 -0
  78. package/src/base/_layout.scss +97 -0
  79. package/src/base/_reset.scss +85 -0
  80. package/src/base/_typography.scss +105 -0
  81. package/src/base/base.scss +6 -0
  82. package/src/components/all.scss +22 -0
  83. package/src/components/breadcrumb/_breadcrumb-mixins.scss +173 -0
  84. package/src/components/breadcrumb/breadcrumb.scss +68 -0
  85. package/src/components/breadcrumb/breadcrumb.stories.js +483 -0
  86. package/src/components/button/__tests__/button-mixins.test.scss +35 -0
  87. package/src/components/button/_button-mixin.scss +120 -0
  88. package/src/components/button/button.scss +126 -0
  89. package/src/components/button/button.stories.js +364 -0
  90. package/src/components/card/__tests__/card-mixins.test.scss +36 -0
  91. package/src/components/card/_card-mixin.scss +196 -0
  92. package/src/components/card/card.scss +193 -0
  93. package/src/components/card/card.stories.js +635 -0
  94. package/src/components/checkbox/_checkbox-mixin.scss +208 -0
  95. package/src/components/checkbox/checkbox.scss +141 -0
  96. package/src/components/checkbox/checkbox.stories.js +303 -0
  97. package/src/components/footer/_footer-mixin.scss +385 -0
  98. package/src/components/footer/footer.scss +86 -0
  99. package/src/components/footer/footer.stories.js +740 -0
  100. package/src/components/header/_header-mixin.scss +275 -0
  101. package/src/components/header/header.scss +84 -0
  102. package/src/components/header/header.stories.js +450 -0
  103. package/src/components/navigation/_navigation-mixins.scss +270 -0
  104. package/src/components/navigation/navigation.scss +64 -0
  105. package/src/components/navigation/navigation.stories.js +410 -0
  106. package/src/components/notification/_notification-mixin.scss +239 -0
  107. package/src/components/notification/notification.scss +118 -0
  108. package/src/components/notification/notification.stories.js +378 -0
  109. package/src/components/overview.stories.js +473 -0
  110. package/src/components/pagination/_pagination-mixins.scss +280 -0
  111. package/src/components/pagination/pagination.scss +76 -0
  112. package/src/components/pagination/pagination.stories.js +729 -0
  113. package/src/components/radio-button/_radio-button-mixin.scss +207 -0
  114. package/src/components/radio-button/radio-button.scss +178 -0
  115. package/src/components/radio-button/radio-button.stories.js +379 -0
  116. package/src/components/tag/_tag-mixin.scss +261 -0
  117. package/src/components/tag/tag.scss +244 -0
  118. package/src/components/tag/tag.stories.js +482 -0
  119. package/src/components/text-input/_text-input-mixin.scss +203 -0
  120. package/src/components/text-input/text-input.scss +150 -0
  121. package/src/components/text-input/text-input.stories.js +723 -0
  122. package/src/icons/_icon.scss +121 -0
  123. package/src/icons/icon-arrow-left.scss +23 -0
  124. package/src/icons/icon-arrow-right.scss +23 -0
  125. package/src/icons/icon-check.scss +23 -0
  126. package/src/icons/icon-close.scss +24 -0
  127. package/src/icons/icon-error.scss +24 -0
  128. package/src/icons/icon-info.scss +24 -0
  129. package/src/icons/icon-success.scss +23 -0
  130. package/src/icons/icon-warning.scss +23 -0
  131. package/src/icons/icons.scss +12 -0
  132. package/src/icons/icons.stories.js +249 -0
  133. package/src/icons/svg/arrow-left.svg +3 -0
  134. package/src/icons/svg/arrow-right.svg +3 -0
  135. package/src/icons/svg/check.svg +3 -0
  136. package/src/icons/svg/close.svg +4 -0
  137. package/src/icons/svg/error.svg +5 -0
  138. package/src/icons/svg/info.svg +5 -0
  139. package/src/icons/svg/success.svg +4 -0
  140. package/src/icons/svg/warning.svg +5 -0
  141. package/src/utils/__tests__/utilities.test.scss +37 -0
  142. package/src/utils/_flex.scss +200 -0
  143. package/src/utils/_grid.scss +211 -0
  144. package/src/utils/_layout.scss +253 -0
  145. package/src/utils/_spacing.scss +260 -0
  146. package/src/utils/_typography.scss +111 -0
  147. package/src/utils/utils.scss +8 -0
  148. package/src/variables/_borders.scss +15 -0
  149. package/src/variables/_breakpoints.scss +11 -0
  150. package/src/variables/_colors.scss +97 -0
  151. package/src/variables/_shadows.scss +14 -0
  152. package/src/variables/_spacing.scss +24 -0
  153. package/src/variables/_typography.scss +47 -0
  154. package/src/variables/variables.scss +9 -0
@@ -0,0 +1,2434 @@
1
+ /* All utilities bundle*/
2
+ /* This file imports all utility classes for the IVDS Core package*/
3
+ .ivds-m-0 {
4
+ margin: var(--spacing-0, 0) !important;
5
+ }
6
+ .ivds-m-1 {
7
+ margin: var(--spacing-1, 0.25rem) !important;
8
+ }
9
+ .ivds-m-2 {
10
+ margin: var(--spacing-2, 0.5rem) !important;
11
+ }
12
+ .ivds-m-3 {
13
+ margin: var(--spacing-3, 0.75rem) !important;
14
+ }
15
+ .ivds-m-4 {
16
+ margin: var(--spacing-4, 1rem) !important;
17
+ }
18
+ .ivds-m-5 {
19
+ margin: var(--spacing-5, 1.25rem) !important;
20
+ }
21
+ .ivds-m-6 {
22
+ margin: var(--spacing-6, 1.5rem) !important;
23
+ }
24
+ .ivds-m-8 {
25
+ margin: var(--spacing-8, 2rem) !important;
26
+ }
27
+ .ivds-m-10 {
28
+ margin: var(--spacing-10, 2.5rem) !important;
29
+ }
30
+ .ivds-m-12 {
31
+ margin: var(--spacing-12, 3rem) !important;
32
+ }
33
+ .ivds-m-16 {
34
+ margin: var(--spacing-16, 4rem) !important;
35
+ }
36
+ .ivds-m-20 {
37
+ margin: var(--spacing-20, 5rem) !important;
38
+ }
39
+ .ivds-m-24 {
40
+ margin: var(--spacing-24, 6rem) !important;
41
+ }
42
+ .ivds-m-32 {
43
+ margin: var(--spacing-32, 8rem) !important;
44
+ }
45
+ .ivds-mx-0 {
46
+ margin-left: var(--spacing-0, 0) !important;
47
+ margin-right: var(--spacing-0, 0) !important;
48
+ }
49
+ .ivds-mx-1 {
50
+ margin-left: var(--spacing-1, 0.25rem) !important;
51
+ margin-right: var(--spacing-1, 0.25rem) !important;
52
+ }
53
+ .ivds-mx-2 {
54
+ margin-left: var(--spacing-2, 0.5rem) !important;
55
+ margin-right: var(--spacing-2, 0.5rem) !important;
56
+ }
57
+ .ivds-mx-3 {
58
+ margin-left: var(--spacing-3, 0.75rem) !important;
59
+ margin-right: var(--spacing-3, 0.75rem) !important;
60
+ }
61
+ .ivds-mx-4 {
62
+ margin-left: var(--spacing-4, 1rem) !important;
63
+ margin-right: var(--spacing-4, 1rem) !important;
64
+ }
65
+ .ivds-mx-5 {
66
+ margin-left: var(--spacing-5, 1.25rem) !important;
67
+ margin-right: var(--spacing-5, 1.25rem) !important;
68
+ }
69
+ .ivds-mx-6 {
70
+ margin-left: var(--spacing-6, 1.5rem) !important;
71
+ margin-right: var(--spacing-6, 1.5rem) !important;
72
+ }
73
+ .ivds-mx-8 {
74
+ margin-left: var(--spacing-8, 2rem) !important;
75
+ margin-right: var(--spacing-8, 2rem) !important;
76
+ }
77
+ .ivds-mx-10 {
78
+ margin-left: var(--spacing-10, 2.5rem) !important;
79
+ margin-right: var(--spacing-10, 2.5rem) !important;
80
+ }
81
+ .ivds-mx-12 {
82
+ margin-left: var(--spacing-12, 3rem) !important;
83
+ margin-right: var(--spacing-12, 3rem) !important;
84
+ }
85
+ .ivds-mx-16 {
86
+ margin-left: var(--spacing-16, 4rem) !important;
87
+ margin-right: var(--spacing-16, 4rem) !important;
88
+ }
89
+ .ivds-mx-auto {
90
+ margin-left: auto !important;
91
+ margin-right: auto !important;
92
+ }
93
+ .ivds-my-0 {
94
+ margin-top: var(--spacing-0, 0) !important;
95
+ margin-bottom: var(--spacing-0, 0) !important;
96
+ }
97
+ .ivds-my-1 {
98
+ margin-top: var(--spacing-1, 0.25rem) !important;
99
+ margin-bottom: var(--spacing-1, 0.25rem) !important;
100
+ }
101
+ .ivds-my-2 {
102
+ margin-top: var(--spacing-2, 0.5rem) !important;
103
+ margin-bottom: var(--spacing-2, 0.5rem) !important;
104
+ }
105
+ .ivds-my-3 {
106
+ margin-top: var(--spacing-3, 0.75rem) !important;
107
+ margin-bottom: var(--spacing-3, 0.75rem) !important;
108
+ }
109
+ .ivds-my-4 {
110
+ margin-top: var(--spacing-4, 1rem) !important;
111
+ margin-bottom: var(--spacing-4, 1rem) !important;
112
+ }
113
+ .ivds-my-5 {
114
+ margin-top: var(--spacing-5, 1.25rem) !important;
115
+ margin-bottom: var(--spacing-5, 1.25rem) !important;
116
+ }
117
+ .ivds-my-6 {
118
+ margin-top: var(--spacing-6, 1.5rem) !important;
119
+ margin-bottom: var(--spacing-6, 1.5rem) !important;
120
+ }
121
+ .ivds-my-8 {
122
+ margin-top: var(--spacing-8, 2rem) !important;
123
+ margin-bottom: var(--spacing-8, 2rem) !important;
124
+ }
125
+ .ivds-my-10 {
126
+ margin-top: var(--spacing-10, 2.5rem) !important;
127
+ margin-bottom: var(--spacing-10, 2.5rem) !important;
128
+ }
129
+ .ivds-my-12 {
130
+ margin-top: var(--spacing-12, 3rem) !important;
131
+ margin-bottom: var(--spacing-12, 3rem) !important;
132
+ }
133
+ .ivds-my-16 {
134
+ margin-top: var(--spacing-16, 4rem) !important;
135
+ margin-bottom: var(--spacing-16, 4rem) !important;
136
+ }
137
+ .ivds-mt-0 {
138
+ margin-top: var(--spacing-0, 0) !important;
139
+ }
140
+ .ivds-mt-1 {
141
+ margin-top: var(--spacing-1, 0.25rem) !important;
142
+ }
143
+ .ivds-mt-2 {
144
+ margin-top: var(--spacing-2, 0.5rem) !important;
145
+ }
146
+ .ivds-mt-3 {
147
+ margin-top: var(--spacing-3, 0.75rem) !important;
148
+ }
149
+ .ivds-mt-4 {
150
+ margin-top: var(--spacing-4, 1rem) !important;
151
+ }
152
+ .ivds-mt-5 {
153
+ margin-top: var(--spacing-5, 1.25rem) !important;
154
+ }
155
+ .ivds-mt-6 {
156
+ margin-top: var(--spacing-6, 1.5rem) !important;
157
+ }
158
+ .ivds-mt-8 {
159
+ margin-top: var(--spacing-8, 2rem) !important;
160
+ }
161
+ .ivds-mt-10 {
162
+ margin-top: var(--spacing-10, 2.5rem) !important;
163
+ }
164
+ .ivds-mt-12 {
165
+ margin-top: var(--spacing-12, 3rem) !important;
166
+ }
167
+ .ivds-mt-16 {
168
+ margin-top: var(--spacing-16, 4rem) !important;
169
+ }
170
+ .ivds-mr-0 {
171
+ margin-right: var(--spacing-0, 0) !important;
172
+ }
173
+ .ivds-mr-1 {
174
+ margin-right: var(--spacing-1, 0.25rem) !important;
175
+ }
176
+ .ivds-mr-2 {
177
+ margin-right: var(--spacing-2, 0.5rem) !important;
178
+ }
179
+ .ivds-mr-3 {
180
+ margin-right: var(--spacing-3, 0.75rem) !important;
181
+ }
182
+ .ivds-mr-4 {
183
+ margin-right: var(--spacing-4, 1rem) !important;
184
+ }
185
+ .ivds-mr-5 {
186
+ margin-right: var(--spacing-5, 1.25rem) !important;
187
+ }
188
+ .ivds-mr-6 {
189
+ margin-right: var(--spacing-6, 1.5rem) !important;
190
+ }
191
+ .ivds-mr-8 {
192
+ margin-right: var(--spacing-8, 2rem) !important;
193
+ }
194
+ .ivds-mr-10 {
195
+ margin-right: var(--spacing-10, 2.5rem) !important;
196
+ }
197
+ .ivds-mr-12 {
198
+ margin-right: var(--spacing-12, 3rem) !important;
199
+ }
200
+ .ivds-mr-16 {
201
+ margin-right: var(--spacing-16, 4rem) !important;
202
+ }
203
+ .ivds-mb-0 {
204
+ margin-bottom: var(--spacing-0, 0) !important;
205
+ }
206
+ .ivds-mb-1 {
207
+ margin-bottom: var(--spacing-1, 0.25rem) !important;
208
+ }
209
+ .ivds-mb-2 {
210
+ margin-bottom: var(--spacing-2, 0.5rem) !important;
211
+ }
212
+ .ivds-mb-3 {
213
+ margin-bottom: var(--spacing-3, 0.75rem) !important;
214
+ }
215
+ .ivds-mb-4 {
216
+ margin-bottom: var(--spacing-4, 1rem) !important;
217
+ }
218
+ .ivds-mb-5 {
219
+ margin-bottom: var(--spacing-5, 1.25rem) !important;
220
+ }
221
+ .ivds-mb-6 {
222
+ margin-bottom: var(--spacing-6, 1.5rem) !important;
223
+ }
224
+ .ivds-mb-8 {
225
+ margin-bottom: var(--spacing-8, 2rem) !important;
226
+ }
227
+ .ivds-mb-10 {
228
+ margin-bottom: var(--spacing-10, 2.5rem) !important;
229
+ }
230
+ .ivds-mb-12 {
231
+ margin-bottom: var(--spacing-12, 3rem) !important;
232
+ }
233
+ .ivds-mb-16 {
234
+ margin-bottom: var(--spacing-16, 4rem) !important;
235
+ }
236
+ .ivds-ml-0 {
237
+ margin-left: var(--spacing-0, 0) !important;
238
+ }
239
+ .ivds-ml-1 {
240
+ margin-left: var(--spacing-1, 0.25rem) !important;
241
+ }
242
+ .ivds-ml-2 {
243
+ margin-left: var(--spacing-2, 0.5rem) !important;
244
+ }
245
+ .ivds-ml-3 {
246
+ margin-left: var(--spacing-3, 0.75rem) !important;
247
+ }
248
+ .ivds-ml-4 {
249
+ margin-left: var(--spacing-4, 1rem) !important;
250
+ }
251
+ .ivds-ml-5 {
252
+ margin-left: var(--spacing-5, 1.25rem) !important;
253
+ }
254
+ .ivds-ml-6 {
255
+ margin-left: var(--spacing-6, 1.5rem) !important;
256
+ }
257
+ .ivds-ml-8 {
258
+ margin-left: var(--spacing-8, 2rem) !important;
259
+ }
260
+ .ivds-ml-10 {
261
+ margin-left: var(--spacing-10, 2.5rem) !important;
262
+ }
263
+ .ivds-ml-12 {
264
+ margin-left: var(--spacing-12, 3rem) !important;
265
+ }
266
+ .ivds-ml-16 {
267
+ margin-left: var(--spacing-16, 4rem) !important;
268
+ }
269
+ .ivds-p-0 {
270
+ padding: var(--spacing-0, 0) !important;
271
+ }
272
+ .ivds-p-1 {
273
+ padding: var(--spacing-1, 0.25rem) !important;
274
+ }
275
+ .ivds-p-2 {
276
+ padding: var(--spacing-2, 0.5rem) !important;
277
+ }
278
+ .ivds-p-3 {
279
+ padding: var(--spacing-3, 0.75rem) !important;
280
+ }
281
+ .ivds-p-4 {
282
+ padding: var(--spacing-4, 1rem) !important;
283
+ }
284
+ .ivds-p-5 {
285
+ padding: var(--spacing-5, 1.25rem) !important;
286
+ }
287
+ .ivds-p-6 {
288
+ padding: var(--spacing-6, 1.5rem) !important;
289
+ }
290
+ .ivds-p-8 {
291
+ padding: var(--spacing-8, 2rem) !important;
292
+ }
293
+ .ivds-p-10 {
294
+ padding: var(--spacing-10, 2.5rem) !important;
295
+ }
296
+ .ivds-p-12 {
297
+ padding: var(--spacing-12, 3rem) !important;
298
+ }
299
+ .ivds-p-16 {
300
+ padding: var(--spacing-16, 4rem) !important;
301
+ }
302
+ .ivds-p-20 {
303
+ padding: var(--spacing-20, 5rem) !important;
304
+ }
305
+ .ivds-p-24 {
306
+ padding: var(--spacing-24, 6rem) !important;
307
+ }
308
+ .ivds-p-32 {
309
+ padding: var(--spacing-32, 8rem) !important;
310
+ }
311
+ .ivds-px-0 {
312
+ padding-left: var(--spacing-0, 0) !important;
313
+ padding-right: var(--spacing-0, 0) !important;
314
+ }
315
+ .ivds-px-1 {
316
+ padding-left: var(--spacing-1, 0.25rem) !important;
317
+ padding-right: var(--spacing-1, 0.25rem) !important;
318
+ }
319
+ .ivds-px-2 {
320
+ padding-left: var(--spacing-2, 0.5rem) !important;
321
+ padding-right: var(--spacing-2, 0.5rem) !important;
322
+ }
323
+ .ivds-px-3 {
324
+ padding-left: var(--spacing-3, 0.75rem) !important;
325
+ padding-right: var(--spacing-3, 0.75rem) !important;
326
+ }
327
+ .ivds-px-4 {
328
+ padding-left: var(--spacing-4, 1rem) !important;
329
+ padding-right: var(--spacing-4, 1rem) !important;
330
+ }
331
+ .ivds-px-5 {
332
+ padding-left: var(--spacing-5, 1.25rem) !important;
333
+ padding-right: var(--spacing-5, 1.25rem) !important;
334
+ }
335
+ .ivds-px-6 {
336
+ padding-left: var(--spacing-6, 1.5rem) !important;
337
+ padding-right: var(--spacing-6, 1.5rem) !important;
338
+ }
339
+ .ivds-px-8 {
340
+ padding-left: var(--spacing-8, 2rem) !important;
341
+ padding-right: var(--spacing-8, 2rem) !important;
342
+ }
343
+ .ivds-px-10 {
344
+ padding-left: var(--spacing-10, 2.5rem) !important;
345
+ padding-right: var(--spacing-10, 2.5rem) !important;
346
+ }
347
+ .ivds-px-12 {
348
+ padding-left: var(--spacing-12, 3rem) !important;
349
+ padding-right: var(--spacing-12, 3rem) !important;
350
+ }
351
+ .ivds-px-16 {
352
+ padding-left: var(--spacing-16, 4rem) !important;
353
+ padding-right: var(--spacing-16, 4rem) !important;
354
+ }
355
+ .ivds-py-0 {
356
+ padding-top: var(--spacing-0, 0) !important;
357
+ padding-bottom: var(--spacing-0, 0) !important;
358
+ }
359
+ .ivds-py-1 {
360
+ padding-top: var(--spacing-1, 0.25rem) !important;
361
+ padding-bottom: var(--spacing-1, 0.25rem) !important;
362
+ }
363
+ .ivds-py-2 {
364
+ padding-top: var(--spacing-2, 0.5rem) !important;
365
+ padding-bottom: var(--spacing-2, 0.5rem) !important;
366
+ }
367
+ .ivds-py-3 {
368
+ padding-top: var(--spacing-3, 0.75rem) !important;
369
+ padding-bottom: var(--spacing-3, 0.75rem) !important;
370
+ }
371
+ .ivds-py-4 {
372
+ padding-top: var(--spacing-4, 1rem) !important;
373
+ padding-bottom: var(--spacing-4, 1rem) !important;
374
+ }
375
+ .ivds-py-5 {
376
+ padding-top: var(--spacing-5, 1.25rem) !important;
377
+ padding-bottom: var(--spacing-5, 1.25rem) !important;
378
+ }
379
+ .ivds-py-6 {
380
+ padding-top: var(--spacing-6, 1.5rem) !important;
381
+ padding-bottom: var(--spacing-6, 1.5rem) !important;
382
+ }
383
+ .ivds-py-8 {
384
+ padding-top: var(--spacing-8, 2rem) !important;
385
+ padding-bottom: var(--spacing-8, 2rem) !important;
386
+ }
387
+ .ivds-py-10 {
388
+ padding-top: var(--spacing-10, 2.5rem) !important;
389
+ padding-bottom: var(--spacing-10, 2.5rem) !important;
390
+ }
391
+ .ivds-py-12 {
392
+ padding-top: var(--spacing-12, 3rem) !important;
393
+ padding-bottom: var(--spacing-12, 3rem) !important;
394
+ }
395
+ .ivds-py-16 {
396
+ padding-top: var(--spacing-16, 4rem) !important;
397
+ padding-bottom: var(--spacing-16, 4rem) !important;
398
+ }
399
+ .ivds-pt-0 {
400
+ padding-top: var(--spacing-0, 0) !important;
401
+ }
402
+ .ivds-pt-1 {
403
+ padding-top: var(--spacing-1, 0.25rem) !important;
404
+ }
405
+ .ivds-pt-2 {
406
+ padding-top: var(--spacing-2, 0.5rem) !important;
407
+ }
408
+ .ivds-pt-3 {
409
+ padding-top: var(--spacing-3, 0.75rem) !important;
410
+ }
411
+ .ivds-pt-4 {
412
+ padding-top: var(--spacing-4, 1rem) !important;
413
+ }
414
+ .ivds-pt-5 {
415
+ padding-top: var(--spacing-5, 1.25rem) !important;
416
+ }
417
+ .ivds-pt-6 {
418
+ padding-top: var(--spacing-6, 1.5rem) !important;
419
+ }
420
+ .ivds-pt-8 {
421
+ padding-top: var(--spacing-8, 2rem) !important;
422
+ }
423
+ .ivds-pt-10 {
424
+ padding-top: var(--spacing-10, 2.5rem) !important;
425
+ }
426
+ .ivds-pt-12 {
427
+ padding-top: var(--spacing-12, 3rem) !important;
428
+ }
429
+ .ivds-pt-16 {
430
+ padding-top: var(--spacing-16, 4rem) !important;
431
+ }
432
+ .ivds-pr-0 {
433
+ padding-right: var(--spacing-0, 0) !important;
434
+ }
435
+ .ivds-pr-1 {
436
+ padding-right: var(--spacing-1, 0.25rem) !important;
437
+ }
438
+ .ivds-pr-2 {
439
+ padding-right: var(--spacing-2, 0.5rem) !important;
440
+ }
441
+ .ivds-pr-3 {
442
+ padding-right: var(--spacing-3, 0.75rem) !important;
443
+ }
444
+ .ivds-pr-4 {
445
+ padding-right: var(--spacing-4, 1rem) !important;
446
+ }
447
+ .ivds-pr-5 {
448
+ padding-right: var(--spacing-5, 1.25rem) !important;
449
+ }
450
+ .ivds-pr-6 {
451
+ padding-right: var(--spacing-6, 1.5rem) !important;
452
+ }
453
+ .ivds-pr-8 {
454
+ padding-right: var(--spacing-8, 2rem) !important;
455
+ }
456
+ .ivds-pr-10 {
457
+ padding-right: var(--spacing-10, 2.5rem) !important;
458
+ }
459
+ .ivds-pr-12 {
460
+ padding-right: var(--spacing-12, 3rem) !important;
461
+ }
462
+ .ivds-pr-16 {
463
+ padding-right: var(--spacing-16, 4rem) !important;
464
+ }
465
+ .ivds-pb-0 {
466
+ padding-bottom: var(--spacing-0, 0) !important;
467
+ }
468
+ .ivds-pb-1 {
469
+ padding-bottom: var(--spacing-1, 0.25rem) !important;
470
+ }
471
+ .ivds-pb-2 {
472
+ padding-bottom: var(--spacing-2, 0.5rem) !important;
473
+ }
474
+ .ivds-pb-3 {
475
+ padding-bottom: var(--spacing-3, 0.75rem) !important;
476
+ }
477
+ .ivds-pb-4 {
478
+ padding-bottom: var(--spacing-4, 1rem) !important;
479
+ }
480
+ .ivds-pb-5 {
481
+ padding-bottom: var(--spacing-5, 1.25rem) !important;
482
+ }
483
+ .ivds-pb-6 {
484
+ padding-bottom: var(--spacing-6, 1.5rem) !important;
485
+ }
486
+ .ivds-pb-8 {
487
+ padding-bottom: var(--spacing-8, 2rem) !important;
488
+ }
489
+ .ivds-pb-10 {
490
+ padding-bottom: var(--spacing-10, 2.5rem) !important;
491
+ }
492
+ .ivds-pb-12 {
493
+ padding-bottom: var(--spacing-12, 3rem) !important;
494
+ }
495
+ .ivds-pb-16 {
496
+ padding-bottom: var(--spacing-16, 4rem) !important;
497
+ }
498
+ .ivds-pl-0 {
499
+ padding-left: var(--spacing-0, 0) !important;
500
+ }
501
+ .ivds-pl-1 {
502
+ padding-left: var(--spacing-1, 0.25rem) !important;
503
+ }
504
+ .ivds-pl-2 {
505
+ padding-left: var(--spacing-2, 0.5rem) !important;
506
+ }
507
+ .ivds-pl-3 {
508
+ padding-left: var(--spacing-3, 0.75rem) !important;
509
+ }
510
+ .ivds-pl-4 {
511
+ padding-left: var(--spacing-4, 1rem) !important;
512
+ }
513
+ .ivds-pl-5 {
514
+ padding-left: var(--spacing-5, 1.25rem) !important;
515
+ }
516
+ .ivds-pl-6 {
517
+ padding-left: var(--spacing-6, 1.5rem) !important;
518
+ }
519
+ .ivds-pl-8 {
520
+ padding-left: var(--spacing-8, 2rem) !important;
521
+ }
522
+ .ivds-pl-10 {
523
+ padding-left: var(--spacing-10, 2.5rem) !important;
524
+ }
525
+ .ivds-pl-12 {
526
+ padding-left: var(--spacing-12, 3rem) !important;
527
+ }
528
+ .ivds-pl-16 {
529
+ padding-left: var(--spacing-16, 4rem) !important;
530
+ }
531
+ @media (min-width: 640px) {
532
+ .ivds-sm-m-0 {
533
+ margin: var(--spacing-0, 0) !important;
534
+ }
535
+ .ivds-sm-m-1 {
536
+ margin: var(--spacing-1, 0.25rem) !important;
537
+ }
538
+ .ivds-sm-m-2 {
539
+ margin: var(--spacing-2, 0.5rem) !important;
540
+ }
541
+ .ivds-sm-m-3 {
542
+ margin: var(--spacing-3, 0.75rem) !important;
543
+ }
544
+ .ivds-sm-m-4 {
545
+ margin: var(--spacing-4, 1rem) !important;
546
+ }
547
+ .ivds-sm-m-6 {
548
+ margin: var(--spacing-6, 1.5rem) !important;
549
+ }
550
+ .ivds-sm-m-8 {
551
+ margin: var(--spacing-8, 2rem) !important;
552
+ }
553
+ .ivds-sm-m-12 {
554
+ margin: var(--spacing-12, 3rem) !important;
555
+ }
556
+ .ivds-sm-m-16 {
557
+ margin: var(--spacing-16, 4rem) !important;
558
+ }
559
+ .ivds-sm-p-0 {
560
+ padding: var(--spacing-0, 0) !important;
561
+ }
562
+ .ivds-sm-p-1 {
563
+ padding: var(--spacing-1, 0.25rem) !important;
564
+ }
565
+ .ivds-sm-p-2 {
566
+ padding: var(--spacing-2, 0.5rem) !important;
567
+ }
568
+ .ivds-sm-p-3 {
569
+ padding: var(--spacing-3, 0.75rem) !important;
570
+ }
571
+ .ivds-sm-p-4 {
572
+ padding: var(--spacing-4, 1rem) !important;
573
+ }
574
+ .ivds-sm-p-6 {
575
+ padding: var(--spacing-6, 1.5rem) !important;
576
+ }
577
+ .ivds-sm-p-8 {
578
+ padding: var(--spacing-8, 2rem) !important;
579
+ }
580
+ .ivds-sm-p-12 {
581
+ padding: var(--spacing-12, 3rem) !important;
582
+ }
583
+ .ivds-sm-p-16 {
584
+ padding: var(--spacing-16, 4rem) !important;
585
+ }
586
+ }
587
+ @media (min-width: 768px) {
588
+ .ivds-md-m-0 {
589
+ margin: var(--spacing-0, 0) !important;
590
+ }
591
+ .ivds-md-m-1 {
592
+ margin: var(--spacing-1, 0.25rem) !important;
593
+ }
594
+ .ivds-md-m-2 {
595
+ margin: var(--spacing-2, 0.5rem) !important;
596
+ }
597
+ .ivds-md-m-3 {
598
+ margin: var(--spacing-3, 0.75rem) !important;
599
+ }
600
+ .ivds-md-m-4 {
601
+ margin: var(--spacing-4, 1rem) !important;
602
+ }
603
+ .ivds-md-m-6 {
604
+ margin: var(--spacing-6, 1.5rem) !important;
605
+ }
606
+ .ivds-md-m-8 {
607
+ margin: var(--spacing-8, 2rem) !important;
608
+ }
609
+ .ivds-md-m-12 {
610
+ margin: var(--spacing-12, 3rem) !important;
611
+ }
612
+ .ivds-md-m-16 {
613
+ margin: var(--spacing-16, 4rem) !important;
614
+ }
615
+ .ivds-md-p-0 {
616
+ padding: var(--spacing-0, 0) !important;
617
+ }
618
+ .ivds-md-p-1 {
619
+ padding: var(--spacing-1, 0.25rem) !important;
620
+ }
621
+ .ivds-md-p-2 {
622
+ padding: var(--spacing-2, 0.5rem) !important;
623
+ }
624
+ .ivds-md-p-3 {
625
+ padding: var(--spacing-3, 0.75rem) !important;
626
+ }
627
+ .ivds-md-p-4 {
628
+ padding: var(--spacing-4, 1rem) !important;
629
+ }
630
+ .ivds-md-p-6 {
631
+ padding: var(--spacing-6, 1.5rem) !important;
632
+ }
633
+ .ivds-md-p-8 {
634
+ padding: var(--spacing-8, 2rem) !important;
635
+ }
636
+ .ivds-md-p-12 {
637
+ padding: var(--spacing-12, 3rem) !important;
638
+ }
639
+ .ivds-md-p-16 {
640
+ padding: var(--spacing-16, 4rem) !important;
641
+ }
642
+ }
643
+ @media (min-width: 1024px) {
644
+ .ivds-lg-m-0 {
645
+ margin: var(--spacing-0, 0) !important;
646
+ }
647
+ .ivds-lg-m-1 {
648
+ margin: var(--spacing-1, 0.25rem) !important;
649
+ }
650
+ .ivds-lg-m-2 {
651
+ margin: var(--spacing-2, 0.5rem) !important;
652
+ }
653
+ .ivds-lg-m-3 {
654
+ margin: var(--spacing-3, 0.75rem) !important;
655
+ }
656
+ .ivds-lg-m-4 {
657
+ margin: var(--spacing-4, 1rem) !important;
658
+ }
659
+ .ivds-lg-m-6 {
660
+ margin: var(--spacing-6, 1.5rem) !important;
661
+ }
662
+ .ivds-lg-m-8 {
663
+ margin: var(--spacing-8, 2rem) !important;
664
+ }
665
+ .ivds-lg-m-12 {
666
+ margin: var(--spacing-12, 3rem) !important;
667
+ }
668
+ .ivds-lg-m-16 {
669
+ margin: var(--spacing-16, 4rem) !important;
670
+ }
671
+ .ivds-lg-p-0 {
672
+ padding: var(--spacing-0, 0) !important;
673
+ }
674
+ .ivds-lg-p-1 {
675
+ padding: var(--spacing-1, 0.25rem) !important;
676
+ }
677
+ .ivds-lg-p-2 {
678
+ padding: var(--spacing-2, 0.5rem) !important;
679
+ }
680
+ .ivds-lg-p-3 {
681
+ padding: var(--spacing-3, 0.75rem) !important;
682
+ }
683
+ .ivds-lg-p-4 {
684
+ padding: var(--spacing-4, 1rem) !important;
685
+ }
686
+ .ivds-lg-p-6 {
687
+ padding: var(--spacing-6, 1.5rem) !important;
688
+ }
689
+ .ivds-lg-p-8 {
690
+ padding: var(--spacing-8, 2rem) !important;
691
+ }
692
+ .ivds-lg-p-12 {
693
+ padding: var(--spacing-12, 3rem) !important;
694
+ }
695
+ .ivds-lg-p-16 {
696
+ padding: var(--spacing-16, 4rem) !important;
697
+ }
698
+ }
699
+ .ivds-text-xs {
700
+ font-size: var(--fontSize-xs, 0.75rem) !important;
701
+ }
702
+ .ivds-text-sm {
703
+ font-size: var(--fontSize-sm, 0.875rem) !important;
704
+ }
705
+ .ivds-text-base {
706
+ font-size: var(--fontSize-base, 1rem) !important;
707
+ }
708
+ .ivds-text-lg {
709
+ font-size: var(--fontSize-lg, 1.125rem) !important;
710
+ }
711
+ .ivds-text-xl {
712
+ font-size: var(--fontSize-xl, 1.25rem) !important;
713
+ }
714
+ .ivds-text-2xl {
715
+ font-size: var(--fontSize-2xl, 1.5rem) !important;
716
+ }
717
+ .ivds-text-3xl {
718
+ font-size: var(--fontSize-3xl, 1.875rem) !important;
719
+ }
720
+ .ivds-text-4xl {
721
+ font-size: var(--fontSize-4xl, 2.25rem) !important;
722
+ }
723
+ .ivds-text-5xl {
724
+ font-size: var(--fontSize-5xl, 3rem) !important;
725
+ }
726
+ .ivds-text-6xl {
727
+ font-size: var(--fontSize-6xl, 3.75rem) !important;
728
+ }
729
+ .ivds-text-7xl {
730
+ font-size: var(--fontSize-7xl, 4.5rem) !important;
731
+ }
732
+ .ivds-text-8xl {
733
+ font-size: var(--fontSize-8xl, 6rem) !important;
734
+ }
735
+ .ivds-text-9xl {
736
+ font-size: var(--fontSize-9xl, 8rem) !important;
737
+ }
738
+ .ivds-font-thin {
739
+ font-weight: var(--fontWeight-thin, 100) !important;
740
+ }
741
+ .ivds-font-extralight {
742
+ font-weight: var(--fontWeight-extralight, 200) !important;
743
+ }
744
+ .ivds-font-light {
745
+ font-weight: var(--fontWeight-light, 300) !important;
746
+ }
747
+ .ivds-font-normal {
748
+ font-weight: var(--fontWeight-normal, 400) !important;
749
+ }
750
+ .ivds-font-medium {
751
+ font-weight: var(--fontWeight-medium, 500) !important;
752
+ }
753
+ .ivds-font-semibold {
754
+ font-weight: var(--fontWeight-semibold, 600) !important;
755
+ }
756
+ .ivds-font-bold {
757
+ font-weight: var(--fontWeight-bold, 700) !important;
758
+ }
759
+ .ivds-font-extrabold {
760
+ font-weight: var(--fontWeight-extrabold, 800) !important;
761
+ }
762
+ .ivds-font-black {
763
+ font-weight: var(--fontWeight-black, 900) !important;
764
+ }
765
+ .ivds-leading-none {
766
+ line-height: var(--lineHeight-none, 1) !important;
767
+ }
768
+ .ivds-leading-tight {
769
+ line-height: var(--lineHeight-tight, 1.25) !important;
770
+ }
771
+ .ivds-leading-snug {
772
+ line-height: var(--lineHeight-snug, 1.375) !important;
773
+ }
774
+ .ivds-leading-normal {
775
+ line-height: var(--lineHeight-normal, 1.5) !important;
776
+ }
777
+ .ivds-leading-relaxed {
778
+ line-height: var(--lineHeight-relaxed, 1.625) !important;
779
+ }
780
+ .ivds-leading-loose {
781
+ line-height: var(--lineHeight-loose, 2) !important;
782
+ }
783
+ .ivds-text-left {
784
+ text-align: left !important;
785
+ }
786
+ .ivds-text-center {
787
+ text-align: center !important;
788
+ }
789
+ .ivds-text-right {
790
+ text-align: right !important;
791
+ }
792
+ .ivds-text-justify {
793
+ text-align: justify !important;
794
+ }
795
+ .ivds-text-primary {
796
+ color: var(--color-semantic-neutral-900, #111827) !important;
797
+ }
798
+ .ivds-text-secondary {
799
+ color: var(--color-semantic-neutral-600, #4b5563) !important;
800
+ }
801
+ .ivds-text-muted {
802
+ color: var(--color-semantic-neutral-500, #6b7280) !important;
803
+ }
804
+ .ivds-text-disabled {
805
+ color: var(--color-semantic-neutral-400, #9ca3af) !important;
806
+ }
807
+ .ivds-text-white {
808
+ color: var(--color-semantic-neutral-50, #f9fafb) !important;
809
+ }
810
+ .ivds-text-black {
811
+ color: var(--color-semantic-neutral-900, #111827) !important;
812
+ }
813
+ .ivds-text-brand-primary {
814
+ color: var(--color-brand-primary-500, #0ea5e9) !important;
815
+ }
816
+ .ivds-text-brand-secondary {
817
+ color: var(--color-brand-secondary-500, #8b5cf6) !important;
818
+ }
819
+ .ivds-text-success {
820
+ color: var(--color-semantic-success-500, #10b981) !important;
821
+ }
822
+ .ivds-text-warning {
823
+ color: var(--color-semantic-warning-500, #f59e0b) !important;
824
+ }
825
+ .ivds-text-error {
826
+ color: var(--color-semantic-error-500, #ef4444) !important;
827
+ }
828
+ .ivds-text-info {
829
+ color: var(--color-semantic-info-500, #3b82f6) !important;
830
+ }
831
+ .ivds-underline {
832
+ text-decoration: underline !important;
833
+ }
834
+ .ivds-line-through {
835
+ text-decoration: line-through !important;
836
+ }
837
+ .ivds-no-underline {
838
+ text-decoration: none !important;
839
+ }
840
+ .ivds-uppercase {
841
+ text-transform: uppercase !important;
842
+ }
843
+ .ivds-lowercase {
844
+ text-transform: lowercase !important;
845
+ }
846
+ .ivds-capitalize {
847
+ text-transform: capitalize !important;
848
+ }
849
+ .ivds-normal-case {
850
+ text-transform: none !important;
851
+ }
852
+ .ivds-italic {
853
+ font-style: italic !important;
854
+ }
855
+ .ivds-not-italic {
856
+ font-style: normal !important;
857
+ }
858
+ .ivds-truncate {
859
+ overflow: hidden !important;
860
+ text-overflow: ellipsis !important;
861
+ white-space: nowrap !important;
862
+ }
863
+ .ivds-text-ellipsis {
864
+ text-overflow: ellipsis !important;
865
+ }
866
+ .ivds-text-clip {
867
+ text-overflow: clip !important;
868
+ }
869
+ .ivds-whitespace-normal {
870
+ white-space: normal !important;
871
+ }
872
+ .ivds-whitespace-nowrap {
873
+ white-space: nowrap !important;
874
+ }
875
+ .ivds-whitespace-pre {
876
+ white-space: pre !important;
877
+ }
878
+ .ivds-whitespace-pre-line {
879
+ white-space: pre-line !important;
880
+ }
881
+ .ivds-whitespace-pre-wrap {
882
+ white-space: pre-wrap !important;
883
+ }
884
+ .ivds-break-normal {
885
+ overflow-wrap: normal !important;
886
+ word-break: normal !important;
887
+ }
888
+ .ivds-break-words {
889
+ overflow-wrap: break-word !important;
890
+ }
891
+ .ivds-break-all {
892
+ word-break: break-all !important;
893
+ }
894
+ .ivds-tracking-tighter {
895
+ letter-spacing: -0.05em !important;
896
+ }
897
+ .ivds-tracking-tight {
898
+ letter-spacing: -0.025em !important;
899
+ }
900
+ .ivds-tracking-normal {
901
+ letter-spacing: 0 !important;
902
+ }
903
+ .ivds-tracking-wide {
904
+ letter-spacing: 0.025em !important;
905
+ }
906
+ .ivds-tracking-wider {
907
+ letter-spacing: 0.05em !important;
908
+ }
909
+ .ivds-tracking-widest {
910
+ letter-spacing: 0.1em !important;
911
+ }
912
+ .ivds-block {
913
+ display: block !important;
914
+ }
915
+ .ivds-inline {
916
+ display: inline !important;
917
+ }
918
+ .ivds-inline-block {
919
+ display: inline-block !important;
920
+ }
921
+ .ivds-flex {
922
+ display: flex !important;
923
+ }
924
+ .ivds-inline-flex {
925
+ display: inline-flex !important;
926
+ }
927
+ .ivds-grid {
928
+ display: grid !important;
929
+ }
930
+ .ivds-inline-grid {
931
+ display: inline-grid !important;
932
+ }
933
+ .ivds-table {
934
+ display: table !important;
935
+ }
936
+ .ivds-table-cell {
937
+ display: table-cell !important;
938
+ }
939
+ .ivds-table-row {
940
+ display: table-row !important;
941
+ }
942
+ .ivds-hidden {
943
+ display: none !important;
944
+ }
945
+ .ivds-static {
946
+ position: static !important;
947
+ }
948
+ .ivds-relative {
949
+ position: relative !important;
950
+ }
951
+ .ivds-absolute {
952
+ position: absolute !important;
953
+ }
954
+ .ivds-fixed {
955
+ position: fixed !important;
956
+ }
957
+ .ivds-sticky {
958
+ position: sticky !important;
959
+ }
960
+ .ivds-inset-0 {
961
+ top: 0 !important;
962
+ right: 0 !important;
963
+ bottom: 0 !important;
964
+ left: 0 !important;
965
+ }
966
+ .ivds-inset-auto {
967
+ top: auto !important;
968
+ right: auto !important;
969
+ bottom: auto !important;
970
+ left: auto !important;
971
+ }
972
+ .ivds-inset-x-0 {
973
+ left: 0 !important;
974
+ right: 0 !important;
975
+ }
976
+ .ivds-inset-x-auto {
977
+ left: auto !important;
978
+ right: auto !important;
979
+ }
980
+ .ivds-inset-y-0 {
981
+ top: 0 !important;
982
+ bottom: 0 !important;
983
+ }
984
+ .ivds-inset-y-auto {
985
+ top: auto !important;
986
+ bottom: auto !important;
987
+ }
988
+ .ivds-top-0 {
989
+ top: 0 !important;
990
+ }
991
+ .ivds-top-auto {
992
+ top: auto !important;
993
+ }
994
+ .ivds-right-0 {
995
+ right: 0 !important;
996
+ }
997
+ .ivds-right-auto {
998
+ right: auto !important;
999
+ }
1000
+ .ivds-bottom-0 {
1001
+ bottom: 0 !important;
1002
+ }
1003
+ .ivds-bottom-auto {
1004
+ bottom: auto !important;
1005
+ }
1006
+ .ivds-left-0 {
1007
+ left: 0 !important;
1008
+ }
1009
+ .ivds-left-auto {
1010
+ left: auto !important;
1011
+ }
1012
+ .ivds-overflow-auto {
1013
+ overflow: auto !important;
1014
+ }
1015
+ .ivds-overflow-hidden {
1016
+ overflow: hidden !important;
1017
+ }
1018
+ .ivds-overflow-visible {
1019
+ overflow: visible !important;
1020
+ }
1021
+ .ivds-overflow-scroll {
1022
+ overflow: scroll !important;
1023
+ }
1024
+ .ivds-overflow-x-auto {
1025
+ overflow-x: auto !important;
1026
+ }
1027
+ .ivds-overflow-x-hidden {
1028
+ overflow-x: hidden !important;
1029
+ }
1030
+ .ivds-overflow-x-visible {
1031
+ overflow-x: visible !important;
1032
+ }
1033
+ .ivds-overflow-x-scroll {
1034
+ overflow-x: scroll !important;
1035
+ }
1036
+ .ivds-overflow-y-auto {
1037
+ overflow-y: auto !important;
1038
+ }
1039
+ .ivds-overflow-y-hidden {
1040
+ overflow-y: hidden !important;
1041
+ }
1042
+ .ivds-overflow-y-visible {
1043
+ overflow-y: visible !important;
1044
+ }
1045
+ .ivds-overflow-y-scroll {
1046
+ overflow-y: scroll !important;
1047
+ }
1048
+ .ivds-visible {
1049
+ visibility: visible !important;
1050
+ }
1051
+ .ivds-invisible {
1052
+ visibility: hidden !important;
1053
+ }
1054
+ .ivds-z-0 {
1055
+ z-index: 0 !important;
1056
+ }
1057
+ .ivds-z-10 {
1058
+ z-index: 10 !important;
1059
+ }
1060
+ .ivds-z-20 {
1061
+ z-index: 20 !important;
1062
+ }
1063
+ .ivds-z-30 {
1064
+ z-index: 30 !important;
1065
+ }
1066
+ .ivds-z-40 {
1067
+ z-index: 40 !important;
1068
+ }
1069
+ .ivds-z-50 {
1070
+ z-index: 50 !important;
1071
+ }
1072
+ .ivds-z-auto {
1073
+ z-index: auto !important;
1074
+ }
1075
+ .ivds-float-right {
1076
+ float: right !important;
1077
+ }
1078
+ .ivds-float-left {
1079
+ float: left !important;
1080
+ }
1081
+ .ivds-float-none {
1082
+ float: none !important;
1083
+ }
1084
+ .ivds-clear-left {
1085
+ clear: left !important;
1086
+ }
1087
+ .ivds-clear-right {
1088
+ clear: right !important;
1089
+ }
1090
+ .ivds-clear-both {
1091
+ clear: both !important;
1092
+ }
1093
+ .ivds-clear-none {
1094
+ clear: none !important;
1095
+ }
1096
+ .ivds-object-contain {
1097
+ -o-object-fit: contain !important;
1098
+ object-fit: contain !important;
1099
+ }
1100
+ .ivds-object-cover {
1101
+ -o-object-fit: cover !important;
1102
+ object-fit: cover !important;
1103
+ }
1104
+ .ivds-object-fill {
1105
+ -o-object-fit: fill !important;
1106
+ object-fit: fill !important;
1107
+ }
1108
+ .ivds-object-none {
1109
+ -o-object-fit: none !important;
1110
+ object-fit: none !important;
1111
+ }
1112
+ .ivds-object-scale-down {
1113
+ -o-object-fit: scale-down !important;
1114
+ object-fit: scale-down !important;
1115
+ }
1116
+ .ivds-object-bottom {
1117
+ -o-object-position: bottom !important;
1118
+ object-position: bottom !important;
1119
+ }
1120
+ .ivds-object-center {
1121
+ -o-object-position: center !important;
1122
+ object-position: center !important;
1123
+ }
1124
+ .ivds-object-left {
1125
+ -o-object-position: left !important;
1126
+ object-position: left !important;
1127
+ }
1128
+ .ivds-object-left-bottom {
1129
+ -o-object-position: left bottom !important;
1130
+ object-position: left bottom !important;
1131
+ }
1132
+ .ivds-object-left-top {
1133
+ -o-object-position: left top !important;
1134
+ object-position: left top !important;
1135
+ }
1136
+ .ivds-object-right {
1137
+ -o-object-position: right !important;
1138
+ object-position: right !important;
1139
+ }
1140
+ .ivds-object-right-bottom {
1141
+ -o-object-position: right bottom !important;
1142
+ object-position: right bottom !important;
1143
+ }
1144
+ .ivds-object-right-top {
1145
+ -o-object-position: right top !important;
1146
+ object-position: right top !important;
1147
+ }
1148
+ .ivds-object-top {
1149
+ -o-object-position: top !important;
1150
+ object-position: top !important;
1151
+ }
1152
+ .ivds-container {
1153
+ width: 100% !important;
1154
+ margin-left: auto !important;
1155
+ margin-right: auto !important;
1156
+ padding-left: var(--spacing-4, 1rem) !important;
1157
+ padding-right: var(--spacing-4, 1rem) !important;
1158
+ }
1159
+ .ivds-container--xs {
1160
+ max-width: 475px !important;
1161
+ }
1162
+ .ivds-container--sm {
1163
+ max-width: 640px !important;
1164
+ }
1165
+ .ivds-container--md {
1166
+ max-width: 768px !important;
1167
+ }
1168
+ .ivds-container--lg {
1169
+ max-width: 1024px !important;
1170
+ }
1171
+ .ivds-container--xl {
1172
+ max-width: 1280px !important;
1173
+ }
1174
+ .ivds-container--2xl {
1175
+ max-width: 1536px !important;
1176
+ }
1177
+ .ivds-container--no-padding {
1178
+ padding-left: 0 !important;
1179
+ padding-right: 0 !important;
1180
+ }
1181
+ .ivds-container--padding-sm {
1182
+ padding-left: var(--spacing-2, 0.5rem) !important;
1183
+ padding-right: var(--spacing-2, 0.5rem) !important;
1184
+ }
1185
+ .ivds-container--padding-lg {
1186
+ padding-left: var(--spacing-8, 2rem) !important;
1187
+ padding-right: var(--spacing-8, 2rem) !important;
1188
+ }
1189
+ .ivds-w-0 {
1190
+ width: 0 !important;
1191
+ }
1192
+ .ivds-w-auto {
1193
+ width: auto !important;
1194
+ }
1195
+ .ivds-w-full {
1196
+ width: 100% !important;
1197
+ }
1198
+ .ivds-w-screen {
1199
+ width: 100vw !important;
1200
+ }
1201
+ .ivds-w-min {
1202
+ width: -moz-min-content !important;
1203
+ width: min-content !important;
1204
+ }
1205
+ .ivds-w-max {
1206
+ width: -moz-max-content !important;
1207
+ width: max-content !important;
1208
+ }
1209
+ .ivds-w-fit {
1210
+ width: -moz-fit-content !important;
1211
+ width: fit-content !important;
1212
+ }
1213
+ .ivds-w-1-2 {
1214
+ width: 50% !important;
1215
+ }
1216
+ .ivds-w-1-3 {
1217
+ width: 33.3333% !important;
1218
+ }
1219
+ .ivds-w-2-3 {
1220
+ width: 66.6667% !important;
1221
+ }
1222
+ .ivds-w-1-4 {
1223
+ width: 25% !important;
1224
+ }
1225
+ .ivds-w-2-4 {
1226
+ width: 50% !important;
1227
+ }
1228
+ .ivds-w-3-4 {
1229
+ width: 75% !important;
1230
+ }
1231
+ .ivds-w-1-5 {
1232
+ width: 20% !important;
1233
+ }
1234
+ .ivds-w-2-5 {
1235
+ width: 40% !important;
1236
+ }
1237
+ .ivds-w-3-5 {
1238
+ width: 60% !important;
1239
+ }
1240
+ .ivds-w-4-5 {
1241
+ width: 80% !important;
1242
+ }
1243
+ .ivds-w-1-6 {
1244
+ width: 16.6667% !important;
1245
+ }
1246
+ .ivds-w-2-6 {
1247
+ width: 33.3333% !important;
1248
+ }
1249
+ .ivds-w-3-6 {
1250
+ width: 50% !important;
1251
+ }
1252
+ .ivds-w-4-6 {
1253
+ width: 66.6667% !important;
1254
+ }
1255
+ .ivds-w-5-6 {
1256
+ width: 83.3333% !important;
1257
+ }
1258
+ .ivds-h-0 {
1259
+ height: 0 !important;
1260
+ }
1261
+ .ivds-h-auto {
1262
+ height: auto !important;
1263
+ }
1264
+ .ivds-h-full {
1265
+ height: 100% !important;
1266
+ }
1267
+ .ivds-h-screen {
1268
+ height: 100vh !important;
1269
+ }
1270
+ .ivds-h-min {
1271
+ height: -moz-min-content !important;
1272
+ height: min-content !important;
1273
+ }
1274
+ .ivds-h-max {
1275
+ height: -moz-max-content !important;
1276
+ height: max-content !important;
1277
+ }
1278
+ .ivds-h-fit {
1279
+ height: -moz-fit-content !important;
1280
+ height: fit-content !important;
1281
+ }
1282
+ .ivds-h-1-2 {
1283
+ height: 50% !important;
1284
+ }
1285
+ .ivds-h-1-3 {
1286
+ height: 33.3333% !important;
1287
+ }
1288
+ .ivds-h-2-3 {
1289
+ height: 66.6667% !important;
1290
+ }
1291
+ .ivds-h-1-4 {
1292
+ height: 25% !important;
1293
+ }
1294
+ .ivds-h-2-4 {
1295
+ height: 50% !important;
1296
+ }
1297
+ .ivds-h-3-4 {
1298
+ height: 75% !important;
1299
+ }
1300
+ .ivds-h-1-5 {
1301
+ height: 20% !important;
1302
+ }
1303
+ .ivds-h-2-5 {
1304
+ height: 40% !important;
1305
+ }
1306
+ .ivds-h-3-5 {
1307
+ height: 60% !important;
1308
+ }
1309
+ .ivds-h-4-5 {
1310
+ height: 80% !important;
1311
+ }
1312
+ .ivds-h-1-6 {
1313
+ height: 16.6667% !important;
1314
+ }
1315
+ .ivds-h-5-6 {
1316
+ height: 83.3333% !important;
1317
+ }
1318
+ .ivds-min-w-0 {
1319
+ min-width: 0 !important;
1320
+ }
1321
+ .ivds-min-w-full {
1322
+ min-width: 100% !important;
1323
+ }
1324
+ .ivds-min-w-min {
1325
+ min-width: -moz-min-content !important;
1326
+ min-width: min-content !important;
1327
+ }
1328
+ .ivds-min-w-max {
1329
+ min-width: -moz-max-content !important;
1330
+ min-width: max-content !important;
1331
+ }
1332
+ .ivds-min-w-fit {
1333
+ min-width: -moz-fit-content !important;
1334
+ min-width: fit-content !important;
1335
+ }
1336
+ .ivds-max-w-0 {
1337
+ max-width: 0 !important;
1338
+ }
1339
+ .ivds-max-w-none {
1340
+ max-width: none !important;
1341
+ }
1342
+ .ivds-max-w-xs {
1343
+ max-width: 20rem !important;
1344
+ }
1345
+ .ivds-max-w-sm {
1346
+ max-width: 24rem !important;
1347
+ }
1348
+ .ivds-max-w-md {
1349
+ max-width: 28rem !important;
1350
+ }
1351
+ .ivds-max-w-lg {
1352
+ max-width: 32rem !important;
1353
+ }
1354
+ .ivds-max-w-xl {
1355
+ max-width: 36rem !important;
1356
+ }
1357
+ .ivds-max-w-2xl {
1358
+ max-width: 42rem !important;
1359
+ }
1360
+ .ivds-max-w-3xl {
1361
+ max-width: 48rem !important;
1362
+ }
1363
+ .ivds-max-w-4xl {
1364
+ max-width: 56rem !important;
1365
+ }
1366
+ .ivds-max-w-5xl {
1367
+ max-width: 64rem !important;
1368
+ }
1369
+ .ivds-max-w-6xl {
1370
+ max-width: 72rem !important;
1371
+ }
1372
+ .ivds-max-w-7xl {
1373
+ max-width: 80rem !important;
1374
+ }
1375
+ .ivds-max-w-full {
1376
+ max-width: 100% !important;
1377
+ }
1378
+ .ivds-max-w-min {
1379
+ max-width: -moz-min-content !important;
1380
+ max-width: min-content !important;
1381
+ }
1382
+ .ivds-max-w-max {
1383
+ max-width: -moz-max-content !important;
1384
+ max-width: max-content !important;
1385
+ }
1386
+ .ivds-max-w-fit {
1387
+ max-width: -moz-fit-content !important;
1388
+ max-width: fit-content !important;
1389
+ }
1390
+ .ivds-min-h-0 {
1391
+ min-height: 0 !important;
1392
+ }
1393
+ .ivds-min-h-full {
1394
+ min-height: 100% !important;
1395
+ }
1396
+ .ivds-min-h-screen {
1397
+ min-height: 100vh !important;
1398
+ }
1399
+ .ivds-min-h-min {
1400
+ min-height: -moz-min-content !important;
1401
+ min-height: min-content !important;
1402
+ }
1403
+ .ivds-min-h-max {
1404
+ min-height: -moz-max-content !important;
1405
+ min-height: max-content !important;
1406
+ }
1407
+ .ivds-min-h-fit {
1408
+ min-height: -moz-fit-content !important;
1409
+ min-height: fit-content !important;
1410
+ }
1411
+ .ivds-max-h-0 {
1412
+ max-height: 0 !important;
1413
+ }
1414
+ .ivds-max-h-full {
1415
+ max-height: 100% !important;
1416
+ }
1417
+ .ivds-max-h-screen {
1418
+ max-height: 100vh !important;
1419
+ }
1420
+ .ivds-max-h-min {
1421
+ max-height: -moz-min-content !important;
1422
+ max-height: min-content !important;
1423
+ }
1424
+ .ivds-max-h-max {
1425
+ max-height: -moz-max-content !important;
1426
+ max-height: max-content !important;
1427
+ }
1428
+ .ivds-max-h-fit {
1429
+ max-height: -moz-fit-content !important;
1430
+ max-height: fit-content !important;
1431
+ }
1432
+ @media (min-width: 640px) {
1433
+ .ivds-sm-block {
1434
+ display: block !important;
1435
+ }
1436
+ .ivds-sm-inline {
1437
+ display: inline !important;
1438
+ }
1439
+ .ivds-sm-inline-block {
1440
+ display: inline-block !important;
1441
+ }
1442
+ .ivds-sm-flex {
1443
+ display: flex !important;
1444
+ }
1445
+ .ivds-sm-inline-flex {
1446
+ display: inline-flex !important;
1447
+ }
1448
+ .ivds-sm-grid {
1449
+ display: grid !important;
1450
+ }
1451
+ .ivds-sm-hidden {
1452
+ display: none !important;
1453
+ }
1454
+ }
1455
+ @media (min-width: 768px) {
1456
+ .ivds-md-block {
1457
+ display: block !important;
1458
+ }
1459
+ .ivds-md-inline {
1460
+ display: inline !important;
1461
+ }
1462
+ .ivds-md-inline-block {
1463
+ display: inline-block !important;
1464
+ }
1465
+ .ivds-md-flex {
1466
+ display: flex !important;
1467
+ }
1468
+ .ivds-md-inline-flex {
1469
+ display: inline-flex !important;
1470
+ }
1471
+ .ivds-md-grid {
1472
+ display: grid !important;
1473
+ }
1474
+ .ivds-md-hidden {
1475
+ display: none !important;
1476
+ }
1477
+ }
1478
+ @media (min-width: 1024px) {
1479
+ .ivds-lg-block {
1480
+ display: block !important;
1481
+ }
1482
+ .ivds-lg-inline {
1483
+ display: inline !important;
1484
+ }
1485
+ .ivds-lg-inline-block {
1486
+ display: inline-block !important;
1487
+ }
1488
+ .ivds-lg-flex {
1489
+ display: flex !important;
1490
+ }
1491
+ .ivds-lg-inline-flex {
1492
+ display: inline-flex !important;
1493
+ }
1494
+ .ivds-lg-grid {
1495
+ display: grid !important;
1496
+ }
1497
+ .ivds-lg-hidden {
1498
+ display: none !important;
1499
+ }
1500
+ }
1501
+ .ivds-grid {
1502
+ display: grid !important;
1503
+ grid-gap: var(--spacing-4, 1rem);
1504
+ gap: var(--spacing-4, 1rem);
1505
+ }
1506
+ .ivds-grid--cols-1 {
1507
+ grid-template-columns: repeat(1, 1fr) !important;
1508
+ }
1509
+ .ivds-grid--cols-2 {
1510
+ grid-template-columns: repeat(2, 1fr) !important;
1511
+ }
1512
+ .ivds-grid--cols-3 {
1513
+ grid-template-columns: repeat(3, 1fr) !important;
1514
+ }
1515
+ .ivds-grid--cols-4 {
1516
+ grid-template-columns: repeat(4, 1fr) !important;
1517
+ }
1518
+ .ivds-grid--cols-5 {
1519
+ grid-template-columns: repeat(5, 1fr) !important;
1520
+ }
1521
+ .ivds-grid--cols-6 {
1522
+ grid-template-columns: repeat(6, 1fr) !important;
1523
+ }
1524
+ .ivds-grid--cols-7 {
1525
+ grid-template-columns: repeat(7, 1fr) !important;
1526
+ }
1527
+ .ivds-grid--cols-8 {
1528
+ grid-template-columns: repeat(8, 1fr) !important;
1529
+ }
1530
+ .ivds-grid--cols-9 {
1531
+ grid-template-columns: repeat(9, 1fr) !important;
1532
+ }
1533
+ .ivds-grid--cols-10 {
1534
+ grid-template-columns: repeat(10, 1fr) !important;
1535
+ }
1536
+ .ivds-grid--cols-11 {
1537
+ grid-template-columns: repeat(11, 1fr) !important;
1538
+ }
1539
+ .ivds-grid--cols-12 {
1540
+ grid-template-columns: repeat(12, 1fr) !important;
1541
+ }
1542
+ .ivds-grid--cols-none {
1543
+ grid-template-columns: none !important;
1544
+ }
1545
+ .ivds-grid--rows-1 {
1546
+ grid-template-rows: repeat(1, 1fr) !important;
1547
+ }
1548
+ .ivds-grid--rows-2 {
1549
+ grid-template-rows: repeat(2, 1fr) !important;
1550
+ }
1551
+ .ivds-grid--rows-3 {
1552
+ grid-template-rows: repeat(3, 1fr) !important;
1553
+ }
1554
+ .ivds-grid--rows-4 {
1555
+ grid-template-rows: repeat(4, 1fr) !important;
1556
+ }
1557
+ .ivds-grid--rows-5 {
1558
+ grid-template-rows: repeat(5, 1fr) !important;
1559
+ }
1560
+ .ivds-grid--rows-6 {
1561
+ grid-template-rows: repeat(6, 1fr) !important;
1562
+ }
1563
+ .ivds-grid--rows-none {
1564
+ grid-template-rows: none !important;
1565
+ }
1566
+ .ivds-grid--gap-0 {
1567
+ gap: 0 !important;
1568
+ }
1569
+ .ivds-grid--gap-1 {
1570
+ gap: var(--spacing-1, 0.25rem) !important;
1571
+ }
1572
+ .ivds-grid--gap-2 {
1573
+ gap: var(--spacing-2, 0.5rem) !important;
1574
+ }
1575
+ .ivds-grid--gap-3 {
1576
+ gap: var(--spacing-3, 0.75rem) !important;
1577
+ }
1578
+ .ivds-grid--gap-4 {
1579
+ gap: var(--spacing-4, 1rem) !important;
1580
+ }
1581
+ .ivds-grid--gap-5 {
1582
+ gap: var(--spacing-5, 1.25rem) !important;
1583
+ }
1584
+ .ivds-grid--gap-6 {
1585
+ gap: var(--spacing-6, 1.5rem) !important;
1586
+ }
1587
+ .ivds-grid--gap-8 {
1588
+ gap: var(--spacing-8, 2rem) !important;
1589
+ }
1590
+ .ivds-grid--gap-10 {
1591
+ gap: var(--spacing-10, 2.5rem) !important;
1592
+ }
1593
+ .ivds-grid--gap-12 {
1594
+ gap: var(--spacing-12, 3rem) !important;
1595
+ }
1596
+ .ivds-grid--gap-16 {
1597
+ gap: var(--spacing-16, 4rem) !important;
1598
+ }
1599
+ .ivds-grid--gap-x-0 {
1600
+ -moz-column-gap: 0 !important;
1601
+ column-gap: 0 !important;
1602
+ }
1603
+ .ivds-grid--gap-x-1 {
1604
+ -moz-column-gap: var(--spacing-1, 0.25rem) !important;
1605
+ column-gap: var(--spacing-1, 0.25rem) !important;
1606
+ }
1607
+ .ivds-grid--gap-x-2 {
1608
+ -moz-column-gap: var(--spacing-2, 0.5rem) !important;
1609
+ column-gap: var(--spacing-2, 0.5rem) !important;
1610
+ }
1611
+ .ivds-grid--gap-x-3 {
1612
+ -moz-column-gap: var(--spacing-3, 0.75rem) !important;
1613
+ column-gap: var(--spacing-3, 0.75rem) !important;
1614
+ }
1615
+ .ivds-grid--gap-x-4 {
1616
+ -moz-column-gap: var(--spacing-4, 1rem) !important;
1617
+ column-gap: var(--spacing-4, 1rem) !important;
1618
+ }
1619
+ .ivds-grid--gap-x-6 {
1620
+ -moz-column-gap: var(--spacing-6, 1.5rem) !important;
1621
+ column-gap: var(--spacing-6, 1.5rem) !important;
1622
+ }
1623
+ .ivds-grid--gap-x-8 {
1624
+ -moz-column-gap: var(--spacing-8, 2rem) !important;
1625
+ column-gap: var(--spacing-8, 2rem) !important;
1626
+ }
1627
+ .ivds-grid--gap-y-0 {
1628
+ row-gap: 0 !important;
1629
+ }
1630
+ .ivds-grid--gap-y-1 {
1631
+ row-gap: var(--spacing-1, 0.25rem) !important;
1632
+ }
1633
+ .ivds-grid--gap-y-2 {
1634
+ row-gap: var(--spacing-2, 0.5rem) !important;
1635
+ }
1636
+ .ivds-grid--gap-y-3 {
1637
+ row-gap: var(--spacing-3, 0.75rem) !important;
1638
+ }
1639
+ .ivds-grid--gap-y-4 {
1640
+ row-gap: var(--spacing-4, 1rem) !important;
1641
+ }
1642
+ .ivds-grid--gap-y-6 {
1643
+ row-gap: var(--spacing-6, 1.5rem) !important;
1644
+ }
1645
+ .ivds-grid--gap-y-8 {
1646
+ row-gap: var(--spacing-8, 2rem) !important;
1647
+ }
1648
+ .ivds-grid-item--col-span-1 {
1649
+ grid-column: span 1/span 1 !important;
1650
+ }
1651
+ .ivds-grid-item--col-span-2 {
1652
+ grid-column: span 2/span 2 !important;
1653
+ }
1654
+ .ivds-grid-item--col-span-3 {
1655
+ grid-column: span 3/span 3 !important;
1656
+ }
1657
+ .ivds-grid-item--col-span-4 {
1658
+ grid-column: span 4/span 4 !important;
1659
+ }
1660
+ .ivds-grid-item--col-span-5 {
1661
+ grid-column: span 5/span 5 !important;
1662
+ }
1663
+ .ivds-grid-item--col-span-6 {
1664
+ grid-column: span 6/span 6 !important;
1665
+ }
1666
+ .ivds-grid-item--col-span-7 {
1667
+ grid-column: span 7/span 7 !important;
1668
+ }
1669
+ .ivds-grid-item--col-span-8 {
1670
+ grid-column: span 8/span 8 !important;
1671
+ }
1672
+ .ivds-grid-item--col-span-9 {
1673
+ grid-column: span 9/span 9 !important;
1674
+ }
1675
+ .ivds-grid-item--col-span-10 {
1676
+ grid-column: span 10/span 10 !important;
1677
+ }
1678
+ .ivds-grid-item--col-span-11 {
1679
+ grid-column: span 11/span 11 !important;
1680
+ }
1681
+ .ivds-grid-item--col-span-12 {
1682
+ grid-column: span 12/span 12 !important;
1683
+ }
1684
+ .ivds-grid-item--col-span-full {
1685
+ grid-column: 1/-1 !important;
1686
+ }
1687
+ .ivds-grid-item--col-start-1 {
1688
+ grid-column-start: 1 !important;
1689
+ }
1690
+ .ivds-grid-item--col-start-2 {
1691
+ grid-column-start: 2 !important;
1692
+ }
1693
+ .ivds-grid-item--col-start-3 {
1694
+ grid-column-start: 3 !important;
1695
+ }
1696
+ .ivds-grid-item--col-start-4 {
1697
+ grid-column-start: 4 !important;
1698
+ }
1699
+ .ivds-grid-item--col-start-5 {
1700
+ grid-column-start: 5 !important;
1701
+ }
1702
+ .ivds-grid-item--col-start-6 {
1703
+ grid-column-start: 6 !important;
1704
+ }
1705
+ .ivds-grid-item--col-start-7 {
1706
+ grid-column-start: 7 !important;
1707
+ }
1708
+ .ivds-grid-item--col-start-8 {
1709
+ grid-column-start: 8 !important;
1710
+ }
1711
+ .ivds-grid-item--col-start-9 {
1712
+ grid-column-start: 9 !important;
1713
+ }
1714
+ .ivds-grid-item--col-start-10 {
1715
+ grid-column-start: 10 !important;
1716
+ }
1717
+ .ivds-grid-item--col-start-11 {
1718
+ grid-column-start: 11 !important;
1719
+ }
1720
+ .ivds-grid-item--col-start-12 {
1721
+ grid-column-start: 12 !important;
1722
+ }
1723
+ .ivds-grid-item--col-start-13 {
1724
+ grid-column-start: 13 !important;
1725
+ }
1726
+ .ivds-grid-item--col-start-auto {
1727
+ grid-column-start: auto !important;
1728
+ }
1729
+ .ivds-grid-item--col-end-1 {
1730
+ grid-column-end: 1 !important;
1731
+ }
1732
+ .ivds-grid-item--col-end-2 {
1733
+ grid-column-end: 2 !important;
1734
+ }
1735
+ .ivds-grid-item--col-end-3 {
1736
+ grid-column-end: 3 !important;
1737
+ }
1738
+ .ivds-grid-item--col-end-4 {
1739
+ grid-column-end: 4 !important;
1740
+ }
1741
+ .ivds-grid-item--col-end-5 {
1742
+ grid-column-end: 5 !important;
1743
+ }
1744
+ .ivds-grid-item--col-end-6 {
1745
+ grid-column-end: 6 !important;
1746
+ }
1747
+ .ivds-grid-item--col-end-7 {
1748
+ grid-column-end: 7 !important;
1749
+ }
1750
+ .ivds-grid-item--col-end-8 {
1751
+ grid-column-end: 8 !important;
1752
+ }
1753
+ .ivds-grid-item--col-end-9 {
1754
+ grid-column-end: 9 !important;
1755
+ }
1756
+ .ivds-grid-item--col-end-10 {
1757
+ grid-column-end: 10 !important;
1758
+ }
1759
+ .ivds-grid-item--col-end-11 {
1760
+ grid-column-end: 11 !important;
1761
+ }
1762
+ .ivds-grid-item--col-end-12 {
1763
+ grid-column-end: 12 !important;
1764
+ }
1765
+ .ivds-grid-item--col-end-13 {
1766
+ grid-column-end: 13 !important;
1767
+ }
1768
+ .ivds-grid-item--col-end-auto {
1769
+ grid-column-end: auto !important;
1770
+ }
1771
+ .ivds-grid-item--row-span-1 {
1772
+ grid-row: span 1/span 1 !important;
1773
+ }
1774
+ .ivds-grid-item--row-span-2 {
1775
+ grid-row: span 2/span 2 !important;
1776
+ }
1777
+ .ivds-grid-item--row-span-3 {
1778
+ grid-row: span 3/span 3 !important;
1779
+ }
1780
+ .ivds-grid-item--row-span-4 {
1781
+ grid-row: span 4/span 4 !important;
1782
+ }
1783
+ .ivds-grid-item--row-span-5 {
1784
+ grid-row: span 5/span 5 !important;
1785
+ }
1786
+ .ivds-grid-item--row-span-6 {
1787
+ grid-row: span 6/span 6 !important;
1788
+ }
1789
+ .ivds-grid-item--row-span-full {
1790
+ grid-row: 1/-1 !important;
1791
+ }
1792
+ .ivds-grid-item--row-start-1 {
1793
+ grid-row-start: 1 !important;
1794
+ }
1795
+ .ivds-grid-item--row-start-2 {
1796
+ grid-row-start: 2 !important;
1797
+ }
1798
+ .ivds-grid-item--row-start-3 {
1799
+ grid-row-start: 3 !important;
1800
+ }
1801
+ .ivds-grid-item--row-start-4 {
1802
+ grid-row-start: 4 !important;
1803
+ }
1804
+ .ivds-grid-item--row-start-5 {
1805
+ grid-row-start: 5 !important;
1806
+ }
1807
+ .ivds-grid-item--row-start-6 {
1808
+ grid-row-start: 6 !important;
1809
+ }
1810
+ .ivds-grid-item--row-start-7 {
1811
+ grid-row-start: 7 !important;
1812
+ }
1813
+ .ivds-grid-item--row-start-auto {
1814
+ grid-row-start: auto !important;
1815
+ }
1816
+ .ivds-grid-item--row-end-1 {
1817
+ grid-row-end: 1 !important;
1818
+ }
1819
+ .ivds-grid-item--row-end-2 {
1820
+ grid-row-end: 2 !important;
1821
+ }
1822
+ .ivds-grid-item--row-end-3 {
1823
+ grid-row-end: 3 !important;
1824
+ }
1825
+ .ivds-grid-item--row-end-4 {
1826
+ grid-row-end: 4 !important;
1827
+ }
1828
+ .ivds-grid-item--row-end-5 {
1829
+ grid-row-end: 5 !important;
1830
+ }
1831
+ .ivds-grid-item--row-end-6 {
1832
+ grid-row-end: 6 !important;
1833
+ }
1834
+ .ivds-grid-item--row-end-7 {
1835
+ grid-row-end: 7 !important;
1836
+ }
1837
+ .ivds-grid-item--row-end-auto {
1838
+ grid-row-end: auto !important;
1839
+ }
1840
+ .ivds-grid-flow-row {
1841
+ grid-auto-flow: row !important;
1842
+ }
1843
+ .ivds-grid-flow-col {
1844
+ grid-auto-flow: column !important;
1845
+ }
1846
+ .ivds-grid-flow-dense {
1847
+ grid-auto-flow: dense !important;
1848
+ }
1849
+ .ivds-grid-flow-row-dense {
1850
+ grid-auto-flow: row dense !important;
1851
+ }
1852
+ .ivds-grid-flow-col-dense {
1853
+ grid-auto-flow: column dense !important;
1854
+ }
1855
+ .ivds-auto-cols-auto {
1856
+ grid-auto-columns: auto !important;
1857
+ }
1858
+ .ivds-auto-cols-min {
1859
+ grid-auto-columns: min-content !important;
1860
+ }
1861
+ .ivds-auto-cols-max {
1862
+ grid-auto-columns: max-content !important;
1863
+ }
1864
+ .ivds-auto-cols-fr {
1865
+ grid-auto-columns: minmax(0, 1fr) !important;
1866
+ }
1867
+ .ivds-auto-rows-auto {
1868
+ grid-auto-rows: auto !important;
1869
+ }
1870
+ .ivds-auto-rows-min {
1871
+ grid-auto-rows: min-content !important;
1872
+ }
1873
+ .ivds-auto-rows-max {
1874
+ grid-auto-rows: max-content !important;
1875
+ }
1876
+ .ivds-auto-rows-fr {
1877
+ grid-auto-rows: minmax(0, 1fr) !important;
1878
+ }
1879
+ @media (min-width: 640px) {
1880
+ .ivds-sm-grid--cols-1 {
1881
+ grid-template-columns: repeat(1, 1fr) !important;
1882
+ }
1883
+ .ivds-sm-grid--cols-2 {
1884
+ grid-template-columns: repeat(2, 1fr) !important;
1885
+ }
1886
+ .ivds-sm-grid--cols-3 {
1887
+ grid-template-columns: repeat(3, 1fr) !important;
1888
+ }
1889
+ .ivds-sm-grid--cols-4 {
1890
+ grid-template-columns: repeat(4, 1fr) !important;
1891
+ }
1892
+ .ivds-sm-grid--cols-6 {
1893
+ grid-template-columns: repeat(6, 1fr) !important;
1894
+ }
1895
+ .ivds-sm-grid--cols-12 {
1896
+ grid-template-columns: repeat(12, 1fr) !important;
1897
+ }
1898
+ .ivds-sm-grid-item--col-span-1 {
1899
+ grid-column: span 1/span 1 !important;
1900
+ }
1901
+ .ivds-sm-grid-item--col-span-2 {
1902
+ grid-column: span 2/span 2 !important;
1903
+ }
1904
+ .ivds-sm-grid-item--col-span-3 {
1905
+ grid-column: span 3/span 3 !important;
1906
+ }
1907
+ .ivds-sm-grid-item--col-span-4 {
1908
+ grid-column: span 4/span 4 !important;
1909
+ }
1910
+ .ivds-sm-grid-item--col-span-6 {
1911
+ grid-column: span 6/span 6 !important;
1912
+ }
1913
+ .ivds-sm-grid-item--col-span-12 {
1914
+ grid-column: span 12/span 12 !important;
1915
+ }
1916
+ }
1917
+ @media (min-width: 768px) {
1918
+ .ivds-md-grid--cols-1 {
1919
+ grid-template-columns: repeat(1, 1fr) !important;
1920
+ }
1921
+ .ivds-md-grid--cols-2 {
1922
+ grid-template-columns: repeat(2, 1fr) !important;
1923
+ }
1924
+ .ivds-md-grid--cols-3 {
1925
+ grid-template-columns: repeat(3, 1fr) !important;
1926
+ }
1927
+ .ivds-md-grid--cols-4 {
1928
+ grid-template-columns: repeat(4, 1fr) !important;
1929
+ }
1930
+ .ivds-md-grid--cols-6 {
1931
+ grid-template-columns: repeat(6, 1fr) !important;
1932
+ }
1933
+ .ivds-md-grid--cols-12 {
1934
+ grid-template-columns: repeat(12, 1fr) !important;
1935
+ }
1936
+ .ivds-md-grid-item--col-span-1 {
1937
+ grid-column: span 1/span 1 !important;
1938
+ }
1939
+ .ivds-md-grid-item--col-span-2 {
1940
+ grid-column: span 2/span 2 !important;
1941
+ }
1942
+ .ivds-md-grid-item--col-span-3 {
1943
+ grid-column: span 3/span 3 !important;
1944
+ }
1945
+ .ivds-md-grid-item--col-span-4 {
1946
+ grid-column: span 4/span 4 !important;
1947
+ }
1948
+ .ivds-md-grid-item--col-span-6 {
1949
+ grid-column: span 6/span 6 !important;
1950
+ }
1951
+ .ivds-md-grid-item--col-span-12 {
1952
+ grid-column: span 12/span 12 !important;
1953
+ }
1954
+ }
1955
+ @media (min-width: 1024px) {
1956
+ .ivds-lg-grid--cols-1 {
1957
+ grid-template-columns: repeat(1, 1fr) !important;
1958
+ }
1959
+ .ivds-lg-grid--cols-2 {
1960
+ grid-template-columns: repeat(2, 1fr) !important;
1961
+ }
1962
+ .ivds-lg-grid--cols-3 {
1963
+ grid-template-columns: repeat(3, 1fr) !important;
1964
+ }
1965
+ .ivds-lg-grid--cols-4 {
1966
+ grid-template-columns: repeat(4, 1fr) !important;
1967
+ }
1968
+ .ivds-lg-grid--cols-6 {
1969
+ grid-template-columns: repeat(6, 1fr) !important;
1970
+ }
1971
+ .ivds-lg-grid--cols-12 {
1972
+ grid-template-columns: repeat(12, 1fr) !important;
1973
+ }
1974
+ .ivds-lg-grid-item--col-span-1 {
1975
+ grid-column: span 1/span 1 !important;
1976
+ }
1977
+ .ivds-lg-grid-item--col-span-2 {
1978
+ grid-column: span 2/span 2 !important;
1979
+ }
1980
+ .ivds-lg-grid-item--col-span-3 {
1981
+ grid-column: span 3/span 3 !important;
1982
+ }
1983
+ .ivds-lg-grid-item--col-span-4 {
1984
+ grid-column: span 4/span 4 !important;
1985
+ }
1986
+ .ivds-lg-grid-item--col-span-6 {
1987
+ grid-column: span 6/span 6 !important;
1988
+ }
1989
+ .ivds-lg-grid-item--col-span-12 {
1990
+ grid-column: span 12/span 12 !important;
1991
+ }
1992
+ }
1993
+ .ivds-flex {
1994
+ display: flex !important;
1995
+ }
1996
+ .ivds-flex--row {
1997
+ flex-direction: row !important;
1998
+ }
1999
+ .ivds-flex--column {
2000
+ flex-direction: column !important;
2001
+ }
2002
+ .ivds-flex--row-reverse {
2003
+ flex-direction: row-reverse !important;
2004
+ }
2005
+ .ivds-flex--column-reverse {
2006
+ flex-direction: column-reverse !important;
2007
+ }
2008
+ .ivds-flex--wrap {
2009
+ flex-wrap: wrap !important;
2010
+ }
2011
+ .ivds-flex--wrap-reverse {
2012
+ flex-wrap: wrap-reverse !important;
2013
+ }
2014
+ .ivds-flex--nowrap {
2015
+ flex-wrap: nowrap !important;
2016
+ }
2017
+ .ivds-flex--justify-normal {
2018
+ justify-content: normal !important;
2019
+ }
2020
+ .ivds-flex--justify-start {
2021
+ justify-content: flex-start !important;
2022
+ }
2023
+ .ivds-flex--justify-center {
2024
+ justify-content: center !important;
2025
+ }
2026
+ .ivds-flex--justify-end {
2027
+ justify-content: flex-end !important;
2028
+ }
2029
+ .ivds-flex--justify-between {
2030
+ justify-content: space-between !important;
2031
+ }
2032
+ .ivds-flex--justify-around {
2033
+ justify-content: space-around !important;
2034
+ }
2035
+ .ivds-flex--justify-evenly {
2036
+ justify-content: space-evenly !important;
2037
+ }
2038
+ .ivds-flex--justify-stretch {
2039
+ justify-content: stretch !important;
2040
+ }
2041
+ .ivds-flex--items-start {
2042
+ align-items: flex-start !important;
2043
+ }
2044
+ .ivds-flex--items-center {
2045
+ align-items: center !important;
2046
+ }
2047
+ .ivds-flex--items-end {
2048
+ align-items: flex-end !important;
2049
+ }
2050
+ .ivds-flex--items-stretch {
2051
+ align-items: stretch !important;
2052
+ }
2053
+ .ivds-flex--items-baseline {
2054
+ align-items: baseline !important;
2055
+ }
2056
+ .ivds-flex--content-normal {
2057
+ align-content: normal !important;
2058
+ }
2059
+ .ivds-flex--content-center {
2060
+ align-content: center !important;
2061
+ }
2062
+ .ivds-flex--content-start {
2063
+ align-content: flex-start !important;
2064
+ }
2065
+ .ivds-flex--content-end {
2066
+ align-content: flex-end !important;
2067
+ }
2068
+ .ivds-flex--content-between {
2069
+ align-content: space-between !important;
2070
+ }
2071
+ .ivds-flex--content-around {
2072
+ align-content: space-around !important;
2073
+ }
2074
+ .ivds-flex--content-evenly {
2075
+ align-content: space-evenly !important;
2076
+ }
2077
+ .ivds-flex--content-stretch {
2078
+ align-content: stretch !important;
2079
+ }
2080
+ .ivds-flex--gap-0 {
2081
+ gap: 0 !important;
2082
+ }
2083
+ .ivds-flex--gap-1 {
2084
+ gap: var(--spacing-1, 0.25rem) !important;
2085
+ }
2086
+ .ivds-flex--gap-2 {
2087
+ gap: var(--spacing-2, 0.5rem) !important;
2088
+ }
2089
+ .ivds-flex--gap-3 {
2090
+ gap: var(--spacing-3, 0.75rem) !important;
2091
+ }
2092
+ .ivds-flex--gap-4 {
2093
+ gap: var(--spacing-4, 1rem) !important;
2094
+ }
2095
+ .ivds-flex--gap-5 {
2096
+ gap: var(--spacing-5, 1.25rem) !important;
2097
+ }
2098
+ .ivds-flex--gap-6 {
2099
+ gap: var(--spacing-6, 1.5rem) !important;
2100
+ }
2101
+ .ivds-flex--gap-8 {
2102
+ gap: var(--spacing-8, 2rem) !important;
2103
+ }
2104
+ .ivds-flex--gap-10 {
2105
+ gap: var(--spacing-10, 2.5rem) !important;
2106
+ }
2107
+ .ivds-flex--gap-12 {
2108
+ gap: var(--spacing-12, 3rem) !important;
2109
+ }
2110
+ .ivds-flex--gap-16 {
2111
+ gap: var(--spacing-16, 4rem) !important;
2112
+ }
2113
+ .ivds-flex--gap-x-0 {
2114
+ -moz-column-gap: 0 !important;
2115
+ column-gap: 0 !important;
2116
+ }
2117
+ .ivds-flex--gap-x-1 {
2118
+ -moz-column-gap: var(--spacing-1, 0.25rem) !important;
2119
+ column-gap: var(--spacing-1, 0.25rem) !important;
2120
+ }
2121
+ .ivds-flex--gap-x-2 {
2122
+ -moz-column-gap: var(--spacing-2, 0.5rem) !important;
2123
+ column-gap: var(--spacing-2, 0.5rem) !important;
2124
+ }
2125
+ .ivds-flex--gap-x-3 {
2126
+ -moz-column-gap: var(--spacing-3, 0.75rem) !important;
2127
+ column-gap: var(--spacing-3, 0.75rem) !important;
2128
+ }
2129
+ .ivds-flex--gap-x-4 {
2130
+ -moz-column-gap: var(--spacing-4, 1rem) !important;
2131
+ column-gap: var(--spacing-4, 1rem) !important;
2132
+ }
2133
+ .ivds-flex--gap-x-6 {
2134
+ -moz-column-gap: var(--spacing-6, 1.5rem) !important;
2135
+ column-gap: var(--spacing-6, 1.5rem) !important;
2136
+ }
2137
+ .ivds-flex--gap-x-8 {
2138
+ -moz-column-gap: var(--spacing-8, 2rem) !important;
2139
+ column-gap: var(--spacing-8, 2rem) !important;
2140
+ }
2141
+ .ivds-flex--gap-y-0 {
2142
+ row-gap: 0 !important;
2143
+ }
2144
+ .ivds-flex--gap-y-1 {
2145
+ row-gap: var(--spacing-1, 0.25rem) !important;
2146
+ }
2147
+ .ivds-flex--gap-y-2 {
2148
+ row-gap: var(--spacing-2, 0.5rem) !important;
2149
+ }
2150
+ .ivds-flex--gap-y-3 {
2151
+ row-gap: var(--spacing-3, 0.75rem) !important;
2152
+ }
2153
+ .ivds-flex--gap-y-4 {
2154
+ row-gap: var(--spacing-4, 1rem) !important;
2155
+ }
2156
+ .ivds-flex--gap-y-6 {
2157
+ row-gap: var(--spacing-6, 1.5rem) !important;
2158
+ }
2159
+ .ivds-flex--gap-y-8 {
2160
+ row-gap: var(--spacing-8, 2rem) !important;
2161
+ }
2162
+ .ivds-flex-item--grow-0 {
2163
+ flex-grow: 0 !important;
2164
+ }
2165
+ .ivds-flex-item--grow {
2166
+ flex-grow: 1 !important;
2167
+ }
2168
+ .ivds-flex-item--shrink-0 {
2169
+ flex-shrink: 0 !important;
2170
+ }
2171
+ .ivds-flex-item--shrink {
2172
+ flex-shrink: 1 !important;
2173
+ }
2174
+ .ivds-flex-item--basis-0 {
2175
+ flex-basis: 0% !important;
2176
+ }
2177
+ .ivds-flex-item--basis-1 {
2178
+ flex-basis: var(--spacing-1, 0.25rem) !important;
2179
+ }
2180
+ .ivds-flex-item--basis-2 {
2181
+ flex-basis: var(--spacing-2, 0.5rem) !important;
2182
+ }
2183
+ .ivds-flex-item--basis-3 {
2184
+ flex-basis: var(--spacing-3, 0.75rem) !important;
2185
+ }
2186
+ .ivds-flex-item--basis-4 {
2187
+ flex-basis: var(--spacing-4, 1rem) !important;
2188
+ }
2189
+ .ivds-flex-item--basis-6 {
2190
+ flex-basis: var(--spacing-6, 1.5rem) !important;
2191
+ }
2192
+ .ivds-flex-item--basis-8 {
2193
+ flex-basis: var(--spacing-8, 2rem) !important;
2194
+ }
2195
+ .ivds-flex-item--basis-auto {
2196
+ flex-basis: auto !important;
2197
+ }
2198
+ .ivds-flex-item--basis-full {
2199
+ flex-basis: 100% !important;
2200
+ }
2201
+ .ivds-flex-item--flex-1 {
2202
+ flex: 1 1 0% !important;
2203
+ }
2204
+ .ivds-flex-item--flex-auto {
2205
+ flex: 1 1 auto !important;
2206
+ }
2207
+ .ivds-flex-item--flex-initial {
2208
+ flex: 0 1 auto !important;
2209
+ }
2210
+ .ivds-flex-item--flex-none {
2211
+ flex: none !important;
2212
+ }
2213
+ .ivds-flex-item--self-auto {
2214
+ align-self: auto !important;
2215
+ }
2216
+ .ivds-flex-item--self-start {
2217
+ align-self: flex-start !important;
2218
+ }
2219
+ .ivds-flex-item--self-center {
2220
+ align-self: center !important;
2221
+ }
2222
+ .ivds-flex-item--self-end {
2223
+ align-self: flex-end !important;
2224
+ }
2225
+ .ivds-flex-item--self-stretch {
2226
+ align-self: stretch !important;
2227
+ }
2228
+ .ivds-flex-item--self-baseline {
2229
+ align-self: baseline !important;
2230
+ }
2231
+ .ivds-flex-item--order-1 {
2232
+ order: 1 !important;
2233
+ }
2234
+ .ivds-flex-item--order-2 {
2235
+ order: 2 !important;
2236
+ }
2237
+ .ivds-flex-item--order-3 {
2238
+ order: 3 !important;
2239
+ }
2240
+ .ivds-flex-item--order-4 {
2241
+ order: 4 !important;
2242
+ }
2243
+ .ivds-flex-item--order-5 {
2244
+ order: 5 !important;
2245
+ }
2246
+ .ivds-flex-item--order-6 {
2247
+ order: 6 !important;
2248
+ }
2249
+ .ivds-flex-item--order-7 {
2250
+ order: 7 !important;
2251
+ }
2252
+ .ivds-flex-item--order-8 {
2253
+ order: 8 !important;
2254
+ }
2255
+ .ivds-flex-item--order-9 {
2256
+ order: 9 !important;
2257
+ }
2258
+ .ivds-flex-item--order-10 {
2259
+ order: 10 !important;
2260
+ }
2261
+ .ivds-flex-item--order-11 {
2262
+ order: 11 !important;
2263
+ }
2264
+ .ivds-flex-item--order-12 {
2265
+ order: 12 !important;
2266
+ }
2267
+ .ivds-flex-item--order-first {
2268
+ order: -9999 !important;
2269
+ }
2270
+ .ivds-flex-item--order-last {
2271
+ order: 9999 !important;
2272
+ }
2273
+ .ivds-flex-item--order-none {
2274
+ order: 0 !important;
2275
+ }
2276
+ @media (min-width: 640px) {
2277
+ .ivds-sm-flex--row {
2278
+ flex-direction: row !important;
2279
+ }
2280
+ .ivds-sm-flex--column {
2281
+ flex-direction: column !important;
2282
+ }
2283
+ .ivds-sm-flex--row-reverse {
2284
+ flex-direction: row-reverse !important;
2285
+ }
2286
+ .ivds-sm-flex--column-reverse {
2287
+ flex-direction: column-reverse !important;
2288
+ }
2289
+ .ivds-sm-flex--wrap {
2290
+ flex-wrap: wrap !important;
2291
+ }
2292
+ .ivds-sm-flex--nowrap {
2293
+ flex-wrap: nowrap !important;
2294
+ }
2295
+ .ivds-sm-flex--justify-start {
2296
+ justify-content: flex-start !important;
2297
+ }
2298
+ .ivds-sm-flex--justify-center {
2299
+ justify-content: center !important;
2300
+ }
2301
+ .ivds-sm-flex--justify-end {
2302
+ justify-content: flex-end !important;
2303
+ }
2304
+ .ivds-sm-flex--justify-between {
2305
+ justify-content: space-between !important;
2306
+ }
2307
+ .ivds-sm-flex--justify-around {
2308
+ justify-content: space-around !important;
2309
+ }
2310
+ .ivds-sm-flex--justify-evenly {
2311
+ justify-content: space-evenly !important;
2312
+ }
2313
+ .ivds-sm-flex--items-start {
2314
+ align-items: flex-start !important;
2315
+ }
2316
+ .ivds-sm-flex--items-center {
2317
+ align-items: center !important;
2318
+ }
2319
+ .ivds-sm-flex--items-end {
2320
+ align-items: flex-end !important;
2321
+ }
2322
+ .ivds-sm-flex--items-stretch {
2323
+ align-items: stretch !important;
2324
+ }
2325
+ .ivds-sm-flex--items-baseline {
2326
+ align-items: baseline !important;
2327
+ }
2328
+ }
2329
+ @media (min-width: 768px) {
2330
+ .ivds-md-flex--row {
2331
+ flex-direction: row !important;
2332
+ }
2333
+ .ivds-md-flex--column {
2334
+ flex-direction: column !important;
2335
+ }
2336
+ .ivds-md-flex--row-reverse {
2337
+ flex-direction: row-reverse !important;
2338
+ }
2339
+ .ivds-md-flex--column-reverse {
2340
+ flex-direction: column-reverse !important;
2341
+ }
2342
+ .ivds-md-flex--wrap {
2343
+ flex-wrap: wrap !important;
2344
+ }
2345
+ .ivds-md-flex--nowrap {
2346
+ flex-wrap: nowrap !important;
2347
+ }
2348
+ .ivds-md-flex--justify-start {
2349
+ justify-content: flex-start !important;
2350
+ }
2351
+ .ivds-md-flex--justify-center {
2352
+ justify-content: center !important;
2353
+ }
2354
+ .ivds-md-flex--justify-end {
2355
+ justify-content: flex-end !important;
2356
+ }
2357
+ .ivds-md-flex--justify-between {
2358
+ justify-content: space-between !important;
2359
+ }
2360
+ .ivds-md-flex--justify-around {
2361
+ justify-content: space-around !important;
2362
+ }
2363
+ .ivds-md-flex--justify-evenly {
2364
+ justify-content: space-evenly !important;
2365
+ }
2366
+ .ivds-md-flex--items-start {
2367
+ align-items: flex-start !important;
2368
+ }
2369
+ .ivds-md-flex--items-center {
2370
+ align-items: center !important;
2371
+ }
2372
+ .ivds-md-flex--items-end {
2373
+ align-items: flex-end !important;
2374
+ }
2375
+ .ivds-md-flex--items-stretch {
2376
+ align-items: stretch !important;
2377
+ }
2378
+ .ivds-md-flex--items-baseline {
2379
+ align-items: baseline !important;
2380
+ }
2381
+ }
2382
+ @media (min-width: 1024px) {
2383
+ .ivds-lg-flex--row {
2384
+ flex-direction: row !important;
2385
+ }
2386
+ .ivds-lg-flex--column {
2387
+ flex-direction: column !important;
2388
+ }
2389
+ .ivds-lg-flex--row-reverse {
2390
+ flex-direction: row-reverse !important;
2391
+ }
2392
+ .ivds-lg-flex--column-reverse {
2393
+ flex-direction: column-reverse !important;
2394
+ }
2395
+ .ivds-lg-flex--wrap {
2396
+ flex-wrap: wrap !important;
2397
+ }
2398
+ .ivds-lg-flex--nowrap {
2399
+ flex-wrap: nowrap !important;
2400
+ }
2401
+ .ivds-lg-flex--justify-start {
2402
+ justify-content: flex-start !important;
2403
+ }
2404
+ .ivds-lg-flex--justify-center {
2405
+ justify-content: center !important;
2406
+ }
2407
+ .ivds-lg-flex--justify-end {
2408
+ justify-content: flex-end !important;
2409
+ }
2410
+ .ivds-lg-flex--justify-between {
2411
+ justify-content: space-between !important;
2412
+ }
2413
+ .ivds-lg-flex--justify-around {
2414
+ justify-content: space-around !important;
2415
+ }
2416
+ .ivds-lg-flex--justify-evenly {
2417
+ justify-content: space-evenly !important;
2418
+ }
2419
+ .ivds-lg-flex--items-start {
2420
+ align-items: flex-start !important;
2421
+ }
2422
+ .ivds-lg-flex--items-center {
2423
+ align-items: center !important;
2424
+ }
2425
+ .ivds-lg-flex--items-end {
2426
+ align-items: flex-end !important;
2427
+ }
2428
+ .ivds-lg-flex--items-stretch {
2429
+ align-items: stretch !important;
2430
+ }
2431
+ .ivds-lg-flex--items-baseline {
2432
+ align-items: baseline !important;
2433
+ }
2434
+ }