@ndla/ui 56.0.32-alpha.0 → 56.0.34-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/panda.buildinfo.json +4 -4
- package/dist/styles.css +17 -16
- package/es/AudioPlayer/AudioPlayer.js +1 -1
- package/es/Embed/ConceptEmbed.js +5 -2
- package/es/Embed/GlossEmbed.js +4 -0
- package/es/FactBox/FactBox.js +6 -7
- package/lib/AudioPlayer/AudioPlayer.js +1 -1
- package/lib/Embed/ConceptEmbed.js +4 -1
- package/lib/Embed/GlossEmbed.js +6 -2
- package/lib/FactBox/FactBox.js +6 -7
- package/package.json +10 -16
- package/src/AudioPlayer/AudioPlayer.tsx +1 -1
- package/src/Embed/ConceptEmbed.tsx +26 -23
- package/src/Embed/GlossEmbed.tsx +4 -2
- package/src/FactBox/FactBox.tsx +4 -5
- package/src/FactBox/Factbox.stories.tsx +2 -2
- package/dist/all-aout.js +0 -0
- package/dist/all.css +0 -1
- package/es/all.css +0 -1
- package/es/styles.css +0 -1852
- package/lib/all.css +0 -1
- package/lib/styles.css +0 -1852
package/es/styles.css
DELETED
|
@@ -1,1852 +0,0 @@
|
|
|
1
|
-
@layer utilities {
|
|
2
|
-
@layer compositions {
|
|
3
|
-
.textStyle_body\.medium {
|
|
4
|
-
font-family: var(--fonts-sans);
|
|
5
|
-
font-weight: var(--font-weights-normal);
|
|
6
|
-
font-size: var(--font-sizes-small);
|
|
7
|
-
line-height: var(--line-heights-small);
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.textStyle_body\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
11
|
-
font-size: calc(var(--font-sizes-small) * 1.11);
|
|
12
|
-
line-height: calc(var(--line-heights-small) * 1.11);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.textStyle_body\.large {
|
|
16
|
-
font-family: var(--fonts-sans);
|
|
17
|
-
font-weight: var(--font-weights-normal);
|
|
18
|
-
font-size: var(--font-sizes-medium);
|
|
19
|
-
line-height: var(--line-heights-medium);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.textStyle_body\.large:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
23
|
-
font-size: calc(var(--font-sizes-medium) * 1.11);
|
|
24
|
-
line-height: calc(var(--line-heights-medium) * 1.11);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.textStyle_label\.medium {
|
|
28
|
-
font-family: var(--fonts-sans);
|
|
29
|
-
font-weight: var(--font-weights-normal);
|
|
30
|
-
font-size: var(--font-sizes-small);
|
|
31
|
-
line-height: var(--line-heights-small);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.textStyle_label\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
35
|
-
font-size: calc(var(--font-sizes-small) * 1.11);
|
|
36
|
-
line-height: calc(var(--line-heights-small) * 1.11);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.textStyle_label\.large {
|
|
40
|
-
font-family: var(--fonts-sans);
|
|
41
|
-
font-weight: var(--font-weights-normal);
|
|
42
|
-
font-size: var(--font-sizes-medium);
|
|
43
|
-
line-height: var(--line-heights-medium);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.textStyle_label\.large:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
47
|
-
font-size: calc(var(--font-sizes-medium) * 1.11);
|
|
48
|
-
line-height: calc(var(--line-heights-medium) * 1.11);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.textStyle_heading\.large {
|
|
52
|
-
letter-spacing: -1px;
|
|
53
|
-
font-family: var(--fonts-sans);
|
|
54
|
-
font-weight: var(--font-weights-bold);
|
|
55
|
-
font-size: var(--font-sizes-4xlarge);
|
|
56
|
-
line-height: var(--line-heights-4xlarge);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.textStyle_heading\.large:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
60
|
-
font-size: calc(var(--font-sizes-4xlarge) * 1.11);
|
|
61
|
-
line-height: calc(var(--line-heights-4xlarge) * 1.11);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.textStyle_title\.medium {
|
|
65
|
-
letter-spacing: -1px;
|
|
66
|
-
font-family: var(--fonts-sans);
|
|
67
|
-
font-weight: var(--font-weights-bold);
|
|
68
|
-
font-size: var(--font-sizes-large);
|
|
69
|
-
line-height: var(--line-heights-large);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.textStyle_title\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
73
|
-
font-size: calc(var(--font-sizes-large) * 1.11);
|
|
74
|
-
line-height: calc(var(--line-heights-large) * 1.11);
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.\[\&_a\]\:textStyle_label\.xsmall a {
|
|
78
|
-
font-family: var(--fonts-sans);
|
|
79
|
-
font-weight: var(--font-weights-normal);
|
|
80
|
-
font-size: var(--font-sizes-xxsmall);
|
|
81
|
-
line-height: var(--line-heights-xxsmall);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.\[\&_a\]\:textStyle_label\.xsmall a:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
85
|
-
font-size: calc(var(--font-sizes-xxsmall) * 1.11);
|
|
86
|
-
line-height: calc(var(--line-heights-xxsmall) * 1.11);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
@media screen and (max-width: 29.7475rem) {
|
|
90
|
-
.textStyle_heading\.large {
|
|
91
|
-
font-size: var(--font-sizes-3xlarge);
|
|
92
|
-
line-height: var(--line-heights-3xlarge);
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.textStyle_heading\.large:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
96
|
-
font-size: calc(var(--font-sizes-3xlarge) * 1.11);
|
|
97
|
-
line-height: calc(var(--line-heights-3xlarge) * 1.11);
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
@media screen and (max-width: 29.7475rem) {
|
|
102
|
-
.textStyle_title\.medium {
|
|
103
|
-
font-size: var(--font-sizes-medium);
|
|
104
|
-
line-height: var(--line-heights-small);
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.textStyle_title\.medium:where([lang='zh'], [lang='zh-Hans'], [lang='zh-Hant']):not([data-pinyin]) {
|
|
108
|
-
font-size: calc(var(--font-sizes-medium) * 1.11);
|
|
109
|
-
line-height: calc(var(--line-heights-small) * 1.11);
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.bg_background\.default {
|
|
115
|
-
background: var(--colors-background-default);
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.d_flex {
|
|
119
|
-
display: flex;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.c_text\.default {
|
|
123
|
-
color: var(--colors-text-default);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.w_100\% {
|
|
127
|
-
width: 100%;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.ov-wrap_break-word {
|
|
131
|
-
overflow-wrap: break-word;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.pos_relative {
|
|
135
|
-
position: relative;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.gap_medium {
|
|
139
|
-
gap: var(--spacing-medium);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.pbs_xxlarge {
|
|
143
|
-
padding-block-start: var(--spacing-xxlarge);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.hy_auto {
|
|
147
|
-
hyphens: auto;
|
|
148
|
-
-webkit-hyphens: auto;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.gap_xxlarge {
|
|
152
|
-
gap: var(--spacing-xxlarge);
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.min-h_xxlarge {
|
|
156
|
-
min-height: var(--sizes-xxlarge);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.mbs_medium {
|
|
160
|
-
margin-block-start: var(--spacing-medium);
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.pbs_xsmall {
|
|
164
|
-
padding-block-start: var(--spacing-xsmall);
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.bd-t_1px_solid {
|
|
168
|
-
border-top: 1px solid;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.gap_3xsmall {
|
|
172
|
-
gap: var(--spacing-3xsmall);
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.py_xsmall {
|
|
176
|
-
padding-block: var(--spacing-xsmall);
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.gap_xsmall {
|
|
180
|
-
gap: var(--spacing-xsmall);
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.li-s_none {
|
|
184
|
-
list-style: none;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.bd_1px_solid {
|
|
188
|
-
border: 1px solid;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.bdr_xsmall {
|
|
192
|
-
border-radius: var(--radii-xsmall);
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.bx-sh_full {
|
|
196
|
-
box-shadow: var(--shadows-full);
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.mbe_4xsmall {
|
|
200
|
-
margin-block-end: var(--spacing-4xsmall);
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.ov_hidden {
|
|
204
|
-
overflow: hidden;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
.flex_1_0_auto {
|
|
208
|
-
flex: 1 0 auto;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
.w_surface\.4xsmall {
|
|
212
|
-
width: var(--sizes-surface-4xsmall);
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
.h_surface\.4xsmall {
|
|
216
|
-
height: var(--sizes-surface-4xsmall);
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
.p_xsmall {
|
|
220
|
-
padding: var(--spacing-xsmall);
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.bd-bs_1px_solid {
|
|
224
|
-
border-block-start: 1px solid;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.py_medium {
|
|
228
|
-
padding-block: var(--spacing-medium);
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.px_xsmall {
|
|
232
|
-
padding-inline: var(--spacing-xsmall);
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.max-w_surface\.xlarge {
|
|
236
|
-
max-width: var(--sizes-surface-xlarge);
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.ms_3xsmall {
|
|
240
|
-
margin-inline-start: var(--spacing-3xsmall);
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.bdr-b_xsmall {
|
|
244
|
-
border-bottom-left-radius: var(--radii-xsmall);
|
|
245
|
-
border-bottom-right-radius: var(--radii-xsmall);
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.px_medium {
|
|
249
|
-
padding-inline: var(--spacing-medium);
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.grid-area_play {
|
|
253
|
-
grid-area: play;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.grid-area_forwards {
|
|
257
|
-
grid-area: forwards;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.grid-area_backwards {
|
|
261
|
-
grid-area: backwards;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.flex_1 {
|
|
265
|
-
flex: 1 1 0%;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.gap_xxsmall {
|
|
269
|
-
gap: var(--spacing-xxsmall);
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.grid-area_track {
|
|
273
|
-
grid-area: track;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
.min-w_xxlarge {
|
|
277
|
-
min-width: var(--sizes-xxlarge);
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
.grid-area_volume {
|
|
281
|
-
grid-area: volume;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.py_auto {
|
|
285
|
-
padding-block: auto;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
.px_auto {
|
|
289
|
-
padding-inline: auto;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.max-w_xxlarge {
|
|
293
|
-
max-width: var(--sizes-xxlarge);
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
.max-h_xxlarge {
|
|
297
|
-
max-height: var(--sizes-xxlarge);
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.grid-area_speed {
|
|
301
|
-
grid-area: speed;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
.h_surface\.3xsmall {
|
|
305
|
-
height: var(--sizes-surface-3xsmall);
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
.min-w_small {
|
|
309
|
-
min-width: var(--sizes-small);
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.px_small {
|
|
313
|
-
padding-inline: var(--spacing-small);
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.sr_true {
|
|
317
|
-
position: absolute;
|
|
318
|
-
width: 1px;
|
|
319
|
-
height: 1px;
|
|
320
|
-
padding: 0;
|
|
321
|
-
margin: -1px;
|
|
322
|
-
overflow: hidden;
|
|
323
|
-
clip: rect(0, 0, 0, 0);
|
|
324
|
-
white-space: nowrap;
|
|
325
|
-
border-width: 0;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.h_100\% {
|
|
329
|
-
height: 100%;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.py_xlarge {
|
|
333
|
-
padding-block: var(--spacing-xlarge);
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
.px_xxlarge {
|
|
337
|
-
padding-inline: var(--spacing-xxlarge);
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.tt_uppercase {
|
|
341
|
-
text-transform: uppercase;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
.obj-f_cover {
|
|
345
|
-
object-fit: cover;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.bd_0 {
|
|
349
|
-
border: 0;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.d_inline-block {
|
|
353
|
-
display: inline-block;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.w_fit-content {
|
|
357
|
-
width: fit-content;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
.max-w_8xl {
|
|
361
|
-
max-width: 8xl;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
.c_inherit {
|
|
365
|
-
color: inherit;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
.td_underline {
|
|
369
|
-
text-decoration: underline;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.cq-t_inline-size {
|
|
373
|
-
container-type: inline-size;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.d_grid {
|
|
377
|
-
display: grid;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
.h_215px {
|
|
381
|
-
height: 215px;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.bd-l_4px_solid {
|
|
385
|
-
border-left: 4px solid;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
.bx-s_border-box {
|
|
389
|
-
box-sizing: border-box;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.d_block {
|
|
393
|
-
display: block;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.white-space_pre {
|
|
397
|
-
white-space: pre;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
.d_inline {
|
|
401
|
-
display: inline;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
.min-w_surface\.xxsmall {
|
|
405
|
-
min-width: var(--sizes-surface-xxsmall);
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.p_medium {
|
|
409
|
-
padding: var(--spacing-medium);
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
.bg_surface\.default {
|
|
413
|
-
background: var(--colors-surface-default);
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
.z_base {
|
|
417
|
-
z-index: var(--z-index-base);
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.w_surface\.xsmall {
|
|
421
|
-
width: var(--sizes-surface-xsmall);
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
.h_surface\.xsmall {
|
|
425
|
-
height: var(--sizes-surface-xsmall);
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
.d_inline-flex {
|
|
429
|
-
display: inline-flex;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.bdr_100\% {
|
|
433
|
-
border-radius: 100%;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.c_var\(--icon-color\) {
|
|
437
|
-
color: var(--icon-color);
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
.w_20px {
|
|
441
|
-
width: 20px;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.h_20px {
|
|
445
|
-
height: 20px;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.w_34px {
|
|
449
|
-
width: 34px;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.h_34px {
|
|
453
|
-
height: 34px;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.w_50px {
|
|
457
|
-
width: 50px;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
.h_50px {
|
|
461
|
-
height: 50px;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
.bd_2px_solid {
|
|
465
|
-
border: 2px solid;
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
.pos_absolute {
|
|
469
|
-
position: absolute;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
.op_0 {
|
|
473
|
-
opacity: 0;
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
.cursor_pointer {
|
|
477
|
-
cursor: pointer;
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
.ms_xsmall {
|
|
481
|
-
margin-inline-start: var(--spacing-xsmall);
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
.h_auto {
|
|
485
|
-
height: auto;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
.w_surface\.xlarge {
|
|
489
|
-
width: var(--sizes-surface-xlarge);
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
.max-h_50vh {
|
|
493
|
-
max-height: 50vh;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
.z_docked {
|
|
497
|
-
z-index: var(--z-index-docked);
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.p_0 {
|
|
501
|
-
padding: 0;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
.w_medium {
|
|
505
|
-
width: var(--sizes-medium);
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
.h_medium {
|
|
509
|
-
height: var(--sizes-medium);
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.c_background\.default {
|
|
513
|
-
color: var(--colors-background-default);
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.bdr_large {
|
|
517
|
-
border-radius: var(--radii-large);
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.ov_visible {
|
|
521
|
-
overflow: visible;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.bd-b_1px_solid {
|
|
525
|
-
border-bottom: 1px solid;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.pbs_5xsmall {
|
|
529
|
-
padding-block-start: var(--spacing-5xsmall);
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.px_4xsmall {
|
|
533
|
-
padding-inline: var(--spacing-4xsmall);
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.ta_center {
|
|
537
|
-
text-align: center;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.my_xxlarge {
|
|
541
|
-
margin-block: var(--spacing-xxlarge);
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.clear_both {
|
|
545
|
-
clear: both;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.tu-o_2px {
|
|
549
|
-
text-underline-offset: 2px;
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
.py_small {
|
|
553
|
-
padding-block: var(--spacing-small);
|
|
554
|
-
}
|
|
555
|
-
|
|
556
|
-
.pe_medium {
|
|
557
|
-
padding-inline-end: var(--spacing-medium);
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
.ps_small {
|
|
561
|
-
padding-inline-start: var(--spacing-small);
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
.bg_surface\.infoSubtle {
|
|
565
|
-
background: var(--colors-surface-info-subtle);
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.bd-be_1px_solid {
|
|
569
|
-
border-block-end: 1px solid;
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
.gap_small {
|
|
573
|
-
gap: var(--spacing-small);
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
.px_0 {
|
|
577
|
-
padding-inline: 0;
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
.mbs_3xsmall {
|
|
581
|
-
margin-block-start: var(--spacing-3xsmall);
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.w_surface\.3xsmall {
|
|
585
|
-
width: var(--sizes-surface-3xsmall);
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
.pos_relative\! {
|
|
589
|
-
position: relative !important;
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
.w_83\.333\% {
|
|
593
|
-
width: 83.333%;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
.max-w_1150px {
|
|
597
|
-
max-width: 1150px;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
.max-w_1024px {
|
|
601
|
-
max-width: 1024px;
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
.min-h_100vh {
|
|
605
|
-
min-height: 100vh;
|
|
606
|
-
}
|
|
607
|
-
|
|
608
|
-
.c_text\.subtle {
|
|
609
|
-
color: var(--colors-text-subtle);
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
.bg_surface\.dangerSubtle {
|
|
613
|
-
background: var(--colors-surface-danger-subtle);
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
.white-space_pre-wrap {
|
|
617
|
-
white-space: pre-wrap;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
.c_text\.link {
|
|
621
|
-
color: var(--colors-text-link);
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
.white-space_nowrap {
|
|
625
|
-
white-space: nowrap;
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
.c_icon\.strong {
|
|
629
|
-
color: var(--colors-icon-strong);
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
.mbs_xsmall {
|
|
633
|
-
margin-block-start: var(--spacing-xsmall);
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
.mbe_medium {
|
|
637
|
-
margin-block-end: var(--spacing-medium);
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
.asp_1\/1 {
|
|
641
|
-
aspect-ratio: 1/1;
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
.max-h_inherit {
|
|
645
|
-
max-height: inherit;
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
.ov_auto {
|
|
649
|
-
overflow: auto;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
.gap_10px {
|
|
653
|
-
gap: 10px;
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
.flex-d_column {
|
|
657
|
-
flex-direction: column;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
.ai_center {
|
|
661
|
-
align-items: center;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.ai_flex-start {
|
|
665
|
-
align-items: flex-start;
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
.bd-c_stroke\.subtle {
|
|
669
|
-
border-color: var(--colors-stroke-subtle);
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
.flex-d_column-reverse {
|
|
673
|
-
flex-direction: column-reverse;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
.jc_space-between {
|
|
677
|
-
justify-content: space-between;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
.bd-c_stroke\.default {
|
|
681
|
-
border-color: var(--colors-stroke-default);
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
.as_flex-start {
|
|
685
|
-
align-self: flex-start;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.jc_center {
|
|
689
|
-
justify-content: center;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.bg-c_background\.default {
|
|
693
|
-
background-color: var(--colors-background-default);
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
.trs-dur_fast {
|
|
697
|
-
--transition-duration: var(--durations-fast);
|
|
698
|
-
transition-duration: var(--durations-fast);
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
.trs-prop_background-color\,_border-color\,_max-width {
|
|
702
|
-
--transition-prop: background-color, border-color, max-width;
|
|
703
|
-
transition-property: background-color, border-color, max-width;
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
.trs-tmf_default {
|
|
707
|
-
--transition-easing: var(--easings-default);
|
|
708
|
-
transition-timing-function: var(--easings-default);
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
.flex-wrap_wrap {
|
|
712
|
-
flex-wrap: wrap;
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
.ai_flex-end {
|
|
716
|
-
align-items: flex-end;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
.grid-tc_1fr {
|
|
720
|
-
grid-template-columns: 1fr;
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
.fw_bold {
|
|
724
|
-
font-weight: var(--font-weights-bold);
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.bd-l-c_stroke\.default {
|
|
728
|
-
border-left-color: var(--colors-stroke-default);
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
.ov-x_auto {
|
|
732
|
-
overflow-x: auto;
|
|
733
|
-
}
|
|
734
|
-
|
|
735
|
-
.ff_code {
|
|
736
|
-
font-family: var(--fonts-code);
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
.jc_flex-start {
|
|
740
|
-
justify-content: flex-start;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
.ff_serif {
|
|
744
|
-
font-family: var(--fonts-serif);
|
|
745
|
-
}
|
|
746
|
-
|
|
747
|
-
.bd-c_var\(--icon-color\) {
|
|
748
|
-
border-color: var(--icon-color);
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
.bg-c_var\(--background-color\) {
|
|
752
|
-
background-color: var(--background-color);
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
.left_-xxlarge {
|
|
756
|
-
left: calc(var(--spacing-xxlarge) * -1);
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
.top_-4xsmall {
|
|
760
|
-
top: calc(var(--spacing-4xsmall) * -1);
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
.ov-y_auto {
|
|
764
|
-
overflow-y: auto;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
.bg-c_surface\.disabled {
|
|
768
|
-
background-color: var(--colors-surface-disabled);
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.top_xsmall {
|
|
772
|
-
top: var(--spacing-xsmall);
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
.right_xsmall {
|
|
776
|
-
right: var(--spacing-xsmall);
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
.bd-c_background\.default {
|
|
780
|
-
border-color: var(--colors-background-default);
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
.trs-prop_transform\,_background-color\,_color {
|
|
784
|
-
--transition-prop: transform, background-color, color;
|
|
785
|
-
transition-property: transform, background-color, color;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
.trs-dur_normal {
|
|
789
|
-
--transition-duration: var(--durations-normal);
|
|
790
|
-
transition-duration: var(--durations-normal);
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
.trs-tmf_ease-out {
|
|
794
|
-
--transition-easing: ease-out;
|
|
795
|
-
transition-timing-function: ease-out;
|
|
796
|
-
}
|
|
797
|
-
|
|
798
|
-
.bg-c_surface\.action {
|
|
799
|
-
background-color: var(--colors-surface-action);
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
.border-style_dashed {
|
|
803
|
-
border-style: dashed;
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.bd-c_stroke\.hover {
|
|
807
|
-
border-color: var(--colors-stroke-hover);
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
.mb_medium {
|
|
811
|
-
margin-bottom: var(--spacing-medium);
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
.mt_3xsmall {
|
|
815
|
-
margin-top: var(--spacing-3xsmall);
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.ml_3xsmall {
|
|
819
|
-
margin-left: var(--spacing-3xsmall);
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
.grid-tr_0fr {
|
|
823
|
-
grid-template-rows: 0fr;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
.trs-prop_grid-template-rows {
|
|
827
|
-
--transition-prop: grid-template-rows;
|
|
828
|
-
transition-property: grid-template-rows;
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
.trs-dur_slow {
|
|
832
|
-
--transition-duration: var(--durations-slow);
|
|
833
|
-
transition-duration: var(--durations-slow);
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
.trs-tmf_ease-in-out {
|
|
837
|
-
--transition-easing: ease-in-out;
|
|
838
|
-
transition-timing-function: ease-in-out;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
.justify-items_center {
|
|
842
|
-
justify-items: center;
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
.bottom_-medium {
|
|
846
|
-
bottom: calc(var(--spacing-medium) * -1);
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
.flex-d_row {
|
|
850
|
-
flex-direction: row;
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
.font-style_italic {
|
|
854
|
-
font-style: italic;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.grid-rg_large {
|
|
858
|
-
grid-row-gap: var(--spacing-large);
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
.grid-cg_medium {
|
|
862
|
-
grid-column-gap: var(--spacing-medium);
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
.bg-c_background\.subtle {
|
|
866
|
-
background-color: var(--colors-background-subtle);
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.grid-tc_repeat\(2\,_minmax\(0\,_1fr\)\) {
|
|
870
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
.bg-c_surface\.default {
|
|
874
|
-
background-color: var(--colors-surface-default);
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
.bg-c_transparent {
|
|
878
|
-
background-color: transparent;
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
.bd-c_surface\.brand\.2 {
|
|
882
|
-
border-color: var(--colors-surface-brand-2);
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
.right_auto\! {
|
|
886
|
-
right: auto !important;
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.left_8\.333\% {
|
|
890
|
-
left: 8.333%;
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
.ml_auto {
|
|
894
|
-
margin-left: auto;
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
.mr_auto {
|
|
898
|
-
margin-right: auto;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.pl_18px {
|
|
902
|
-
padding-left: 18px;
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
.pr_18px {
|
|
906
|
-
padding-right: 18px;
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
.bd-c_stroke\.error {
|
|
910
|
-
border-color: var(--colors-stroke-error);
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.grid-tc_repeat\(2\,_1fr\) {
|
|
914
|
-
grid-template-columns: repeat(2, 1fr);
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
.\[\&_mjx-stretchy-v_\>_mjx-ext_\>_mjx-c\]\:trf_scaleY\(100\)_translateY\(0\.075em\) mjx-stretchy-v > mjx-ext > mjx-c {
|
|
918
|
-
transform: scaleY(100) translateY(0.075em);
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
.after\:d_table::after {
|
|
922
|
-
display: table;
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
.after\:clear_both::after {
|
|
926
|
-
clear: both;
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
.\[\&_h1\]\:ov-wrap_anywhere h1 {
|
|
930
|
-
overflow-wrap: anywhere;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
.\[\&_\>_\:is\(\:last-child\)\]\:pbe_5xlarge > :is(:last-child) {
|
|
934
|
-
padding-block-end: var(--spacing-5xlarge);
|
|
935
|
-
}
|
|
936
|
-
|
|
937
|
-
.\[\&_img\]\:w_100\% img {
|
|
938
|
-
width: 100%;
|
|
939
|
-
}
|
|
940
|
-
|
|
941
|
-
.\[\&_img\]\:h_100\% img {
|
|
942
|
-
height: 100%;
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
.\[\&_img\]\:obj-f_cover img {
|
|
946
|
-
object-fit: cover;
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
.\[\&_span_\>_\*\]\:white-space_pre-wrap span > * {
|
|
950
|
-
white-space: pre-wrap;
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
.\[\&_span\]\:flex_1 span {
|
|
954
|
-
flex: 1 1 0%;
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
.\[\&_\.linenumber\]\:d_inline-block .linenumber {
|
|
958
|
-
display: inline-block;
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
.\[\&_\.linenumber\]\:py_0 .linenumber {
|
|
962
|
-
padding-block: 0;
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
.\[\&_\.linenumber\]\:px_small .linenumber {
|
|
966
|
-
padding-inline: var(--spacing-small);
|
|
967
|
-
}
|
|
968
|
-
|
|
969
|
-
.\[\&_\.linenumber\]\:bd-r_1px_solid .linenumber {
|
|
970
|
-
border-right: 1px solid;
|
|
971
|
-
}
|
|
972
|
-
|
|
973
|
-
.\[\&_\.linenumber\]\:w_xxlarge .linenumber {
|
|
974
|
-
width: var(--sizes-xxlarge);
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
.\[\&_\.linenumber\]\:ta_right .linenumber {
|
|
978
|
-
text-align: right;
|
|
979
|
-
}
|
|
980
|
-
|
|
981
|
-
.\[\&_\.linenumber\]\:me_xsmall .linenumber {
|
|
982
|
-
margin-inline-end: var(--spacing-xsmall);
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
.\[\&_\.linenumber\[data-first\]\]\:pbs_xsmall .linenumber[data-first] {
|
|
986
|
-
padding-block-start: var(--spacing-xsmall);
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
.\[\&_\.linenumber\[data-last\]\]\:pbe_xsmall .linenumber[data-last] {
|
|
990
|
-
padding-block-end: var(--spacing-xsmall);
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.comment,.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.block-comment,.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.prolog,.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.doctype,.\[\&_\.token\.comment\,_\.token\.block-comment\,_\.token\.prolog\,_\.token\.doctype\,_\.token\.cdata\]\:c_\#7d8b99 .token.cdata {
|
|
994
|
-
color: #7d8b99;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
|
-
.\[\&_\.token\.punctuation\]\:c_\#5f6364 .token.punctuation {
|
|
998
|
-
color: #5f6364;
|
|
999
|
-
}
|
|
1000
|
-
|
|
1001
|
-
.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.property,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.tag,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.boolean,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.number,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.function-name,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.constant,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.symbol,.\[\&_\.token\.property\,_\.token\.tag\,_\.token\.boolean\,_\.token\.number\,_\.token\.function-name\,_\.token\.constant\,_\.token\.symbol\,_\.token\.deleted\]\:c_\#c92c2c .token.deleted {
|
|
1002
|
-
color: #c92c2c;
|
|
1003
|
-
}
|
|
1004
|
-
|
|
1005
|
-
.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.selector,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.attr-name,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.string,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.char,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.function,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.builtin,.\[\&_\.token\.selector\,_\.token\.attr-name\,_\.token\.string\,_\.token\.char\,_\.token\.function\,_\.token\.builtin\,_\.token\.inserted\]\:c_\#2f9c0a .token.inserted {
|
|
1006
|
-
color: #2f9c0a;
|
|
1007
|
-
}
|
|
1008
|
-
|
|
1009
|
-
.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:c_\#a67f59 .token.operator,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:c_\#a67f59 .token.entity,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:c_\#a67f59 .token.url,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:c_\#a67f59 .token.variable {
|
|
1010
|
-
color: #a67f59;
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
|
-
.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .token.operator,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .token.entity,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .token.url,.\[\&_\.token\.operator\,_\.token\.entity\,_\.token\.url\,_\.token\.variable\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .token.variable {
|
|
1014
|
-
background: rgba(255, 255, 255, 0.5);
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
|
-
.\[\&_\.token\.atrule\,_\.token\.attr-value\,_\.token\.keyword\,_\.token\.class-name\]\:c_\#1990b8 .token.atrule,.\[\&_\.token\.atrule\,_\.token\.attr-value\,_\.token\.keyword\,_\.token\.class-name\]\:c_\#1990b8 .token.attr-value,.\[\&_\.token\.atrule\,_\.token\.attr-value\,_\.token\.keyword\,_\.token\.class-name\]\:c_\#1990b8 .token.keyword,.\[\&_\.token\.atrule\,_\.token\.attr-value\,_\.token\.keyword\,_\.token\.class-name\]\:c_\#1990b8 .token.class-name {
|
|
1018
|
-
color: #1990b8;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
.\[\&_\.token\.regex\,_\.token\.important\]\:c_\#e90 .token.regex,.\[\&_\.token\.regex\,_\.token\.important\]\:c_\#e90 .token.important {
|
|
1022
|
-
color: #e90;
|
|
1023
|
-
}
|
|
1024
|
-
|
|
1025
|
-
.\[\&_\.language-css_\.token\.string\,_\.style_\.token\.string\]\:c_\#a67f59 .language-css .token.string,.\[\&_\.language-css_\.token\.string\,_\.style_\.token\.string\]\:c_\#a67f59 .style .token.string {
|
|
1026
|
-
color: #a67f59;
|
|
1027
|
-
}
|
|
1028
|
-
|
|
1029
|
-
.\[\&_\.language-css_\.token\.string\,_\.style_\.token\.string\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .language-css .token.string,.\[\&_\.language-css_\.token\.string\,_\.style_\.token\.string\]\:bg_rgba\(255\,_255\,_255\,_0\.5\) .style .token.string {
|
|
1030
|
-
background: rgba(255, 255, 255, 0.5);
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
.\[\&_\.token\.entity\]\:cursor_help .token.entity {
|
|
1034
|
-
cursor: help;
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
.\[\&_\.token\.namespace\]\:op_0\.7 .token.namespace {
|
|
1038
|
-
opacity: 0.7;
|
|
1039
|
-
}
|
|
1040
|
-
|
|
1041
|
-
.\[\&_p\]\:d_inline p {
|
|
1042
|
-
display: inline;
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
.before\:pos_absolute::before {
|
|
1046
|
-
position: absolute;
|
|
1047
|
-
}
|
|
1048
|
-
|
|
1049
|
-
.before\:h_calc\(100\%_\+_50px\)::before {
|
|
1050
|
-
height: calc(100% + 50px);
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
.before\:w_surface\.3xlarge::before {
|
|
1054
|
-
width: var(--sizes-surface-3xlarge);
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
.before\:trf_rotate\(-4deg\)::before {
|
|
1058
|
-
transform: rotate(-4deg);
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
.before\:z_hide::before {
|
|
1062
|
-
z-index: var(--z-index-hide);
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
.\[\&_svg\]\:w_10px svg {
|
|
1066
|
-
width: 10px;
|
|
1067
|
-
}
|
|
1068
|
-
|
|
1069
|
-
.\[\&_svg\]\:h_10px svg {
|
|
1070
|
-
height: 10px;
|
|
1071
|
-
}
|
|
1072
|
-
|
|
1073
|
-
.\[\&_svg\]\:w_25px svg {
|
|
1074
|
-
width: 25px;
|
|
1075
|
-
}
|
|
1076
|
-
|
|
1077
|
-
.\[\&_svg\]\:h_25px svg {
|
|
1078
|
-
height: 25px;
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
.\[\&_\>_\*\:not\(\:where\(\:first-child\)\)\]\:mbs_xsmall > *:not(:where(:first-child)) {
|
|
1082
|
-
margin-block-start: var(--spacing-xsmall);
|
|
1083
|
-
}
|
|
1084
|
-
|
|
1085
|
-
.\[\&_svg\]\:fill_text\.subtle svg {
|
|
1086
|
-
fill: var(--colors-text-subtle);
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
.\[\&_svg\]\:h_90\% svg {
|
|
1090
|
-
height: 90%;
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
|
-
.\[\&_svg\]\:w_90\% svg {
|
|
1094
|
-
width: 90%;
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
.\[\&\[data-embed-type\=\'audio\'\]\]\:h_surface\.3xsmall[data-embed-type='audio'] {
|
|
1098
|
-
height: var(--sizes-surface-3xsmall);
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
.\[\&_\>_\*\:not\(\:first-child\)\]\:mbs_3xsmall > *:not(:first-child) {
|
|
1102
|
-
margin-block-start: var(--spacing-3xsmall);
|
|
1103
|
-
}
|
|
1104
|
-
|
|
1105
|
-
.\[\&_iframe\]\:h_auto iframe {
|
|
1106
|
-
height: auto;
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
.\[\&_iframe\]\:w_100\% iframe {
|
|
1110
|
-
width: 100%;
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1113
|
-
.\[\&_a\]\:ms_1 a {
|
|
1114
|
-
margin-inline-start: var(--spacing-1);
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
.\[\&_img\]\:bdr_0 img {
|
|
1118
|
-
border-radius: 0;
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
.\[\&_a\]\:c_text\.strong a {
|
|
1122
|
-
color: var(--colors-text-strong);
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
.\[\&_\>_div\]\:min-h_surface\.3xsmall > div {
|
|
1126
|
-
min-height: var(--sizes-surface-3xsmall);
|
|
1127
|
-
}
|
|
1128
|
-
|
|
1129
|
-
.\[\&_\>_div\]\:ov_hidden > div {
|
|
1130
|
-
overflow: hidden;
|
|
1131
|
-
}
|
|
1132
|
-
|
|
1133
|
-
.\[\&_\:first-child\]\:mbs_0 :first-child {
|
|
1134
|
-
margin-block-start: 0;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
.after\:ta_center::after {
|
|
1138
|
-
text-align: center;
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
.after\:pos_absolute::after {
|
|
1142
|
-
position: absolute;
|
|
1143
|
-
}
|
|
1144
|
-
|
|
1145
|
-
.after\:inset_0::after {
|
|
1146
|
-
inset: 0;
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
.after\:grad-from_surface\.default\/00::after {
|
|
1150
|
-
--mix---gradient-from: color-mix(in srgb, var(--colors-surface-default) 00%, transparent);
|
|
1151
|
-
--gradient-from: var(--mix---gradient-from, var(--colors-surface-default));
|
|
1152
|
-
}
|
|
1153
|
-
|
|
1154
|
-
.after\:grad-to_surface\.default::after {
|
|
1155
|
-
--gradient-to: var(--colors-surface-default);
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
.after\:bg-grad_to-b::after {
|
|
1159
|
-
--gradient-stops: var(--gradient-via-stops, var(--gradient-from) var(--gradient-from-position), var(--gradient-to) var(--gradient-to-position));
|
|
1160
|
-
--gradient: var(--gradient-via-stops, var(--gradient-stops));
|
|
1161
|
-
background-image: linear-gradient(to bottom, var(--gradient));
|
|
1162
|
-
}
|
|
1163
|
-
|
|
1164
|
-
.after\:op_1::after {
|
|
1165
|
-
opacity: 1;
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
|
-
.after\:z_base::after {
|
|
1169
|
-
z-index: var(--z-index-base);
|
|
1170
|
-
}
|
|
1171
|
-
|
|
1172
|
-
.open\:pbe_xsmall:is([open], [data-open], [data-state="open"]) {
|
|
1173
|
-
padding-block-end: var(--spacing-xsmall);
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
.before\:inset_0::before {
|
|
1177
|
-
inset: 0;
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
.before\:z_0::before {
|
|
1181
|
-
z-index: 0;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.first\:bg_surface\.brand\.1\.subtle:first-child {
|
|
1185
|
-
background: var(--colors-surface-brand-1-subtle);
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.\[\&_\>_div\]\:pos_sticky > div {
|
|
1189
|
-
position: sticky;
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
.after\:d_block\!::after {
|
|
1193
|
-
display: block !important;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
.after\:clear_both\!::after {
|
|
1197
|
-
clear: both !important;
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
|
-
.\[\&_h3\]\:td_underline h3 {
|
|
1201
|
-
text-decoration: underline;
|
|
1202
|
-
}
|
|
1203
|
-
|
|
1204
|
-
.\[\&_span\]\:ov_hidden span {
|
|
1205
|
-
overflow: hidden;
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
.\[\&_span\]\:tov_ellipsis span {
|
|
1209
|
-
text-overflow: ellipsis;
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
|
-
.after\:content_0::after {
|
|
1213
|
-
content: 0;
|
|
1214
|
-
}
|
|
1215
|
-
|
|
1216
|
-
.\[\&_\.linenumber\]\:bd-c_stroke\.subtle .linenumber {
|
|
1217
|
-
border-color: var(--colors-stroke-subtle);
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
|
-
.\[\&_\.token\.important\]\:fw_normal .token.important {
|
|
1221
|
-
font-weight: var(--font-weights-normal);
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
.\[\&_\.token\.bold\]\:fw_bold .token.bold {
|
|
1225
|
-
font-weight: var(--font-weights-bold);
|
|
1226
|
-
}
|
|
1227
|
-
|
|
1228
|
-
.\[\&_\.token\.italic\]\:font-style_italic .token.italic {
|
|
1229
|
-
font-style: italic;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
.before\:content_\"\"::before {
|
|
1233
|
-
content: "";
|
|
1234
|
-
}
|
|
1235
|
-
|
|
1236
|
-
.before\:top_-60px::before {
|
|
1237
|
-
top: -60px;
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
.before\:left_-50px::before {
|
|
1241
|
-
left: -50px;
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
.before\:right_0::before {
|
|
1245
|
-
right: 0;
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
.before\:bottom_0::before {
|
|
1249
|
-
bottom: 0;
|
|
1250
|
-
}
|
|
1251
|
-
|
|
1252
|
-
.before\:bg-c_surface\.brand\.3::before {
|
|
1253
|
-
background-color: var(--colors-surface-brand-3);
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
.before\:bg-c_surface\.brand\.3\.moderate::before {
|
|
1257
|
-
background-color: var(--colors-surface-brand-3-moderate);
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
.before\:bg-c_surface\.brand\.3\.subtle::before {
|
|
1261
|
-
background-color: var(--colors-surface-brand-3-subtle);
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
.\[\&_svg\]\:trs-prop_transform svg {
|
|
1265
|
-
--transition-prop: transform;
|
|
1266
|
-
transition-property: transform;
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
.\[\&_svg\]\:trs-dur_normal svg {
|
|
1270
|
-
--transition-duration: var(--durations-normal);
|
|
1271
|
-
transition-duration: var(--durations-normal);
|
|
1272
|
-
}
|
|
1273
|
-
|
|
1274
|
-
.\[\&_svg\]\:trs-tmf_ease-out svg {
|
|
1275
|
-
--transition-easing: ease-out;
|
|
1276
|
-
transition-timing-function: ease-out;
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
|
-
.\[\&_h1\]\:mt_0 h1 {
|
|
1280
|
-
margin-top: 0;
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
.open\:grid-tr_1fr:is([open], [data-open], [data-state="open"]) {
|
|
1284
|
-
grid-template-rows: 1fr;
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
.after\:content_\"\"::after {
|
|
1288
|
-
content: "";
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
.after\:trs-prop_opacity::after {
|
|
1292
|
-
--transition-prop: opacity;
|
|
1293
|
-
transition-property: opacity;
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
.after\:trs-dur_slow::after {
|
|
1297
|
-
--transition-duration: var(--durations-slow);
|
|
1298
|
-
transition-duration: var(--durations-slow);
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1301
|
-
.after\:trs-tmf_ease-out::after {
|
|
1302
|
-
--transition-easing: ease-out;
|
|
1303
|
-
transition-timing-function: ease-out;
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
.\[\&_svg\]\:trs-tmf_ease-in-out svg {
|
|
1307
|
-
--transition-easing: ease-in-out;
|
|
1308
|
-
transition-timing-function: ease-in-out;
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
.\[\&_svg\]\:trs-dur_fast svg {
|
|
1312
|
-
--transition-duration: var(--durations-fast);
|
|
1313
|
-
transition-duration: var(--durations-fast);
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
.first\:bd-c_stroke\.default:first-child {
|
|
1317
|
-
border-color: var(--colors-stroke-default);
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
.\[\&_\>_div\]\:top_var\(--masthead-height\,_0px\) > div {
|
|
1321
|
-
top: var(--masthead-height, 0px);
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
|
-
.after\:content_\"\"\!::after {
|
|
1325
|
-
content: "" !important;
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
|
-
.\[\&_\[data-forward\]\]\:trs-prop_width\,_height [data-forward] {
|
|
1329
|
-
--transition-prop: width, height;
|
|
1330
|
-
transition-property: width, height;
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
.\[\&_\[data-forward\]\]\:trs-tmf_ease-in-out [data-forward] {
|
|
1334
|
-
--transition-easing: ease-in-out;
|
|
1335
|
-
transition-timing-function: ease-in-out;
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
.\[\&_\[data-forward\]\]\:trs-dur_fast [data-forward] {
|
|
1339
|
-
--transition-duration: var(--durations-fast);
|
|
1340
|
-
transition-duration: var(--durations-fast);
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
.focusWithin\:td_none:focus-within {
|
|
1344
|
-
text-decoration: none;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
.focusVisible\:td_none:is(:focus-visible, [data-focus-visible]) {
|
|
1348
|
-
text-decoration: none;
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
.\[\&\:focus\,_\&\:focus-visible\,_\&\:active\]\:op_1:focus,.\[\&\:focus\,_\&\:focus-visible\,_\&\:active\]\:op_1:focus-visible,.\[\&\:focus\,_\&\:focus-visible\,_\&\:active\]\:op_1:active {
|
|
1352
|
-
opacity: 1;
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
.focusVisible\:ring_none:is(:focus-visible, [data-focus-visible]) {
|
|
1356
|
-
outline: 2px solid transparent;
|
|
1357
|
-
outline-offset: 2px;
|
|
1358
|
-
}
|
|
1359
|
-
|
|
1360
|
-
.focusVisible\:bdr_0:is(:focus-visible, [data-focus-visible]) {
|
|
1361
|
-
border-radius: 0;
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
.\[\&\:hover\,_\&\:focus-visible\]\:bd-c_stroke\.hover:hover,.\[\&\:hover\,_\&\:focus-visible\]\:bd-c_stroke\.hover:focus-visible {
|
|
1365
|
-
border-color: var(--colors-stroke-hover);
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
.\[\&\:hover\,_\&\:focus-visible\]\:bg-c_surface\.actionSubtle\.hover:hover,.\[\&\:hover\,_\&\:focus-visible\]\:bg-c_surface\.actionSubtle\.hover:focus-visible {
|
|
1369
|
-
background-color: var(--colors-surface-action-subtle-hover);
|
|
1370
|
-
}
|
|
1371
|
-
|
|
1372
|
-
.hover\:td_none:is(:hover, [data-hover]) {
|
|
1373
|
-
text-decoration: none;
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
|
-
.hover\:bg_surface\.actionSubtle\.hover:is(:hover, [data-hover]) {
|
|
1377
|
-
background: var(--colors-surface-action-subtle-hover);
|
|
1378
|
-
}
|
|
1379
|
-
|
|
1380
|
-
.hover\:bd-c_text\.link:is(:hover, [data-hover]) {
|
|
1381
|
-
border-color: var(--colors-text-link);
|
|
1382
|
-
}
|
|
1383
|
-
|
|
1384
|
-
.hover\:bg-c_surface\.infoSubtle\.hover:is(:hover, [data-hover]) {
|
|
1385
|
-
background-color: var(--colors-surface-info-subtle-hover);
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
|
-
.active\:bg_surface\.actionSubtle\.active:is(:active, [data-active]) {
|
|
1389
|
-
background: var(--colors-surface-action-subtle-active);
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
|
-
.active\:bd-c_text\.link:is(:active, [data-active]) {
|
|
1393
|
-
border-color: var(--colors-text-link);
|
|
1394
|
-
}
|
|
1395
|
-
|
|
1396
|
-
.\[\&_button\[data-expanded\=\'true\'\]\]\:\[\&_svg\]\:trf_rotate\(-45deg\) button[data-expanded='true'] svg {
|
|
1397
|
-
transform: rotate(-45deg);
|
|
1398
|
-
}
|
|
1399
|
-
|
|
1400
|
-
.open\:after\:op_0:is([open], [data-open], [data-state="open"])::after {
|
|
1401
|
-
opacity: 0;
|
|
1402
|
-
}
|
|
1403
|
-
|
|
1404
|
-
.open\:after\:z_hide:is([open], [data-open], [data-state="open"])::after {
|
|
1405
|
-
z-index: var(--z-index-hide);
|
|
1406
|
-
}
|
|
1407
|
-
|
|
1408
|
-
.open\:\[\&_svg\]\:trf_rotate\(180deg\):is([open], [data-open], [data-state="open"]) svg {
|
|
1409
|
-
transform: rotate(180deg);
|
|
1410
|
-
}
|
|
1411
|
-
|
|
1412
|
-
.first\:\[\&_p\]\:fw_bold:first-child p {
|
|
1413
|
-
font-weight: var(--font-weights-bold);
|
|
1414
|
-
}
|
|
1415
|
-
|
|
1416
|
-
.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h1,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h2,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h3,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h4,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h5,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:hover h6,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h1,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h2,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h3,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h4,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h5,.\[\&\:hover\,_\&\:focus-visible\]\:\[\&_h1\,_h2\,_h3\,_h4\,_h5\,_h6\]\:td_underline:focus-visible h6 {
|
|
1417
|
-
text-decoration: underline;
|
|
1418
|
-
}
|
|
1419
|
-
|
|
1420
|
-
.focusVisible\:after\:pos_absolute:is(:focus-visible, [data-focus-visible])::after {
|
|
1421
|
-
position: absolute;
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
.focusVisible\:after\:inset_0:is(:focus-visible, [data-focus-visible])::after {
|
|
1425
|
-
inset: 0;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
.focusVisible\:after\:ring_3px:is(:focus-visible, [data-focus-visible])::after {
|
|
1429
|
-
outline: 3px;
|
|
1430
|
-
}
|
|
1431
|
-
|
|
1432
|
-
.focusVisible\:after\:bdr_xsmall:is(:focus-visible, [data-focus-visible])::after {
|
|
1433
|
-
border-radius: var(--radii-xsmall);
|
|
1434
|
-
}
|
|
1435
|
-
|
|
1436
|
-
.focusVisible\:after\:ring-o_3px:is(:focus-visible, [data-focus-visible])::after {
|
|
1437
|
-
outline-offset: 3px;
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
|
-
.focusVisible\:after\:content_\"\":is(:focus-visible, [data-focus-visible])::after {
|
|
1441
|
-
content: "";
|
|
1442
|
-
}
|
|
1443
|
-
|
|
1444
|
-
.focusVisible\:after\:ring-c_stroke\.default:is(:focus-visible, [data-focus-visible])::after {
|
|
1445
|
-
outline-color: var(--colors-stroke-default);
|
|
1446
|
-
}
|
|
1447
|
-
|
|
1448
|
-
.focusVisible\:after\:outline-style_solid:is(:focus-visible, [data-focus-visible])::after {
|
|
1449
|
-
outline-style: solid;
|
|
1450
|
-
}
|
|
1451
|
-
|
|
1452
|
-
.hover\:\[\&_\[data-copy-button\]\]\:op_1:is(:hover, [data-hover]) [data-copy-button] {
|
|
1453
|
-
opacity: 1;
|
|
1454
|
-
}
|
|
1455
|
-
|
|
1456
|
-
.hover\:\[\&_\[data-copy-button\]\]\:cursor_pointer:is(:hover, [data-hover]) [data-copy-button] {
|
|
1457
|
-
cursor: pointer;
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
.hover\:\[\&_\[data-byline-button\]\]\:bg_background\.default:is(:hover, [data-hover]) [data-byline-button] {
|
|
1461
|
-
background: var(--colors-background-default);
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
|
-
.hover\:\[\&_button\[data-expanded\]\]\:trf_scale\(1\.2\):is(:hover, [data-hover]) button[data-expanded] {
|
|
1465
|
-
transform: scale(1.2);
|
|
1466
|
-
}
|
|
1467
|
-
|
|
1468
|
-
.hover\:\[\&_h3\]\:td_none:is(:hover, [data-hover]) h3 {
|
|
1469
|
-
text-decoration: none;
|
|
1470
|
-
}
|
|
1471
|
-
|
|
1472
|
-
.hover\:\[\&_\[data-forward\]\]\:w_large:is(:hover, [data-hover]) [data-forward] {
|
|
1473
|
-
width: var(--sizes-large);
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
.hover\:\[\&_\[data-forward\]\]\:h_large:is(:hover, [data-hover]) [data-forward] {
|
|
1477
|
-
height: var(--sizes-large);
|
|
1478
|
-
}
|
|
1479
|
-
|
|
1480
|
-
@supports not (container-type: inline-size) {
|
|
1481
|
-
@media screen and (min-width: 37.5625rem) {
|
|
1482
|
-
.\[\@supports_not_\(container-type\:_inline-size\)\]\:tablet\:h_265px {
|
|
1483
|
-
height: 265px;
|
|
1484
|
-
}
|
|
1485
|
-
}
|
|
1486
|
-
}
|
|
1487
|
-
|
|
1488
|
-
@supports not (container-type: inline-size) {
|
|
1489
|
-
@media screen and (min-width: 48rem) {
|
|
1490
|
-
.\[\@supports_not_\(container-type\:_inline-size\)\]\:tabletWide\:h_340px {
|
|
1491
|
-
height: 340px;
|
|
1492
|
-
}
|
|
1493
|
-
.\[\@supports_not_\(container-type\:_inline-size\)\]\:tabletWide\:grid-tc_minmax\(230px\,_455px\)_auto {
|
|
1494
|
-
grid-template-columns: minmax(230px, 455px) auto;
|
|
1495
|
-
}
|
|
1496
|
-
.\[\@supports_not_\(container-type\:_inline-size\)\]\:tabletWide\:grid-tc_auto_minmax\(230px\,_455px\) {
|
|
1497
|
-
grid-template-columns: auto minmax(230px, 455px);
|
|
1498
|
-
}
|
|
1499
|
-
}
|
|
1500
|
-
}
|
|
1501
|
-
|
|
1502
|
-
@media screen and (min-width: 29.75rem) {
|
|
1503
|
-
.mobileWide\:d_none {
|
|
1504
|
-
display: none;
|
|
1505
|
-
}
|
|
1506
|
-
.mobileWide\:pl_medium {
|
|
1507
|
-
padding-left: var(--spacing-medium);
|
|
1508
|
-
}
|
|
1509
|
-
.mobileWide\:pr_medium {
|
|
1510
|
-
padding-right: var(--spacing-medium);
|
|
1511
|
-
}
|
|
1512
|
-
}
|
|
1513
|
-
|
|
1514
|
-
@container (min-width: 37.5625rem) {
|
|
1515
|
-
.\@\/tablet\:h_340px {
|
|
1516
|
-
height: 340px;
|
|
1517
|
-
}
|
|
1518
|
-
.\@\/tablet\:grid-tc_minmax\(230px\,_455px\)_auto {
|
|
1519
|
-
grid-template-columns: minmax(230px, 455px) auto;
|
|
1520
|
-
}
|
|
1521
|
-
.\@\/tablet\:grid-tc_auto_minmax\(230px\,_455px\) {
|
|
1522
|
-
grid-template-columns: auto minmax(230px, 455px);
|
|
1523
|
-
}
|
|
1524
|
-
}
|
|
1525
|
-
|
|
1526
|
-
@media screen and (min-width: 37.5625rem) {
|
|
1527
|
-
.tablet\:px_medium {
|
|
1528
|
-
padding-inline: var(--spacing-medium);
|
|
1529
|
-
}
|
|
1530
|
-
.tablet\:d_block {
|
|
1531
|
-
display: block;
|
|
1532
|
-
}
|
|
1533
|
-
.tablet\:ov_hidden {
|
|
1534
|
-
overflow: hidden;
|
|
1535
|
-
}
|
|
1536
|
-
.tablet\:pos_relative {
|
|
1537
|
-
position: relative;
|
|
1538
|
-
}
|
|
1539
|
-
.tablet\:lc_4 {
|
|
1540
|
-
overflow: hidden;
|
|
1541
|
-
display: -webkit-box;
|
|
1542
|
-
-webkit-line-clamp: 4;
|
|
1543
|
-
-webkit-box-orient: vertical;
|
|
1544
|
-
}
|
|
1545
|
-
.tablet\:box-orient_vertical {
|
|
1546
|
-
box-orient: vertical;
|
|
1547
|
-
}
|
|
1548
|
-
.tablet\:h_26px {
|
|
1549
|
-
height: 26px;
|
|
1550
|
-
}
|
|
1551
|
-
.tablet\:w_26px {
|
|
1552
|
-
width: 26px;
|
|
1553
|
-
}
|
|
1554
|
-
.tablet\:pos_relative\! {
|
|
1555
|
-
position: relative !important;
|
|
1556
|
-
}
|
|
1557
|
-
.tablet\:w_83\.333\% {
|
|
1558
|
-
width: 83.333%;
|
|
1559
|
-
}
|
|
1560
|
-
.tablet\:ai_unset {
|
|
1561
|
-
align-items: unset;
|
|
1562
|
-
}
|
|
1563
|
-
.tablet\:flex-d_row {
|
|
1564
|
-
flex-direction: row;
|
|
1565
|
-
}
|
|
1566
|
-
.tablet\:mt_xxlarge {
|
|
1567
|
-
margin-top: var(--spacing-xxlarge);
|
|
1568
|
-
}
|
|
1569
|
-
.tablet\:mb_xxlarge {
|
|
1570
|
-
margin-bottom: var(--spacing-xxlarge);
|
|
1571
|
-
}
|
|
1572
|
-
.tablet\:right_auto\! {
|
|
1573
|
-
right: auto !important;
|
|
1574
|
-
}
|
|
1575
|
-
.tablet\:left_8\.333\% {
|
|
1576
|
-
left: 8.333%;
|
|
1577
|
-
}
|
|
1578
|
-
.tablet\:bg-c_\#f8f8f8 {
|
|
1579
|
-
background-color: #f8f8f8;
|
|
1580
|
-
}
|
|
1581
|
-
.\[\&\[data-has-image\=\'true\'\]\]\:tablet\:py_xsmall[data-has-image='true'] {
|
|
1582
|
-
padding-block: var(--spacing-xsmall);
|
|
1583
|
-
}
|
|
1584
|
-
.\[\&\[data-has-image\=\'true\'\]\]\:tablet\:px_medium[data-has-image='true'] {
|
|
1585
|
-
padding-inline: var(--spacing-medium);
|
|
1586
|
-
}
|
|
1587
|
-
.\[\&_svg\]\:tablet\:w_12px svg {
|
|
1588
|
-
width: 12px;
|
|
1589
|
-
}
|
|
1590
|
-
.\[\&_svg\]\:tablet\:h_12px svg {
|
|
1591
|
-
height: 12px;
|
|
1592
|
-
}
|
|
1593
|
-
}
|
|
1594
|
-
|
|
1595
|
-
@media screen and (min-width: 37.5625rem) and (max-width: 61.31rem) {
|
|
1596
|
-
.tabletToDesktop\:grid-tc_repeat\(2\,_minmax\(0\,_1fr\)\) {
|
|
1597
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1598
|
-
}
|
|
1599
|
-
.tabletToDesktop\:\[\&_\>_div\:nth-child\(3\)\:last-child\]\:d_flex > div:nth-child(3):last-child {
|
|
1600
|
-
display: flex;
|
|
1601
|
-
}
|
|
1602
|
-
.tabletToDesktop\:\[\&_\>_div\:nth-child\(3\)\:last-child\]\:flex-flow_column > div:nth-child(3):last-child {
|
|
1603
|
-
flex-flow: column;
|
|
1604
|
-
}
|
|
1605
|
-
.tabletToDesktop\:\[\&_\>_div\:nth-child\(3\)\:last-child\]\:grid-c_span_2 > div:nth-child(3):last-child {
|
|
1606
|
-
grid-column: span 2;
|
|
1607
|
-
}
|
|
1608
|
-
.tabletToDesktop\:\[\&_\>_div\:nth-child\(3\)\:last-child\]\:jc_center > div:nth-child(3):last-child {
|
|
1609
|
-
justify-content: center;
|
|
1610
|
-
}
|
|
1611
|
-
.tabletToDesktop\:\[\&_\>_div\:nth-child\(3\)\:last-child\]\:ai_center > div:nth-child(3):last-child {
|
|
1612
|
-
align-items: center;
|
|
1613
|
-
}
|
|
1614
|
-
}
|
|
1615
|
-
|
|
1616
|
-
@media screen and (min-width: 48rem) {
|
|
1617
|
-
.tabletWide\:w_100\% {
|
|
1618
|
-
width: 100%;
|
|
1619
|
-
}
|
|
1620
|
-
.tabletWide\:max-w_350px {
|
|
1621
|
-
max-width: 350px;
|
|
1622
|
-
}
|
|
1623
|
-
.tabletWide\:max-w_532px {
|
|
1624
|
-
max-width: 532px;
|
|
1625
|
-
}
|
|
1626
|
-
.tabletWide\:flex-d_row {
|
|
1627
|
-
flex-direction: row;
|
|
1628
|
-
}
|
|
1629
|
-
.tabletWide\:jc_space-between {
|
|
1630
|
-
justify-content: space-between;
|
|
1631
|
-
}
|
|
1632
|
-
}
|
|
1633
|
-
|
|
1634
|
-
@media screen and (min-width: 61.3125rem) {
|
|
1635
|
-
.desktop\:w_260px {
|
|
1636
|
-
width: 260px;
|
|
1637
|
-
}
|
|
1638
|
-
.desktop\:h_260px {
|
|
1639
|
-
height: 260px;
|
|
1640
|
-
}
|
|
1641
|
-
.desktop\:grid-tc_repeat\(3\,_minmax\(0\,_1fr\)\) {
|
|
1642
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1643
|
-
}
|
|
1644
|
-
.desktop\:grid-tc_repeat\(4\,_minmax\(0\,_1fr\)\) {
|
|
1645
|
-
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1646
|
-
}
|
|
1647
|
-
}
|
|
1648
|
-
|
|
1649
|
-
@media screen and (max-width: 47.9975rem) {
|
|
1650
|
-
.tabletWideDown\:d_block {
|
|
1651
|
-
display: block;
|
|
1652
|
-
}
|
|
1653
|
-
.tabletWideDown\:max-h_surface\.small {
|
|
1654
|
-
max-height: var(--sizes-surface-small);
|
|
1655
|
-
}
|
|
1656
|
-
.tabletWideDown\:max-w_100\% {
|
|
1657
|
-
max-width: 100%;
|
|
1658
|
-
}
|
|
1659
|
-
.tabletWideDown\:w_100\% {
|
|
1660
|
-
width: 100%;
|
|
1661
|
-
}
|
|
1662
|
-
.tabletWideDown\:h_auto {
|
|
1663
|
-
height: auto;
|
|
1664
|
-
}
|
|
1665
|
-
.tabletWideDown\:d_grid {
|
|
1666
|
-
display: grid;
|
|
1667
|
-
}
|
|
1668
|
-
.tabletWideDown\:py_xsmall {
|
|
1669
|
-
padding-block: var(--spacing-xsmall);
|
|
1670
|
-
}
|
|
1671
|
-
.tabletWideDown\:px_xsmall {
|
|
1672
|
-
padding-inline: var(--spacing-xsmall);
|
|
1673
|
-
}
|
|
1674
|
-
.tabletWideDown\:p_xsmall {
|
|
1675
|
-
padding: var(--spacing-xsmall);
|
|
1676
|
-
}
|
|
1677
|
-
.tabletWideDown\:grid-tc_1fr_repeat\(5\,_auto\)_1fr {
|
|
1678
|
-
grid-template-columns: 1fr repeat(5, auto) 1fr;
|
|
1679
|
-
}
|
|
1680
|
-
.tabletWideDown\:grid-template-areas_\"track_track_track_track_track_track_track\"_\"\._speed_backwards_play_forwards_volume_\.\" {
|
|
1681
|
-
grid-template-areas: "track track track track track track track" ". speed backwards play forwards volume .";
|
|
1682
|
-
}
|
|
1683
|
-
}
|
|
1684
|
-
|
|
1685
|
-
@media screen and (max-width: 37.56rem) {
|
|
1686
|
-
.tabletDown\:d_block {
|
|
1687
|
-
display: block;
|
|
1688
|
-
}
|
|
1689
|
-
.tabletDown\:d_none {
|
|
1690
|
-
display: none;
|
|
1691
|
-
}
|
|
1692
|
-
.tabletDown\:gap_0 {
|
|
1693
|
-
gap: 0;
|
|
1694
|
-
}
|
|
1695
|
-
.tabletDown\:p_0 {
|
|
1696
|
-
padding: 0;
|
|
1697
|
-
}
|
|
1698
|
-
.tabletDown\:p_xsmall {
|
|
1699
|
-
padding: var(--spacing-xsmall);
|
|
1700
|
-
}
|
|
1701
|
-
.tabletDown\:w_100\% {
|
|
1702
|
-
width: 100%;
|
|
1703
|
-
}
|
|
1704
|
-
.tabletDown\:bdr_0 {
|
|
1705
|
-
border-radius: 0;
|
|
1706
|
-
}
|
|
1707
|
-
.tabletDown\:grid-tc_repeat\(1\,_minmax\(0\,_1fr\)\) {
|
|
1708
|
-
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1709
|
-
}
|
|
1710
|
-
.tabletDown\:grid-tc_1fr {
|
|
1711
|
-
grid-template-columns: 1fr;
|
|
1712
|
-
}
|
|
1713
|
-
.tabletDown\:flex-d_column {
|
|
1714
|
-
flex-direction: column;
|
|
1715
|
-
}
|
|
1716
|
-
.tabletDown\:before\:d_none::before {
|
|
1717
|
-
display: none;
|
|
1718
|
-
}
|
|
1719
|
-
.tabletDown\:before\:pos_absolute::before {
|
|
1720
|
-
position: absolute;
|
|
1721
|
-
}
|
|
1722
|
-
.tabletDown\:before\:h_surface\.xxsmall::before {
|
|
1723
|
-
height: var(--sizes-surface-xxsmall);
|
|
1724
|
-
}
|
|
1725
|
-
.tabletDown\:before\:w_surface\.3xlarge::before {
|
|
1726
|
-
width: var(--sizes-surface-3xlarge);
|
|
1727
|
-
}
|
|
1728
|
-
.tabletDown\:before\:trf_rotate\(-4deg\)::before {
|
|
1729
|
-
transform: rotate(-4deg);
|
|
1730
|
-
}
|
|
1731
|
-
.tabletDown\:before\:z_hide::before {
|
|
1732
|
-
z-index: var(--z-index-hide);
|
|
1733
|
-
}
|
|
1734
|
-
.tabletDown\:before\:content_\"\"::before {
|
|
1735
|
-
content: "";
|
|
1736
|
-
}
|
|
1737
|
-
.tabletDown\:before\:top_-50px::before {
|
|
1738
|
-
top: -50px;
|
|
1739
|
-
}
|
|
1740
|
-
.tabletDown\:before\:left_-50px::before {
|
|
1741
|
-
left: -50px;
|
|
1742
|
-
}
|
|
1743
|
-
.tabletDown\:before\:right_0::before {
|
|
1744
|
-
right: 0;
|
|
1745
|
-
}
|
|
1746
|
-
.tabletDown\:before\:bottom_0::before {
|
|
1747
|
-
bottom: 0;
|
|
1748
|
-
}
|
|
1749
|
-
}
|
|
1750
|
-
|
|
1751
|
-
@media screen and (max-width: 29.7475rem) {
|
|
1752
|
-
.mobileWideDown\:d_grid {
|
|
1753
|
-
display: grid;
|
|
1754
|
-
}
|
|
1755
|
-
.mobileWideDown\:ov_hidden {
|
|
1756
|
-
overflow: hidden;
|
|
1757
|
-
}
|
|
1758
|
-
.mobileWideDown\:white-space_nowrap {
|
|
1759
|
-
white-space: nowrap;
|
|
1760
|
-
}
|
|
1761
|
-
.mobileWideDown\:max-h_large {
|
|
1762
|
-
max-height: var(--sizes-large);
|
|
1763
|
-
}
|
|
1764
|
-
.mobileWideDown\:tov_ellipsis {
|
|
1765
|
-
text-overflow: ellipsis;
|
|
1766
|
-
}
|
|
1767
|
-
.mobileWideDown\:me_4xsmall {
|
|
1768
|
-
margin-inline-end: var(--spacing-4xsmall);
|
|
1769
|
-
}
|
|
1770
|
-
.mobileWideDown\:cg_3xsmall {
|
|
1771
|
-
column-gap: var(--spacing-3xsmall);
|
|
1772
|
-
}
|
|
1773
|
-
.mobileWideDown\:grid-tc_1fr_auto {
|
|
1774
|
-
grid-template-columns: 1fr auto;
|
|
1775
|
-
}
|
|
1776
|
-
.mobileWideDown\:ai_center {
|
|
1777
|
-
align-items: center;
|
|
1778
|
-
}
|
|
1779
|
-
.mobileWideDown\:trs-prop_max-height {
|
|
1780
|
-
--transition-prop: max-height;
|
|
1781
|
-
transition-property: max-height;
|
|
1782
|
-
}
|
|
1783
|
-
.mobileWideDown\:trs-dur_slow {
|
|
1784
|
-
--transition-duration: var(--durations-slow);
|
|
1785
|
-
transition-duration: var(--durations-slow);
|
|
1786
|
-
}
|
|
1787
|
-
.mobileWideDown\:trs-tmf_ease-in {
|
|
1788
|
-
--transition-easing: ease-in;
|
|
1789
|
-
transition-timing-function: ease-in;
|
|
1790
|
-
}
|
|
1791
|
-
}
|
|
1792
|
-
|
|
1793
|
-
@media screen and (max-width: 29.7475rem) {
|
|
1794
|
-
.mobileWideDown\:open\:d_inline:is([open], [data-open], [data-state="open"]) {
|
|
1795
|
-
display: inline;
|
|
1796
|
-
}
|
|
1797
|
-
}
|
|
1798
|
-
|
|
1799
|
-
@media screen and (max-width: 29.7475rem) {
|
|
1800
|
-
.mobileWideDown\:open\:white-space_pre-wrap:is([open], [data-open], [data-state="open"]) {
|
|
1801
|
-
white-space: pre-wrap;
|
|
1802
|
-
}
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
@media screen and (max-width: 29.7475rem) {
|
|
1806
|
-
.mobileWideDown\:open\:max-h_none:is([open], [data-open], [data-state="open"]) {
|
|
1807
|
-
max-height: none;
|
|
1808
|
-
}
|
|
1809
|
-
}
|
|
1810
|
-
|
|
1811
|
-
@media screen and (max-width: 19.9975rem) {
|
|
1812
|
-
.mobileDown\:px_xsmall {
|
|
1813
|
-
padding-inline: var(--spacing-xsmall);
|
|
1814
|
-
}
|
|
1815
|
-
.mobileDown\:ai_flex-start {
|
|
1816
|
-
align-items: flex-start;
|
|
1817
|
-
}
|
|
1818
|
-
.mobileDown\:jc_center {
|
|
1819
|
-
justify-content: center;
|
|
1820
|
-
}
|
|
1821
|
-
.mobileDown\:flex-d_column {
|
|
1822
|
-
flex-direction: column;
|
|
1823
|
-
}
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
@media print {
|
|
1827
|
-
.print\:ov_visible {
|
|
1828
|
-
overflow: visible;
|
|
1829
|
-
}
|
|
1830
|
-
.print\:d_none {
|
|
1831
|
-
display: none;
|
|
1832
|
-
}
|
|
1833
|
-
}
|
|
1834
|
-
|
|
1835
|
-
@media print {
|
|
1836
|
-
.closed\:print\:ov_visible:is([closed], [data-closed], [data-state="closed"]) {
|
|
1837
|
-
overflow: visible;
|
|
1838
|
-
}
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
|
-
@media print {
|
|
1842
|
-
.closed\:print\:max-h_500vh:is([closed], [data-closed], [data-state="closed"]) {
|
|
1843
|
-
max-height: 500vh;
|
|
1844
|
-
}
|
|
1845
|
-
}
|
|
1846
|
-
|
|
1847
|
-
@media print {
|
|
1848
|
-
.print\:after\:d_none::after {
|
|
1849
|
-
display: none;
|
|
1850
|
-
}
|
|
1851
|
-
}
|
|
1852
|
-
}
|