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