@haiilo/catalyst 0.0.11 → 0.2.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/LICENSE +1 -1
- package/dist/catalyst/catalyst.css +1 -1403
- package/dist/catalyst/catalyst.esm.js +1 -126
- package/dist/catalyst/index.esm.js +0 -1
- package/dist/catalyst/p-4c438c2d.entry.js +11 -0
- package/dist/catalyst/p-73ee291d.js +1 -0
- package/dist/catalyst/p-94273abf.js +1 -0
- package/dist/cjs/app-globals-a3b3cf88.js +135 -0
- package/dist/cjs/cat-alert_7.cjs.entry.js +3115 -0
- package/dist/cjs/cat-icon-registry-eeff9b7d.js +1359 -0
- package/dist/cjs/catalyst.cjs.js +21 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +23 -0
- package/dist/collection/collection-manifest.json +19 -0
- package/dist/collection/components/cat-alert/cat-alert.css +57 -0
- package/dist/collection/components/cat-alert/cat-alert.js +49 -0
- package/dist/collection/components/cat-badge/cat-badge.css +154 -0
- package/dist/collection/components/cat-badge/cat-badge.js +141 -0
- package/dist/collection/components/cat-button/cat-button.css +319 -0
- package/dist/collection/components/cat-button/cat-button.js +590 -0
- package/dist/collection/components/cat-icon/cat-icon-registry.js +41 -0
- package/dist/collection/components/cat-icon/cat-icon.css +50 -0
- package/dist/collection/components/cat-icon/cat-icon.js +89 -0
- package/dist/collection/components/cat-menu/cat-menu.css +33 -0
- package/dist/collection/components/cat-menu/cat-menu.js +185 -0
- package/dist/collection/components/cat-skeleton/cat-skeleton.css +177 -0
- package/dist/collection/components/cat-skeleton/cat-skeleton.js +130 -0
- package/dist/collection/components/cat-spinner/cat-spinner.css +63 -0
- package/dist/collection/components/cat-spinner/cat-spinner.js +64 -0
- package/dist/collection/index.cdn.js +21 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/init.js +8 -0
- package/dist/collection/utils/breakpoints.js +11 -0
- package/dist/collection/utils/media-matcher.js +54 -0
- package/dist/collection/utils/platform.js +49 -0
- package/dist/collection/utils/utils.js +3 -0
- package/dist/components/cat-alert.d.ts +11 -0
- package/dist/components/cat-alert.js +43 -0
- package/dist/components/cat-badge.d.ts +11 -0
- package/dist/components/cat-badge.js +67 -0
- package/dist/{catalyst/cat-button.entry.js → components/cat-button.js} +76 -44
- package/dist/{catalyst/cat-icon-registry-59da2e37.js → components/cat-icon-registry.js} +0 -0
- package/dist/components/cat-icon.js +6 -0
- package/dist/components/cat-icon2.js +47 -0
- package/dist/components/cat-menu.d.ts +11 -0
- package/dist/components/cat-menu.js +2378 -0
- package/dist/components/cat-skeleton.d.ts +11 -0
- package/dist/components/cat-skeleton.js +77 -0
- package/dist/components/cat-spinner.js +6 -0
- package/dist/{catalyst/cat-spinner.entry.js → components/cat-spinner2.js} +25 -6
- package/dist/components/index.js +134 -0
- package/dist/esm/app-globals-fc0806a7.js +133 -0
- package/dist/esm/cat-alert_7.entry.js +3105 -0
- package/dist/esm/cat-icon-registry-d877de13.js +1331 -0
- package/dist/esm/catalyst.js +19 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +19 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/types/components/cat-alert/cat-alert.d.ts +12 -0
- package/dist/types/components/cat-badge/cat-badge.d.ts +28 -0
- package/dist/types/components/cat-button/cat-button.d.ts +6 -0
- package/dist/types/components/cat-menu/cat-menu.d.ts +32 -0
- package/dist/types/components/cat-skeleton/cat-skeleton.d.ts +28 -0
- package/dist/types/components.d.ts +153 -0
- package/package.json +9 -6
- package/dist/catalyst/app-globals-54573336.js +0 -716
- package/dist/catalyst/cat-icon.entry.js +0 -27
- package/dist/catalyst/css-shim-20dbffa5.js +0 -4
- package/dist/catalyst/dom-c5ed0ba5.js +0 -73
- package/dist/catalyst/index-6672be93.js +0 -3031
- package/dist/catalyst/shadow-css-8c625855.js +0 -388
|
@@ -1,1403 +1 @@
|
|
|
1
|
-
@charset "UTF-8";
|
|
2
|
-
/* Document
|
|
3
|
-
* ========================================================================== */
|
|
4
|
-
/**
|
|
5
|
-
* 1. Add border box sizing in all browsers (opinionated).
|
|
6
|
-
* 2. Backgrounds do not repeat by default (opinionated).
|
|
7
|
-
*/
|
|
8
|
-
*,
|
|
9
|
-
::before,
|
|
10
|
-
::after {
|
|
11
|
-
box-sizing: border-box;
|
|
12
|
-
/* 1 */
|
|
13
|
-
background-repeat: no-repeat;
|
|
14
|
-
/* 2 */
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* 1. Add text decoration inheritance in all browsers (opinionated).
|
|
19
|
-
* 2. Add vertical alignment inheritance in all browsers (opinionated).
|
|
20
|
-
*/
|
|
21
|
-
::before,
|
|
22
|
-
::after {
|
|
23
|
-
text-decoration: inherit;
|
|
24
|
-
/* 1 */
|
|
25
|
-
vertical-align: inherit;
|
|
26
|
-
/* 2 */
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* 1. Use the default cursor in all browsers (opinionated).
|
|
31
|
-
* 2. Change the line height in all browsers (opinionated).
|
|
32
|
-
* 3. Breaks words to prevent overflow in all browsers (opinionated).
|
|
33
|
-
* 4. Use a 4-space tab width in all browsers (opinionated).
|
|
34
|
-
* 5. Remove the grey highlight on links in iOS (opinionated).
|
|
35
|
-
* 6. Prevent adjustments of font size after orientation changes in iOS.
|
|
36
|
-
*/
|
|
37
|
-
:where(:root) {
|
|
38
|
-
cursor: default;
|
|
39
|
-
/* 1 */
|
|
40
|
-
line-height: 1.5;
|
|
41
|
-
/* 2 */
|
|
42
|
-
overflow-wrap: break-word;
|
|
43
|
-
/* 3 */
|
|
44
|
-
-moz-tab-size: 4;
|
|
45
|
-
/* 4 */
|
|
46
|
-
tab-size: 4;
|
|
47
|
-
/* 4 */
|
|
48
|
-
-webkit-tap-highlight-color: transparent;
|
|
49
|
-
/* 5 */
|
|
50
|
-
-webkit-text-size-adjust: 100%;
|
|
51
|
-
/* 6 */
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/* Sections
|
|
55
|
-
* ========================================================================== */
|
|
56
|
-
/**
|
|
57
|
-
* Remove the margin in all browsers (opinionated).
|
|
58
|
-
*/
|
|
59
|
-
:where(body) {
|
|
60
|
-
margin: 0;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* Correct the font size and margin on `h1` elements within `section` and
|
|
65
|
-
* `article` contexts in Chrome, Edge, Firefox, and Safari.
|
|
66
|
-
*/
|
|
67
|
-
:where(h1) {
|
|
68
|
-
font-size: 2em;
|
|
69
|
-
margin: 0.67em 0;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
/* Grouping content
|
|
73
|
-
* ========================================================================== */
|
|
74
|
-
/**
|
|
75
|
-
* Remove the margin on nested lists in Chrome, Edge, and Safari.
|
|
76
|
-
*/
|
|
77
|
-
:where(dl, ol, ul) :where(dl, ol, ul) {
|
|
78
|
-
margin: 0;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
/**
|
|
82
|
-
* 1. Correct the inheritance of border color in Firefox.
|
|
83
|
-
* 2. Add the correct box sizing in Firefox.
|
|
84
|
-
*/
|
|
85
|
-
:where(hr) {
|
|
86
|
-
color: inherit;
|
|
87
|
-
/* 1 */
|
|
88
|
-
height: 0;
|
|
89
|
-
/* 2 */
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Remove the list style on navigation lists in all browsers (opinionated).
|
|
94
|
-
*/
|
|
95
|
-
:where(nav) :where(ol, ul) {
|
|
96
|
-
list-style-type: none;
|
|
97
|
-
padding: 0;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
/**
|
|
101
|
-
* Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
|
|
102
|
-
*/
|
|
103
|
-
:where(nav li)::before {
|
|
104
|
-
content: "";
|
|
105
|
-
float: left;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
/**
|
|
109
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
110
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
111
|
-
* 3. Prevent overflow of the container in all browsers (opinionated).
|
|
112
|
-
*/
|
|
113
|
-
:where(pre) {
|
|
114
|
-
font-family: monospace, monospace;
|
|
115
|
-
/* 1 */
|
|
116
|
-
font-size: 1em;
|
|
117
|
-
/* 2 */
|
|
118
|
-
overflow: auto;
|
|
119
|
-
/* 3 */
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
/* Text-level semantics
|
|
123
|
-
* ========================================================================== */
|
|
124
|
-
/**
|
|
125
|
-
* Add the correct text decoration in Safari.
|
|
126
|
-
*/
|
|
127
|
-
:where(abbr[title]) {
|
|
128
|
-
text-decoration: underline;
|
|
129
|
-
text-decoration: underline dotted;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
134
|
-
*/
|
|
135
|
-
:where(b, strong) {
|
|
136
|
-
font-weight: bolder;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
/**
|
|
140
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
141
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
142
|
-
*/
|
|
143
|
-
:where(code, kbd, samp) {
|
|
144
|
-
font-family: monospace, monospace;
|
|
145
|
-
/* 1 */
|
|
146
|
-
font-size: 1em;
|
|
147
|
-
/* 2 */
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
/**
|
|
151
|
-
* Add the correct font size in all browsers.
|
|
152
|
-
*/
|
|
153
|
-
:where(small) {
|
|
154
|
-
font-size: 80%;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/* Embedded content
|
|
158
|
-
* ========================================================================== */
|
|
159
|
-
/*
|
|
160
|
-
* Change the alignment on media elements in all browsers (opinionated).
|
|
161
|
-
*/
|
|
162
|
-
:where(audio, canvas, iframe, img, svg, video) {
|
|
163
|
-
vertical-align: middle;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/**
|
|
167
|
-
* Remove the border on iframes in all browsers (opinionated).
|
|
168
|
-
*/
|
|
169
|
-
:where(iframe) {
|
|
170
|
-
border-style: none;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
/**
|
|
174
|
-
* Change the fill color to match the text color in all browsers (opinionated).
|
|
175
|
-
*/
|
|
176
|
-
:where(svg:not([fill])) {
|
|
177
|
-
fill: currentColor;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
/* Tabular data
|
|
181
|
-
* ========================================================================== */
|
|
182
|
-
/**
|
|
183
|
-
* 1. Collapse border spacing in all browsers (opinionated).
|
|
184
|
-
* 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
|
|
185
|
-
* 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
|
|
186
|
-
*/
|
|
187
|
-
:where(table) {
|
|
188
|
-
border-collapse: collapse;
|
|
189
|
-
/* 1 */
|
|
190
|
-
border-color: inherit;
|
|
191
|
-
/* 2 */
|
|
192
|
-
text-indent: 0;
|
|
193
|
-
/* 3 */
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
/* Forms
|
|
197
|
-
* ========================================================================== */
|
|
198
|
-
/**
|
|
199
|
-
* Remove the margin on controls in Safari.
|
|
200
|
-
*/
|
|
201
|
-
:where(button, input, select) {
|
|
202
|
-
margin: 0;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
/**
|
|
206
|
-
* Correct the inability to style buttons in iOS and Safari.
|
|
207
|
-
*/
|
|
208
|
-
:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
|
|
209
|
-
-webkit-appearance: button;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
/**
|
|
213
|
-
* Change the inconsistent appearance in all browsers (opinionated).
|
|
214
|
-
*/
|
|
215
|
-
:where(fieldset) {
|
|
216
|
-
border: 1px solid #a0a0a0;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
/**
|
|
220
|
-
* Add the correct vertical alignment in Chrome, Edge, and Firefox.
|
|
221
|
-
*/
|
|
222
|
-
:where(progress) {
|
|
223
|
-
vertical-align: baseline;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
/**
|
|
227
|
-
* 1. Remove the margin in Firefox and Safari.
|
|
228
|
-
* 3. Change the resize direction in all browsers (opinionated).
|
|
229
|
-
*/
|
|
230
|
-
:where(textarea) {
|
|
231
|
-
margin: 0;
|
|
232
|
-
/* 1 */
|
|
233
|
-
resize: vertical;
|
|
234
|
-
/* 3 */
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
/**
|
|
238
|
-
* 1. Correct the odd appearance in Chrome, Edge, and Safari.
|
|
239
|
-
* 2. Correct the outline style in Safari.
|
|
240
|
-
*/
|
|
241
|
-
:where([type="search" i]) {
|
|
242
|
-
-webkit-appearance: textfield;
|
|
243
|
-
/* 1 */
|
|
244
|
-
outline-offset: -2px;
|
|
245
|
-
/* 2 */
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
/**
|
|
249
|
-
* Correct the cursor style of increment and decrement buttons in Safari.
|
|
250
|
-
*/
|
|
251
|
-
::-webkit-inner-spin-button,
|
|
252
|
-
::-webkit-outer-spin-button {
|
|
253
|
-
height: auto;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
/**
|
|
257
|
-
* Correct the text style of placeholders in Chrome, Edge, and Safari.
|
|
258
|
-
*/
|
|
259
|
-
::-webkit-input-placeholder {
|
|
260
|
-
color: inherit;
|
|
261
|
-
opacity: 0.54;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
/**
|
|
265
|
-
* Remove the inner padding in Chrome, Edge, and Safari on macOS.
|
|
266
|
-
*/
|
|
267
|
-
::-webkit-search-decoration {
|
|
268
|
-
-webkit-appearance: none;
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
/**
|
|
272
|
-
* 1. Correct the inability to style upload buttons in iOS and Safari.
|
|
273
|
-
* 2. Change font properties to `inherit` in Safari.
|
|
274
|
-
*/
|
|
275
|
-
::-webkit-file-upload-button {
|
|
276
|
-
-webkit-appearance: button;
|
|
277
|
-
/* 1 */
|
|
278
|
-
font: inherit;
|
|
279
|
-
/* 2 */
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
/* Interactive
|
|
283
|
-
* ========================================================================== */
|
|
284
|
-
/*
|
|
285
|
-
* Add the correct styles in Safari.
|
|
286
|
-
*/
|
|
287
|
-
:where(dialog) {
|
|
288
|
-
background-color: white;
|
|
289
|
-
border: solid;
|
|
290
|
-
color: black;
|
|
291
|
-
height: -moz-fit-content;
|
|
292
|
-
height: fit-content;
|
|
293
|
-
left: 0;
|
|
294
|
-
margin: auto;
|
|
295
|
-
padding: 1em;
|
|
296
|
-
position: absolute;
|
|
297
|
-
right: 0;
|
|
298
|
-
width: -moz-fit-content;
|
|
299
|
-
width: fit-content;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
:where(dialog:not([open])) {
|
|
303
|
-
display: none;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
/*
|
|
307
|
-
* Add the correct display in Safari.
|
|
308
|
-
*/
|
|
309
|
-
:where(details > summary:first-of-type) {
|
|
310
|
-
display: list-item;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
/* Accessibility
|
|
314
|
-
* ========================================================================== */
|
|
315
|
-
/**
|
|
316
|
-
* Change the cursor on busy elements in all browsers (opinionated).
|
|
317
|
-
*/
|
|
318
|
-
:where([aria-busy="true" i]) {
|
|
319
|
-
cursor: progress;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
/*
|
|
323
|
-
* Change the cursor on control elements in all browsers (opinionated).
|
|
324
|
-
*/
|
|
325
|
-
:where([aria-controls]) {
|
|
326
|
-
cursor: pointer;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
/*
|
|
330
|
-
* Change the cursor on disabled, not-editable, or otherwise
|
|
331
|
-
* inoperable elements in all browsers (opinionated).
|
|
332
|
-
*/
|
|
333
|
-
:where([aria-disabled="true" i], [disabled]) {
|
|
334
|
-
cursor: not-allowed;
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
/*
|
|
338
|
-
* Change the display on visually hidden accessible elements
|
|
339
|
-
* in all browsers (opinionated).
|
|
340
|
-
*/
|
|
341
|
-
:where([aria-hidden="false" i][hidden]) {
|
|
342
|
-
display: initial;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
:where([aria-hidden="false" i][hidden]:not(:focus)) {
|
|
346
|
-
clip: rect(0, 0, 0, 0);
|
|
347
|
-
position: absolute;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
/**
|
|
351
|
-
* Restrict sizing to the page width in all browsers (opinionated).
|
|
352
|
-
*/
|
|
353
|
-
:where(iframe, img, input, video, select, textarea) {
|
|
354
|
-
height: auto;
|
|
355
|
-
max-width: 100%;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
/*
|
|
359
|
-
* 1. Remove animations when motion is reduced (opinionated).
|
|
360
|
-
* 2. Remove fixed background attachments when motion is reduced (opinionated).
|
|
361
|
-
* 3. Remove timed scrolling behaviors when motion is reduced (opinionated).
|
|
362
|
-
* 4. Remove transitions when motion is reduced (opinionated).
|
|
363
|
-
*/
|
|
364
|
-
@media (prefers-reduced-motion: reduce) {
|
|
365
|
-
*,
|
|
366
|
-
::before,
|
|
367
|
-
::after {
|
|
368
|
-
animation-delay: -1ms !important;
|
|
369
|
-
/* 1 */
|
|
370
|
-
animation-duration: 1ms !important;
|
|
371
|
-
/* 1 */
|
|
372
|
-
animation-iteration-count: 1 !important;
|
|
373
|
-
/* 1 */
|
|
374
|
-
background-attachment: initial !important;
|
|
375
|
-
/* 2 */
|
|
376
|
-
scroll-behavior: auto !important;
|
|
377
|
-
/* 3 */
|
|
378
|
-
transition-delay: 0s !important;
|
|
379
|
-
/* 4 */
|
|
380
|
-
transition-duration: 0s !important;
|
|
381
|
-
/* 4 */
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
/**
|
|
385
|
-
* Auto-generated file. Do not edit directly.
|
|
386
|
-
*/
|
|
387
|
-
/* stylelint-disable value-keyword-case */
|
|
388
|
-
/* stylelint-enable value-keyword-case */
|
|
389
|
-
body {
|
|
390
|
-
font-size: 0.9375rem;
|
|
391
|
-
line-height: 1.25rem;
|
|
392
|
-
font-family: var(--cat-font-family-body, "Lato"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
393
|
-
font-weight: var(--cat-font-weight-body, 400);
|
|
394
|
-
color: rgb(var(--cat-font-color-body, 0, 0, 0));
|
|
395
|
-
background-color: rgb(var(--cat-bg, 248, 248, 251));
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
code,
|
|
399
|
-
kbd,
|
|
400
|
-
samp,
|
|
401
|
-
pre {
|
|
402
|
-
font-family: var(--cat-font-family-mono, "Azeret Mono"), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
403
|
-
font-size: 0.9375rem;
|
|
404
|
-
line-height: 1.25rem;
|
|
405
|
-
color: rgb(var(--cat-font-color-mono, 0, 0, 0));
|
|
406
|
-
font-weight: var(--cat-font-weight-mono, 400);
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
h1,
|
|
410
|
-
h2,
|
|
411
|
-
h3,
|
|
412
|
-
h4,
|
|
413
|
-
h5,
|
|
414
|
-
h6,
|
|
415
|
-
.cat-h1,
|
|
416
|
-
.cat-h2,
|
|
417
|
-
.cat-h3,
|
|
418
|
-
.cat-h4,
|
|
419
|
-
.cat-h5,
|
|
420
|
-
.cat-h6 {
|
|
421
|
-
margin-top: 0;
|
|
422
|
-
margin-bottom: 0.5rem;
|
|
423
|
-
font-weight: var(--cat-font-weight-head, 500);
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
h1,
|
|
427
|
-
.cat-h1 {
|
|
428
|
-
font-family: var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
429
|
-
font-size: 1.75rem;
|
|
430
|
-
line-height: 2rem;
|
|
431
|
-
color: rgb(var(--cat-font-color-head, 0, 0, 0));
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
h2,
|
|
435
|
-
.cat-h2 {
|
|
436
|
-
font-family: var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
437
|
-
font-size: 1.5rem;
|
|
438
|
-
line-height: 1.75rem;
|
|
439
|
-
color: rgb(var(--cat-font-color-head, 0, 0, 0));
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
h3,
|
|
443
|
-
.cat-h3 {
|
|
444
|
-
font-family: var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
445
|
-
font-size: 1.25rem;
|
|
446
|
-
line-height: 1.5rem;
|
|
447
|
-
color: rgb(var(--cat-font-color-head, 0, 0, 0));
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
h4,
|
|
451
|
-
.cat-h4 {
|
|
452
|
-
font-family: var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
453
|
-
font-size: 1.125rem;
|
|
454
|
-
line-height: 1.5rem;
|
|
455
|
-
color: rgb(var(--cat-font-color-head, 0, 0, 0));
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
h5,
|
|
459
|
-
.cat-h5 {
|
|
460
|
-
font-family: var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
461
|
-
font-size: 0.9375rem;
|
|
462
|
-
line-height: 1.25rem;
|
|
463
|
-
color: rgb(var(--cat-font-color-head, 0, 0, 0));
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
h6,
|
|
467
|
-
.cat-h6 {
|
|
468
|
-
font-family: var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
469
|
-
font-size: 0.875rem;
|
|
470
|
-
line-height: 1rem;
|
|
471
|
-
color: rgb(var(--cat-font-color-head, 0, 0, 0));
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
p {
|
|
475
|
-
margin-top: 0;
|
|
476
|
-
margin-bottom: 1rem;
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
hr {
|
|
480
|
-
margin: 1rem 0;
|
|
481
|
-
height: 1px;
|
|
482
|
-
border: 0;
|
|
483
|
-
background-color: #ebecf0;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
a {
|
|
487
|
-
color: rgb(var(--cat-primary-text, 32, 127, 138));
|
|
488
|
-
text-decoration: none;
|
|
489
|
-
transition: color 0.13s linear;
|
|
490
|
-
}
|
|
491
|
-
a:hover {
|
|
492
|
-
color: rgb(var(--cat-primary-text-hover, 28, 112, 122));
|
|
493
|
-
text-decoration: underline;
|
|
494
|
-
}
|
|
495
|
-
a:active {
|
|
496
|
-
color: rgb(var(--cat-primary-text-active, 25, 101, 110));
|
|
497
|
-
}
|
|
498
|
-
a:focus-visible {
|
|
499
|
-
outline: 2px solid #0071ff;
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
a[tabindex="-1"]:focus {
|
|
503
|
-
outline: none;
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
b,
|
|
507
|
-
strong,
|
|
508
|
-
.cat-strong {
|
|
509
|
-
font-weight: 600;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
mark,
|
|
513
|
-
.cat-mark {
|
|
514
|
-
padding: 0.125rem 0.25rem;
|
|
515
|
-
background-color: rgba(var(--cat-primary-bg, 32, 127, 138), 0.2);
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
small,
|
|
519
|
-
.cat-small {
|
|
520
|
-
font-size: 0.875em;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
.cat-underline {
|
|
524
|
-
text-decoration: underline;
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
.cat-line-through {
|
|
528
|
-
text-decoration: line-through;
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
ol,
|
|
532
|
-
ul {
|
|
533
|
-
padding-left: 2rem;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
ol,
|
|
537
|
-
ul,
|
|
538
|
-
dl {
|
|
539
|
-
margin-top: 0;
|
|
540
|
-
margin-bottom: 1rem;
|
|
541
|
-
}
|
|
542
|
-
ol ol,
|
|
543
|
-
ol ul,
|
|
544
|
-
ol dl,
|
|
545
|
-
ul ol,
|
|
546
|
-
ul ul,
|
|
547
|
-
ul dl,
|
|
548
|
-
dl ol,
|
|
549
|
-
dl ul,
|
|
550
|
-
dl dl {
|
|
551
|
-
margin-bottom: 0;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
dt {
|
|
555
|
-
font-weight: 600;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
dd {
|
|
559
|
-
margin-bottom: 0.5rem;
|
|
560
|
-
margin-left: 0;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
.cat-lead {
|
|
564
|
-
font-size: 1.25rem;
|
|
565
|
-
line-height: 1.5rem;
|
|
566
|
-
font-weight: 300;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
blockquote {
|
|
570
|
-
margin: 0 0 1rem;
|
|
571
|
-
font-style: italic;
|
|
572
|
-
font-size: 1.125rem;
|
|
573
|
-
line-height: 1.5rem;
|
|
574
|
-
color: rgb(var(--cat-font-color-body, 0, 0, 0));
|
|
575
|
-
}
|
|
576
|
-
blockquote > :last-child {
|
|
577
|
-
margin-bottom: 0;
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
figure {
|
|
581
|
-
margin: 0 0 1rem;
|
|
582
|
-
}
|
|
583
|
-
figure figcaption {
|
|
584
|
-
margin-top: -0.5rem;
|
|
585
|
-
margin-bottom: 0;
|
|
586
|
-
font-size: 0.875rem;
|
|
587
|
-
line-height: 1rem;
|
|
588
|
-
color: rgb(var(--cat-font-color-muted, 105, 118, 135));
|
|
589
|
-
}
|
|
590
|
-
figure figcaption::before {
|
|
591
|
-
content: "— ";
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
@font-face {
|
|
595
|
-
font-family: "DM Sans";
|
|
596
|
-
src: url("/assets/fonts/DMSans-Medium.woff2") format("woff2");
|
|
597
|
-
font-style: normal;
|
|
598
|
-
font-weight: 500;
|
|
599
|
-
font-display: swap;
|
|
600
|
-
}
|
|
601
|
-
@font-face {
|
|
602
|
-
font-family: "DM Sans";
|
|
603
|
-
src: url("/assets/fonts/DMSans-MediumItalic.woff2") format("woff2");
|
|
604
|
-
font-style: italic;
|
|
605
|
-
font-weight: 500;
|
|
606
|
-
font-display: swap;
|
|
607
|
-
}
|
|
608
|
-
@font-face {
|
|
609
|
-
font-family: Lato;
|
|
610
|
-
src: url("/assets/fonts/Lato-Light.woff2") format("woff2"), url("/assets/fonts/Lato-Light.woff") format("woff");
|
|
611
|
-
font-style: normal;
|
|
612
|
-
font-weight: 300;
|
|
613
|
-
text-rendering: optimizeLegibility;
|
|
614
|
-
font-display: fallback;
|
|
615
|
-
}
|
|
616
|
-
@font-face {
|
|
617
|
-
font-family: Lato;
|
|
618
|
-
src: url("/assets/fonts/Lato-LightItalic.woff2") format("woff2"), url("/assets/fonts/Lato-LightItalic.woff") format("woff");
|
|
619
|
-
font-style: italic;
|
|
620
|
-
font-weight: 300;
|
|
621
|
-
text-rendering: optimizeLegibility;
|
|
622
|
-
font-display: fallback;
|
|
623
|
-
}
|
|
624
|
-
@font-face {
|
|
625
|
-
font-family: Lato;
|
|
626
|
-
src: url("/assets/fonts/Lato-Regular.woff2") format("woff2"), url("/assets/fonts/Lato-Regular.woff") format("woff");
|
|
627
|
-
font-style: normal;
|
|
628
|
-
font-weight: 400;
|
|
629
|
-
text-rendering: optimizeLegibility;
|
|
630
|
-
font-display: fallback;
|
|
631
|
-
}
|
|
632
|
-
@font-face {
|
|
633
|
-
font-family: Lato;
|
|
634
|
-
src: url("/assets/fonts/Lato-Italic.woff2") format("woff2"), url("/assets/fonts/Lato-Italic.woff") format("woff");
|
|
635
|
-
font-style: italic;
|
|
636
|
-
font-weight: 400;
|
|
637
|
-
text-rendering: optimizeLegibility;
|
|
638
|
-
font-display: fallback;
|
|
639
|
-
}
|
|
640
|
-
@font-face {
|
|
641
|
-
font-family: Lato;
|
|
642
|
-
src: url("/assets/fonts/Lato-Bold.woff2") format("woff2"), url("/assets/fonts/Lato-Bold.woff") format("woff");
|
|
643
|
-
font-style: normal;
|
|
644
|
-
font-weight: 700;
|
|
645
|
-
text-rendering: optimizeLegibility;
|
|
646
|
-
font-display: fallback;
|
|
647
|
-
}
|
|
648
|
-
@font-face {
|
|
649
|
-
font-family: Lato;
|
|
650
|
-
src: url("/assets/fonts/Lato-BoldItalic.woff2") format("woff2"), url("/assets/fonts/Lato-BoldItalic.woff") format("woff");
|
|
651
|
-
font-style: italic;
|
|
652
|
-
font-weight: 700;
|
|
653
|
-
text-rendering: optimizeLegibility;
|
|
654
|
-
font-display: fallback;
|
|
655
|
-
}
|
|
656
|
-
@font-face {
|
|
657
|
-
font-family: "Azeret Mono";
|
|
658
|
-
src: url("/assets/fonts/AzeretMono-Regular.woff2") format("woff2");
|
|
659
|
-
font-style: normal;
|
|
660
|
-
font-weight: 400;
|
|
661
|
-
font-display: fallback;
|
|
662
|
-
}
|
|
663
|
-
.cat-d-none {
|
|
664
|
-
display: none !important;
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
.cat-d-inline {
|
|
668
|
-
display: inline !important;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
.cat-d-inline-block {
|
|
672
|
-
display: inline-block !important;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
.cat-d-block {
|
|
676
|
-
display: block !important;
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
.cat-d-grid {
|
|
680
|
-
display: grid !important;
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
.cat-d-flex {
|
|
684
|
-
display: flex !important;
|
|
685
|
-
}
|
|
686
|
-
|
|
687
|
-
.cat-d-inline-flex {
|
|
688
|
-
display: inline-flex !important;
|
|
689
|
-
}
|
|
690
|
-
|
|
691
|
-
@media screen and (min-width: 540px) {
|
|
692
|
-
.cat-d-none\:xs {
|
|
693
|
-
display: none !important;
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
.cat-d-inline\:xs {
|
|
697
|
-
display: inline !important;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
.cat-d-inline-block\:xs {
|
|
701
|
-
display: inline-block !important;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
.cat-d-block\:xs {
|
|
705
|
-
display: block !important;
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
.cat-d-grid\:xs {
|
|
709
|
-
display: grid !important;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
.cat-d-flex\:xs {
|
|
713
|
-
display: flex !important;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
.cat-d-inline-flex\:xs {
|
|
717
|
-
display: inline-flex !important;
|
|
718
|
-
}
|
|
719
|
-
}
|
|
720
|
-
@media screen and (min-width: 768px) {
|
|
721
|
-
.cat-d-none\:s {
|
|
722
|
-
display: none !important;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
.cat-d-inline\:s {
|
|
726
|
-
display: inline !important;
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
.cat-d-inline-block\:s {
|
|
730
|
-
display: inline-block !important;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
.cat-d-block\:s {
|
|
734
|
-
display: block !important;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.cat-d-grid\:s {
|
|
738
|
-
display: grid !important;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.cat-d-flex\:s {
|
|
742
|
-
display: flex !important;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.cat-d-inline-flex\:s {
|
|
746
|
-
display: inline-flex !important;
|
|
747
|
-
}
|
|
748
|
-
}
|
|
749
|
-
@media screen and (min-width: 992px) {
|
|
750
|
-
.cat-d-none\:m {
|
|
751
|
-
display: none !important;
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
.cat-d-inline\:m {
|
|
755
|
-
display: inline !important;
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
.cat-d-inline-block\:m {
|
|
759
|
-
display: inline-block !important;
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
.cat-d-block\:m {
|
|
763
|
-
display: block !important;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
.cat-d-grid\:m {
|
|
767
|
-
display: grid !important;
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
.cat-d-flex\:m {
|
|
771
|
-
display: flex !important;
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
.cat-d-inline-flex\:m {
|
|
775
|
-
display: inline-flex !important;
|
|
776
|
-
}
|
|
777
|
-
}
|
|
778
|
-
@media screen and (min-width: 1200px) {
|
|
779
|
-
.cat-d-none\:l {
|
|
780
|
-
display: none !important;
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
.cat-d-inline\:l {
|
|
784
|
-
display: inline !important;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
.cat-d-inline-block\:l {
|
|
788
|
-
display: inline-block !important;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
.cat-d-block\:l {
|
|
792
|
-
display: block !important;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
.cat-d-grid\:l {
|
|
796
|
-
display: grid !important;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.cat-d-flex\:l {
|
|
800
|
-
display: flex !important;
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
.cat-d-inline-flex\:l {
|
|
804
|
-
display: inline-flex !important;
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
@media screen and (min-width: 1400px) {
|
|
808
|
-
.cat-d-none\:xl {
|
|
809
|
-
display: none !important;
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
.cat-d-inline\:xl {
|
|
813
|
-
display: inline !important;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
.cat-d-inline-block\:xl {
|
|
817
|
-
display: inline-block !important;
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.cat-d-block\:xl {
|
|
821
|
-
display: block !important;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
.cat-d-grid\:xl {
|
|
825
|
-
display: grid !important;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.cat-d-flex\:xl {
|
|
829
|
-
display: flex !important;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
.cat-d-inline-flex\:xl {
|
|
833
|
-
display: inline-flex !important;
|
|
834
|
-
}
|
|
835
|
-
}
|
|
836
|
-
.cat-elevation-transition {
|
|
837
|
-
transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
.cat-elevation-0 {
|
|
841
|
-
box-shadow: none;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
.cat-elevation-hover-0:hover, .cat-elevation-hover-0:focus, .cat-elevation-hover-0:focus-within {
|
|
845
|
-
box-shadow: none;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
.cat-elevation-1 {
|
|
849
|
-
box-shadow: 0 1px 4px 0 rgba(16, 29, 48, 0.2);
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.cat-elevation-hover-1:hover, .cat-elevation-hover-1:focus, .cat-elevation-hover-1:focus-within {
|
|
853
|
-
box-shadow: 0 1px 4px 0 rgba(16, 29, 48, 0.2);
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
.cat-elevation-2 {
|
|
857
|
-
box-shadow: 0 2px 4px -1px rgba(16, 29, 48, 0.2), 0 4px 5px 0 rgba(16, 29, 48, 0.26), 0 1px 10px -1px rgba(16, 29, 48, 0.12);
|
|
858
|
-
}
|
|
859
|
-
|
|
860
|
-
.cat-elevation-hover-2:hover, .cat-elevation-hover-2:focus, .cat-elevation-hover-2:focus-within {
|
|
861
|
-
box-shadow: 0 2px 4px -1px rgba(16, 29, 48, 0.2), 0 4px 5px 0 rgba(16, 29, 48, 0.26), 0 1px 10px -1px rgba(16, 29, 48, 0.12);
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
.cat-elevation-3 {
|
|
865
|
-
box-shadow: 0 2px 4px -1px rgba(16, 29, 48, 0.2), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 10px 20px -8px rgba(16, 29, 48, 0.12);
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
.cat-elevation-hover-3:hover, .cat-elevation-hover-3:focus, .cat-elevation-hover-3:focus-within {
|
|
869
|
-
box-shadow: 0 2px 4px -1px rgba(16, 29, 48, 0.2), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 10px 20px -8px rgba(16, 29, 48, 0.12);
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
.cat-elevation-4 {
|
|
873
|
-
box-shadow: 0 2px 4px -1px rgba(16, 29, 48, 0.05), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 32px 20px -20px rgba(16, 29, 48, 0.2);
|
|
874
|
-
}
|
|
875
|
-
|
|
876
|
-
.cat-elevation-hover-4:hover, .cat-elevation-hover-4:focus, .cat-elevation-hover-4:focus-within {
|
|
877
|
-
box-shadow: 0 2px 4px -1px rgba(16, 29, 48, 0.05), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 32px 20px -20px rgba(16, 29, 48, 0.2);
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
.cat-radius-l {
|
|
881
|
-
border-radius: 0.5rem;
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
.cat-radius-m {
|
|
885
|
-
border-radius: 0.25rem;
|
|
886
|
-
}
|
|
887
|
-
|
|
888
|
-
.cat-radius-s {
|
|
889
|
-
border-radius: 0.125rem;
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
.cat-m-auto {
|
|
893
|
-
margin: auto !important;
|
|
894
|
-
}
|
|
895
|
-
|
|
896
|
-
.cat-mv-auto {
|
|
897
|
-
margin-top: auto !important;
|
|
898
|
-
margin-bottom: auto !important;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.cat-mh-auto {
|
|
902
|
-
margin-left: auto !important;
|
|
903
|
-
margin-right: auto !important;
|
|
904
|
-
}
|
|
905
|
-
|
|
906
|
-
.cat-mt-auto {
|
|
907
|
-
margin-top: auto !important;
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
.cat-mb-auto {
|
|
911
|
-
margin-bottom: auto !important;
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
.cat-ml-auto {
|
|
915
|
-
margin-left: auto !important;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
.cat-mr-auto {
|
|
919
|
-
margin-right: auto !important;
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.cat-m-0 {
|
|
923
|
-
margin: 0 !important;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.cat-mv-0 {
|
|
927
|
-
margin-top: 0 !important;
|
|
928
|
-
margin-bottom: 0 !important;
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
.cat-mh-0 {
|
|
932
|
-
margin-left: 0 !important;
|
|
933
|
-
margin-right: 0 !important;
|
|
934
|
-
}
|
|
935
|
-
|
|
936
|
-
.cat-mt-0 {
|
|
937
|
-
margin-top: 0 !important;
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
.cat-mb-0 {
|
|
941
|
-
margin-bottom: 0 !important;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
.cat-ml-0 {
|
|
945
|
-
margin-left: 0 !important;
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
.cat-mr-0 {
|
|
949
|
-
margin-right: 0 !important;
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
.cat-p-0 {
|
|
953
|
-
padding: 0 !important;
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
.cat-pv-0 {
|
|
957
|
-
padding-top: 0 !important;
|
|
958
|
-
padding-bottom: 0 !important;
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
.cat-ph-0 {
|
|
962
|
-
padding-left: 0 !important;
|
|
963
|
-
padding-right: 0 !important;
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
.cat-pt-0 {
|
|
967
|
-
padding-top: 0 !important;
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
.cat-pb-0 {
|
|
971
|
-
padding-bottom: 0 !important;
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
.cat-pl-0 {
|
|
975
|
-
padding-left: 0 !important;
|
|
976
|
-
}
|
|
977
|
-
|
|
978
|
-
.cat-pr-0 {
|
|
979
|
-
padding-right: 0 !important;
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
.cat-m-xl {
|
|
983
|
-
margin: 2rem !important;
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
.cat-mv-xl {
|
|
987
|
-
margin-top: 2rem !important;
|
|
988
|
-
margin-bottom: 2rem !important;
|
|
989
|
-
}
|
|
990
|
-
|
|
991
|
-
.cat-mh-xl {
|
|
992
|
-
margin-left: 2rem !important;
|
|
993
|
-
margin-right: 2rem !important;
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
.cat-mt-xl {
|
|
997
|
-
margin-top: 2rem !important;
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
.cat-mb-xl {
|
|
1001
|
-
margin-bottom: 2rem !important;
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
.cat-ml-xl {
|
|
1005
|
-
margin-left: 2rem !important;
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
.cat-mr-xl {
|
|
1009
|
-
margin-right: 2rem !important;
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
.cat-p-xl {
|
|
1013
|
-
padding: 2rem !important;
|
|
1014
|
-
}
|
|
1015
|
-
|
|
1016
|
-
.cat-pv-xl {
|
|
1017
|
-
padding-top: 2rem !important;
|
|
1018
|
-
padding-bottom: 2rem !important;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
.cat-ph-xl {
|
|
1022
|
-
padding-left: 2rem !important;
|
|
1023
|
-
padding-right: 2rem !important;
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
.cat-pt-xl {
|
|
1027
|
-
padding-top: 2rem !important;
|
|
1028
|
-
}
|
|
1029
|
-
|
|
1030
|
-
.cat-pb-xl {
|
|
1031
|
-
padding-bottom: 2rem !important;
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
.cat-pl-xl {
|
|
1035
|
-
padding-left: 2rem !important;
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
|
-
.cat-pr-xl {
|
|
1039
|
-
padding-right: 2rem !important;
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
.cat-m-l {
|
|
1043
|
-
margin: 1.5rem !important;
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
.cat-mv-l {
|
|
1047
|
-
margin-top: 1.5rem !important;
|
|
1048
|
-
margin-bottom: 1.5rem !important;
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
|
-
.cat-mh-l {
|
|
1052
|
-
margin-left: 1.5rem !important;
|
|
1053
|
-
margin-right: 1.5rem !important;
|
|
1054
|
-
}
|
|
1055
|
-
|
|
1056
|
-
.cat-mt-l {
|
|
1057
|
-
margin-top: 1.5rem !important;
|
|
1058
|
-
}
|
|
1059
|
-
|
|
1060
|
-
.cat-mb-l {
|
|
1061
|
-
margin-bottom: 1.5rem !important;
|
|
1062
|
-
}
|
|
1063
|
-
|
|
1064
|
-
.cat-ml-l {
|
|
1065
|
-
margin-left: 1.5rem !important;
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
.cat-mr-l {
|
|
1069
|
-
margin-right: 1.5rem !important;
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
.cat-p-l {
|
|
1073
|
-
padding: 1.5rem !important;
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
.cat-pv-l {
|
|
1077
|
-
padding-top: 1.5rem !important;
|
|
1078
|
-
padding-bottom: 1.5rem !important;
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
.cat-ph-l {
|
|
1082
|
-
padding-left: 1.5rem !important;
|
|
1083
|
-
padding-right: 1.5rem !important;
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
.cat-pt-l {
|
|
1087
|
-
padding-top: 1.5rem !important;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
.cat-pb-l {
|
|
1091
|
-
padding-bottom: 1.5rem !important;
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
.cat-pl-l {
|
|
1095
|
-
padding-left: 1.5rem !important;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
.cat-pr-l {
|
|
1099
|
-
padding-right: 1.5rem !important;
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
.cat-m-m {
|
|
1103
|
-
margin: 1rem !important;
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
.cat-mv-m {
|
|
1107
|
-
margin-top: 1rem !important;
|
|
1108
|
-
margin-bottom: 1rem !important;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
.cat-mh-m {
|
|
1112
|
-
margin-left: 1rem !important;
|
|
1113
|
-
margin-right: 1rem !important;
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
.cat-mt-m {
|
|
1117
|
-
margin-top: 1rem !important;
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
|
-
.cat-mb-m {
|
|
1121
|
-
margin-bottom: 1rem !important;
|
|
1122
|
-
}
|
|
1123
|
-
|
|
1124
|
-
.cat-ml-m {
|
|
1125
|
-
margin-left: 1rem !important;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
.cat-mr-m {
|
|
1129
|
-
margin-right: 1rem !important;
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
.cat-p-m {
|
|
1133
|
-
padding: 1rem !important;
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
.cat-pv-m {
|
|
1137
|
-
padding-top: 1rem !important;
|
|
1138
|
-
padding-bottom: 1rem !important;
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
.cat-ph-m {
|
|
1142
|
-
padding-left: 1rem !important;
|
|
1143
|
-
padding-right: 1rem !important;
|
|
1144
|
-
}
|
|
1145
|
-
|
|
1146
|
-
.cat-pt-m {
|
|
1147
|
-
padding-top: 1rem !important;
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
|
-
.cat-pb-m {
|
|
1151
|
-
padding-bottom: 1rem !important;
|
|
1152
|
-
}
|
|
1153
|
-
|
|
1154
|
-
.cat-pl-m {
|
|
1155
|
-
padding-left: 1rem !important;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
.cat-pr-m {
|
|
1159
|
-
padding-right: 1rem !important;
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
.cat-m-s {
|
|
1163
|
-
margin: 0.5rem !important;
|
|
1164
|
-
}
|
|
1165
|
-
|
|
1166
|
-
.cat-mv-s {
|
|
1167
|
-
margin-top: 0.5rem !important;
|
|
1168
|
-
margin-bottom: 0.5rem !important;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
.cat-mh-s {
|
|
1172
|
-
margin-left: 0.5rem !important;
|
|
1173
|
-
margin-right: 0.5rem !important;
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
.cat-mt-s {
|
|
1177
|
-
margin-top: 0.5rem !important;
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
.cat-mb-s {
|
|
1181
|
-
margin-bottom: 0.5rem !important;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.cat-ml-s {
|
|
1185
|
-
margin-left: 0.5rem !important;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.cat-mr-s {
|
|
1189
|
-
margin-right: 0.5rem !important;
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
.cat-p-s {
|
|
1193
|
-
padding: 0.5rem !important;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
.cat-pv-s {
|
|
1197
|
-
padding-top: 0.5rem !important;
|
|
1198
|
-
padding-bottom: 0.5rem !important;
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
.cat-ph-s {
|
|
1202
|
-
padding-left: 0.5rem !important;
|
|
1203
|
-
padding-right: 0.5rem !important;
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
.cat-pt-s {
|
|
1207
|
-
padding-top: 0.5rem !important;
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
.cat-pb-s {
|
|
1211
|
-
padding-bottom: 0.5rem !important;
|
|
1212
|
-
}
|
|
1213
|
-
|
|
1214
|
-
.cat-pl-s {
|
|
1215
|
-
padding-left: 0.5rem !important;
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
.cat-pr-s {
|
|
1219
|
-
padding-right: 0.5rem !important;
|
|
1220
|
-
}
|
|
1221
|
-
|
|
1222
|
-
.cat-m-xs {
|
|
1223
|
-
margin: 0.25rem !important;
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
.cat-mv-xs {
|
|
1227
|
-
margin-top: 0.25rem !important;
|
|
1228
|
-
margin-bottom: 0.25rem !important;
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
.cat-mh-xs {
|
|
1232
|
-
margin-left: 0.25rem !important;
|
|
1233
|
-
margin-right: 0.25rem !important;
|
|
1234
|
-
}
|
|
1235
|
-
|
|
1236
|
-
.cat-mt-xs {
|
|
1237
|
-
margin-top: 0.25rem !important;
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
.cat-mb-xs {
|
|
1241
|
-
margin-bottom: 0.25rem !important;
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
.cat-ml-xs {
|
|
1245
|
-
margin-left: 0.25rem !important;
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
.cat-mr-xs {
|
|
1249
|
-
margin-right: 0.25rem !important;
|
|
1250
|
-
}
|
|
1251
|
-
|
|
1252
|
-
.cat-p-xs {
|
|
1253
|
-
padding: 0.25rem !important;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
.cat-pv-xs {
|
|
1257
|
-
padding-top: 0.25rem !important;
|
|
1258
|
-
padding-bottom: 0.25rem !important;
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
.cat-ph-xs {
|
|
1262
|
-
padding-left: 0.25rem !important;
|
|
1263
|
-
padding-right: 0.25rem !important;
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
.cat-pt-xs {
|
|
1267
|
-
padding-top: 0.25rem !important;
|
|
1268
|
-
}
|
|
1269
|
-
|
|
1270
|
-
.cat-pb-xs {
|
|
1271
|
-
padding-bottom: 0.25rem !important;
|
|
1272
|
-
}
|
|
1273
|
-
|
|
1274
|
-
.cat-pl-xs {
|
|
1275
|
-
padding-left: 0.25rem !important;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.cat-pr-xs {
|
|
1279
|
-
padding-right: 0.25rem !important;
|
|
1280
|
-
}
|
|
1281
|
-
|
|
1282
|
-
.cat-text-left,
|
|
1283
|
-
cat-button.cat-text-left::part(content) {
|
|
1284
|
-
text-align: left !important;
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
.cat-text-center {
|
|
1288
|
-
text-align: center !important;
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
.cat-text-right,
|
|
1292
|
-
cat-button.cat-text-right::part(content) {
|
|
1293
|
-
text-align: right !important;
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
.cat-ellipsis {
|
|
1297
|
-
/* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1298
|
-
overflow: hidden;
|
|
1299
|
-
text-overflow: ellipsis;
|
|
1300
|
-
white-space: nowrap;
|
|
1301
|
-
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1302
|
-
}
|
|
1303
|
-
|
|
1304
|
-
.cat-ellipsis-1 {
|
|
1305
|
-
/* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1306
|
-
overflow: hidden;
|
|
1307
|
-
text-overflow: ellipsis;
|
|
1308
|
-
white-space: nowrap;
|
|
1309
|
-
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
|
-
.cat-ellipsis-2 {
|
|
1313
|
-
/* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1314
|
-
display: -webkit-box;
|
|
1315
|
-
-webkit-line-clamp: 2;
|
|
1316
|
-
-webkit-box-orient: vertical;
|
|
1317
|
-
overflow: hidden;
|
|
1318
|
-
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
.cat-ellipsis-3 {
|
|
1322
|
-
/* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1323
|
-
display: -webkit-box;
|
|
1324
|
-
-webkit-line-clamp: 3;
|
|
1325
|
-
-webkit-box-orient: vertical;
|
|
1326
|
-
overflow: hidden;
|
|
1327
|
-
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1328
|
-
}
|
|
1329
|
-
|
|
1330
|
-
.cat-ellipsis-4 {
|
|
1331
|
-
/* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1332
|
-
display: -webkit-box;
|
|
1333
|
-
-webkit-line-clamp: 4;
|
|
1334
|
-
-webkit-box-orient: vertical;
|
|
1335
|
-
overflow: hidden;
|
|
1336
|
-
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
|
-
.cat-ellipsis-5 {
|
|
1340
|
-
/* stylelint-disable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1341
|
-
display: -webkit-box;
|
|
1342
|
-
-webkit-line-clamp: 5;
|
|
1343
|
-
-webkit-box-orient: vertical;
|
|
1344
|
-
overflow: hidden;
|
|
1345
|
-
/* stylelint-enable value-no-vendor-prefix, property-no-vendor-prefix */
|
|
1346
|
-
}
|
|
1347
|
-
|
|
1348
|
-
.cat-select {
|
|
1349
|
-
/* stylelint-disable property-no-vendor-prefix */
|
|
1350
|
-
-webkit-user-select: auto;
|
|
1351
|
-
-ms-user-select: auto;
|
|
1352
|
-
user-select: auto;
|
|
1353
|
-
/* stylelint-enable property-no-vendor-prefix */
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
|
-
.cat-no-select {
|
|
1357
|
-
/* stylelint-disable property-no-vendor-prefix */
|
|
1358
|
-
-webkit-user-select: none;
|
|
1359
|
-
-ms-user-select: none;
|
|
1360
|
-
user-select: none;
|
|
1361
|
-
/* stylelint-enable property-no-vendor-prefix */
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
.cat-break-word {
|
|
1365
|
-
word-wrap: break-word;
|
|
1366
|
-
word-break: break-word;
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
.cat-visually-hidden {
|
|
1370
|
-
position: absolute !important;
|
|
1371
|
-
width: 1px !important;
|
|
1372
|
-
height: 1px !important;
|
|
1373
|
-
padding: 0 !important;
|
|
1374
|
-
margin: -1px !important;
|
|
1375
|
-
overflow: hidden !important;
|
|
1376
|
-
clip: rect(0, 0, 0, 0) !important;
|
|
1377
|
-
white-space: nowrap !important;
|
|
1378
|
-
border: 0 !important;
|
|
1379
|
-
}
|
|
1380
|
-
|
|
1381
|
-
.cat-visually-hidden-focusable:not(:focus):not(:focus-within) {
|
|
1382
|
-
position: absolute !important;
|
|
1383
|
-
width: 1px !important;
|
|
1384
|
-
height: 1px !important;
|
|
1385
|
-
padding: 0 !important;
|
|
1386
|
-
margin: -1px !important;
|
|
1387
|
-
overflow: hidden !important;
|
|
1388
|
-
clip: rect(0, 0, 0, 0) !important;
|
|
1389
|
-
white-space: nowrap !important;
|
|
1390
|
-
border: 0 !important;
|
|
1391
|
-
}
|
|
1392
|
-
|
|
1393
|
-
*:not(:hover):not(:focus):not(:focus-within) > .cat-visually-hidden-hoverable {
|
|
1394
|
-
position: absolute !important;
|
|
1395
|
-
width: 1px !important;
|
|
1396
|
-
height: 1px !important;
|
|
1397
|
-
padding: 0 !important;
|
|
1398
|
-
margin: -1px !important;
|
|
1399
|
-
overflow: hidden !important;
|
|
1400
|
-
clip: rect(0, 0, 0, 0) !important;
|
|
1401
|
-
white-space: nowrap !important;
|
|
1402
|
-
border: 0 !important;
|
|
1403
|
-
}
|
|
1
|
+
@charset "UTF-8";*,::before,::after{box-sizing:border-box;background-repeat:no-repeat;}::before,::after{text-decoration:inherit;vertical-align:inherit;}:where(:root){cursor:default;line-height:1.5;overflow-wrap:break-word;-moz-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:100%;}:where(body){margin:0}:where(h1){font-size:2em;margin:0.67em 0}:where(dl,ol,ul) :where(dl,ol,ul){margin:0}:where(hr){color:inherit;height:0;}:where(nav) :where(ol,ul){list-style-type:none;padding:0}:where(nav li)::before{content:"";float:left}:where(pre){font-family:monospace, monospace;font-size:1em;overflow:auto;}:where(abbr[title]){text-decoration:underline;text-decoration:underline dotted}:where(b,strong){font-weight:bolder}:where(code,kbd,samp){font-family:monospace, monospace;font-size:1em;}:where(small){font-size:80%}:where(audio,canvas,iframe,img,svg,video){vertical-align:middle}:where(iframe){border-style:none}:where(svg:not([fill])){fill:currentColor}:where(table){border-collapse:collapse;border-color:inherit;text-indent:0;}:where(button,input,select){margin:0}:where(button,[type="button" i],[type="reset" i],[type="submit" i]){-webkit-appearance:button}:where(fieldset){border:1px solid #a0a0a0}:where(progress){vertical-align:baseline}:where(textarea){margin:0;resize:vertical;}:where([type="search" i]){-webkit-appearance:textfield;outline-offset:-2px;}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-input-placeholder{color:inherit;opacity:0.54}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}:where(dialog){background-color:white;border:solid;color:black;height:-moz-fit-content;height:fit-content;left:0;margin:auto;padding:1em;position:absolute;right:0;width:-moz-fit-content;width:fit-content}:where(dialog:not([open])){display:none}:where(details>summary:first-of-type){display:list-item}:where([aria-busy="true" i]){cursor:progress}:where([aria-controls]){cursor:pointer}:where([aria-disabled="true" i],[disabled]){cursor:not-allowed}:where([aria-hidden="false" i][hidden]){display:initial}:where([aria-hidden="false" i][hidden]:not(:focus)){clip:rect(0, 0, 0, 0);position:absolute}:where(iframe,img,input,video,select,textarea){height:auto;max-width:100%}@media (prefers-reduced-motion: reduce){*,::before,::after{animation-delay:-1ms !important;animation-duration:1ms !important;animation-iteration-count:1 !important;background-attachment:initial !important;scroll-behavior:auto !important;transition-delay:0s !important;transition-duration:0s !important;}}body{font-size:0.9375rem;line-height:1.25rem;font-family:var(--cat-font-family-body, "Lato"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-weight:var(--cat-font-weight-body, 400);color:rgb(var(--cat-font-color-body, 0, 0, 0));background-color:rgb(var(--cat-bg, 248, 248, 251))}code,kbd,samp,pre{font-family:var(--cat-font-family-mono, "Azeret Mono"), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:0.9375rem;line-height:1.25rem;color:rgb(var(--cat-font-color-mono, 0, 0, 0));font-weight:var(--cat-font-weight-mono, 400);color:rgb(var(--cat-font-color-mono, 0, 0, 0))}nav hr,nav .cat-hr{margin-top:0.5rem;margin-bottom:0.5rem}nav .cat-head,nav .cat-text{padding:0.5rem 1rem}nav .cat-head>:last-child,nav .cat-text>:last-child{margin-bottom:0}nav .cat-head{font-family:var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:0.9375rem;line-height:1.25rem;color:rgb(var(--cat-font-color-head, 0, 0, 0))}h1,h2,h3,h4,h5,h6,.cat-h1,.cat-h2,.cat-h3,.cat-h4,.cat-h5,.cat-h6{margin-top:0;margin-bottom:0.5rem;font-weight:var(--cat-font-weight-head, 500);color:rgb(var(--cat-font-color-head, 0, 0, 0))}h1,.cat-h1{font-family:var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1.75rem;line-height:2rem;color:rgb(var(--cat-font-color-head, 0, 0, 0))}h2,.cat-h2{font-family:var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1.5rem;line-height:1.75rem;color:rgb(var(--cat-font-color-head, 0, 0, 0))}h3,.cat-h3{font-family:var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1.25rem;line-height:1.5rem;color:rgb(var(--cat-font-color-head, 0, 0, 0))}h4,.cat-h4{font-family:var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1.125rem;line-height:1.5rem;color:rgb(var(--cat-font-color-head, 0, 0, 0))}h5,.cat-h5{font-family:var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:0.9375rem;line-height:1.25rem;color:rgb(var(--cat-font-color-head, 0, 0, 0))}h6,.cat-h6{font-family:var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:0.875rem;line-height:1rem;color:rgb(var(--cat-font-color-head, 0, 0, 0))}p{margin-top:0;margin-bottom:1rem}hr,.cat-hr{margin:1rem 0;border:0;height:1px;background-color:#ebecf0;overflow:hidden}a{color:rgb(var(--cat-primary-text, 32, 127, 138));text-decoration:none;transition:color 0.13s linear}a:hover{color:rgb(var(--cat-primary-text-hover, 28, 112, 122));text-decoration:underline}a:active{color:rgb(var(--cat-primary-text-active, 25, 101, 110))}a:focus-visible{outline:2px solid #0071ff}a[tabindex="-1"]:focus{outline:none}b,strong,.cat-strong{font-weight:600}mark,.cat-mark{padding:0.125rem 0.25rem;background-color:rgba(var(--cat-primary-bg, 32, 127, 138), 0.2)}small,.cat-small{font-size:0.875em}.cat-underline{text-decoration:underline}.cat-line-through{text-decoration:line-through}.cat-muted{color:rgb(var(--cat-font-color-muted, 105, 118, 135))}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ol dl,ul ol,ul ul,ul dl,dl ol,dl ul,dl dl{margin-bottom:0}nav ol,nav ul{list-style-type:none;margin:0;padding:0}dt{font-weight:600}dd{margin-bottom:0.5rem;margin-left:0}.cat-lead{font-size:1.25rem;line-height:1.5rem;font-weight:300}blockquote{margin:0 0 1rem;font-style:italic;font-size:1.125rem;line-height:1.5rem;color:rgb(var(--cat-font-color-body, 0, 0, 0))}blockquote>:last-child{margin-bottom:0}figure{margin:0 0 1rem}figure figcaption{margin-top:-0.5rem;margin-bottom:0;font-size:0.875rem;line-height:1rem;color:rgb(var(--cat-font-color-muted, 105, 118, 135))}figure figcaption::before{content:"— "}@font-face{font-family:"DM Sans";src:url("/assets/fonts/DMSans-Medium.woff2") format("woff2");font-style:normal;font-weight:500;font-display:swap}@font-face{font-family:"DM Sans";src:url("/assets/fonts/DMSans-MediumItalic.woff2") format("woff2");font-style:italic;font-weight:500;font-display:swap}@font-face{font-family:Lato;src:url("/assets/fonts/Lato-Light.woff2") format("woff2"), url("/assets/fonts/Lato-Light.woff") format("woff");font-style:normal;font-weight:300;text-rendering:optimizeLegibility;font-display:fallback}@font-face{font-family:Lato;src:url("/assets/fonts/Lato-LightItalic.woff2") format("woff2"), url("/assets/fonts/Lato-LightItalic.woff") format("woff");font-style:italic;font-weight:300;text-rendering:optimizeLegibility;font-display:fallback}@font-face{font-family:Lato;src:url("/assets/fonts/Lato-Regular.woff2") format("woff2"), url("/assets/fonts/Lato-Regular.woff") format("woff");font-style:normal;font-weight:400;text-rendering:optimizeLegibility;font-display:fallback}@font-face{font-family:Lato;src:url("/assets/fonts/Lato-Italic.woff2") format("woff2"), url("/assets/fonts/Lato-Italic.woff") format("woff");font-style:italic;font-weight:400;text-rendering:optimizeLegibility;font-display:fallback}@font-face{font-family:Lato;src:url("/assets/fonts/Lato-Bold.woff2") format("woff2"), url("/assets/fonts/Lato-Bold.woff") format("woff");font-style:normal;font-weight:700;text-rendering:optimizeLegibility;font-display:fallback}@font-face{font-family:Lato;src:url("/assets/fonts/Lato-BoldItalic.woff2") format("woff2"), url("/assets/fonts/Lato-BoldItalic.woff") format("woff");font-style:italic;font-weight:700;text-rendering:optimizeLegibility;font-display:fallback}@font-face{font-family:"Azeret Mono";src:url("/assets/fonts/AzeretMono-Regular.woff2") format("woff2");font-style:normal;font-weight:400;font-display:fallback}.cat-d-none{display:none !important}.cat-d-inline{display:inline !important}.cat-d-inline-block{display:inline-block !important}.cat-d-block{display:block !important}.cat-d-grid{display:grid !important}.cat-d-flex{display:flex !important}.cat-d-inline-flex{display:inline-flex !important}@media screen and (min-width: 540px){.cat-d-none\:xs{display:none !important}.cat-d-inline\:xs{display:inline !important}.cat-d-inline-block\:xs{display:inline-block !important}.cat-d-block\:xs{display:block !important}.cat-d-grid\:xs{display:grid !important}.cat-d-flex\:xs{display:flex !important}.cat-d-inline-flex\:xs{display:inline-flex !important}}@media screen and (min-width: 768px){.cat-d-none\:s{display:none !important}.cat-d-inline\:s{display:inline !important}.cat-d-inline-block\:s{display:inline-block !important}.cat-d-block\:s{display:block !important}.cat-d-grid\:s{display:grid !important}.cat-d-flex\:s{display:flex !important}.cat-d-inline-flex\:s{display:inline-flex !important}}@media screen and (min-width: 992px){.cat-d-none\:m{display:none !important}.cat-d-inline\:m{display:inline !important}.cat-d-inline-block\:m{display:inline-block !important}.cat-d-block\:m{display:block !important}.cat-d-grid\:m{display:grid !important}.cat-d-flex\:m{display:flex !important}.cat-d-inline-flex\:m{display:inline-flex !important}}@media screen and (min-width: 1200px){.cat-d-none\:l{display:none !important}.cat-d-inline\:l{display:inline !important}.cat-d-inline-block\:l{display:inline-block !important}.cat-d-block\:l{display:block !important}.cat-d-grid\:l{display:grid !important}.cat-d-flex\:l{display:flex !important}.cat-d-inline-flex\:l{display:inline-flex !important}}@media screen and (min-width: 1400px){.cat-d-none\:xl{display:none !important}.cat-d-inline\:xl{display:inline !important}.cat-d-inline-block\:xl{display:inline-block !important}.cat-d-block\:xl{display:block !important}.cat-d-grid\:xl{display:grid !important}.cat-d-flex\:xl{display:flex !important}.cat-d-inline-flex\:xl{display:inline-flex !important}}.cat-elevation-transition{transition:box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1)}.cat-elevation-0{box-shadow:none}.cat-elevation-hover-0:hover,.cat-elevation-hover-0:focus,.cat-elevation-hover-0:focus-within{box-shadow:none}.cat-elevation-1{box-shadow:0 1px 4px 0 rgba(16, 29, 48, 0.2)}.cat-elevation-hover-1:hover,.cat-elevation-hover-1:focus,.cat-elevation-hover-1:focus-within{box-shadow:0 1px 4px 0 rgba(16, 29, 48, 0.2)}.cat-elevation-2{box-shadow:0 2px 4px -1px rgba(16, 29, 48, 0.2), 0 4px 5px 0 rgba(16, 29, 48, 0.26), 0 1px 10px -1px rgba(16, 29, 48, 0.12)}.cat-elevation-hover-2:hover,.cat-elevation-hover-2:focus,.cat-elevation-hover-2:focus-within{box-shadow:0 2px 4px -1px rgba(16, 29, 48, 0.2), 0 4px 5px 0 rgba(16, 29, 48, 0.26), 0 1px 10px -1px rgba(16, 29, 48, 0.12)}.cat-elevation-3{box-shadow:0 2px 4px -1px rgba(16, 29, 48, 0.2), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 10px 20px -8px rgba(16, 29, 48, 0.12)}.cat-elevation-hover-3:hover,.cat-elevation-hover-3:focus,.cat-elevation-hover-3:focus-within{box-shadow:0 2px 4px -1px rgba(16, 29, 48, 0.2), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 10px 20px -8px rgba(16, 29, 48, 0.12)}.cat-elevation-4{box-shadow:0 2px 4px -1px rgba(16, 29, 48, 0.05), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 32px 20px -20px rgba(16, 29, 48, 0.2)}.cat-elevation-hover-4:hover,.cat-elevation-hover-4:focus,.cat-elevation-hover-4:focus-within{box-shadow:0 2px 4px -1px rgba(16, 29, 48, 0.05), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 32px 20px -20px rgba(16, 29, 48, 0.2)}.cat-radius-l{border-radius:0.5rem}.cat-radius-m{border-radius:0.25rem}.cat-radius-s{border-radius:0.125rem}.cat-m-auto{margin:auto !important}.cat-mv-auto{margin-top:auto !important;margin-bottom:auto !important}.cat-mh-auto{margin-left:auto !important;margin-right:auto !important}.cat-mt-auto{margin-top:auto !important}.cat-mb-auto{margin-bottom:auto !important}.cat-ml-auto{margin-left:auto !important}.cat-mr-auto{margin-right:auto !important}.cat-m-0{margin:0 !important}.cat-mv-0{margin-top:0 !important;margin-bottom:0 !important}.cat-mh-0{margin-left:0 !important;margin-right:0 !important}.cat-mt-0{margin-top:0 !important}.cat-mb-0{margin-bottom:0 !important}.cat-ml-0{margin-left:0 !important}.cat-mr-0{margin-right:0 !important}.cat-p-0{padding:0 !important}.cat-pv-0{padding-top:0 !important;padding-bottom:0 !important}.cat-ph-0{padding-left:0 !important;padding-right:0 !important}.cat-pt-0{padding-top:0 !important}.cat-pb-0{padding-bottom:0 !important}.cat-pl-0{padding-left:0 !important}.cat-pr-0{padding-right:0 !important}.cat-m-xl{margin:2rem !important}.cat-mv-xl{margin-top:2rem !important;margin-bottom:2rem !important}.cat-mh-xl{margin-left:2rem !important;margin-right:2rem !important}.cat-mt-xl{margin-top:2rem !important}.cat-mb-xl{margin-bottom:2rem !important}.cat-ml-xl{margin-left:2rem !important}.cat-mr-xl{margin-right:2rem !important}.cat-p-xl{padding:2rem !important}.cat-pv-xl{padding-top:2rem !important;padding-bottom:2rem !important}.cat-ph-xl{padding-left:2rem !important;padding-right:2rem !important}.cat-pt-xl{padding-top:2rem !important}.cat-pb-xl{padding-bottom:2rem !important}.cat-pl-xl{padding-left:2rem !important}.cat-pr-xl{padding-right:2rem !important}.cat-m-l{margin:1.5rem !important}.cat-mv-l{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.cat-mh-l{margin-left:1.5rem !important;margin-right:1.5rem !important}.cat-mt-l{margin-top:1.5rem !important}.cat-mb-l{margin-bottom:1.5rem !important}.cat-ml-l{margin-left:1.5rem !important}.cat-mr-l{margin-right:1.5rem !important}.cat-p-l{padding:1.5rem !important}.cat-pv-l{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.cat-ph-l{padding-left:1.5rem !important;padding-right:1.5rem !important}.cat-pt-l{padding-top:1.5rem !important}.cat-pb-l{padding-bottom:1.5rem !important}.cat-pl-l{padding-left:1.5rem !important}.cat-pr-l{padding-right:1.5rem !important}.cat-m-m{margin:1rem !important}.cat-mv-m{margin-top:1rem !important;margin-bottom:1rem !important}.cat-mh-m{margin-left:1rem !important;margin-right:1rem !important}.cat-mt-m{margin-top:1rem !important}.cat-mb-m{margin-bottom:1rem !important}.cat-ml-m{margin-left:1rem !important}.cat-mr-m{margin-right:1rem !important}.cat-p-m{padding:1rem !important}.cat-pv-m{padding-top:1rem !important;padding-bottom:1rem !important}.cat-ph-m{padding-left:1rem !important;padding-right:1rem !important}.cat-pt-m{padding-top:1rem !important}.cat-pb-m{padding-bottom:1rem !important}.cat-pl-m{padding-left:1rem !important}.cat-pr-m{padding-right:1rem !important}.cat-m-s{margin:0.5rem !important}.cat-mv-s{margin-top:0.5rem !important;margin-bottom:0.5rem !important}.cat-mh-s{margin-left:0.5rem !important;margin-right:0.5rem !important}.cat-mt-s{margin-top:0.5rem !important}.cat-mb-s{margin-bottom:0.5rem !important}.cat-ml-s{margin-left:0.5rem !important}.cat-mr-s{margin-right:0.5rem !important}.cat-p-s{padding:0.5rem !important}.cat-pv-s{padding-top:0.5rem !important;padding-bottom:0.5rem !important}.cat-ph-s{padding-left:0.5rem !important;padding-right:0.5rem !important}.cat-pt-s{padding-top:0.5rem !important}.cat-pb-s{padding-bottom:0.5rem !important}.cat-pl-s{padding-left:0.5rem !important}.cat-pr-s{padding-right:0.5rem !important}.cat-m-xs{margin:0.25rem !important}.cat-mv-xs{margin-top:0.25rem !important;margin-bottom:0.25rem !important}.cat-mh-xs{margin-left:0.25rem !important;margin-right:0.25rem !important}.cat-mt-xs{margin-top:0.25rem !important}.cat-mb-xs{margin-bottom:0.25rem !important}.cat-ml-xs{margin-left:0.25rem !important}.cat-mr-xs{margin-right:0.25rem !important}.cat-p-xs{padding:0.25rem !important}.cat-pv-xs{padding-top:0.25rem !important;padding-bottom:0.25rem !important}.cat-ph-xs{padding-left:0.25rem !important;padding-right:0.25rem !important}.cat-pt-xs{padding-top:0.25rem !important}.cat-pb-xs{padding-bottom:0.25rem !important}.cat-pl-xs{padding-left:0.25rem !important}.cat-pr-xs{padding-right:0.25rem !important}.cat-text-left,cat-button.cat-text-left::part(content){text-align:left !important}.cat-text-center{text-align:center !important}.cat-text-right,cat-button.cat-text-right::part(content){text-align:right !important}.cat-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.cat-ellipsis-1{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.cat-ellipsis-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}.cat-ellipsis-3{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}.cat-ellipsis-4{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;}.cat-ellipsis-5{display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;}.cat-select{-webkit-user-select:auto;-ms-user-select:auto;user-select:auto;}.cat-no-select{-webkit-user-select:none;-ms-user-select:none;user-select:none;}.cat-break-word{word-wrap:break-word;word-break:break-word}.cat-visually-hidden{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.cat-visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}*:not(:hover):not(:focus):not(:focus-within)>.cat-visually-hidden-hoverable{position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}
|