@carbon/charts 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/demo/styles.css CHANGED
@@ -1,2582 +1,2582 @@
1
1
  @charset "UTF-8";
2
- :root {
3
- --cds-grid-gutter: 2rem;
4
- --cds-grid-columns: 4;
5
- --cds-grid-margin: 0;
6
- }
7
- @media (min-width: 42rem) {
8
- :root {
9
- --cds-grid-columns: 8;
10
- --cds-grid-margin: 1rem;
11
- }
12
- }
13
- @media (min-width: 66rem) {
14
- :root {
15
- --cds-grid-columns: 16;
16
- }
2
+ html,
3
+ body,
4
+ div,
5
+ span,
6
+ applet,
7
+ object,
8
+ iframe,
9
+ h1,
10
+ h2,
11
+ h3,
12
+ h4,
13
+ h5,
14
+ h6,
15
+ p,
16
+ blockquote,
17
+ pre,
18
+ a,
19
+ abbr,
20
+ acronym,
21
+ address,
22
+ big,
23
+ cite,
24
+ code,
25
+ del,
26
+ dfn,
27
+ em,
28
+ img,
29
+ ins,
30
+ kbd,
31
+ q,
32
+ s,
33
+ samp,
34
+ small,
35
+ strike,
36
+ strong,
37
+ sub,
38
+ sup,
39
+ tt,
40
+ var,
41
+ b,
42
+ u,
43
+ i,
44
+ center,
45
+ dl,
46
+ dt,
47
+ dd,
48
+ ol,
49
+ ul,
50
+ li,
51
+ fieldset,
52
+ form,
53
+ label,
54
+ legend,
55
+ table,
56
+ caption,
57
+ tbody,
58
+ tfoot,
59
+ thead,
60
+ tr,
61
+ th,
62
+ td,
63
+ article,
64
+ aside,
65
+ canvas,
66
+ details,
67
+ embed,
68
+ figure,
69
+ figcaption,
70
+ footer,
71
+ header,
72
+ hgroup,
73
+ menu,
74
+ nav,
75
+ output,
76
+ ruby,
77
+ section,
78
+ summary,
79
+ time,
80
+ mark,
81
+ audio,
82
+ video {
83
+ padding: 0;
84
+ border: 0;
85
+ margin: 0;
86
+ font: inherit;
87
+ font-size: 100%;
88
+ vertical-align: baseline;
17
89
  }
18
- @media (min-width: 99rem) {
19
- :root {
20
- --cds-grid-margin: 1.5rem;
21
- }
90
+
91
+ /* HTML5 display-role reset for older browsers */
92
+ article,
93
+ aside,
94
+ details,
95
+ figcaption,
96
+ figure,
97
+ footer,
98
+ header,
99
+ hgroup,
100
+ menu,
101
+ nav,
102
+ section {
103
+ display: block;
22
104
  }
23
105
 
24
- .cds--css-grid {
25
- --cds-grid-gutter-start: calc(var(--cds-grid-gutter) / 2);
26
- --cds-grid-gutter-end: calc(var(--cds-grid-gutter) / 2);
27
- --cds-grid-column-hang: calc(var(--cds-grid-gutter) / 2);
28
- display: grid;
29
- max-width: 99rem;
30
- padding-right: var(--cds-grid-margin);
31
- padding-left: var(--cds-grid-margin);
32
- margin-right: auto;
33
- margin-left: auto;
34
- grid-template-columns: repeat(var(--cds-grid-columns), minmax(0, 1fr));
106
+ body {
107
+ background-color: var(--cds-background, #ffffff);
108
+ color: var(--cds-text-primary, #161616);
109
+ line-height: 1;
35
110
  }
36
111
 
37
- .cds--css-grid--full-width {
38
- max-width: 100%;
112
+ ol,
113
+ ul {
114
+ list-style: none;
39
115
  }
40
116
 
41
- .cds--css-grid-column {
42
- --cds-grid-mode-start: var(--cds-grid-gutter-start);
43
- --cds-grid-mode-end: var(--cds-grid-gutter-end);
44
- margin-right: var(--cds-grid-gutter-end);
45
- margin-left: var(--cds-grid-gutter-start);
117
+ blockquote,
118
+ q {
119
+ quotes: none;
46
120
  }
47
- [dir=rtl] .cds--css-grid-column {
48
- margin-right: var(--cds-grid-gutter-start);
49
- margin-left: var(--cds-grid-gutter-end);
121
+
122
+ blockquote::before,
123
+ blockquote::after,
124
+ q::before,
125
+ q::after {
126
+ content: "";
127
+ content: none;
50
128
  }
51
129
 
52
- .cds--css-grid--narrow {
53
- --cds-grid-gutter-start: 0;
130
+ table {
131
+ border-collapse: collapse;
132
+ border-spacing: 0;
54
133
  }
55
134
 
56
- .cds--css-grid--condensed {
57
- --cds-grid-gutter: 0.0625rem;
58
- --cds-grid-column-hang: 0.96875rem;
135
+ html {
136
+ box-sizing: border-box;
59
137
  }
60
138
 
61
- .cds--subgrid {
62
- display: grid;
63
- margin-right: calc(var(--cds-grid-mode-end) * -1);
64
- margin-left: calc(var(--cds-grid-mode-start) * -1);
65
- grid-template-columns: repeat(var(--cds-grid-columns), minmax(0, 1fr));
139
+ *,
140
+ *::before,
141
+ *::after {
142
+ box-sizing: inherit;
66
143
  }
67
- [dir=rtl] .cds--subgrid {
68
- margin-right: calc(var(--cds-grid-mode-start) * -1);
69
- margin-left: calc(var(--cds-grid-mode-end) * -1);
144
+
145
+ html {
146
+ font-size: 100%;
70
147
  }
71
148
 
72
- .cds--subgrid--wide {
73
- --cds-grid-gutter-start: 1rem;
74
- --cds-grid-gutter-end: 1rem;
75
- --cds-grid-column-hang: 0;
149
+ body {
150
+ font-weight: 400;
151
+ font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;
152
+ -moz-osx-font-smoothing: grayscale;
153
+ -webkit-font-smoothing: antialiased;
154
+ text-rendering: optimizeLegibility;
76
155
  }
77
156
 
78
- .cds--subgrid--narrow {
79
- --cds-grid-gutter-start: 0;
80
- --cds-grid-gutter-end: 1rem;
81
- --cds-grid-column-hang: 1rem;
157
+ code {
158
+ font-family: 'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;
82
159
  }
83
160
 
84
- .cds--subgrid--condensed {
85
- --cds-grid-gutter-start: 0.03125rem;
86
- --cds-grid-gutter-end: 0.03125rem;
87
- --cds-grid-column-hang: 0.96875rem;
161
+ strong {
162
+ font-weight: 600;
88
163
  }
89
164
 
90
- .cds--grid-column-hang {
91
- margin-left: var(--cds-grid-column-hang);
165
+ @media screen and (-ms-high-contrast: active) {
166
+ svg {
167
+ fill: ButtonText;
168
+ }
92
169
  }
93
- [dir=rtl] .cds--grid-column-hang {
94
- margin-right: var(--cds-grid-column-hang);
95
- margin-left: initial;
170
+ h1 {
171
+ font-size: var(--cds-heading-06-font-size, 2rem);
172
+ font-weight: var(--cds-heading-06-font-weight, 300);
173
+ line-height: var(--cds-heading-06-line-height, 1.199);
174
+ letter-spacing: var(--cds-heading-06-letter-spacing, 0);
96
175
  }
97
176
 
98
- .cds--col-span-0 {
99
- display: none;
177
+ h2 {
178
+ font-size: var(--cds-heading-05-font-size, 2rem);
179
+ font-weight: var(--cds-heading-05-font-weight, 400);
180
+ line-height: var(--cds-heading-05-line-height, 1.25);
181
+ letter-spacing: var(--cds-heading-05-letter-spacing, 0);
100
182
  }
101
183
 
102
- .cds--col-span-1 {
103
- --cds-grid-columns: 1;
104
- display: block;
105
- grid-column: span 1/span 1;
184
+ h3 {
185
+ font-size: var(--cds-heading-04-font-size, 1.75rem);
186
+ font-weight: var(--cds-heading-04-font-weight, 400);
187
+ line-height: var(--cds-heading-04-line-height, 1.28572);
188
+ letter-spacing: var(--cds-heading-04-letter-spacing, 0);
106
189
  }
107
190
 
108
- .cds--col-span-2 {
109
- --cds-grid-columns: 2;
110
- display: block;
111
- grid-column: span 2/span 2;
191
+ h4 {
192
+ font-size: var(--cds-heading-03-font-size, 1.25rem);
193
+ font-weight: var(--cds-heading-03-font-weight, 400);
194
+ line-height: var(--cds-heading-03-line-height, 1.4);
195
+ letter-spacing: var(--cds-heading-03-letter-spacing, 0);
112
196
  }
113
197
 
114
- .cds--col-span-3 {
115
- --cds-grid-columns: 3;
116
- display: block;
117
- grid-column: span 3/span 3;
198
+ h5 {
199
+ font-size: var(--cds-heading-02-font-size, 1rem);
200
+ font-weight: var(--cds-heading-02-font-weight, 600);
201
+ line-height: var(--cds-heading-02-line-height, 1.5);
202
+ letter-spacing: var(--cds-heading-02-letter-spacing, 0);
118
203
  }
119
204
 
120
- .cds--col-span-4 {
121
- --cds-grid-columns: 4;
122
- display: block;
123
- grid-column: span 4/span 4;
124
- }
125
-
126
- .cds--col-span-5 {
127
- --cds-grid-columns: 5;
128
- display: block;
129
- grid-column: span 5/span 5;
205
+ h6 {
206
+ font-size: var(--cds-heading-01-font-size, 0.875rem);
207
+ font-weight: var(--cds-heading-01-font-weight, 600);
208
+ line-height: var(--cds-heading-01-line-height, 1.42857);
209
+ letter-spacing: var(--cds-heading-01-letter-spacing, 0.16px);
130
210
  }
131
211
 
132
- .cds--col-span-6 {
133
- --cds-grid-columns: 6;
134
- display: block;
135
- grid-column: span 6/span 6;
212
+ p {
213
+ font-size: var(--cds-body-02-font-size, 1rem);
214
+ font-weight: var(--cds-body-02-font-weight, 400);
215
+ line-height: var(--cds-body-02-line-height, 1.5);
216
+ letter-spacing: var(--cds-body-02-letter-spacing, 0);
136
217
  }
137
218
 
138
- .cds--col-span-7 {
139
- --cds-grid-columns: 7;
140
- display: block;
141
- grid-column: span 7/span 7;
219
+ a {
220
+ color: var(--cds-link-primary, #0062fe);
142
221
  }
143
222
 
144
- .cds--col-span-8 {
145
- --cds-grid-columns: 8;
146
- display: block;
147
- grid-column: span 8/span 8;
223
+ em {
224
+ font-style: italic;
148
225
  }
149
226
 
150
- .cds--col-span-9 {
151
- --cds-grid-columns: 9;
152
- display: block;
153
- grid-column: span 9/span 9;
227
+ @font-face {
228
+ font-display: "swap";
229
+ font-family: "IBM Plex Mono";
230
+ font-style: normal;
231
+ font-weight: 300;
232
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Cyrillic.woff") format("woff");
233
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
154
234
  }
155
-
156
- .cds--col-span-10 {
157
- --cds-grid-columns: 10;
158
- display: block;
159
- grid-column: span 10/span 10;
235
+ @font-face {
236
+ font-display: "swap";
237
+ font-family: "IBM Plex Mono";
238
+ font-style: normal;
239
+ font-weight: 300;
240
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Pi.woff") format("woff");
241
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
160
242
  }
161
-
162
- .cds--col-span-11 {
163
- --cds-grid-columns: 11;
164
- display: block;
165
- grid-column: span 11/span 11;
243
+ @font-face {
244
+ font-display: "swap";
245
+ font-family: "IBM Plex Mono";
246
+ font-style: normal;
247
+ font-weight: 300;
248
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin3.woff") format("woff");
249
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
166
250
  }
167
-
168
- .cds--col-span-12 {
169
- --cds-grid-columns: 12;
170
- display: block;
171
- grid-column: span 12/span 12;
251
+ @font-face {
252
+ font-display: "swap";
253
+ font-family: "IBM Plex Mono";
254
+ font-style: normal;
255
+ font-weight: 300;
256
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin2.woff") format("woff");
257
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
172
258
  }
173
-
174
- .cds--col-span-13 {
175
- --cds-grid-columns: 13;
176
- display: block;
177
- grid-column: span 13/span 13;
259
+ @font-face {
260
+ font-display: "swap";
261
+ font-family: "IBM Plex Mono";
262
+ font-style: normal;
263
+ font-weight: 300;
264
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin1.woff") format("woff");
265
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
178
266
  }
179
-
180
- .cds--col-span-14 {
181
- --cds-grid-columns: 14;
182
- display: block;
183
- grid-column: span 14/span 14;
267
+ @font-face {
268
+ font-display: "swap";
269
+ font-family: "IBM Plex Mono";
270
+ font-style: italic;
271
+ font-weight: 300;
272
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Cyrillic.woff") format("woff");
273
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
184
274
  }
185
-
186
- .cds--col-span-15 {
187
- --cds-grid-columns: 15;
188
- display: block;
189
- grid-column: span 15/span 15;
275
+ @font-face {
276
+ font-display: "swap";
277
+ font-family: "IBM Plex Mono";
278
+ font-style: italic;
279
+ font-weight: 300;
280
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Pi.woff") format("woff");
281
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
190
282
  }
191
-
192
- .cds--col-span-16 {
193
- --cds-grid-columns: 16;
194
- display: block;
195
- grid-column: span 16/span 16;
283
+ @font-face {
284
+ font-display: "swap";
285
+ font-family: "IBM Plex Mono";
286
+ font-style: italic;
287
+ font-weight: 300;
288
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin3.woff") format("woff");
289
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
196
290
  }
197
-
198
- .cds--sm\:col-span-0 {
199
- display: none;
291
+ @font-face {
292
+ font-display: "swap";
293
+ font-family: "IBM Plex Mono";
294
+ font-style: italic;
295
+ font-weight: 300;
296
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin2.woff") format("woff");
297
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
200
298
  }
201
-
202
- .cds--sm\:col-span-1 {
203
- --cds-grid-columns: 1;
204
- display: block;
205
- grid-column: span 1/span 1;
299
+ @font-face {
300
+ font-display: "swap";
301
+ font-family: "IBM Plex Mono";
302
+ font-style: italic;
303
+ font-weight: 300;
304
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin1.woff") format("woff");
305
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
206
306
  }
207
-
208
- .cds--sm\:col-span-2 {
209
- --cds-grid-columns: 2;
210
- display: block;
211
- grid-column: span 2/span 2;
307
+ @font-face {
308
+ font-display: "swap";
309
+ font-family: "IBM Plex Mono";
310
+ font-style: normal;
311
+ font-weight: 400;
312
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Cyrillic.woff") format("woff");
313
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
212
314
  }
213
-
214
- .cds--sm\:col-span-3 {
215
- --cds-grid-columns: 3;
216
- display: block;
217
- grid-column: span 3/span 3;
315
+ @font-face {
316
+ font-display: "swap";
317
+ font-family: "IBM Plex Mono";
318
+ font-style: normal;
319
+ font-weight: 400;
320
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Pi.woff") format("woff");
321
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
218
322
  }
219
-
220
- .cds--sm\:col-span-4 {
221
- --cds-grid-columns: 4;
222
- display: block;
223
- grid-column: span 4/span 4;
323
+ @font-face {
324
+ font-display: "swap";
325
+ font-family: "IBM Plex Mono";
326
+ font-style: normal;
327
+ font-weight: 400;
328
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin3.woff") format("woff");
329
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
224
330
  }
225
-
226
- .cds--sm\:col-span-auto {
227
- grid-column: auto;
331
+ @font-face {
332
+ font-display: "swap";
333
+ font-family: "IBM Plex Mono";
334
+ font-style: normal;
335
+ font-weight: 400;
336
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin2.woff") format("woff");
337
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
228
338
  }
229
-
230
- .cds--sm\:col-span-100 {
231
- grid-column: 1/-1;
339
+ @font-face {
340
+ font-display: "swap";
341
+ font-family: "IBM Plex Mono";
342
+ font-style: normal;
343
+ font-weight: 400;
344
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin1.woff") format("woff");
345
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
232
346
  }
233
-
234
- .cds--sm\:col-span-75 {
235
- --cds-grid-columns: 3;
236
- grid-column: span 3/span 3;
347
+ @font-face {
348
+ font-display: "swap";
349
+ font-family: "IBM Plex Mono";
350
+ font-style: italic;
351
+ font-weight: 400;
352
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Cyrillic.woff") format("woff");
353
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
237
354
  }
238
-
239
- .cds--sm\:col-span-50 {
240
- --cds-grid-columns: 2;
241
- grid-column: span 2/span 2;
355
+ @font-face {
356
+ font-display: "swap";
357
+ font-family: "IBM Plex Mono";
358
+ font-style: italic;
359
+ font-weight: 400;
360
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Pi.woff") format("woff");
361
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
242
362
  }
243
-
244
- .cds--sm\:col-span-25 {
245
- --cds-grid-columns: 1;
246
- grid-column: span 1/span 1;
363
+ @font-face {
364
+ font-display: "swap";
365
+ font-family: "IBM Plex Mono";
366
+ font-style: italic;
367
+ font-weight: 400;
368
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin3.woff") format("woff");
369
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
247
370
  }
248
-
249
- @media (min-width: 42rem) {
250
- .cds--md\:col-span-0 {
251
- display: none;
252
- }
371
+ @font-face {
372
+ font-display: "swap";
373
+ font-family: "IBM Plex Mono";
374
+ font-style: italic;
375
+ font-weight: 400;
376
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin2.woff") format("woff");
377
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
253
378
  }
254
- @media (min-width: 42rem) {
255
- .cds--md\:col-span-1 {
256
- --cds-grid-columns: 1;
257
- display: block;
258
- grid-column: span 1/span 1;
259
- }
260
- }
261
- @media (min-width: 42rem) {
262
- .cds--md\:col-span-2 {
263
- --cds-grid-columns: 2;
264
- display: block;
265
- grid-column: span 2/span 2;
266
- }
379
+ @font-face {
380
+ font-display: "swap";
381
+ font-family: "IBM Plex Mono";
382
+ font-style: italic;
383
+ font-weight: 400;
384
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin1.woff") format("woff");
385
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
267
386
  }
268
- @media (min-width: 42rem) {
269
- .cds--md\:col-span-3 {
270
- --cds-grid-columns: 3;
271
- display: block;
272
- grid-column: span 3/span 3;
273
- }
387
+ @font-face {
388
+ font-display: "swap";
389
+ font-family: "IBM Plex Mono";
390
+ font-style: normal;
391
+ font-weight: 600;
392
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Cyrillic.woff") format("woff");
393
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
274
394
  }
275
- @media (min-width: 42rem) {
276
- .cds--md\:col-span-4 {
277
- --cds-grid-columns: 4;
278
- display: block;
279
- grid-column: span 4/span 4;
280
- }
395
+ @font-face {
396
+ font-display: "swap";
397
+ font-family: "IBM Plex Mono";
398
+ font-style: normal;
399
+ font-weight: 600;
400
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Pi.woff") format("woff");
401
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
281
402
  }
282
- @media (min-width: 42rem) {
283
- .cds--md\:col-span-5 {
284
- --cds-grid-columns: 5;
285
- display: block;
286
- grid-column: span 5/span 5;
287
- }
403
+ @font-face {
404
+ font-display: "swap";
405
+ font-family: "IBM Plex Mono";
406
+ font-style: normal;
407
+ font-weight: 600;
408
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin3.woff") format("woff");
409
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
288
410
  }
289
- @media (min-width: 42rem) {
290
- .cds--md\:col-span-6 {
291
- --cds-grid-columns: 6;
292
- display: block;
293
- grid-column: span 6/span 6;
294
- }
411
+ @font-face {
412
+ font-display: "swap";
413
+ font-family: "IBM Plex Mono";
414
+ font-style: normal;
415
+ font-weight: 600;
416
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin2.woff") format("woff");
417
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
295
418
  }
296
- @media (min-width: 42rem) {
297
- .cds--md\:col-span-7 {
298
- --cds-grid-columns: 7;
299
- display: block;
300
- grid-column: span 7/span 7;
301
- }
419
+ @font-face {
420
+ font-display: "swap";
421
+ font-family: "IBM Plex Mono";
422
+ font-style: normal;
423
+ font-weight: 600;
424
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin1.woff") format("woff");
425
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
302
426
  }
303
- @media (min-width: 42rem) {
304
- .cds--md\:col-span-8 {
305
- --cds-grid-columns: 8;
306
- display: block;
307
- grid-column: span 8/span 8;
308
- }
427
+ @font-face {
428
+ font-display: "swap";
429
+ font-family: "IBM Plex Mono";
430
+ font-style: italic;
431
+ font-weight: 600;
432
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Cyrillic.woff") format("woff");
433
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
309
434
  }
310
- @media (min-width: 42rem) {
311
- .cds--md\:col-span-auto {
312
- grid-column: auto;
313
- }
314
-
315
- .cds--md\:col-span-100 {
316
- grid-column: 1/-1;
317
- }
318
-
319
- .cds--md\:col-span-75 {
320
- --cds-grid-columns: 6;
321
- grid-column: span 6/span 6;
322
- }
323
-
324
- .cds--md\:col-span-50 {
325
- --cds-grid-columns: 4;
326
- grid-column: span 4/span 4;
327
- }
328
-
329
- .cds--md\:col-span-25 {
330
- --cds-grid-columns: 2;
331
- grid-column: span 2/span 2;
332
- }
435
+ @font-face {
436
+ font-display: "swap";
437
+ font-family: "IBM Plex Mono";
438
+ font-style: italic;
439
+ font-weight: 600;
440
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Pi.woff") format("woff");
441
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
333
442
  }
334
- @media (min-width: 66rem) {
335
- .cds--lg\:col-span-0 {
336
- display: none;
337
- }
443
+ @font-face {
444
+ font-display: "swap";
445
+ font-family: "IBM Plex Mono";
446
+ font-style: italic;
447
+ font-weight: 600;
448
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin3.woff") format("woff");
449
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
338
450
  }
339
- @media (min-width: 66rem) {
340
- .cds--lg\:col-span-1 {
341
- --cds-grid-columns: 1;
342
- display: block;
343
- grid-column: span 1/span 1;
344
- }
451
+ @font-face {
452
+ font-display: "swap";
453
+ font-family: "IBM Plex Mono";
454
+ font-style: italic;
455
+ font-weight: 600;
456
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin2.woff") format("woff");
457
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
345
458
  }
346
- @media (min-width: 66rem) {
347
- .cds--lg\:col-span-2 {
348
- --cds-grid-columns: 2;
349
- display: block;
350
- grid-column: span 2/span 2;
351
- }
459
+ @font-face {
460
+ font-display: "swap";
461
+ font-family: "IBM Plex Mono";
462
+ font-style: italic;
463
+ font-weight: 600;
464
+ src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin1.woff") format("woff");
465
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
352
466
  }
353
- @media (min-width: 66rem) {
354
- .cds--lg\:col-span-3 {
355
- --cds-grid-columns: 3;
356
- display: block;
357
- grid-column: span 3/span 3;
358
- }
467
+ @font-face {
468
+ font-display: "swap";
469
+ font-family: "IBM Plex Sans";
470
+ font-style: normal;
471
+ font-weight: 300;
472
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Cyrillic.woff") format("woff");
473
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
359
474
  }
360
- @media (min-width: 66rem) {
361
- .cds--lg\:col-span-4 {
362
- --cds-grid-columns: 4;
363
- display: block;
364
- grid-column: span 4/span 4;
365
- }
475
+ @font-face {
476
+ font-display: "swap";
477
+ font-family: "IBM Plex Sans";
478
+ font-style: normal;
479
+ font-weight: 300;
480
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Pi.woff") format("woff");
481
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
366
482
  }
367
- @media (min-width: 66rem) {
368
- .cds--lg\:col-span-5 {
369
- --cds-grid-columns: 5;
370
- display: block;
371
- grid-column: span 5/span 5;
372
- }
483
+ @font-face {
484
+ font-display: "swap";
485
+ font-family: "IBM Plex Sans";
486
+ font-style: normal;
487
+ font-weight: 300;
488
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin3.woff") format("woff");
489
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
373
490
  }
374
- @media (min-width: 66rem) {
375
- .cds--lg\:col-span-6 {
376
- --cds-grid-columns: 6;
377
- display: block;
378
- grid-column: span 6/span 6;
379
- }
491
+ @font-face {
492
+ font-display: "swap";
493
+ font-family: "IBM Plex Sans";
494
+ font-style: normal;
495
+ font-weight: 300;
496
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin2.woff") format("woff");
497
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
380
498
  }
381
- @media (min-width: 66rem) {
382
- .cds--lg\:col-span-7 {
383
- --cds-grid-columns: 7;
384
- display: block;
385
- grid-column: span 7/span 7;
386
- }
499
+ @font-face {
500
+ font-display: "swap";
501
+ font-family: "IBM Plex Sans";
502
+ font-style: normal;
503
+ font-weight: 300;
504
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin1.woff") format("woff");
505
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
387
506
  }
388
- @media (min-width: 66rem) {
389
- .cds--lg\:col-span-8 {
390
- --cds-grid-columns: 8;
391
- display: block;
392
- grid-column: span 8/span 8;
393
- }
507
+ @font-face {
508
+ font-display: "swap";
509
+ font-family: "IBM Plex Sans";
510
+ font-style: italic;
511
+ font-weight: 300;
512
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Cyrillic.woff") format("woff");
513
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
394
514
  }
395
- @media (min-width: 66rem) {
396
- .cds--lg\:col-span-9 {
397
- --cds-grid-columns: 9;
398
- display: block;
399
- grid-column: span 9/span 9;
400
- }
515
+ @font-face {
516
+ font-display: "swap";
517
+ font-family: "IBM Plex Sans";
518
+ font-style: italic;
519
+ font-weight: 300;
520
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Pi.woff") format("woff");
521
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
401
522
  }
402
- @media (min-width: 66rem) {
403
- .cds--lg\:col-span-10 {
404
- --cds-grid-columns: 10;
405
- display: block;
406
- grid-column: span 10/span 10;
407
- }
408
- }
409
- @media (min-width: 66rem) {
410
- .cds--lg\:col-span-11 {
411
- --cds-grid-columns: 11;
412
- display: block;
413
- grid-column: span 11/span 11;
414
- }
523
+ @font-face {
524
+ font-display: "swap";
525
+ font-family: "IBM Plex Sans";
526
+ font-style: italic;
527
+ font-weight: 300;
528
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin3.woff") format("woff");
529
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
415
530
  }
416
- @media (min-width: 66rem) {
417
- .cds--lg\:col-span-12 {
418
- --cds-grid-columns: 12;
419
- display: block;
420
- grid-column: span 12/span 12;
421
- }
531
+ @font-face {
532
+ font-display: "swap";
533
+ font-family: "IBM Plex Sans";
534
+ font-style: italic;
535
+ font-weight: 300;
536
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin2.woff") format("woff");
537
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
422
538
  }
423
- @media (min-width: 66rem) {
424
- .cds--lg\:col-span-13 {
425
- --cds-grid-columns: 13;
426
- display: block;
427
- grid-column: span 13/span 13;
428
- }
539
+ @font-face {
540
+ font-display: "swap";
541
+ font-family: "IBM Plex Sans";
542
+ font-style: italic;
543
+ font-weight: 300;
544
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin1.woff") format("woff");
545
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
429
546
  }
430
- @media (min-width: 66rem) {
431
- .cds--lg\:col-span-14 {
432
- --cds-grid-columns: 14;
433
- display: block;
434
- grid-column: span 14/span 14;
435
- }
547
+ @font-face {
548
+ font-display: "swap";
549
+ font-family: "IBM Plex Sans";
550
+ font-style: normal;
551
+ font-weight: 400;
552
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Cyrillic.woff") format("woff");
553
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
436
554
  }
437
- @media (min-width: 66rem) {
438
- .cds--lg\:col-span-15 {
439
- --cds-grid-columns: 15;
440
- display: block;
441
- grid-column: span 15/span 15;
442
- }
555
+ @font-face {
556
+ font-display: "swap";
557
+ font-family: "IBM Plex Sans";
558
+ font-style: normal;
559
+ font-weight: 400;
560
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Pi.woff") format("woff");
561
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
443
562
  }
444
- @media (min-width: 66rem) {
445
- .cds--lg\:col-span-16 {
446
- --cds-grid-columns: 16;
447
- display: block;
448
- grid-column: span 16/span 16;
449
- }
563
+ @font-face {
564
+ font-display: "swap";
565
+ font-family: "IBM Plex Sans";
566
+ font-style: normal;
567
+ font-weight: 400;
568
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin3.woff") format("woff");
569
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
450
570
  }
451
- @media (min-width: 66rem) {
452
- .cds--lg\:col-span-auto {
453
- grid-column: auto;
454
- }
455
-
456
- .cds--lg\:col-span-100 {
457
- grid-column: 1/-1;
458
- }
459
-
460
- .cds--lg\:col-span-75 {
461
- --cds-grid-columns: 12;
462
- grid-column: span 12/span 12;
463
- }
464
-
465
- .cds--lg\:col-span-50 {
466
- --cds-grid-columns: 8;
467
- grid-column: span 8/span 8;
468
- }
469
-
470
- .cds--lg\:col-span-25 {
471
- --cds-grid-columns: 4;
472
- grid-column: span 4/span 4;
473
- }
571
+ @font-face {
572
+ font-display: "swap";
573
+ font-family: "IBM Plex Sans";
574
+ font-style: normal;
575
+ font-weight: 400;
576
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin2.woff") format("woff");
577
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
474
578
  }
475
- @media (min-width: 82rem) {
476
- .cds--xlg\:col-span-0 {
477
- display: none;
478
- }
579
+ @font-face {
580
+ font-display: "swap";
581
+ font-family: "IBM Plex Sans";
582
+ font-style: normal;
583
+ font-weight: 400;
584
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin1.woff") format("woff");
585
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
479
586
  }
480
- @media (min-width: 82rem) {
481
- .cds--xlg\:col-span-1 {
482
- --cds-grid-columns: 1;
483
- display: block;
484
- grid-column: span 1/span 1;
485
- }
587
+ @font-face {
588
+ font-display: "swap";
589
+ font-family: "IBM Plex Sans";
590
+ font-style: italic;
591
+ font-weight: 400;
592
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Cyrillic.woff") format("woff");
593
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
486
594
  }
487
- @media (min-width: 82rem) {
488
- .cds--xlg\:col-span-2 {
489
- --cds-grid-columns: 2;
490
- display: block;
491
- grid-column: span 2/span 2;
492
- }
595
+ @font-face {
596
+ font-display: "swap";
597
+ font-family: "IBM Plex Sans";
598
+ font-style: italic;
599
+ font-weight: 400;
600
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Pi.woff") format("woff");
601
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
493
602
  }
494
- @media (min-width: 82rem) {
495
- .cds--xlg\:col-span-3 {
496
- --cds-grid-columns: 3;
497
- display: block;
498
- grid-column: span 3/span 3;
499
- }
603
+ @font-face {
604
+ font-display: "swap";
605
+ font-family: "IBM Plex Sans";
606
+ font-style: italic;
607
+ font-weight: 400;
608
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin3.woff") format("woff");
609
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
500
610
  }
501
- @media (min-width: 82rem) {
502
- .cds--xlg\:col-span-4 {
503
- --cds-grid-columns: 4;
504
- display: block;
505
- grid-column: span 4/span 4;
506
- }
611
+ @font-face {
612
+ font-display: "swap";
613
+ font-family: "IBM Plex Sans";
614
+ font-style: italic;
615
+ font-weight: 400;
616
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin2.woff") format("woff");
617
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
507
618
  }
508
- @media (min-width: 82rem) {
509
- .cds--xlg\:col-span-5 {
510
- --cds-grid-columns: 5;
511
- display: block;
512
- grid-column: span 5/span 5;
513
- }
619
+ @font-face {
620
+ font-display: "swap";
621
+ font-family: "IBM Plex Sans";
622
+ font-style: italic;
623
+ font-weight: 400;
624
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin1.woff") format("woff");
625
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
514
626
  }
515
- @media (min-width: 82rem) {
516
- .cds--xlg\:col-span-6 {
517
- --cds-grid-columns: 6;
518
- display: block;
519
- grid-column: span 6/span 6;
520
- }
627
+ @font-face {
628
+ font-display: "swap";
629
+ font-family: "IBM Plex Sans";
630
+ font-style: normal;
631
+ font-weight: 600;
632
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Cyrillic.woff") format("woff");
633
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
521
634
  }
522
- @media (min-width: 82rem) {
523
- .cds--xlg\:col-span-7 {
524
- --cds-grid-columns: 7;
525
- display: block;
526
- grid-column: span 7/span 7;
527
- }
635
+ @font-face {
636
+ font-display: "swap";
637
+ font-family: "IBM Plex Sans";
638
+ font-style: normal;
639
+ font-weight: 600;
640
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Pi.woff") format("woff");
641
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
528
642
  }
529
- @media (min-width: 82rem) {
530
- .cds--xlg\:col-span-8 {
531
- --cds-grid-columns: 8;
532
- display: block;
533
- grid-column: span 8/span 8;
534
- }
643
+ @font-face {
644
+ font-display: "swap";
645
+ font-family: "IBM Plex Sans";
646
+ font-style: normal;
647
+ font-weight: 600;
648
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin3.woff") format("woff");
649
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
535
650
  }
536
- @media (min-width: 82rem) {
537
- .cds--xlg\:col-span-9 {
538
- --cds-grid-columns: 9;
539
- display: block;
540
- grid-column: span 9/span 9;
541
- }
651
+ @font-face {
652
+ font-display: "swap";
653
+ font-family: "IBM Plex Sans";
654
+ font-style: normal;
655
+ font-weight: 600;
656
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin2.woff") format("woff");
657
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
542
658
  }
543
- @media (min-width: 82rem) {
544
- .cds--xlg\:col-span-10 {
545
- --cds-grid-columns: 10;
546
- display: block;
547
- grid-column: span 10/span 10;
548
- }
659
+ @font-face {
660
+ font-display: "swap";
661
+ font-family: "IBM Plex Sans";
662
+ font-style: normal;
663
+ font-weight: 600;
664
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin1.woff") format("woff");
665
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
549
666
  }
550
- @media (min-width: 82rem) {
551
- .cds--xlg\:col-span-11 {
552
- --cds-grid-columns: 11;
553
- display: block;
554
- grid-column: span 11/span 11;
555
- }
556
- }
557
- @media (min-width: 82rem) {
558
- .cds--xlg\:col-span-12 {
559
- --cds-grid-columns: 12;
560
- display: block;
561
- grid-column: span 12/span 12;
562
- }
667
+ @font-face {
668
+ font-display: "swap";
669
+ font-family: "IBM Plex Sans";
670
+ font-style: italic;
671
+ font-weight: 600;
672
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Cyrillic.woff") format("woff");
673
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
563
674
  }
564
- @media (min-width: 82rem) {
565
- .cds--xlg\:col-span-13 {
566
- --cds-grid-columns: 13;
567
- display: block;
568
- grid-column: span 13/span 13;
569
- }
675
+ @font-face {
676
+ font-display: "swap";
677
+ font-family: "IBM Plex Sans";
678
+ font-style: italic;
679
+ font-weight: 600;
680
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Pi.woff") format("woff");
681
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
570
682
  }
571
- @media (min-width: 82rem) {
572
- .cds--xlg\:col-span-14 {
573
- --cds-grid-columns: 14;
574
- display: block;
575
- grid-column: span 14/span 14;
576
- }
683
+ @font-face {
684
+ font-display: "swap";
685
+ font-family: "IBM Plex Sans";
686
+ font-style: italic;
687
+ font-weight: 600;
688
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin3.woff") format("woff");
689
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
577
690
  }
578
- @media (min-width: 82rem) {
579
- .cds--xlg\:col-span-15 {
580
- --cds-grid-columns: 15;
581
- display: block;
582
- grid-column: span 15/span 15;
583
- }
691
+ @font-face {
692
+ font-display: "swap";
693
+ font-family: "IBM Plex Sans";
694
+ font-style: italic;
695
+ font-weight: 600;
696
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin2.woff") format("woff");
697
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
584
698
  }
585
- @media (min-width: 82rem) {
586
- .cds--xlg\:col-span-16 {
587
- --cds-grid-columns: 16;
588
- display: block;
589
- grid-column: span 16/span 16;
590
- }
699
+ @font-face {
700
+ font-display: "swap";
701
+ font-family: "IBM Plex Sans";
702
+ font-style: italic;
703
+ font-weight: 600;
704
+ src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin1.woff") format("woff");
705
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
591
706
  }
592
- @media (min-width: 82rem) {
593
- .cds--xlg\:col-span-auto {
594
- grid-column: auto;
595
- }
596
-
597
- .cds--xlg\:col-span-100 {
598
- grid-column: 1/-1;
599
- }
600
-
601
- .cds--xlg\:col-span-75 {
602
- --cds-grid-columns: 12;
603
- grid-column: span 12/span 12;
604
- }
605
-
606
- .cds--xlg\:col-span-50 {
607
- --cds-grid-columns: 8;
608
- grid-column: span 8/span 8;
609
- }
610
-
611
- .cds--xlg\:col-span-25 {
612
- --cds-grid-columns: 4;
613
- grid-column: span 4/span 4;
614
- }
707
+ @font-face {
708
+ font-display: "swap";
709
+ font-family: "IBM Plex Serif";
710
+ font-style: normal;
711
+ font-weight: 300;
712
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Cyrillic.woff") format("woff");
713
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
615
714
  }
616
- @media (min-width: 99rem) {
617
- .cds--max\:col-span-0 {
618
- display: none;
619
- }
715
+ @font-face {
716
+ font-display: "swap";
717
+ font-family: "IBM Plex Serif";
718
+ font-style: normal;
719
+ font-weight: 300;
720
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Pi.woff") format("woff");
721
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
620
722
  }
621
- @media (min-width: 99rem) {
622
- .cds--max\:col-span-1 {
623
- --cds-grid-columns: 1;
624
- display: block;
625
- grid-column: span 1/span 1;
626
- }
723
+ @font-face {
724
+ font-display: "swap";
725
+ font-family: "IBM Plex Serif";
726
+ font-style: normal;
727
+ font-weight: 300;
728
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin3.woff") format("woff");
729
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
627
730
  }
628
- @media (min-width: 99rem) {
629
- .cds--max\:col-span-2 {
630
- --cds-grid-columns: 2;
631
- display: block;
632
- grid-column: span 2/span 2;
633
- }
731
+ @font-face {
732
+ font-display: "swap";
733
+ font-family: "IBM Plex Serif";
734
+ font-style: normal;
735
+ font-weight: 300;
736
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin2.woff") format("woff");
737
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
634
738
  }
635
- @media (min-width: 99rem) {
636
- .cds--max\:col-span-3 {
637
- --cds-grid-columns: 3;
638
- display: block;
639
- grid-column: span 3/span 3;
640
- }
739
+ @font-face {
740
+ font-display: "swap";
741
+ font-family: "IBM Plex Serif";
742
+ font-style: normal;
743
+ font-weight: 300;
744
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin1.woff") format("woff");
745
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
641
746
  }
642
- @media (min-width: 99rem) {
643
- .cds--max\:col-span-4 {
644
- --cds-grid-columns: 4;
645
- display: block;
646
- grid-column: span 4/span 4;
647
- }
747
+ @font-face {
748
+ font-display: "swap";
749
+ font-family: "IBM Plex Serif";
750
+ font-style: italic;
751
+ font-weight: 300;
752
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Cyrillic.woff") format("woff");
753
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
648
754
  }
649
- @media (min-width: 99rem) {
650
- .cds--max\:col-span-5 {
651
- --cds-grid-columns: 5;
652
- display: block;
653
- grid-column: span 5/span 5;
654
- }
755
+ @font-face {
756
+ font-display: "swap";
757
+ font-family: "IBM Plex Serif";
758
+ font-style: italic;
759
+ font-weight: 300;
760
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Pi.woff") format("woff");
761
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
655
762
  }
656
- @media (min-width: 99rem) {
657
- .cds--max\:col-span-6 {
658
- --cds-grid-columns: 6;
659
- display: block;
660
- grid-column: span 6/span 6;
661
- }
763
+ @font-face {
764
+ font-display: "swap";
765
+ font-family: "IBM Plex Serif";
766
+ font-style: italic;
767
+ font-weight: 300;
768
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin3.woff") format("woff");
769
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
662
770
  }
663
- @media (min-width: 99rem) {
664
- .cds--max\:col-span-7 {
665
- --cds-grid-columns: 7;
666
- display: block;
667
- grid-column: span 7/span 7;
668
- }
771
+ @font-face {
772
+ font-display: "swap";
773
+ font-family: "IBM Plex Serif";
774
+ font-style: italic;
775
+ font-weight: 300;
776
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin2.woff") format("woff");
777
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
669
778
  }
670
- @media (min-width: 99rem) {
671
- .cds--max\:col-span-8 {
672
- --cds-grid-columns: 8;
673
- display: block;
674
- grid-column: span 8/span 8;
675
- }
779
+ @font-face {
780
+ font-display: "swap";
781
+ font-family: "IBM Plex Serif";
782
+ font-style: italic;
783
+ font-weight: 300;
784
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin1.woff") format("woff");
785
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
676
786
  }
677
- @media (min-width: 99rem) {
678
- .cds--max\:col-span-9 {
679
- --cds-grid-columns: 9;
680
- display: block;
681
- grid-column: span 9/span 9;
682
- }
787
+ @font-face {
788
+ font-display: "swap";
789
+ font-family: "IBM Plex Serif";
790
+ font-style: normal;
791
+ font-weight: 400;
792
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Cyrillic.woff") format("woff");
793
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
683
794
  }
684
- @media (min-width: 99rem) {
685
- .cds--max\:col-span-10 {
686
- --cds-grid-columns: 10;
687
- display: block;
688
- grid-column: span 10/span 10;
689
- }
795
+ @font-face {
796
+ font-display: "swap";
797
+ font-family: "IBM Plex Serif";
798
+ font-style: normal;
799
+ font-weight: 400;
800
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Pi.woff") format("woff");
801
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
690
802
  }
691
- @media (min-width: 99rem) {
692
- .cds--max\:col-span-11 {
693
- --cds-grid-columns: 11;
694
- display: block;
695
- grid-column: span 11/span 11;
696
- }
803
+ @font-face {
804
+ font-display: "swap";
805
+ font-family: "IBM Plex Serif";
806
+ font-style: normal;
807
+ font-weight: 400;
808
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin3.woff") format("woff");
809
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
697
810
  }
698
- @media (min-width: 99rem) {
699
- .cds--max\:col-span-12 {
700
- --cds-grid-columns: 12;
701
- display: block;
702
- grid-column: span 12/span 12;
703
- }
811
+ @font-face {
812
+ font-display: "swap";
813
+ font-family: "IBM Plex Serif";
814
+ font-style: normal;
815
+ font-weight: 400;
816
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin2.woff") format("woff");
817
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
704
818
  }
705
- @media (min-width: 99rem) {
706
- .cds--max\:col-span-13 {
707
- --cds-grid-columns: 13;
708
- display: block;
709
- grid-column: span 13/span 13;
710
- }
819
+ @font-face {
820
+ font-display: "swap";
821
+ font-family: "IBM Plex Serif";
822
+ font-style: normal;
823
+ font-weight: 400;
824
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin1.woff") format("woff");
825
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
711
826
  }
712
- @media (min-width: 99rem) {
713
- .cds--max\:col-span-14 {
714
- --cds-grid-columns: 14;
715
- display: block;
716
- grid-column: span 14/span 14;
717
- }
827
+ @font-face {
828
+ font-display: "swap";
829
+ font-family: "IBM Plex Serif";
830
+ font-style: italic;
831
+ font-weight: 400;
832
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Cyrillic.woff") format("woff");
833
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
718
834
  }
719
- @media (min-width: 99rem) {
720
- .cds--max\:col-span-15 {
721
- --cds-grid-columns: 15;
722
- display: block;
723
- grid-column: span 15/span 15;
724
- }
835
+ @font-face {
836
+ font-display: "swap";
837
+ font-family: "IBM Plex Serif";
838
+ font-style: italic;
839
+ font-weight: 400;
840
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Pi.woff") format("woff");
841
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
725
842
  }
726
- @media (min-width: 99rem) {
727
- .cds--max\:col-span-16 {
728
- --cds-grid-columns: 16;
729
- display: block;
730
- grid-column: span 16/span 16;
731
- }
843
+ @font-face {
844
+ font-display: "swap";
845
+ font-family: "IBM Plex Serif";
846
+ font-style: italic;
847
+ font-weight: 400;
848
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin3.woff") format("woff");
849
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
732
850
  }
733
- @media (min-width: 99rem) {
734
- .cds--max\:col-span-auto {
735
- grid-column: auto;
736
- }
737
-
738
- .cds--max\:col-span-100 {
739
- grid-column: 1/-1;
740
- }
741
-
742
- .cds--max\:col-span-75 {
743
- --cds-grid-columns: 12;
744
- grid-column: span 12/span 12;
745
- }
746
-
747
- .cds--max\:col-span-50 {
748
- --cds-grid-columns: 8;
749
- grid-column: span 8/span 8;
750
- }
751
-
752
- .cds--max\:col-span-25 {
753
- --cds-grid-columns: 4;
754
- grid-column: span 4/span 4;
755
- }
851
+ @font-face {
852
+ font-display: "swap";
853
+ font-family: "IBM Plex Serif";
854
+ font-style: italic;
855
+ font-weight: 400;
856
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin2.woff") format("woff");
857
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
756
858
  }
757
- .cds--col-span-auto {
758
- grid-column: auto;
859
+ @font-face {
860
+ font-display: "swap";
861
+ font-family: "IBM Plex Serif";
862
+ font-style: italic;
863
+ font-weight: 400;
864
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin1.woff") format("woff");
865
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
759
866
  }
760
-
761
- .cds--col-span-100 {
762
- grid-column: 1/-1;
867
+ @font-face {
868
+ font-display: "swap";
869
+ font-family: "IBM Plex Serif";
870
+ font-style: normal;
871
+ font-weight: 600;
872
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Cyrillic.woff") format("woff");
873
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
763
874
  }
764
-
765
- .cds--col-span-75 {
766
- --cds-grid-columns: 3;
767
- grid-column: span 3/span 3;
875
+ @font-face {
876
+ font-display: "swap";
877
+ font-family: "IBM Plex Serif";
878
+ font-style: normal;
879
+ font-weight: 600;
880
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Pi.woff") format("woff");
881
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
768
882
  }
769
- @media (min-width: 42rem) {
770
- .cds--col-span-75 {
771
- --cds-grid-columns: 6;
772
- grid-column: span 6/span 6;
773
- }
883
+ @font-face {
884
+ font-display: "swap";
885
+ font-family: "IBM Plex Serif";
886
+ font-style: normal;
887
+ font-weight: 600;
888
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin3.woff") format("woff");
889
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
774
890
  }
775
- @media (min-width: 66rem) {
776
- .cds--col-span-75 {
777
- --cds-grid-columns: 12;
778
- grid-column: span 12/span 12;
779
- }
891
+ @font-face {
892
+ font-display: "swap";
893
+ font-family: "IBM Plex Serif";
894
+ font-style: normal;
895
+ font-weight: 600;
896
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin2.woff") format("woff");
897
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
780
898
  }
781
-
782
- .cds--col-span-50 {
783
- --cds-grid-columns: 2;
784
- grid-column: span 2/span 2;
899
+ @font-face {
900
+ font-display: "swap";
901
+ font-family: "IBM Plex Serif";
902
+ font-style: normal;
903
+ font-weight: 600;
904
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin1.woff") format("woff");
905
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
785
906
  }
786
- @media (min-width: 42rem) {
787
- .cds--col-span-50 {
788
- --cds-grid-columns: 4;
789
- grid-column: span 4/span 4;
790
- }
907
+ @font-face {
908
+ font-display: "swap";
909
+ font-family: "IBM Plex Serif";
910
+ font-style: italic;
911
+ font-weight: 600;
912
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Cyrillic.woff") format("woff");
913
+ unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
791
914
  }
792
- @media (min-width: 66rem) {
793
- .cds--col-span-50 {
794
- --cds-grid-columns: 8;
795
- grid-column: span 8/span 8;
796
- }
915
+ @font-face {
916
+ font-display: "swap";
917
+ font-family: "IBM Plex Serif";
918
+ font-style: italic;
919
+ font-weight: 600;
920
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Pi.woff") format("woff");
921
+ unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
797
922
  }
798
-
799
- .cds--col-span-25 {
800
- --cds-grid-columns: 1;
801
- grid-column: span 1/span 1;
923
+ @font-face {
924
+ font-display: "swap";
925
+ font-family: "IBM Plex Serif";
926
+ font-style: italic;
927
+ font-weight: 600;
928
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin3.woff") format("woff");
929
+ unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
930
+ }
931
+ @font-face {
932
+ font-display: "swap";
933
+ font-family: "IBM Plex Serif";
934
+ font-style: italic;
935
+ font-weight: 600;
936
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin2.woff") format("woff");
937
+ unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
938
+ }
939
+ @font-face {
940
+ font-display: "swap";
941
+ font-family: "IBM Plex Serif";
942
+ font-style: italic;
943
+ font-weight: 600;
944
+ src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin1.woff") format("woff");
945
+ unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
946
+ }
947
+ :root {
948
+ --cds-grid-gutter: 2rem;
949
+ --cds-grid-columns: 4;
950
+ --cds-grid-margin: 0;
802
951
  }
803
952
  @media (min-width: 42rem) {
804
- .cds--col-span-25 {
805
- --cds-grid-columns: 2;
806
- grid-column: span 2/span 2;
953
+ :root {
954
+ --cds-grid-columns: 8;
955
+ --cds-grid-margin: 1rem;
807
956
  }
808
957
  }
809
958
  @media (min-width: 66rem) {
810
- .cds--col-span-25 {
811
- --cds-grid-columns: 4;
812
- grid-column: span 4/span 4;
959
+ :root {
960
+ --cds-grid-columns: 16;
813
961
  }
814
962
  }
815
-
816
- .cds--col-start-1 {
817
- grid-column-start: 1;
963
+ @media (min-width: 99rem) {
964
+ :root {
965
+ --cds-grid-margin: 1.5rem;
966
+ }
818
967
  }
819
968
 
820
- .cds--col-start-2 {
821
- grid-column-start: 2;
969
+ .cds--css-grid {
970
+ --cds-grid-gutter-start: calc(var(--cds-grid-gutter) / 2);
971
+ --cds-grid-gutter-end: calc(var(--cds-grid-gutter) / 2);
972
+ --cds-grid-column-hang: calc(var(--cds-grid-gutter) / 2);
973
+ display: grid;
974
+ max-width: 99rem;
975
+ padding-right: var(--cds-grid-margin);
976
+ padding-left: var(--cds-grid-margin);
977
+ margin-right: auto;
978
+ margin-left: auto;
979
+ grid-template-columns: repeat(var(--cds-grid-columns), minmax(0, 1fr));
822
980
  }
823
981
 
824
- .cds--col-start-3 {
825
- grid-column-start: 3;
982
+ .cds--css-grid--full-width {
983
+ max-width: 100%;
826
984
  }
827
985
 
828
- .cds--col-start-4 {
829
- grid-column-start: 4;
986
+ .cds--css-grid-column {
987
+ --cds-grid-mode-start: var(--cds-grid-gutter-start);
988
+ --cds-grid-mode-end: var(--cds-grid-gutter-end);
989
+ margin-right: var(--cds-grid-gutter-end);
990
+ margin-left: var(--cds-grid-gutter-start);
830
991
  }
831
-
832
- .cds--col-start-5 {
833
- grid-column-start: 5;
992
+ [dir=rtl] .cds--css-grid-column {
993
+ margin-right: var(--cds-grid-gutter-start);
994
+ margin-left: var(--cds-grid-gutter-end);
834
995
  }
835
996
 
836
- .cds--col-start-6 {
837
- grid-column-start: 6;
997
+ .cds--css-grid--narrow {
998
+ --cds-grid-gutter-start: 0;
838
999
  }
839
1000
 
840
- .cds--col-start-7 {
841
- grid-column-start: 7;
1001
+ .cds--css-grid--condensed {
1002
+ --cds-grid-gutter: 0.0625rem;
1003
+ --cds-grid-column-hang: 0.96875rem;
842
1004
  }
843
1005
 
844
- .cds--col-start-8 {
845
- grid-column-start: 8;
1006
+ .cds--subgrid {
1007
+ display: grid;
1008
+ margin-right: calc(var(--cds-grid-mode-end) * -1);
1009
+ margin-left: calc(var(--cds-grid-mode-start) * -1);
1010
+ grid-template-columns: repeat(var(--cds-grid-columns), minmax(0, 1fr));
846
1011
  }
847
-
848
- .cds--col-start-9 {
849
- grid-column-start: 9;
1012
+ [dir=rtl] .cds--subgrid {
1013
+ margin-right: calc(var(--cds-grid-mode-start) * -1);
1014
+ margin-left: calc(var(--cds-grid-mode-end) * -1);
850
1015
  }
851
1016
 
852
- .cds--col-start-10 {
853
- grid-column-start: 10;
1017
+ .cds--subgrid--wide {
1018
+ --cds-grid-gutter-start: 1rem;
1019
+ --cds-grid-gutter-end: 1rem;
1020
+ --cds-grid-column-hang: 0;
854
1021
  }
855
1022
 
856
- .cds--col-start-11 {
857
- grid-column-start: 11;
1023
+ .cds--subgrid--narrow {
1024
+ --cds-grid-gutter-start: 0;
1025
+ --cds-grid-gutter-end: 1rem;
1026
+ --cds-grid-column-hang: 1rem;
858
1027
  }
859
1028
 
860
- .cds--col-start-12 {
861
- grid-column-start: 12;
1029
+ .cds--subgrid--condensed {
1030
+ --cds-grid-gutter-start: 0.03125rem;
1031
+ --cds-grid-gutter-end: 0.03125rem;
1032
+ --cds-grid-column-hang: 0.96875rem;
862
1033
  }
863
1034
 
864
- .cds--col-start-13 {
865
- grid-column-start: 13;
1035
+ .cds--grid-column-hang {
1036
+ margin-left: var(--cds-grid-column-hang);
866
1037
  }
867
-
868
- .cds--col-start-14 {
869
- grid-column-start: 14;
1038
+ [dir=rtl] .cds--grid-column-hang {
1039
+ margin-right: var(--cds-grid-column-hang);
1040
+ margin-left: initial;
870
1041
  }
871
1042
 
872
- .cds--col-start-15 {
873
- grid-column-start: 15;
1043
+ .cds--col-span-0 {
1044
+ display: none;
874
1045
  }
875
1046
 
876
- .cds--col-start-16 {
877
- grid-column-start: 16;
1047
+ .cds--col-span-1 {
1048
+ --cds-grid-columns: 1;
1049
+ display: block;
1050
+ grid-column: span 1/span 1;
878
1051
  }
879
1052
 
880
- .cds--col-end-2 {
881
- grid-column-end: 2;
1053
+ .cds--col-span-2 {
1054
+ --cds-grid-columns: 2;
1055
+ display: block;
1056
+ grid-column: span 2/span 2;
882
1057
  }
883
1058
 
884
- .cds--col-end-3 {
885
- grid-column-end: 3;
1059
+ .cds--col-span-3 {
1060
+ --cds-grid-columns: 3;
1061
+ display: block;
1062
+ grid-column: span 3/span 3;
886
1063
  }
887
1064
 
888
- .cds--col-end-4 {
889
- grid-column-end: 4;
1065
+ .cds--col-span-4 {
1066
+ --cds-grid-columns: 4;
1067
+ display: block;
1068
+ grid-column: span 4/span 4;
890
1069
  }
891
1070
 
892
- .cds--col-end-5 {
893
- grid-column-end: 5;
1071
+ .cds--col-span-5 {
1072
+ --cds-grid-columns: 5;
1073
+ display: block;
1074
+ grid-column: span 5/span 5;
894
1075
  }
895
1076
 
896
- .cds--col-end-6 {
897
- grid-column-end: 6;
1077
+ .cds--col-span-6 {
1078
+ --cds-grid-columns: 6;
1079
+ display: block;
1080
+ grid-column: span 6/span 6;
898
1081
  }
899
1082
 
900
- .cds--col-end-7 {
901
- grid-column-end: 7;
1083
+ .cds--col-span-7 {
1084
+ --cds-grid-columns: 7;
1085
+ display: block;
1086
+ grid-column: span 7/span 7;
902
1087
  }
903
1088
 
904
- .cds--col-end-8 {
905
- grid-column-end: 8;
1089
+ .cds--col-span-8 {
1090
+ --cds-grid-columns: 8;
1091
+ display: block;
1092
+ grid-column: span 8/span 8;
906
1093
  }
907
1094
 
908
- .cds--col-end-9 {
909
- grid-column-end: 9;
1095
+ .cds--col-span-9 {
1096
+ --cds-grid-columns: 9;
1097
+ display: block;
1098
+ grid-column: span 9/span 9;
910
1099
  }
911
1100
 
912
- .cds--col-end-10 {
913
- grid-column-end: 10;
1101
+ .cds--col-span-10 {
1102
+ --cds-grid-columns: 10;
1103
+ display: block;
1104
+ grid-column: span 10/span 10;
914
1105
  }
915
1106
 
916
- .cds--col-end-11 {
917
- grid-column-end: 11;
1107
+ .cds--col-span-11 {
1108
+ --cds-grid-columns: 11;
1109
+ display: block;
1110
+ grid-column: span 11/span 11;
918
1111
  }
919
1112
 
920
- .cds--col-end-12 {
921
- grid-column-end: 12;
1113
+ .cds--col-span-12 {
1114
+ --cds-grid-columns: 12;
1115
+ display: block;
1116
+ grid-column: span 12/span 12;
922
1117
  }
923
1118
 
924
- .cds--col-end-13 {
925
- grid-column-end: 13;
1119
+ .cds--col-span-13 {
1120
+ --cds-grid-columns: 13;
1121
+ display: block;
1122
+ grid-column: span 13/span 13;
926
1123
  }
927
1124
 
928
- .cds--col-end-14 {
929
- grid-column-end: 14;
1125
+ .cds--col-span-14 {
1126
+ --cds-grid-columns: 14;
1127
+ display: block;
1128
+ grid-column: span 14/span 14;
930
1129
  }
931
1130
 
932
- .cds--col-end-15 {
933
- grid-column-end: 15;
1131
+ .cds--col-span-15 {
1132
+ --cds-grid-columns: 15;
1133
+ display: block;
1134
+ grid-column: span 15/span 15;
934
1135
  }
935
1136
 
936
- .cds--col-end-16 {
937
- grid-column-end: 16;
1137
+ .cds--col-span-16 {
1138
+ --cds-grid-columns: 16;
1139
+ display: block;
1140
+ grid-column: span 16/span 16;
938
1141
  }
939
1142
 
940
- .cds--col-end-17 {
941
- grid-column-end: 17;
1143
+ .cds--sm\:col-span-0 {
1144
+ display: none;
942
1145
  }
943
1146
 
944
- .cds--col-start-auto {
945
- grid-column-start: auto;
1147
+ .cds--sm\:col-span-1 {
1148
+ --cds-grid-columns: 1;
1149
+ display: block;
1150
+ grid-column: span 1/span 1;
946
1151
  }
947
1152
 
948
- .cds--col-end-auto {
949
- grid-column-end: auto;
1153
+ .cds--sm\:col-span-2 {
1154
+ --cds-grid-columns: 2;
1155
+ display: block;
1156
+ grid-column: span 2/span 2;
950
1157
  }
951
1158
 
952
- .cds--sm\:col-start-1 {
953
- grid-column-start: 1;
1159
+ .cds--sm\:col-span-3 {
1160
+ --cds-grid-columns: 3;
1161
+ display: block;
1162
+ grid-column: span 3/span 3;
954
1163
  }
955
1164
 
956
- .cds--sm\:col-start-2 {
957
- grid-column-start: 2;
1165
+ .cds--sm\:col-span-4 {
1166
+ --cds-grid-columns: 4;
1167
+ display: block;
1168
+ grid-column: span 4/span 4;
958
1169
  }
959
1170
 
960
- .cds--sm\:col-start-3 {
961
- grid-column-start: 3;
1171
+ .cds--sm\:col-span-auto {
1172
+ grid-column: auto;
962
1173
  }
963
1174
 
964
- .cds--sm\:col-start-4 {
965
- grid-column-start: 4;
1175
+ .cds--sm\:col-span-100 {
1176
+ grid-column: 1/-1;
966
1177
  }
967
1178
 
968
- .cds--sm\:col-start-5 {
969
- grid-column-start: 5;
1179
+ .cds--sm\:col-span-75 {
1180
+ --cds-grid-columns: 3;
1181
+ grid-column: span 3/span 3;
970
1182
  }
971
1183
 
972
- .cds--sm\:col-start-6 {
973
- grid-column-start: 6;
1184
+ .cds--sm\:col-span-50 {
1185
+ --cds-grid-columns: 2;
1186
+ grid-column: span 2/span 2;
974
1187
  }
975
1188
 
976
- .cds--sm\:col-start-7 {
977
- grid-column-start: 7;
1189
+ .cds--sm\:col-span-25 {
1190
+ --cds-grid-columns: 1;
1191
+ grid-column: span 1/span 1;
978
1192
  }
979
1193
 
980
- .cds--sm\:col-start-8 {
981
- grid-column-start: 8;
1194
+ @media (min-width: 42rem) {
1195
+ .cds--md\:col-span-0 {
1196
+ display: none;
1197
+ }
982
1198
  }
983
-
984
- .cds--sm\:col-start-9 {
985
- grid-column-start: 9;
1199
+ @media (min-width: 42rem) {
1200
+ .cds--md\:col-span-1 {
1201
+ --cds-grid-columns: 1;
1202
+ display: block;
1203
+ grid-column: span 1/span 1;
1204
+ }
986
1205
  }
987
-
988
- .cds--sm\:col-start-10 {
989
- grid-column-start: 10;
1206
+ @media (min-width: 42rem) {
1207
+ .cds--md\:col-span-2 {
1208
+ --cds-grid-columns: 2;
1209
+ display: block;
1210
+ grid-column: span 2/span 2;
1211
+ }
990
1212
  }
991
-
992
- .cds--sm\:col-start-11 {
993
- grid-column-start: 11;
1213
+ @media (min-width: 42rem) {
1214
+ .cds--md\:col-span-3 {
1215
+ --cds-grid-columns: 3;
1216
+ display: block;
1217
+ grid-column: span 3/span 3;
1218
+ }
994
1219
  }
995
-
996
- .cds--sm\:col-start-12 {
997
- grid-column-start: 12;
1220
+ @media (min-width: 42rem) {
1221
+ .cds--md\:col-span-4 {
1222
+ --cds-grid-columns: 4;
1223
+ display: block;
1224
+ grid-column: span 4/span 4;
1225
+ }
998
1226
  }
999
-
1000
- .cds--sm\:col-start-13 {
1001
- grid-column-start: 13;
1227
+ @media (min-width: 42rem) {
1228
+ .cds--md\:col-span-5 {
1229
+ --cds-grid-columns: 5;
1230
+ display: block;
1231
+ grid-column: span 5/span 5;
1232
+ }
1002
1233
  }
1003
-
1004
- .cds--sm\:col-start-14 {
1005
- grid-column-start: 14;
1006
- }
1007
-
1008
- .cds--sm\:col-start-15 {
1009
- grid-column-start: 15;
1234
+ @media (min-width: 42rem) {
1235
+ .cds--md\:col-span-6 {
1236
+ --cds-grid-columns: 6;
1237
+ display: block;
1238
+ grid-column: span 6/span 6;
1239
+ }
1010
1240
  }
1011
-
1012
- .cds--sm\:col-start-16 {
1013
- grid-column-start: 16;
1241
+ @media (min-width: 42rem) {
1242
+ .cds--md\:col-span-7 {
1243
+ --cds-grid-columns: 7;
1244
+ display: block;
1245
+ grid-column: span 7/span 7;
1246
+ }
1014
1247
  }
1015
-
1016
- .cds--sm\:col-end-2 {
1017
- grid-column-end: 2;
1248
+ @media (min-width: 42rem) {
1249
+ .cds--md\:col-span-8 {
1250
+ --cds-grid-columns: 8;
1251
+ display: block;
1252
+ grid-column: span 8/span 8;
1253
+ }
1018
1254
  }
1255
+ @media (min-width: 42rem) {
1256
+ .cds--md\:col-span-auto {
1257
+ grid-column: auto;
1258
+ }
1019
1259
 
1020
- .cds--sm\:col-end-3 {
1021
- grid-column-end: 3;
1022
- }
1260
+ .cds--md\:col-span-100 {
1261
+ grid-column: 1/-1;
1262
+ }
1023
1263
 
1024
- .cds--sm\:col-end-4 {
1025
- grid-column-end: 4;
1026
- }
1264
+ .cds--md\:col-span-75 {
1265
+ --cds-grid-columns: 6;
1266
+ grid-column: span 6/span 6;
1267
+ }
1027
1268
 
1028
- .cds--sm\:col-end-5 {
1029
- grid-column-end: 5;
1030
- }
1269
+ .cds--md\:col-span-50 {
1270
+ --cds-grid-columns: 4;
1271
+ grid-column: span 4/span 4;
1272
+ }
1031
1273
 
1032
- .cds--sm\:col-end-6 {
1033
- grid-column-end: 6;
1274
+ .cds--md\:col-span-25 {
1275
+ --cds-grid-columns: 2;
1276
+ grid-column: span 2/span 2;
1277
+ }
1034
1278
  }
1035
-
1036
- .cds--sm\:col-end-7 {
1037
- grid-column-end: 7;
1279
+ @media (min-width: 66rem) {
1280
+ .cds--lg\:col-span-0 {
1281
+ display: none;
1282
+ }
1038
1283
  }
1039
-
1040
- .cds--sm\:col-end-8 {
1041
- grid-column-end: 8;
1284
+ @media (min-width: 66rem) {
1285
+ .cds--lg\:col-span-1 {
1286
+ --cds-grid-columns: 1;
1287
+ display: block;
1288
+ grid-column: span 1/span 1;
1289
+ }
1042
1290
  }
1043
-
1044
- .cds--sm\:col-end-9 {
1045
- grid-column-end: 9;
1291
+ @media (min-width: 66rem) {
1292
+ .cds--lg\:col-span-2 {
1293
+ --cds-grid-columns: 2;
1294
+ display: block;
1295
+ grid-column: span 2/span 2;
1296
+ }
1046
1297
  }
1047
-
1048
- .cds--sm\:col-end-10 {
1049
- grid-column-end: 10;
1298
+ @media (min-width: 66rem) {
1299
+ .cds--lg\:col-span-3 {
1300
+ --cds-grid-columns: 3;
1301
+ display: block;
1302
+ grid-column: span 3/span 3;
1303
+ }
1050
1304
  }
1051
-
1052
- .cds--sm\:col-end-11 {
1053
- grid-column-end: 11;
1305
+ @media (min-width: 66rem) {
1306
+ .cds--lg\:col-span-4 {
1307
+ --cds-grid-columns: 4;
1308
+ display: block;
1309
+ grid-column: span 4/span 4;
1310
+ }
1054
1311
  }
1055
-
1056
- .cds--sm\:col-end-12 {
1057
- grid-column-end: 12;
1312
+ @media (min-width: 66rem) {
1313
+ .cds--lg\:col-span-5 {
1314
+ --cds-grid-columns: 5;
1315
+ display: block;
1316
+ grid-column: span 5/span 5;
1317
+ }
1058
1318
  }
1059
-
1060
- .cds--sm\:col-end-13 {
1061
- grid-column-end: 13;
1319
+ @media (min-width: 66rem) {
1320
+ .cds--lg\:col-span-6 {
1321
+ --cds-grid-columns: 6;
1322
+ display: block;
1323
+ grid-column: span 6/span 6;
1324
+ }
1062
1325
  }
1063
-
1064
- .cds--sm\:col-end-14 {
1065
- grid-column-end: 14;
1326
+ @media (min-width: 66rem) {
1327
+ .cds--lg\:col-span-7 {
1328
+ --cds-grid-columns: 7;
1329
+ display: block;
1330
+ grid-column: span 7/span 7;
1331
+ }
1066
1332
  }
1067
-
1068
- .cds--sm\:col-end-15 {
1069
- grid-column-end: 15;
1333
+ @media (min-width: 66rem) {
1334
+ .cds--lg\:col-span-8 {
1335
+ --cds-grid-columns: 8;
1336
+ display: block;
1337
+ grid-column: span 8/span 8;
1338
+ }
1070
1339
  }
1071
-
1072
- .cds--sm\:col-end-16 {
1073
- grid-column-end: 16;
1340
+ @media (min-width: 66rem) {
1341
+ .cds--lg\:col-span-9 {
1342
+ --cds-grid-columns: 9;
1343
+ display: block;
1344
+ grid-column: span 9/span 9;
1345
+ }
1074
1346
  }
1075
-
1076
- .cds--sm\:col-end-17 {
1077
- grid-column-end: 17;
1347
+ @media (min-width: 66rem) {
1348
+ .cds--lg\:col-span-10 {
1349
+ --cds-grid-columns: 10;
1350
+ display: block;
1351
+ grid-column: span 10/span 10;
1352
+ }
1078
1353
  }
1079
-
1080
- .cds--sm\:col-start-auto {
1081
- grid-column-start: auto;
1354
+ @media (min-width: 66rem) {
1355
+ .cds--lg\:col-span-11 {
1356
+ --cds-grid-columns: 11;
1357
+ display: block;
1358
+ grid-column: span 11/span 11;
1359
+ }
1082
1360
  }
1083
-
1084
- .cds--sm\:col-end-auto {
1085
- grid-column-end: auto;
1361
+ @media (min-width: 66rem) {
1362
+ .cds--lg\:col-span-12 {
1363
+ --cds-grid-columns: 12;
1364
+ display: block;
1365
+ grid-column: span 12/span 12;
1366
+ }
1086
1367
  }
1087
-
1088
- @media (min-width: 42rem) {
1089
- .cds--md\:col-start-1 {
1090
- grid-column-start: 1;
1368
+ @media (min-width: 66rem) {
1369
+ .cds--lg\:col-span-13 {
1370
+ --cds-grid-columns: 13;
1371
+ display: block;
1372
+ grid-column: span 13/span 13;
1091
1373
  }
1092
-
1093
- .cds--md\:col-start-2 {
1094
- grid-column-start: 2;
1374
+ }
1375
+ @media (min-width: 66rem) {
1376
+ .cds--lg\:col-span-14 {
1377
+ --cds-grid-columns: 14;
1378
+ display: block;
1379
+ grid-column: span 14/span 14;
1095
1380
  }
1096
-
1097
- .cds--md\:col-start-3 {
1098
- grid-column-start: 3;
1381
+ }
1382
+ @media (min-width: 66rem) {
1383
+ .cds--lg\:col-span-15 {
1384
+ --cds-grid-columns: 15;
1385
+ display: block;
1386
+ grid-column: span 15/span 15;
1099
1387
  }
1100
-
1101
- .cds--md\:col-start-4 {
1102
- grid-column-start: 4;
1388
+ }
1389
+ @media (min-width: 66rem) {
1390
+ .cds--lg\:col-span-16 {
1391
+ --cds-grid-columns: 16;
1392
+ display: block;
1393
+ grid-column: span 16/span 16;
1103
1394
  }
1104
-
1105
- .cds--md\:col-start-5 {
1106
- grid-column-start: 5;
1395
+ }
1396
+ @media (min-width: 66rem) {
1397
+ .cds--lg\:col-span-auto {
1398
+ grid-column: auto;
1107
1399
  }
1108
1400
 
1109
- .cds--md\:col-start-6 {
1110
- grid-column-start: 6;
1401
+ .cds--lg\:col-span-100 {
1402
+ grid-column: 1/-1;
1111
1403
  }
1112
1404
 
1113
- .cds--md\:col-start-7 {
1114
- grid-column-start: 7;
1405
+ .cds--lg\:col-span-75 {
1406
+ --cds-grid-columns: 12;
1407
+ grid-column: span 12/span 12;
1115
1408
  }
1116
1409
 
1117
- .cds--md\:col-start-8 {
1118
- grid-column-start: 8;
1410
+ .cds--lg\:col-span-50 {
1411
+ --cds-grid-columns: 8;
1412
+ grid-column: span 8/span 8;
1119
1413
  }
1120
1414
 
1121
- .cds--md\:col-start-9 {
1122
- grid-column-start: 9;
1415
+ .cds--lg\:col-span-25 {
1416
+ --cds-grid-columns: 4;
1417
+ grid-column: span 4/span 4;
1123
1418
  }
1124
-
1125
- .cds--md\:col-start-10 {
1126
- grid-column-start: 10;
1419
+ }
1420
+ @media (min-width: 82rem) {
1421
+ .cds--xlg\:col-span-0 {
1422
+ display: none;
1127
1423
  }
1128
-
1129
- .cds--md\:col-start-11 {
1130
- grid-column-start: 11;
1424
+ }
1425
+ @media (min-width: 82rem) {
1426
+ .cds--xlg\:col-span-1 {
1427
+ --cds-grid-columns: 1;
1428
+ display: block;
1429
+ grid-column: span 1/span 1;
1131
1430
  }
1132
-
1133
- .cds--md\:col-start-12 {
1134
- grid-column-start: 12;
1431
+ }
1432
+ @media (min-width: 82rem) {
1433
+ .cds--xlg\:col-span-2 {
1434
+ --cds-grid-columns: 2;
1435
+ display: block;
1436
+ grid-column: span 2/span 2;
1135
1437
  }
1136
-
1137
- .cds--md\:col-start-13 {
1138
- grid-column-start: 13;
1438
+ }
1439
+ @media (min-width: 82rem) {
1440
+ .cds--xlg\:col-span-3 {
1441
+ --cds-grid-columns: 3;
1442
+ display: block;
1443
+ grid-column: span 3/span 3;
1139
1444
  }
1140
-
1141
- .cds--md\:col-start-14 {
1142
- grid-column-start: 14;
1445
+ }
1446
+ @media (min-width: 82rem) {
1447
+ .cds--xlg\:col-span-4 {
1448
+ --cds-grid-columns: 4;
1449
+ display: block;
1450
+ grid-column: span 4/span 4;
1143
1451
  }
1144
-
1145
- .cds--md\:col-start-15 {
1146
- grid-column-start: 15;
1452
+ }
1453
+ @media (min-width: 82rem) {
1454
+ .cds--xlg\:col-span-5 {
1455
+ --cds-grid-columns: 5;
1456
+ display: block;
1457
+ grid-column: span 5/span 5;
1147
1458
  }
1148
-
1149
- .cds--md\:col-start-16 {
1150
- grid-column-start: 16;
1459
+ }
1460
+ @media (min-width: 82rem) {
1461
+ .cds--xlg\:col-span-6 {
1462
+ --cds-grid-columns: 6;
1463
+ display: block;
1464
+ grid-column: span 6/span 6;
1151
1465
  }
1152
-
1153
- .cds--md\:col-end-2 {
1154
- grid-column-end: 2;
1466
+ }
1467
+ @media (min-width: 82rem) {
1468
+ .cds--xlg\:col-span-7 {
1469
+ --cds-grid-columns: 7;
1470
+ display: block;
1471
+ grid-column: span 7/span 7;
1155
1472
  }
1156
-
1157
- .cds--md\:col-end-3 {
1158
- grid-column-end: 3;
1473
+ }
1474
+ @media (min-width: 82rem) {
1475
+ .cds--xlg\:col-span-8 {
1476
+ --cds-grid-columns: 8;
1477
+ display: block;
1478
+ grid-column: span 8/span 8;
1159
1479
  }
1160
-
1161
- .cds--md\:col-end-4 {
1162
- grid-column-end: 4;
1480
+ }
1481
+ @media (min-width: 82rem) {
1482
+ .cds--xlg\:col-span-9 {
1483
+ --cds-grid-columns: 9;
1484
+ display: block;
1485
+ grid-column: span 9/span 9;
1163
1486
  }
1164
-
1165
- .cds--md\:col-end-5 {
1166
- grid-column-end: 5;
1487
+ }
1488
+ @media (min-width: 82rem) {
1489
+ .cds--xlg\:col-span-10 {
1490
+ --cds-grid-columns: 10;
1491
+ display: block;
1492
+ grid-column: span 10/span 10;
1167
1493
  }
1168
-
1169
- .cds--md\:col-end-6 {
1170
- grid-column-end: 6;
1494
+ }
1495
+ @media (min-width: 82rem) {
1496
+ .cds--xlg\:col-span-11 {
1497
+ --cds-grid-columns: 11;
1498
+ display: block;
1499
+ grid-column: span 11/span 11;
1171
1500
  }
1172
-
1173
- .cds--md\:col-end-7 {
1174
- grid-column-end: 7;
1501
+ }
1502
+ @media (min-width: 82rem) {
1503
+ .cds--xlg\:col-span-12 {
1504
+ --cds-grid-columns: 12;
1505
+ display: block;
1506
+ grid-column: span 12/span 12;
1175
1507
  }
1176
-
1177
- .cds--md\:col-end-8 {
1178
- grid-column-end: 8;
1508
+ }
1509
+ @media (min-width: 82rem) {
1510
+ .cds--xlg\:col-span-13 {
1511
+ --cds-grid-columns: 13;
1512
+ display: block;
1513
+ grid-column: span 13/span 13;
1179
1514
  }
1180
-
1181
- .cds--md\:col-end-9 {
1182
- grid-column-end: 9;
1515
+ }
1516
+ @media (min-width: 82rem) {
1517
+ .cds--xlg\:col-span-14 {
1518
+ --cds-grid-columns: 14;
1519
+ display: block;
1520
+ grid-column: span 14/span 14;
1183
1521
  }
1184
-
1185
- .cds--md\:col-end-10 {
1186
- grid-column-end: 10;
1522
+ }
1523
+ @media (min-width: 82rem) {
1524
+ .cds--xlg\:col-span-15 {
1525
+ --cds-grid-columns: 15;
1526
+ display: block;
1527
+ grid-column: span 15/span 15;
1187
1528
  }
1188
-
1189
- .cds--md\:col-end-11 {
1190
- grid-column-end: 11;
1529
+ }
1530
+ @media (min-width: 82rem) {
1531
+ .cds--xlg\:col-span-16 {
1532
+ --cds-grid-columns: 16;
1533
+ display: block;
1534
+ grid-column: span 16/span 16;
1191
1535
  }
1192
-
1193
- .cds--md\:col-end-12 {
1194
- grid-column-end: 12;
1536
+ }
1537
+ @media (min-width: 82rem) {
1538
+ .cds--xlg\:col-span-auto {
1539
+ grid-column: auto;
1195
1540
  }
1196
1541
 
1197
- .cds--md\:col-end-13 {
1198
- grid-column-end: 13;
1542
+ .cds--xlg\:col-span-100 {
1543
+ grid-column: 1/-1;
1199
1544
  }
1200
1545
 
1201
- .cds--md\:col-end-14 {
1202
- grid-column-end: 14;
1546
+ .cds--xlg\:col-span-75 {
1547
+ --cds-grid-columns: 12;
1548
+ grid-column: span 12/span 12;
1203
1549
  }
1204
1550
 
1205
- .cds--md\:col-end-15 {
1206
- grid-column-end: 15;
1551
+ .cds--xlg\:col-span-50 {
1552
+ --cds-grid-columns: 8;
1553
+ grid-column: span 8/span 8;
1207
1554
  }
1208
1555
 
1209
- .cds--md\:col-end-16 {
1210
- grid-column-end: 16;
1556
+ .cds--xlg\:col-span-25 {
1557
+ --cds-grid-columns: 4;
1558
+ grid-column: span 4/span 4;
1211
1559
  }
1212
-
1213
- .cds--md\:col-end-17 {
1214
- grid-column-end: 17;
1560
+ }
1561
+ @media (min-width: 99rem) {
1562
+ .cds--max\:col-span-0 {
1563
+ display: none;
1215
1564
  }
1216
-
1217
- .cds--md\:col-start-auto {
1218
- grid-column-start: auto;
1565
+ }
1566
+ @media (min-width: 99rem) {
1567
+ .cds--max\:col-span-1 {
1568
+ --cds-grid-columns: 1;
1569
+ display: block;
1570
+ grid-column: span 1/span 1;
1219
1571
  }
1220
-
1221
- .cds--md\:col-end-auto {
1222
- grid-column-end: auto;
1572
+ }
1573
+ @media (min-width: 99rem) {
1574
+ .cds--max\:col-span-2 {
1575
+ --cds-grid-columns: 2;
1576
+ display: block;
1577
+ grid-column: span 2/span 2;
1223
1578
  }
1224
1579
  }
1225
- @media (min-width: 66rem) {
1226
- .cds--lg\:col-start-1 {
1227
- grid-column-start: 1;
1580
+ @media (min-width: 99rem) {
1581
+ .cds--max\:col-span-3 {
1582
+ --cds-grid-columns: 3;
1583
+ display: block;
1584
+ grid-column: span 3/span 3;
1228
1585
  }
1229
-
1230
- .cds--lg\:col-start-2 {
1231
- grid-column-start: 2;
1586
+ }
1587
+ @media (min-width: 99rem) {
1588
+ .cds--max\:col-span-4 {
1589
+ --cds-grid-columns: 4;
1590
+ display: block;
1591
+ grid-column: span 4/span 4;
1232
1592
  }
1233
-
1234
- .cds--lg\:col-start-3 {
1235
- grid-column-start: 3;
1593
+ }
1594
+ @media (min-width: 99rem) {
1595
+ .cds--max\:col-span-5 {
1596
+ --cds-grid-columns: 5;
1597
+ display: block;
1598
+ grid-column: span 5/span 5;
1236
1599
  }
1237
-
1238
- .cds--lg\:col-start-4 {
1239
- grid-column-start: 4;
1600
+ }
1601
+ @media (min-width: 99rem) {
1602
+ .cds--max\:col-span-6 {
1603
+ --cds-grid-columns: 6;
1604
+ display: block;
1605
+ grid-column: span 6/span 6;
1240
1606
  }
1241
-
1242
- .cds--lg\:col-start-5 {
1243
- grid-column-start: 5;
1607
+ }
1608
+ @media (min-width: 99rem) {
1609
+ .cds--max\:col-span-7 {
1610
+ --cds-grid-columns: 7;
1611
+ display: block;
1612
+ grid-column: span 7/span 7;
1244
1613
  }
1245
-
1246
- .cds--lg\:col-start-6 {
1247
- grid-column-start: 6;
1614
+ }
1615
+ @media (min-width: 99rem) {
1616
+ .cds--max\:col-span-8 {
1617
+ --cds-grid-columns: 8;
1618
+ display: block;
1619
+ grid-column: span 8/span 8;
1248
1620
  }
1249
-
1250
- .cds--lg\:col-start-7 {
1251
- grid-column-start: 7;
1621
+ }
1622
+ @media (min-width: 99rem) {
1623
+ .cds--max\:col-span-9 {
1624
+ --cds-grid-columns: 9;
1625
+ display: block;
1626
+ grid-column: span 9/span 9;
1252
1627
  }
1253
-
1254
- .cds--lg\:col-start-8 {
1255
- grid-column-start: 8;
1628
+ }
1629
+ @media (min-width: 99rem) {
1630
+ .cds--max\:col-span-10 {
1631
+ --cds-grid-columns: 10;
1632
+ display: block;
1633
+ grid-column: span 10/span 10;
1256
1634
  }
1257
-
1258
- .cds--lg\:col-start-9 {
1259
- grid-column-start: 9;
1635
+ }
1636
+ @media (min-width: 99rem) {
1637
+ .cds--max\:col-span-11 {
1638
+ --cds-grid-columns: 11;
1639
+ display: block;
1640
+ grid-column: span 11/span 11;
1260
1641
  }
1261
-
1262
- .cds--lg\:col-start-10 {
1263
- grid-column-start: 10;
1642
+ }
1643
+ @media (min-width: 99rem) {
1644
+ .cds--max\:col-span-12 {
1645
+ --cds-grid-columns: 12;
1646
+ display: block;
1647
+ grid-column: span 12/span 12;
1264
1648
  }
1265
-
1266
- .cds--lg\:col-start-11 {
1267
- grid-column-start: 11;
1649
+ }
1650
+ @media (min-width: 99rem) {
1651
+ .cds--max\:col-span-13 {
1652
+ --cds-grid-columns: 13;
1653
+ display: block;
1654
+ grid-column: span 13/span 13;
1268
1655
  }
1269
-
1270
- .cds--lg\:col-start-12 {
1271
- grid-column-start: 12;
1656
+ }
1657
+ @media (min-width: 99rem) {
1658
+ .cds--max\:col-span-14 {
1659
+ --cds-grid-columns: 14;
1660
+ display: block;
1661
+ grid-column: span 14/span 14;
1272
1662
  }
1273
-
1274
- .cds--lg\:col-start-13 {
1275
- grid-column-start: 13;
1663
+ }
1664
+ @media (min-width: 99rem) {
1665
+ .cds--max\:col-span-15 {
1666
+ --cds-grid-columns: 15;
1667
+ display: block;
1668
+ grid-column: span 15/span 15;
1276
1669
  }
1277
-
1278
- .cds--lg\:col-start-14 {
1279
- grid-column-start: 14;
1670
+ }
1671
+ @media (min-width: 99rem) {
1672
+ .cds--max\:col-span-16 {
1673
+ --cds-grid-columns: 16;
1674
+ display: block;
1675
+ grid-column: span 16/span 16;
1280
1676
  }
1281
-
1282
- .cds--lg\:col-start-15 {
1283
- grid-column-start: 15;
1677
+ }
1678
+ @media (min-width: 99rem) {
1679
+ .cds--max\:col-span-auto {
1680
+ grid-column: auto;
1284
1681
  }
1285
1682
 
1286
- .cds--lg\:col-start-16 {
1287
- grid-column-start: 16;
1683
+ .cds--max\:col-span-100 {
1684
+ grid-column: 1/-1;
1288
1685
  }
1289
1686
 
1290
- .cds--lg\:col-end-2 {
1291
- grid-column-end: 2;
1687
+ .cds--max\:col-span-75 {
1688
+ --cds-grid-columns: 12;
1689
+ grid-column: span 12/span 12;
1292
1690
  }
1293
1691
 
1294
- .cds--lg\:col-end-3 {
1295
- grid-column-end: 3;
1692
+ .cds--max\:col-span-50 {
1693
+ --cds-grid-columns: 8;
1694
+ grid-column: span 8/span 8;
1296
1695
  }
1297
1696
 
1298
- .cds--lg\:col-end-4 {
1299
- grid-column-end: 4;
1697
+ .cds--max\:col-span-25 {
1698
+ --cds-grid-columns: 4;
1699
+ grid-column: span 4/span 4;
1300
1700
  }
1701
+ }
1702
+ .cds--col-span-auto {
1703
+ grid-column: auto;
1704
+ }
1301
1705
 
1302
- .cds--lg\:col-end-5 {
1303
- grid-column-end: 5;
1304
- }
1706
+ .cds--col-span-100 {
1707
+ grid-column: 1/-1;
1708
+ }
1305
1709
 
1306
- .cds--lg\:col-end-6 {
1307
- grid-column-end: 6;
1710
+ .cds--col-span-75 {
1711
+ --cds-grid-columns: 3;
1712
+ grid-column: span 3/span 3;
1713
+ }
1714
+ @media (min-width: 42rem) {
1715
+ .cds--col-span-75 {
1716
+ --cds-grid-columns: 6;
1717
+ grid-column: span 6/span 6;
1308
1718
  }
1309
-
1310
- .cds--lg\:col-end-7 {
1311
- grid-column-end: 7;
1719
+ }
1720
+ @media (min-width: 66rem) {
1721
+ .cds--col-span-75 {
1722
+ --cds-grid-columns: 12;
1723
+ grid-column: span 12/span 12;
1312
1724
  }
1725
+ }
1313
1726
 
1314
- .cds--lg\:col-end-8 {
1315
- grid-column-end: 8;
1727
+ .cds--col-span-50 {
1728
+ --cds-grid-columns: 2;
1729
+ grid-column: span 2/span 2;
1730
+ }
1731
+ @media (min-width: 42rem) {
1732
+ .cds--col-span-50 {
1733
+ --cds-grid-columns: 4;
1734
+ grid-column: span 4/span 4;
1316
1735
  }
1317
-
1318
- .cds--lg\:col-end-9 {
1319
- grid-column-end: 9;
1736
+ }
1737
+ @media (min-width: 66rem) {
1738
+ .cds--col-span-50 {
1739
+ --cds-grid-columns: 8;
1740
+ grid-column: span 8/span 8;
1320
1741
  }
1742
+ }
1321
1743
 
1322
- .cds--lg\:col-end-10 {
1323
- grid-column-end: 10;
1744
+ .cds--col-span-25 {
1745
+ --cds-grid-columns: 1;
1746
+ grid-column: span 1/span 1;
1747
+ }
1748
+ @media (min-width: 42rem) {
1749
+ .cds--col-span-25 {
1750
+ --cds-grid-columns: 2;
1751
+ grid-column: span 2/span 2;
1324
1752
  }
1325
-
1326
- .cds--lg\:col-end-11 {
1327
- grid-column-end: 11;
1753
+ }
1754
+ @media (min-width: 66rem) {
1755
+ .cds--col-span-25 {
1756
+ --cds-grid-columns: 4;
1757
+ grid-column: span 4/span 4;
1328
1758
  }
1759
+ }
1329
1760
 
1330
- .cds--lg\:col-end-12 {
1331
- grid-column-end: 12;
1332
- }
1761
+ .cds--col-start-1 {
1762
+ grid-column-start: 1;
1763
+ }
1333
1764
 
1334
- .cds--lg\:col-end-13 {
1335
- grid-column-end: 13;
1336
- }
1765
+ .cds--col-start-2 {
1766
+ grid-column-start: 2;
1767
+ }
1337
1768
 
1338
- .cds--lg\:col-end-14 {
1339
- grid-column-end: 14;
1340
- }
1769
+ .cds--col-start-3 {
1770
+ grid-column-start: 3;
1771
+ }
1341
1772
 
1342
- .cds--lg\:col-end-15 {
1343
- grid-column-end: 15;
1344
- }
1773
+ .cds--col-start-4 {
1774
+ grid-column-start: 4;
1775
+ }
1345
1776
 
1346
- .cds--lg\:col-end-16 {
1347
- grid-column-end: 16;
1348
- }
1777
+ .cds--col-start-5 {
1778
+ grid-column-start: 5;
1779
+ }
1349
1780
 
1350
- .cds--lg\:col-end-17 {
1351
- grid-column-end: 17;
1352
- }
1781
+ .cds--col-start-6 {
1782
+ grid-column-start: 6;
1783
+ }
1353
1784
 
1354
- .cds--lg\:col-start-auto {
1355
- grid-column-start: auto;
1356
- }
1785
+ .cds--col-start-7 {
1786
+ grid-column-start: 7;
1787
+ }
1357
1788
 
1358
- .cds--lg\:col-end-auto {
1359
- grid-column-end: auto;
1360
- }
1789
+ .cds--col-start-8 {
1790
+ grid-column-start: 8;
1361
1791
  }
1362
- @media (min-width: 82rem) {
1363
- .cds--xlg\:col-start-1 {
1364
- grid-column-start: 1;
1365
- }
1366
1792
 
1367
- .cds--xlg\:col-start-2 {
1368
- grid-column-start: 2;
1369
- }
1793
+ .cds--col-start-9 {
1794
+ grid-column-start: 9;
1795
+ }
1370
1796
 
1371
- .cds--xlg\:col-start-3 {
1372
- grid-column-start: 3;
1373
- }
1797
+ .cds--col-start-10 {
1798
+ grid-column-start: 10;
1799
+ }
1374
1800
 
1375
- .cds--xlg\:col-start-4 {
1376
- grid-column-start: 4;
1377
- }
1801
+ .cds--col-start-11 {
1802
+ grid-column-start: 11;
1803
+ }
1378
1804
 
1379
- .cds--xlg\:col-start-5 {
1380
- grid-column-start: 5;
1381
- }
1805
+ .cds--col-start-12 {
1806
+ grid-column-start: 12;
1807
+ }
1382
1808
 
1383
- .cds--xlg\:col-start-6 {
1384
- grid-column-start: 6;
1385
- }
1809
+ .cds--col-start-13 {
1810
+ grid-column-start: 13;
1811
+ }
1386
1812
 
1387
- .cds--xlg\:col-start-7 {
1388
- grid-column-start: 7;
1389
- }
1813
+ .cds--col-start-14 {
1814
+ grid-column-start: 14;
1815
+ }
1390
1816
 
1391
- .cds--xlg\:col-start-8 {
1392
- grid-column-start: 8;
1393
- }
1817
+ .cds--col-start-15 {
1818
+ grid-column-start: 15;
1819
+ }
1394
1820
 
1395
- .cds--xlg\:col-start-9 {
1396
- grid-column-start: 9;
1397
- }
1821
+ .cds--col-start-16 {
1822
+ grid-column-start: 16;
1823
+ }
1398
1824
 
1399
- .cds--xlg\:col-start-10 {
1400
- grid-column-start: 10;
1401
- }
1825
+ .cds--col-end-2 {
1826
+ grid-column-end: 2;
1827
+ }
1402
1828
 
1403
- .cds--xlg\:col-start-11 {
1404
- grid-column-start: 11;
1405
- }
1829
+ .cds--col-end-3 {
1830
+ grid-column-end: 3;
1831
+ }
1406
1832
 
1407
- .cds--xlg\:col-start-12 {
1408
- grid-column-start: 12;
1409
- }
1833
+ .cds--col-end-4 {
1834
+ grid-column-end: 4;
1835
+ }
1410
1836
 
1411
- .cds--xlg\:col-start-13 {
1412
- grid-column-start: 13;
1413
- }
1837
+ .cds--col-end-5 {
1838
+ grid-column-end: 5;
1839
+ }
1414
1840
 
1415
- .cds--xlg\:col-start-14 {
1416
- grid-column-start: 14;
1417
- }
1841
+ .cds--col-end-6 {
1842
+ grid-column-end: 6;
1843
+ }
1418
1844
 
1419
- .cds--xlg\:col-start-15 {
1420
- grid-column-start: 15;
1421
- }
1845
+ .cds--col-end-7 {
1846
+ grid-column-end: 7;
1847
+ }
1422
1848
 
1423
- .cds--xlg\:col-start-16 {
1424
- grid-column-start: 16;
1425
- }
1849
+ .cds--col-end-8 {
1850
+ grid-column-end: 8;
1851
+ }
1426
1852
 
1427
- .cds--xlg\:col-end-2 {
1428
- grid-column-end: 2;
1429
- }
1853
+ .cds--col-end-9 {
1854
+ grid-column-end: 9;
1855
+ }
1430
1856
 
1431
- .cds--xlg\:col-end-3 {
1432
- grid-column-end: 3;
1433
- }
1857
+ .cds--col-end-10 {
1858
+ grid-column-end: 10;
1859
+ }
1434
1860
 
1435
- .cds--xlg\:col-end-4 {
1436
- grid-column-end: 4;
1437
- }
1861
+ .cds--col-end-11 {
1862
+ grid-column-end: 11;
1863
+ }
1438
1864
 
1439
- .cds--xlg\:col-end-5 {
1440
- grid-column-end: 5;
1441
- }
1865
+ .cds--col-end-12 {
1866
+ grid-column-end: 12;
1867
+ }
1442
1868
 
1443
- .cds--xlg\:col-end-6 {
1444
- grid-column-end: 6;
1445
- }
1869
+ .cds--col-end-13 {
1870
+ grid-column-end: 13;
1871
+ }
1446
1872
 
1447
- .cds--xlg\:col-end-7 {
1448
- grid-column-end: 7;
1449
- }
1873
+ .cds--col-end-14 {
1874
+ grid-column-end: 14;
1875
+ }
1450
1876
 
1451
- .cds--xlg\:col-end-8 {
1452
- grid-column-end: 8;
1453
- }
1877
+ .cds--col-end-15 {
1878
+ grid-column-end: 15;
1879
+ }
1454
1880
 
1455
- .cds--xlg\:col-end-9 {
1456
- grid-column-end: 9;
1457
- }
1881
+ .cds--col-end-16 {
1882
+ grid-column-end: 16;
1883
+ }
1458
1884
 
1459
- .cds--xlg\:col-end-10 {
1460
- grid-column-end: 10;
1461
- }
1885
+ .cds--col-end-17 {
1886
+ grid-column-end: 17;
1887
+ }
1462
1888
 
1463
- .cds--xlg\:col-end-11 {
1464
- grid-column-end: 11;
1465
- }
1889
+ .cds--col-start-auto {
1890
+ grid-column-start: auto;
1891
+ }
1466
1892
 
1467
- .cds--xlg\:col-end-12 {
1468
- grid-column-end: 12;
1469
- }
1893
+ .cds--col-end-auto {
1894
+ grid-column-end: auto;
1895
+ }
1470
1896
 
1471
- .cds--xlg\:col-end-13 {
1472
- grid-column-end: 13;
1473
- }
1897
+ .cds--sm\:col-start-1 {
1898
+ grid-column-start: 1;
1899
+ }
1474
1900
 
1475
- .cds--xlg\:col-end-14 {
1476
- grid-column-end: 14;
1477
- }
1901
+ .cds--sm\:col-start-2 {
1902
+ grid-column-start: 2;
1903
+ }
1478
1904
 
1479
- .cds--xlg\:col-end-15 {
1480
- grid-column-end: 15;
1481
- }
1905
+ .cds--sm\:col-start-3 {
1906
+ grid-column-start: 3;
1907
+ }
1482
1908
 
1483
- .cds--xlg\:col-end-16 {
1484
- grid-column-end: 16;
1485
- }
1909
+ .cds--sm\:col-start-4 {
1910
+ grid-column-start: 4;
1911
+ }
1486
1912
 
1487
- .cds--xlg\:col-end-17 {
1488
- grid-column-end: 17;
1489
- }
1913
+ .cds--sm\:col-start-5 {
1914
+ grid-column-start: 5;
1915
+ }
1490
1916
 
1491
- .cds--xlg\:col-start-auto {
1492
- grid-column-start: auto;
1493
- }
1917
+ .cds--sm\:col-start-6 {
1918
+ grid-column-start: 6;
1919
+ }
1494
1920
 
1495
- .cds--xlg\:col-end-auto {
1496
- grid-column-end: auto;
1497
- }
1921
+ .cds--sm\:col-start-7 {
1922
+ grid-column-start: 7;
1498
1923
  }
1499
- @media (min-width: 99rem) {
1500
- .cds--max\:col-start-1 {
1501
- grid-column-start: 1;
1502
- }
1503
1924
 
1504
- .cds--max\:col-start-2 {
1505
- grid-column-start: 2;
1506
- }
1925
+ .cds--sm\:col-start-8 {
1926
+ grid-column-start: 8;
1927
+ }
1507
1928
 
1508
- .cds--max\:col-start-3 {
1509
- grid-column-start: 3;
1510
- }
1929
+ .cds--sm\:col-start-9 {
1930
+ grid-column-start: 9;
1931
+ }
1511
1932
 
1512
- .cds--max\:col-start-4 {
1513
- grid-column-start: 4;
1514
- }
1933
+ .cds--sm\:col-start-10 {
1934
+ grid-column-start: 10;
1935
+ }
1515
1936
 
1516
- .cds--max\:col-start-5 {
1517
- grid-column-start: 5;
1518
- }
1937
+ .cds--sm\:col-start-11 {
1938
+ grid-column-start: 11;
1939
+ }
1519
1940
 
1520
- .cds--max\:col-start-6 {
1521
- grid-column-start: 6;
1522
- }
1941
+ .cds--sm\:col-start-12 {
1942
+ grid-column-start: 12;
1943
+ }
1523
1944
 
1524
- .cds--max\:col-start-7 {
1525
- grid-column-start: 7;
1526
- }
1945
+ .cds--sm\:col-start-13 {
1946
+ grid-column-start: 13;
1947
+ }
1527
1948
 
1528
- .cds--max\:col-start-8 {
1529
- grid-column-start: 8;
1530
- }
1949
+ .cds--sm\:col-start-14 {
1950
+ grid-column-start: 14;
1951
+ }
1531
1952
 
1532
- .cds--max\:col-start-9 {
1533
- grid-column-start: 9;
1534
- }
1953
+ .cds--sm\:col-start-15 {
1954
+ grid-column-start: 15;
1955
+ }
1535
1956
 
1536
- .cds--max\:col-start-10 {
1537
- grid-column-start: 10;
1538
- }
1957
+ .cds--sm\:col-start-16 {
1958
+ grid-column-start: 16;
1959
+ }
1539
1960
 
1540
- .cds--max\:col-start-11 {
1541
- grid-column-start: 11;
1542
- }
1961
+ .cds--sm\:col-end-2 {
1962
+ grid-column-end: 2;
1963
+ }
1543
1964
 
1544
- .cds--max\:col-start-12 {
1545
- grid-column-start: 12;
1546
- }
1965
+ .cds--sm\:col-end-3 {
1966
+ grid-column-end: 3;
1967
+ }
1547
1968
 
1548
- .cds--max\:col-start-13 {
1549
- grid-column-start: 13;
1550
- }
1969
+ .cds--sm\:col-end-4 {
1970
+ grid-column-end: 4;
1971
+ }
1551
1972
 
1552
- .cds--max\:col-start-14 {
1553
- grid-column-start: 14;
1554
- }
1973
+ .cds--sm\:col-end-5 {
1974
+ grid-column-end: 5;
1975
+ }
1555
1976
 
1556
- .cds--max\:col-start-15 {
1557
- grid-column-start: 15;
1558
- }
1977
+ .cds--sm\:col-end-6 {
1978
+ grid-column-end: 6;
1979
+ }
1559
1980
 
1560
- .cds--max\:col-start-16 {
1561
- grid-column-start: 16;
1562
- }
1981
+ .cds--sm\:col-end-7 {
1982
+ grid-column-end: 7;
1983
+ }
1563
1984
 
1564
- .cds--max\:col-end-2 {
1565
- grid-column-end: 2;
1566
- }
1985
+ .cds--sm\:col-end-8 {
1986
+ grid-column-end: 8;
1987
+ }
1567
1988
 
1568
- .cds--max\:col-end-3 {
1569
- grid-column-end: 3;
1570
- }
1989
+ .cds--sm\:col-end-9 {
1990
+ grid-column-end: 9;
1991
+ }
1571
1992
 
1572
- .cds--max\:col-end-4 {
1573
- grid-column-end: 4;
1574
- }
1993
+ .cds--sm\:col-end-10 {
1994
+ grid-column-end: 10;
1995
+ }
1575
1996
 
1576
- .cds--max\:col-end-5 {
1577
- grid-column-end: 5;
1578
- }
1997
+ .cds--sm\:col-end-11 {
1998
+ grid-column-end: 11;
1999
+ }
1579
2000
 
1580
- .cds--max\:col-end-6 {
2001
+ .cds--sm\:col-end-12 {
2002
+ grid-column-end: 12;
2003
+ }
2004
+
2005
+ .cds--sm\:col-end-13 {
2006
+ grid-column-end: 13;
2007
+ }
2008
+
2009
+ .cds--sm\:col-end-14 {
2010
+ grid-column-end: 14;
2011
+ }
2012
+
2013
+ .cds--sm\:col-end-15 {
2014
+ grid-column-end: 15;
2015
+ }
2016
+
2017
+ .cds--sm\:col-end-16 {
2018
+ grid-column-end: 16;
2019
+ }
2020
+
2021
+ .cds--sm\:col-end-17 {
2022
+ grid-column-end: 17;
2023
+ }
2024
+
2025
+ .cds--sm\:col-start-auto {
2026
+ grid-column-start: auto;
2027
+ }
2028
+
2029
+ .cds--sm\:col-end-auto {
2030
+ grid-column-end: auto;
2031
+ }
2032
+
2033
+ @media (min-width: 42rem) {
2034
+ .cds--md\:col-start-1 {
2035
+ grid-column-start: 1;
2036
+ }
2037
+
2038
+ .cds--md\:col-start-2 {
2039
+ grid-column-start: 2;
2040
+ }
2041
+
2042
+ .cds--md\:col-start-3 {
2043
+ grid-column-start: 3;
2044
+ }
2045
+
2046
+ .cds--md\:col-start-4 {
2047
+ grid-column-start: 4;
2048
+ }
2049
+
2050
+ .cds--md\:col-start-5 {
2051
+ grid-column-start: 5;
2052
+ }
2053
+
2054
+ .cds--md\:col-start-6 {
2055
+ grid-column-start: 6;
2056
+ }
2057
+
2058
+ .cds--md\:col-start-7 {
2059
+ grid-column-start: 7;
2060
+ }
2061
+
2062
+ .cds--md\:col-start-8 {
2063
+ grid-column-start: 8;
2064
+ }
2065
+
2066
+ .cds--md\:col-start-9 {
2067
+ grid-column-start: 9;
2068
+ }
2069
+
2070
+ .cds--md\:col-start-10 {
2071
+ grid-column-start: 10;
2072
+ }
2073
+
2074
+ .cds--md\:col-start-11 {
2075
+ grid-column-start: 11;
2076
+ }
2077
+
2078
+ .cds--md\:col-start-12 {
2079
+ grid-column-start: 12;
2080
+ }
2081
+
2082
+ .cds--md\:col-start-13 {
2083
+ grid-column-start: 13;
2084
+ }
2085
+
2086
+ .cds--md\:col-start-14 {
2087
+ grid-column-start: 14;
2088
+ }
2089
+
2090
+ .cds--md\:col-start-15 {
2091
+ grid-column-start: 15;
2092
+ }
2093
+
2094
+ .cds--md\:col-start-16 {
2095
+ grid-column-start: 16;
2096
+ }
2097
+
2098
+ .cds--md\:col-end-2 {
2099
+ grid-column-end: 2;
2100
+ }
2101
+
2102
+ .cds--md\:col-end-3 {
2103
+ grid-column-end: 3;
2104
+ }
2105
+
2106
+ .cds--md\:col-end-4 {
2107
+ grid-column-end: 4;
2108
+ }
2109
+
2110
+ .cds--md\:col-end-5 {
2111
+ grid-column-end: 5;
2112
+ }
2113
+
2114
+ .cds--md\:col-end-6 {
1581
2115
  grid-column-end: 6;
1582
2116
  }
1583
2117
 
1584
- .cds--max\:col-end-7 {
2118
+ .cds--md\:col-end-7 {
1585
2119
  grid-column-end: 7;
1586
2120
  }
1587
2121
 
1588
- .cds--max\:col-end-8 {
2122
+ .cds--md\:col-end-8 {
1589
2123
  grid-column-end: 8;
1590
2124
  }
1591
2125
 
1592
- .cds--max\:col-end-9 {
2126
+ .cds--md\:col-end-9 {
1593
2127
  grid-column-end: 9;
1594
2128
  }
1595
2129
 
1596
- .cds--max\:col-end-10 {
2130
+ .cds--md\:col-end-10 {
1597
2131
  grid-column-end: 10;
1598
2132
  }
1599
2133
 
1600
- .cds--max\:col-end-11 {
2134
+ .cds--md\:col-end-11 {
1601
2135
  grid-column-end: 11;
1602
2136
  }
1603
2137
 
1604
- .cds--max\:col-end-12 {
2138
+ .cds--md\:col-end-12 {
1605
2139
  grid-column-end: 12;
1606
2140
  }
1607
2141
 
1608
- .cds--max\:col-end-13 {
2142
+ .cds--md\:col-end-13 {
1609
2143
  grid-column-end: 13;
1610
2144
  }
1611
2145
 
1612
- .cds--max\:col-end-14 {
2146
+ .cds--md\:col-end-14 {
1613
2147
  grid-column-end: 14;
1614
2148
  }
1615
2149
 
1616
- .cds--max\:col-end-15 {
2150
+ .cds--md\:col-end-15 {
1617
2151
  grid-column-end: 15;
1618
2152
  }
1619
2153
 
1620
- .cds--max\:col-end-16 {
2154
+ .cds--md\:col-end-16 {
1621
2155
  grid-column-end: 16;
1622
2156
  }
1623
2157
 
1624
- .cds--max\:col-end-17 {
2158
+ .cds--md\:col-end-17 {
1625
2159
  grid-column-end: 17;
1626
2160
  }
1627
2161
 
1628
- .cds--max\:col-start-auto {
2162
+ .cds--md\:col-start-auto {
1629
2163
  grid-column-start: auto;
1630
2164
  }
1631
2165
 
1632
- .cds--max\:col-end-auto {
2166
+ .cds--md\:col-end-auto {
1633
2167
  grid-column-end: auto;
1634
2168
  }
1635
2169
  }
1636
- html,
1637
- body,
1638
- div,
1639
- span,
1640
- applet,
1641
- object,
1642
- iframe,
1643
- h1,
1644
- h2,
1645
- h3,
1646
- h4,
1647
- h5,
1648
- h6,
1649
- p,
1650
- blockquote,
1651
- pre,
1652
- a,
1653
- abbr,
1654
- acronym,
1655
- address,
1656
- big,
1657
- cite,
1658
- code,
1659
- del,
1660
- dfn,
1661
- em,
1662
- img,
1663
- ins,
1664
- kbd,
1665
- q,
1666
- s,
1667
- samp,
1668
- small,
1669
- strike,
1670
- strong,
1671
- sub,
1672
- sup,
1673
- tt,
1674
- var,
1675
- b,
1676
- u,
1677
- i,
1678
- center,
1679
- dl,
1680
- dt,
1681
- dd,
1682
- ol,
1683
- ul,
1684
- li,
1685
- fieldset,
1686
- form,
1687
- label,
1688
- legend,
1689
- table,
1690
- caption,
1691
- tbody,
1692
- tfoot,
1693
- thead,
1694
- tr,
1695
- th,
1696
- td,
1697
- article,
1698
- aside,
1699
- canvas,
1700
- details,
1701
- embed,
1702
- figure,
1703
- figcaption,
1704
- footer,
1705
- header,
1706
- hgroup,
1707
- menu,
1708
- nav,
1709
- output,
1710
- ruby,
1711
- section,
1712
- summary,
1713
- time,
1714
- mark,
1715
- audio,
1716
- video {
1717
- padding: 0;
1718
- border: 0;
1719
- margin: 0;
1720
- font: inherit;
1721
- font-size: 100%;
1722
- vertical-align: baseline;
1723
- }
1724
-
1725
- /* HTML5 display-role reset for older browsers */
1726
- article,
1727
- aside,
1728
- details,
1729
- figcaption,
1730
- figure,
1731
- footer,
1732
- header,
1733
- hgroup,
1734
- menu,
1735
- nav,
1736
- section {
1737
- display: block;
1738
- }
2170
+ @media (min-width: 66rem) {
2171
+ .cds--lg\:col-start-1 {
2172
+ grid-column-start: 1;
2173
+ }
1739
2174
 
1740
- body {
1741
- background-color: var(--cds-background, #ffffff);
1742
- color: var(--cds-text-primary, #161616);
1743
- line-height: 1;
1744
- }
2175
+ .cds--lg\:col-start-2 {
2176
+ grid-column-start: 2;
2177
+ }
1745
2178
 
1746
- ol,
1747
- ul {
1748
- list-style: none;
1749
- }
2179
+ .cds--lg\:col-start-3 {
2180
+ grid-column-start: 3;
2181
+ }
1750
2182
 
1751
- blockquote,
1752
- q {
1753
- quotes: none;
1754
- }
2183
+ .cds--lg\:col-start-4 {
2184
+ grid-column-start: 4;
2185
+ }
1755
2186
 
1756
- blockquote::before,
1757
- blockquote::after,
1758
- q::before,
1759
- q::after {
1760
- content: "";
1761
- content: none;
1762
- }
2187
+ .cds--lg\:col-start-5 {
2188
+ grid-column-start: 5;
2189
+ }
1763
2190
 
1764
- table {
1765
- border-collapse: collapse;
1766
- border-spacing: 0;
1767
- }
2191
+ .cds--lg\:col-start-6 {
2192
+ grid-column-start: 6;
2193
+ }
1768
2194
 
1769
- html {
1770
- box-sizing: border-box;
1771
- }
2195
+ .cds--lg\:col-start-7 {
2196
+ grid-column-start: 7;
2197
+ }
1772
2198
 
1773
- *,
1774
- *::before,
1775
- *::after {
1776
- box-sizing: inherit;
1777
- }
2199
+ .cds--lg\:col-start-8 {
2200
+ grid-column-start: 8;
2201
+ }
1778
2202
 
1779
- html {
1780
- font-size: 100%;
1781
- }
2203
+ .cds--lg\:col-start-9 {
2204
+ grid-column-start: 9;
2205
+ }
1782
2206
 
1783
- body {
1784
- font-weight: 400;
1785
- font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;
1786
- -moz-osx-font-smoothing: grayscale;
1787
- -webkit-font-smoothing: antialiased;
1788
- text-rendering: optimizeLegibility;
1789
- }
2207
+ .cds--lg\:col-start-10 {
2208
+ grid-column-start: 10;
2209
+ }
1790
2210
 
1791
- code {
1792
- font-family: 'IBM Plex Mono', system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', monospace;
1793
- }
2211
+ .cds--lg\:col-start-11 {
2212
+ grid-column-start: 11;
2213
+ }
1794
2214
 
1795
- strong {
1796
- font-weight: 600;
1797
- }
2215
+ .cds--lg\:col-start-12 {
2216
+ grid-column-start: 12;
2217
+ }
1798
2218
 
1799
- @media screen and (-ms-high-contrast: active) {
1800
- svg {
1801
- fill: ButtonText;
2219
+ .cds--lg\:col-start-13 {
2220
+ grid-column-start: 13;
1802
2221
  }
1803
- }
1804
- h1 {
1805
- font-size: var(--cds-heading-06-font-size, 2rem);
1806
- font-weight: var(--cds-heading-06-font-weight, 300);
1807
- line-height: var(--cds-heading-06-line-height, 1.199);
1808
- letter-spacing: var(--cds-heading-06-letter-spacing, 0);
1809
- }
1810
2222
 
1811
- h2 {
1812
- font-size: var(--cds-heading-05-font-size, 2rem);
1813
- font-weight: var(--cds-heading-05-font-weight, 400);
1814
- line-height: var(--cds-heading-05-line-height, 1.25);
1815
- letter-spacing: var(--cds-heading-05-letter-spacing, 0);
1816
- }
2223
+ .cds--lg\:col-start-14 {
2224
+ grid-column-start: 14;
2225
+ }
1817
2226
 
1818
- h3 {
1819
- font-size: var(--cds-heading-04-font-size, 1.75rem);
1820
- font-weight: var(--cds-heading-04-font-weight, 400);
1821
- line-height: var(--cds-heading-04-line-height, 1.28572);
1822
- letter-spacing: var(--cds-heading-04-letter-spacing, 0);
1823
- }
2227
+ .cds--lg\:col-start-15 {
2228
+ grid-column-start: 15;
2229
+ }
1824
2230
 
1825
- h4 {
1826
- font-size: var(--cds-heading-03-font-size, 1.25rem);
1827
- font-weight: var(--cds-heading-03-font-weight, 400);
1828
- line-height: var(--cds-heading-03-line-height, 1.4);
1829
- letter-spacing: var(--cds-heading-03-letter-spacing, 0);
1830
- }
2231
+ .cds--lg\:col-start-16 {
2232
+ grid-column-start: 16;
2233
+ }
1831
2234
 
1832
- h5 {
1833
- font-size: var(--cds-heading-02-font-size, 1rem);
1834
- font-weight: var(--cds-heading-02-font-weight, 600);
1835
- line-height: var(--cds-heading-02-line-height, 1.5);
1836
- letter-spacing: var(--cds-heading-02-letter-spacing, 0);
1837
- }
2235
+ .cds--lg\:col-end-2 {
2236
+ grid-column-end: 2;
2237
+ }
1838
2238
 
1839
- h6 {
1840
- font-size: var(--cds-heading-01-font-size, 0.875rem);
1841
- font-weight: var(--cds-heading-01-font-weight, 600);
1842
- line-height: var(--cds-heading-01-line-height, 1.42857);
1843
- letter-spacing: var(--cds-heading-01-letter-spacing, 0.16px);
1844
- }
2239
+ .cds--lg\:col-end-3 {
2240
+ grid-column-end: 3;
2241
+ }
1845
2242
 
1846
- p {
1847
- font-size: var(--cds-body-02-font-size, 1rem);
1848
- font-weight: var(--cds-body-02-font-weight, 400);
1849
- line-height: var(--cds-body-02-line-height, 1.5);
1850
- letter-spacing: var(--cds-body-02-letter-spacing, 0);
1851
- }
2243
+ .cds--lg\:col-end-4 {
2244
+ grid-column-end: 4;
2245
+ }
1852
2246
 
1853
- a {
1854
- color: var(--cds-link-primary, #0062fe);
1855
- }
2247
+ .cds--lg\:col-end-5 {
2248
+ grid-column-end: 5;
2249
+ }
1856
2250
 
1857
- em {
1858
- font-style: italic;
1859
- }
2251
+ .cds--lg\:col-end-6 {
2252
+ grid-column-end: 6;
2253
+ }
1860
2254
 
1861
- @font-face {
1862
- font-display: "swap";
1863
- font-family: "IBM Plex Mono";
1864
- font-style: normal;
1865
- font-weight: 300;
1866
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Cyrillic.woff") format("woff");
1867
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
1868
- }
1869
- @font-face {
1870
- font-display: "swap";
1871
- font-family: "IBM Plex Mono";
1872
- font-style: normal;
1873
- font-weight: 300;
1874
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Pi.woff") format("woff");
1875
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
1876
- }
1877
- @font-face {
1878
- font-display: "swap";
1879
- font-family: "IBM Plex Mono";
1880
- font-style: normal;
1881
- font-weight: 300;
1882
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin3.woff") format("woff");
1883
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
1884
- }
1885
- @font-face {
1886
- font-display: "swap";
1887
- font-family: "IBM Plex Mono";
1888
- font-style: normal;
1889
- font-weight: 300;
1890
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin2.woff") format("woff");
1891
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
1892
- }
1893
- @font-face {
1894
- font-display: "swap";
1895
- font-family: "IBM Plex Mono";
1896
- font-style: normal;
1897
- font-weight: 300;
1898
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Light-Latin1.woff") format("woff");
1899
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
1900
- }
1901
- @font-face {
1902
- font-display: "swap";
1903
- font-family: "IBM Plex Mono";
1904
- font-style: italic;
1905
- font-weight: 300;
1906
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Cyrillic.woff") format("woff");
1907
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
1908
- }
1909
- @font-face {
1910
- font-display: "swap";
1911
- font-family: "IBM Plex Mono";
1912
- font-style: italic;
1913
- font-weight: 300;
1914
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Pi.woff") format("woff");
1915
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2255
+ .cds--lg\:col-end-7 {
2256
+ grid-column-end: 7;
2257
+ }
2258
+
2259
+ .cds--lg\:col-end-8 {
2260
+ grid-column-end: 8;
2261
+ }
2262
+
2263
+ .cds--lg\:col-end-9 {
2264
+ grid-column-end: 9;
2265
+ }
2266
+
2267
+ .cds--lg\:col-end-10 {
2268
+ grid-column-end: 10;
2269
+ }
2270
+
2271
+ .cds--lg\:col-end-11 {
2272
+ grid-column-end: 11;
2273
+ }
2274
+
2275
+ .cds--lg\:col-end-12 {
2276
+ grid-column-end: 12;
2277
+ }
2278
+
2279
+ .cds--lg\:col-end-13 {
2280
+ grid-column-end: 13;
2281
+ }
2282
+
2283
+ .cds--lg\:col-end-14 {
2284
+ grid-column-end: 14;
2285
+ }
2286
+
2287
+ .cds--lg\:col-end-15 {
2288
+ grid-column-end: 15;
2289
+ }
2290
+
2291
+ .cds--lg\:col-end-16 {
2292
+ grid-column-end: 16;
2293
+ }
2294
+
2295
+ .cds--lg\:col-end-17 {
2296
+ grid-column-end: 17;
2297
+ }
2298
+
2299
+ .cds--lg\:col-start-auto {
2300
+ grid-column-start: auto;
2301
+ }
2302
+
2303
+ .cds--lg\:col-end-auto {
2304
+ grid-column-end: auto;
2305
+ }
1916
2306
  }
1917
- @font-face {
1918
- font-display: "swap";
1919
- font-family: "IBM Plex Mono";
1920
- font-style: italic;
1921
- font-weight: 300;
1922
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin3.woff") format("woff");
1923
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
1924
- }
1925
- @font-face {
1926
- font-display: "swap";
1927
- font-family: "IBM Plex Mono";
1928
- font-style: italic;
1929
- font-weight: 300;
1930
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin2.woff") format("woff");
1931
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
1932
- }
1933
- @font-face {
1934
- font-display: "swap";
1935
- font-family: "IBM Plex Mono";
1936
- font-style: italic;
1937
- font-weight: 300;
1938
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-LightItalic-Latin1.woff") format("woff");
1939
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
1940
- }
1941
- @font-face {
1942
- font-display: "swap";
1943
- font-family: "IBM Plex Mono";
1944
- font-style: normal;
1945
- font-weight: 400;
1946
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Cyrillic.woff") format("woff");
1947
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
1948
- }
1949
- @font-face {
1950
- font-display: "swap";
1951
- font-family: "IBM Plex Mono";
1952
- font-style: normal;
1953
- font-weight: 400;
1954
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Pi.woff") format("woff");
1955
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
1956
- }
1957
- @font-face {
1958
- font-display: "swap";
1959
- font-family: "IBM Plex Mono";
1960
- font-style: normal;
1961
- font-weight: 400;
1962
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin3.woff") format("woff");
1963
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
1964
- }
1965
- @font-face {
1966
- font-display: "swap";
1967
- font-family: "IBM Plex Mono";
1968
- font-style: normal;
1969
- font-weight: 400;
1970
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin2.woff") format("woff");
1971
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
1972
- }
1973
- @font-face {
1974
- font-display: "swap";
1975
- font-family: "IBM Plex Mono";
1976
- font-style: normal;
1977
- font-weight: 400;
1978
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Regular-Latin1.woff") format("woff");
1979
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
1980
- }
1981
- @font-face {
1982
- font-display: "swap";
1983
- font-family: "IBM Plex Mono";
1984
- font-style: italic;
1985
- font-weight: 400;
1986
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Cyrillic.woff") format("woff");
1987
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
1988
- }
1989
- @font-face {
1990
- font-display: "swap";
1991
- font-family: "IBM Plex Mono";
1992
- font-style: italic;
1993
- font-weight: 400;
1994
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Pi.woff") format("woff");
1995
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
1996
- }
1997
- @font-face {
1998
- font-display: "swap";
1999
- font-family: "IBM Plex Mono";
2000
- font-style: italic;
2001
- font-weight: 400;
2002
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin3.woff") format("woff");
2003
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2004
- }
2005
- @font-face {
2006
- font-display: "swap";
2007
- font-family: "IBM Plex Mono";
2008
- font-style: italic;
2009
- font-weight: 400;
2010
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin2.woff") format("woff");
2011
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2012
- }
2013
- @font-face {
2014
- font-display: "swap";
2015
- font-family: "IBM Plex Mono";
2016
- font-style: italic;
2017
- font-weight: 400;
2018
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-Italic-Latin1.woff") format("woff");
2019
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2020
- }
2021
- @font-face {
2022
- font-display: "swap";
2023
- font-family: "IBM Plex Mono";
2024
- font-style: normal;
2025
- font-weight: 600;
2026
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Cyrillic.woff") format("woff");
2027
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2028
- }
2029
- @font-face {
2030
- font-display: "swap";
2031
- font-family: "IBM Plex Mono";
2032
- font-style: normal;
2033
- font-weight: 600;
2034
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Pi.woff") format("woff");
2035
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2036
- }
2037
- @font-face {
2038
- font-display: "swap";
2039
- font-family: "IBM Plex Mono";
2040
- font-style: normal;
2041
- font-weight: 600;
2042
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin3.woff") format("woff");
2043
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2044
- }
2045
- @font-face {
2046
- font-display: "swap";
2047
- font-family: "IBM Plex Mono";
2048
- font-style: normal;
2049
- font-weight: 600;
2050
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin2.woff") format("woff");
2051
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2052
- }
2053
- @font-face {
2054
- font-display: "swap";
2055
- font-family: "IBM Plex Mono";
2056
- font-style: normal;
2057
- font-weight: 600;
2058
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBold-Latin1.woff") format("woff");
2059
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2060
- }
2061
- @font-face {
2062
- font-display: "swap";
2063
- font-family: "IBM Plex Mono";
2064
- font-style: italic;
2065
- font-weight: 600;
2066
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Cyrillic.woff") format("woff");
2067
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2068
- }
2069
- @font-face {
2070
- font-display: "swap";
2071
- font-family: "IBM Plex Mono";
2072
- font-style: italic;
2073
- font-weight: 600;
2074
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Pi.woff") format("woff");
2075
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2076
- }
2077
- @font-face {
2078
- font-display: "swap";
2079
- font-family: "IBM Plex Mono";
2080
- font-style: italic;
2081
- font-weight: 600;
2082
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin3.woff") format("woff");
2083
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2084
- }
2085
- @font-face {
2086
- font-display: "swap";
2087
- font-family: "IBM Plex Mono";
2088
- font-style: italic;
2089
- font-weight: 600;
2090
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin2.woff") format("woff");
2091
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2092
- }
2093
- @font-face {
2094
- font-display: "swap";
2095
- font-family: "IBM Plex Mono";
2096
- font-style: italic;
2097
- font-weight: 600;
2098
- src: url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Mono/fonts/split/woff/IBMPlexMono-SemiBoldItalic-Latin1.woff") format("woff");
2099
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2100
- }
2101
- @font-face {
2102
- font-display: "swap";
2103
- font-family: "IBM Plex Sans";
2104
- font-style: normal;
2105
- font-weight: 300;
2106
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Cyrillic.woff") format("woff");
2107
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2108
- }
2109
- @font-face {
2110
- font-display: "swap";
2111
- font-family: "IBM Plex Sans";
2112
- font-style: normal;
2113
- font-weight: 300;
2114
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Pi.woff") format("woff");
2115
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2116
- }
2117
- @font-face {
2118
- font-display: "swap";
2119
- font-family: "IBM Plex Sans";
2120
- font-style: normal;
2121
- font-weight: 300;
2122
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin3.woff") format("woff");
2123
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2124
- }
2125
- @font-face {
2126
- font-display: "swap";
2127
- font-family: "IBM Plex Sans";
2128
- font-style: normal;
2129
- font-weight: 300;
2130
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin2.woff") format("woff");
2131
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2132
- }
2133
- @font-face {
2134
- font-display: "swap";
2135
- font-family: "IBM Plex Sans";
2136
- font-style: normal;
2137
- font-weight: 300;
2138
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Light-Latin1.woff") format("woff");
2139
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2140
- }
2141
- @font-face {
2142
- font-display: "swap";
2143
- font-family: "IBM Plex Sans";
2144
- font-style: italic;
2145
- font-weight: 300;
2146
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Cyrillic.woff") format("woff");
2147
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2148
- }
2149
- @font-face {
2150
- font-display: "swap";
2151
- font-family: "IBM Plex Sans";
2152
- font-style: italic;
2153
- font-weight: 300;
2154
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Pi.woff") format("woff");
2155
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2156
- }
2157
- @font-face {
2158
- font-display: "swap";
2159
- font-family: "IBM Plex Sans";
2160
- font-style: italic;
2161
- font-weight: 300;
2162
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin3.woff") format("woff");
2163
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2164
- }
2165
- @font-face {
2166
- font-display: "swap";
2167
- font-family: "IBM Plex Sans";
2168
- font-style: italic;
2169
- font-weight: 300;
2170
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin2.woff") format("woff");
2171
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2172
- }
2173
- @font-face {
2174
- font-display: "swap";
2175
- font-family: "IBM Plex Sans";
2176
- font-style: italic;
2177
- font-weight: 300;
2178
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-LightItalic-Latin1.woff") format("woff");
2179
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2180
- }
2181
- @font-face {
2182
- font-display: "swap";
2183
- font-family: "IBM Plex Sans";
2184
- font-style: normal;
2185
- font-weight: 400;
2186
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Cyrillic.woff") format("woff");
2187
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2188
- }
2189
- @font-face {
2190
- font-display: "swap";
2191
- font-family: "IBM Plex Sans";
2192
- font-style: normal;
2193
- font-weight: 400;
2194
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Pi.woff") format("woff");
2195
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2196
- }
2197
- @font-face {
2198
- font-display: "swap";
2199
- font-family: "IBM Plex Sans";
2200
- font-style: normal;
2201
- font-weight: 400;
2202
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin3.woff") format("woff");
2203
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2204
- }
2205
- @font-face {
2206
- font-display: "swap";
2207
- font-family: "IBM Plex Sans";
2208
- font-style: normal;
2209
- font-weight: 400;
2210
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin2.woff") format("woff");
2211
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2212
- }
2213
- @font-face {
2214
- font-display: "swap";
2215
- font-family: "IBM Plex Sans";
2216
- font-style: normal;
2217
- font-weight: 400;
2218
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Regular-Latin1.woff") format("woff");
2219
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2220
- }
2221
- @font-face {
2222
- font-display: "swap";
2223
- font-family: "IBM Plex Sans";
2224
- font-style: italic;
2225
- font-weight: 400;
2226
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Cyrillic.woff") format("woff");
2227
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2228
- }
2229
- @font-face {
2230
- font-display: "swap";
2231
- font-family: "IBM Plex Sans";
2232
- font-style: italic;
2233
- font-weight: 400;
2234
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Pi.woff") format("woff");
2235
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2236
- }
2237
- @font-face {
2238
- font-display: "swap";
2239
- font-family: "IBM Plex Sans";
2240
- font-style: italic;
2241
- font-weight: 400;
2242
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin3.woff") format("woff");
2243
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2244
- }
2245
- @font-face {
2246
- font-display: "swap";
2247
- font-family: "IBM Plex Sans";
2248
- font-style: italic;
2249
- font-weight: 400;
2250
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin2.woff") format("woff");
2251
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2252
- }
2253
- @font-face {
2254
- font-display: "swap";
2255
- font-family: "IBM Plex Sans";
2256
- font-style: italic;
2257
- font-weight: 400;
2258
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-Italic-Latin1.woff") format("woff");
2259
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2260
- }
2261
- @font-face {
2262
- font-display: "swap";
2263
- font-family: "IBM Plex Sans";
2264
- font-style: normal;
2265
- font-weight: 600;
2266
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Cyrillic.woff") format("woff");
2267
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2268
- }
2269
- @font-face {
2270
- font-display: "swap";
2271
- font-family: "IBM Plex Sans";
2272
- font-style: normal;
2273
- font-weight: 600;
2274
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Pi.woff") format("woff");
2275
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2276
- }
2277
- @font-face {
2278
- font-display: "swap";
2279
- font-family: "IBM Plex Sans";
2280
- font-style: normal;
2281
- font-weight: 600;
2282
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin3.woff") format("woff");
2283
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2284
- }
2285
- @font-face {
2286
- font-display: "swap";
2287
- font-family: "IBM Plex Sans";
2288
- font-style: normal;
2289
- font-weight: 600;
2290
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin2.woff") format("woff");
2291
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2292
- }
2293
- @font-face {
2294
- font-display: "swap";
2295
- font-family: "IBM Plex Sans";
2296
- font-style: normal;
2297
- font-weight: 600;
2298
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBold-Latin1.woff") format("woff");
2299
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2300
- }
2301
- @font-face {
2302
- font-display: "swap";
2303
- font-family: "IBM Plex Sans";
2304
- font-style: italic;
2305
- font-weight: 600;
2306
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Cyrillic.woff") format("woff");
2307
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2308
- }
2309
- @font-face {
2310
- font-display: "swap";
2311
- font-family: "IBM Plex Sans";
2312
- font-style: italic;
2313
- font-weight: 600;
2314
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Pi.woff") format("woff");
2315
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2316
- }
2317
- @font-face {
2318
- font-display: "swap";
2319
- font-family: "IBM Plex Sans";
2320
- font-style: italic;
2321
- font-weight: 600;
2322
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin3.woff") format("woff");
2323
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2324
- }
2325
- @font-face {
2326
- font-display: "swap";
2327
- font-family: "IBM Plex Sans";
2328
- font-style: italic;
2329
- font-weight: 600;
2330
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin2.woff") format("woff");
2331
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2332
- }
2333
- @font-face {
2334
- font-display: "swap";
2335
- font-family: "IBM Plex Sans";
2336
- font-style: italic;
2337
- font-weight: 600;
2338
- src: url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Sans/fonts/split/woff/IBMPlexSans-SemiBoldItalic-Latin1.woff") format("woff");
2339
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2340
- }
2341
- @font-face {
2342
- font-display: "swap";
2343
- font-family: "IBM Plex Serif";
2344
- font-style: normal;
2345
- font-weight: 300;
2346
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Cyrillic.woff") format("woff");
2347
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2348
- }
2349
- @font-face {
2350
- font-display: "swap";
2351
- font-family: "IBM Plex Serif";
2352
- font-style: normal;
2353
- font-weight: 300;
2354
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Pi.woff") format("woff");
2355
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2356
- }
2357
- @font-face {
2358
- font-display: "swap";
2359
- font-family: "IBM Plex Serif";
2360
- font-style: normal;
2361
- font-weight: 300;
2362
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin3.woff") format("woff");
2363
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2364
- }
2365
- @font-face {
2366
- font-display: "swap";
2367
- font-family: "IBM Plex Serif";
2368
- font-style: normal;
2369
- font-weight: 300;
2370
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin2.woff") format("woff");
2371
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2372
- }
2373
- @font-face {
2374
- font-display: "swap";
2375
- font-family: "IBM Plex Serif";
2376
- font-style: normal;
2377
- font-weight: 300;
2378
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Light-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Light-Latin1.woff") format("woff");
2379
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2380
- }
2381
- @font-face {
2382
- font-display: "swap";
2383
- font-family: "IBM Plex Serif";
2384
- font-style: italic;
2385
- font-weight: 300;
2386
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Cyrillic.woff") format("woff");
2387
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2388
- }
2389
- @font-face {
2390
- font-display: "swap";
2391
- font-family: "IBM Plex Serif";
2392
- font-style: italic;
2393
- font-weight: 300;
2394
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Pi.woff") format("woff");
2395
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2396
- }
2397
- @font-face {
2398
- font-display: "swap";
2399
- font-family: "IBM Plex Serif";
2400
- font-style: italic;
2401
- font-weight: 300;
2402
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin3.woff") format("woff");
2403
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2404
- }
2405
- @font-face {
2406
- font-display: "swap";
2407
- font-family: "IBM Plex Serif";
2408
- font-style: italic;
2409
- font-weight: 300;
2410
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin2.woff") format("woff");
2411
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2412
- }
2413
- @font-face {
2414
- font-display: "swap";
2415
- font-family: "IBM Plex Serif";
2416
- font-style: italic;
2417
- font-weight: 300;
2418
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-LightItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-LightItalic-Latin1.woff") format("woff");
2419
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2420
- }
2421
- @font-face {
2422
- font-display: "swap";
2423
- font-family: "IBM Plex Serif";
2424
- font-style: normal;
2425
- font-weight: 400;
2426
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Cyrillic.woff") format("woff");
2427
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2428
- }
2429
- @font-face {
2430
- font-display: "swap";
2431
- font-family: "IBM Plex Serif";
2432
- font-style: normal;
2433
- font-weight: 400;
2434
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Pi.woff") format("woff");
2435
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2436
- }
2437
- @font-face {
2438
- font-display: "swap";
2439
- font-family: "IBM Plex Serif";
2440
- font-style: normal;
2441
- font-weight: 400;
2442
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin3.woff") format("woff");
2443
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2444
- }
2445
- @font-face {
2446
- font-display: "swap";
2447
- font-family: "IBM Plex Serif";
2448
- font-style: normal;
2449
- font-weight: 400;
2450
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin2.woff") format("woff");
2451
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2452
- }
2453
- @font-face {
2454
- font-display: "swap";
2455
- font-family: "IBM Plex Serif";
2456
- font-style: normal;
2457
- font-weight: 400;
2458
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Regular-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Regular-Latin1.woff") format("woff");
2459
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2460
- }
2461
- @font-face {
2462
- font-display: "swap";
2463
- font-family: "IBM Plex Serif";
2464
- font-style: italic;
2465
- font-weight: 400;
2466
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Cyrillic.woff") format("woff");
2467
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2468
- }
2469
- @font-face {
2470
- font-display: "swap";
2471
- font-family: "IBM Plex Serif";
2472
- font-style: italic;
2473
- font-weight: 400;
2474
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Pi.woff") format("woff");
2475
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2476
- }
2477
- @font-face {
2478
- font-display: "swap";
2479
- font-family: "IBM Plex Serif";
2480
- font-style: italic;
2481
- font-weight: 400;
2482
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin3.woff") format("woff");
2483
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2484
- }
2485
- @font-face {
2486
- font-display: "swap";
2487
- font-family: "IBM Plex Serif";
2488
- font-style: italic;
2489
- font-weight: 400;
2490
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin2.woff") format("woff");
2491
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2492
- }
2493
- @font-face {
2494
- font-display: "swap";
2495
- font-family: "IBM Plex Serif";
2496
- font-style: italic;
2497
- font-weight: 400;
2498
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-Italic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-Italic-Latin1.woff") format("woff");
2499
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2500
- }
2501
- @font-face {
2502
- font-display: "swap";
2503
- font-family: "IBM Plex Serif";
2504
- font-style: normal;
2505
- font-weight: 600;
2506
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Cyrillic.woff") format("woff");
2507
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2508
- }
2509
- @font-face {
2510
- font-display: "swap";
2511
- font-family: "IBM Plex Serif";
2512
- font-style: normal;
2513
- font-weight: 600;
2514
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Pi.woff") format("woff");
2515
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2516
- }
2517
- @font-face {
2518
- font-display: "swap";
2519
- font-family: "IBM Plex Serif";
2520
- font-style: normal;
2521
- font-weight: 600;
2522
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin3.woff") format("woff");
2523
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2524
- }
2525
- @font-face {
2526
- font-display: "swap";
2527
- font-family: "IBM Plex Serif";
2528
- font-style: normal;
2529
- font-weight: 600;
2530
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin2.woff") format("woff");
2531
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2532
- }
2533
- @font-face {
2534
- font-display: "swap";
2535
- font-family: "IBM Plex Serif";
2536
- font-style: normal;
2537
- font-weight: 600;
2538
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBold-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBold-Latin1.woff") format("woff");
2539
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2540
- }
2541
- @font-face {
2542
- font-display: "swap";
2543
- font-family: "IBM Plex Serif";
2544
- font-style: italic;
2545
- font-weight: 600;
2546
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Cyrillic.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Cyrillic.woff") format("woff");
2547
- unicode-range: "U+0400-045F", "U+0472-0473", "U+0490-049D", "U+04A0-04A5", "U+04AA-04AB", "U+04AE-04B3", "U+04B6-04BB", "U+04C0-04C2", "U+04CF-04D9", "U+04DC-04DF", "U+04E2-04E9", "U+04EE-04F5", "U+04F8-04F9";
2548
- }
2549
- @font-face {
2550
- font-display: "swap";
2551
- font-family: "IBM Plex Serif";
2552
- font-style: italic;
2553
- font-weight: 600;
2554
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Pi.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Pi.woff") format("woff");
2555
- unicode-range: "U+0E3F", "U+2032-2033", "U+2070", "U+2075-2079", "U+2080-2081", "U+2083", "U+2085-2089", "U+2113", "U+2116", "U+2126", "U+212E", "U+2150-2151", "U+2153-215E", "U+2190-2199", "U+21A9-21AA", "U+21B0-21B3", "U+21B6-21B7", "U+21BA-21BB", "U+21C4", "U+21C6", "U+2202", "U+2206", "U+220F", "U+2211", "U+221A", "U+221E", "U+222B", "U+2248", "U+2260", "U+2264-2265", "U+25CA", "U+2713", "U+274C", "U+2B0E-2B11", "U+EBE1-EBE7", "U+ECE0", "U+EFCC";
2556
- }
2557
- @font-face {
2558
- font-display: "swap";
2559
- font-family: "IBM Plex Serif";
2560
- font-style: italic;
2561
- font-weight: 600;
2562
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin3.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin3.woff") format("woff");
2563
- unicode-range: "U+0102-0103", "U+1EA0-1EF9", "U+20AB";
2564
- }
2565
- @font-face {
2566
- font-display: "swap";
2567
- font-family: "IBM Plex Serif";
2568
- font-style: italic;
2569
- font-weight: 600;
2570
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin2.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin2.woff") format("woff");
2571
- unicode-range: "U+0100-024F", "U+0259", "U+1E00-1EFF", "U+20A0-20AB", "U+20AD-20CF", "U+2C60-2C7F", "U+A720-A7FF", "U+FB01-FB02";
2307
+ @media (min-width: 82rem) {
2308
+ .cds--xlg\:col-start-1 {
2309
+ grid-column-start: 1;
2310
+ }
2311
+
2312
+ .cds--xlg\:col-start-2 {
2313
+ grid-column-start: 2;
2314
+ }
2315
+
2316
+ .cds--xlg\:col-start-3 {
2317
+ grid-column-start: 3;
2318
+ }
2319
+
2320
+ .cds--xlg\:col-start-4 {
2321
+ grid-column-start: 4;
2322
+ }
2323
+
2324
+ .cds--xlg\:col-start-5 {
2325
+ grid-column-start: 5;
2326
+ }
2327
+
2328
+ .cds--xlg\:col-start-6 {
2329
+ grid-column-start: 6;
2330
+ }
2331
+
2332
+ .cds--xlg\:col-start-7 {
2333
+ grid-column-start: 7;
2334
+ }
2335
+
2336
+ .cds--xlg\:col-start-8 {
2337
+ grid-column-start: 8;
2338
+ }
2339
+
2340
+ .cds--xlg\:col-start-9 {
2341
+ grid-column-start: 9;
2342
+ }
2343
+
2344
+ .cds--xlg\:col-start-10 {
2345
+ grid-column-start: 10;
2346
+ }
2347
+
2348
+ .cds--xlg\:col-start-11 {
2349
+ grid-column-start: 11;
2350
+ }
2351
+
2352
+ .cds--xlg\:col-start-12 {
2353
+ grid-column-start: 12;
2354
+ }
2355
+
2356
+ .cds--xlg\:col-start-13 {
2357
+ grid-column-start: 13;
2358
+ }
2359
+
2360
+ .cds--xlg\:col-start-14 {
2361
+ grid-column-start: 14;
2362
+ }
2363
+
2364
+ .cds--xlg\:col-start-15 {
2365
+ grid-column-start: 15;
2366
+ }
2367
+
2368
+ .cds--xlg\:col-start-16 {
2369
+ grid-column-start: 16;
2370
+ }
2371
+
2372
+ .cds--xlg\:col-end-2 {
2373
+ grid-column-end: 2;
2374
+ }
2375
+
2376
+ .cds--xlg\:col-end-3 {
2377
+ grid-column-end: 3;
2378
+ }
2379
+
2380
+ .cds--xlg\:col-end-4 {
2381
+ grid-column-end: 4;
2382
+ }
2383
+
2384
+ .cds--xlg\:col-end-5 {
2385
+ grid-column-end: 5;
2386
+ }
2387
+
2388
+ .cds--xlg\:col-end-6 {
2389
+ grid-column-end: 6;
2390
+ }
2391
+
2392
+ .cds--xlg\:col-end-7 {
2393
+ grid-column-end: 7;
2394
+ }
2395
+
2396
+ .cds--xlg\:col-end-8 {
2397
+ grid-column-end: 8;
2398
+ }
2399
+
2400
+ .cds--xlg\:col-end-9 {
2401
+ grid-column-end: 9;
2402
+ }
2403
+
2404
+ .cds--xlg\:col-end-10 {
2405
+ grid-column-end: 10;
2406
+ }
2407
+
2408
+ .cds--xlg\:col-end-11 {
2409
+ grid-column-end: 11;
2410
+ }
2411
+
2412
+ .cds--xlg\:col-end-12 {
2413
+ grid-column-end: 12;
2414
+ }
2415
+
2416
+ .cds--xlg\:col-end-13 {
2417
+ grid-column-end: 13;
2418
+ }
2419
+
2420
+ .cds--xlg\:col-end-14 {
2421
+ grid-column-end: 14;
2422
+ }
2423
+
2424
+ .cds--xlg\:col-end-15 {
2425
+ grid-column-end: 15;
2426
+ }
2427
+
2428
+ .cds--xlg\:col-end-16 {
2429
+ grid-column-end: 16;
2430
+ }
2431
+
2432
+ .cds--xlg\:col-end-17 {
2433
+ grid-column-end: 17;
2434
+ }
2435
+
2436
+ .cds--xlg\:col-start-auto {
2437
+ grid-column-start: auto;
2438
+ }
2439
+
2440
+ .cds--xlg\:col-end-auto {
2441
+ grid-column-end: auto;
2442
+ }
2572
2443
  }
2573
- @font-face {
2574
- font-display: "swap";
2575
- font-family: "IBM Plex Serif";
2576
- font-style: italic;
2577
- font-weight: 600;
2578
- src: url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff2/IBMPlexSerif-SemiBoldItalic-Latin1.woff2") format("woff2"), url("~@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Latin1.woff") format("woff");
2579
- unicode-range: "U+0000", "U+000D", "U+0020-007E", "U+00A0-00A3", "U+00A4-00FF", "U+0131", "U+0152-0153", "U+02C6", "U+02DA", "U+02DC", "U+2013-2014", "U+2018-201A", "U+201C-201E", "U+2020-2022", "U+2026", "U+2030", "U+2039-203A", "U+2044", "U+2074", "U+20AC", "U+2122", "U+2212", "U+FB01-FB02";
2444
+ @media (min-width: 99rem) {
2445
+ .cds--max\:col-start-1 {
2446
+ grid-column-start: 1;
2447
+ }
2448
+
2449
+ .cds--max\:col-start-2 {
2450
+ grid-column-start: 2;
2451
+ }
2452
+
2453
+ .cds--max\:col-start-3 {
2454
+ grid-column-start: 3;
2455
+ }
2456
+
2457
+ .cds--max\:col-start-4 {
2458
+ grid-column-start: 4;
2459
+ }
2460
+
2461
+ .cds--max\:col-start-5 {
2462
+ grid-column-start: 5;
2463
+ }
2464
+
2465
+ .cds--max\:col-start-6 {
2466
+ grid-column-start: 6;
2467
+ }
2468
+
2469
+ .cds--max\:col-start-7 {
2470
+ grid-column-start: 7;
2471
+ }
2472
+
2473
+ .cds--max\:col-start-8 {
2474
+ grid-column-start: 8;
2475
+ }
2476
+
2477
+ .cds--max\:col-start-9 {
2478
+ grid-column-start: 9;
2479
+ }
2480
+
2481
+ .cds--max\:col-start-10 {
2482
+ grid-column-start: 10;
2483
+ }
2484
+
2485
+ .cds--max\:col-start-11 {
2486
+ grid-column-start: 11;
2487
+ }
2488
+
2489
+ .cds--max\:col-start-12 {
2490
+ grid-column-start: 12;
2491
+ }
2492
+
2493
+ .cds--max\:col-start-13 {
2494
+ grid-column-start: 13;
2495
+ }
2496
+
2497
+ .cds--max\:col-start-14 {
2498
+ grid-column-start: 14;
2499
+ }
2500
+
2501
+ .cds--max\:col-start-15 {
2502
+ grid-column-start: 15;
2503
+ }
2504
+
2505
+ .cds--max\:col-start-16 {
2506
+ grid-column-start: 16;
2507
+ }
2508
+
2509
+ .cds--max\:col-end-2 {
2510
+ grid-column-end: 2;
2511
+ }
2512
+
2513
+ .cds--max\:col-end-3 {
2514
+ grid-column-end: 3;
2515
+ }
2516
+
2517
+ .cds--max\:col-end-4 {
2518
+ grid-column-end: 4;
2519
+ }
2520
+
2521
+ .cds--max\:col-end-5 {
2522
+ grid-column-end: 5;
2523
+ }
2524
+
2525
+ .cds--max\:col-end-6 {
2526
+ grid-column-end: 6;
2527
+ }
2528
+
2529
+ .cds--max\:col-end-7 {
2530
+ grid-column-end: 7;
2531
+ }
2532
+
2533
+ .cds--max\:col-end-8 {
2534
+ grid-column-end: 8;
2535
+ }
2536
+
2537
+ .cds--max\:col-end-9 {
2538
+ grid-column-end: 9;
2539
+ }
2540
+
2541
+ .cds--max\:col-end-10 {
2542
+ grid-column-end: 10;
2543
+ }
2544
+
2545
+ .cds--max\:col-end-11 {
2546
+ grid-column-end: 11;
2547
+ }
2548
+
2549
+ .cds--max\:col-end-12 {
2550
+ grid-column-end: 12;
2551
+ }
2552
+
2553
+ .cds--max\:col-end-13 {
2554
+ grid-column-end: 13;
2555
+ }
2556
+
2557
+ .cds--max\:col-end-14 {
2558
+ grid-column-end: 14;
2559
+ }
2560
+
2561
+ .cds--max\:col-end-15 {
2562
+ grid-column-end: 15;
2563
+ }
2564
+
2565
+ .cds--max\:col-end-16 {
2566
+ grid-column-end: 16;
2567
+ }
2568
+
2569
+ .cds--max\:col-end-17 {
2570
+ grid-column-end: 17;
2571
+ }
2572
+
2573
+ .cds--max\:col-start-auto {
2574
+ grid-column-start: auto;
2575
+ }
2576
+
2577
+ .cds--max\:col-end-auto {
2578
+ grid-column-end: auto;
2579
+ }
2580
2580
  }
2581
2581
  :root {
2582
2582
  --cds-layer: var(--cds-layer-01, #f4f4f4);
@@ -3954,13 +3954,15 @@ li.cds--accordion__item--disabled:last-of-type {
3954
3954
  text-decoration: underline;
3955
3955
  }
3956
3956
 
3957
- .cds--link--sm {
3957
+ .cds--link--sm,
3958
+ .cds--link--sm.cds--link--disabled:hover {
3958
3959
  font-size: var(--cds-helper-text-01-font-size, 0.75rem);
3959
3960
  line-height: var(--cds-helper-text-01-line-height, 1.33333);
3960
3961
  letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
3961
3962
  }
3962
3963
 
3963
- .cds--link--lg {
3964
+ .cds--link--lg,
3965
+ .cds--link--lg.cds--link--disabled:hover {
3964
3966
  font-size: var(--cds-body-compact-02-font-size, 1rem);
3965
3967
  font-weight: var(--cds-body-compact-02-font-weight, 400);
3966
3968
  line-height: var(--cds-body-compact-02-line-height, 1.375);
@@ -4797,8 +4799,8 @@ fieldset[disabled] .cds--form__helper-text {
4797
4799
  .cds--checkbox:indeterminate + .cds--checkbox-label::before,
4798
4800
  .cds--checkbox-label[data-contained-checkbox-state=true]::before,
4799
4801
  .cds--checkbox-label[data-contained-checkbox-state=mixed]::before {
4802
+ border: none;
4800
4803
  border-width: 1px;
4801
- border-color: var(--cds-icon-primary, #161616);
4802
4804
  background-color: var(--cds-icon-primary, #161616);
4803
4805
  }
4804
4806
 
@@ -4844,6 +4846,10 @@ fieldset[disabled] .cds--form__helper-text {
4844
4846
  background-color: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
4845
4847
  }
4846
4848
 
4849
+ .cds--checkbox-skeleton .cds--checkbox-label {
4850
+ cursor: default;
4851
+ }
4852
+
4847
4853
  .cds--checkbox-label-text.cds--skeleton {
4848
4854
  position: relative;
4849
4855
  padding: 0;
@@ -4979,6 +4985,9 @@ fieldset[disabled] .cds--form__helper-text {
4979
4985
  .cds--copy-btn.cds--copy-btn--animating::before, .cds--copy-btn.cds--copy-btn--animating .cds--copy-btn__feedback {
4980
4986
  display: block;
4981
4987
  }
4988
+ .cds--copy-btn.cds--copy-btn--animating::before {
4989
+ border: none;
4990
+ }
4982
4991
  .cds--copy-btn.cds--copy-btn--animating.cds--copy-btn--fade-out::before, .cds--copy-btn.cds--copy-btn--animating.cds--copy-btn--fade-out .cds--copy-btn__feedback {
4983
4992
  animation: 110ms cubic-bezier(0.2, 0, 0.38, 0.9) hide-feedback;
4984
4993
  }
@@ -11430,6 +11439,9 @@ button.cds--dropdown-text:focus {
11430
11439
  width: 48%;
11431
11440
  }
11432
11441
  }
11442
+ .cds--modal-container .cds--modal-container-body {
11443
+ display: contents;
11444
+ }
11433
11445
 
11434
11446
  .cds--modal-content {
11435
11447
  font-size: var(--cds-body-01-font-size, 0.875rem);
@@ -16416,7 +16428,7 @@ span.cds--pagination__text.cds--pagination__items-count {
16416
16428
  .cds--structured-list-row {
16417
16429
  display: table-row;
16418
16430
  border-bottom: 1px solid var(--cds-border-subtle);
16419
- transition: background-color 110ms motion(standard, productive);
16431
+ transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
16420
16432
  }
16421
16433
 
16422
16434
  .cds--structured-list--selection .cds--structured-list-row:hover:not(.cds--structured-list-row--header-row):not(.cds--structured-list-row--selected) {
@@ -16495,7 +16507,7 @@ span.cds--pagination__text.cds--pagination__items-count {
16495
16507
  max-width: 36rem;
16496
16508
  color: var(--cds-text-secondary, #525252);
16497
16509
  border-top: 1px solid var(--cds-border-subtle);
16498
- transition: color 110ms motion(standard, productive);
16510
+ transition: color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
16499
16511
  }
16500
16512
  .cds--structured-list-td html {
16501
16513
  font-size: 100%;
@@ -16521,7 +16533,7 @@ span.cds--pagination__text.cds--pagination__items-count {
16521
16533
  .cds--structured-list-svg {
16522
16534
  display: inline-block;
16523
16535
  fill: transparent;
16524
- transition: all 110ms motion(standard, productive);
16536
+ transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
16525
16537
  vertical-align: middle;
16526
16538
  }
16527
16539
 
@@ -17722,6 +17734,8 @@ span.cds--pagination__text.cds--pagination__items-count {
17722
17734
  position: absolute;
17723
17735
  top: 0.375rem;
17724
17736
  right: 0.3125rem;
17737
+ width: 0.375rem;
17738
+ height: 0.3125rem;
17725
17739
  fill: var(--cds-support-success, #198038);
17726
17740
  visibility: hidden;
17727
17741
  }