@cirthcss/cirth 0.3.0 → 0.4.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.
@@ -1,3507 +0,0 @@
1
- *, :before, :after {
2
- box-sizing: border-box;
3
- background-repeat: no-repeat;
4
- }
5
-
6
- :before, :after {
7
- -webkit-text-decoration: inherit;
8
- text-decoration: inherit;
9
- vertical-align: inherit;
10
- }
11
-
12
- :where(:root) {
13
- -webkit-tap-highlight-color: transparent;
14
- -webkit-text-size-adjust: 100%;
15
- -moz-text-size-adjust: 100%;
16
- text-size-adjust: 100%;
17
- background-color: var(--cirth-background-color);
18
- color: var(--cirth-color);
19
- font-weight: var(--cirth-font-weight);
20
- font-size: var(--cirth-font-size);
21
- line-height: var(--cirth-line-height);
22
- font-family: var(--cirth-font-family);
23
- text-underline-offset: var(--cirth-text-underline-offset);
24
- text-rendering: optimizelegibility;
25
- overflow-wrap: break-word;
26
- tab-size: 4;
27
- }
28
-
29
- :where(:host) {
30
- -webkit-tap-highlight-color: transparent;
31
- -webkit-text-size-adjust: 100%;
32
- -moz-text-size-adjust: 100%;
33
- text-size-adjust: 100%;
34
- background-color: var(--cirth-background-color);
35
- color: var(--cirth-color);
36
- font-weight: var(--cirth-font-weight);
37
- font-size: var(--cirth-font-size);
38
- line-height: var(--cirth-line-height);
39
- font-family: var(--cirth-font-family);
40
- text-underline-offset: var(--cirth-text-underline-offset);
41
- text-rendering: optimizelegibility;
42
- overflow-wrap: break-word;
43
- tab-size: 4;
44
- }
45
-
46
- body {
47
- width: 100%;
48
- margin: 0;
49
- }
50
-
51
- main {
52
- display: block;
53
- }
54
-
55
- body > header, body > main, body > footer {
56
- width: 100%;
57
- padding: var(--cirth-block-spacing-vertical) var(--cirth-block-spacing-horizontal);
58
- margin-left: auto;
59
- margin-right: auto;
60
- }
61
-
62
- @media (width >= 576px) {
63
- body > header, body > main, body > footer {
64
- max-width: 510px;
65
- padding-left: 0;
66
- padding-right: 0;
67
- }
68
- }
69
-
70
- @media (width >= 768px) {
71
- body > header, body > main, body > footer {
72
- max-width: 700px;
73
- }
74
- }
75
-
76
- @media (width >= 1024px) {
77
- body > header, body > main, body > footer {
78
- max-width: 950px;
79
- }
80
- }
81
-
82
- @media (width >= 1280px) {
83
- body > header, body > main, body > footer {
84
- max-width: 1200px;
85
- }
86
- }
87
-
88
- @media (width >= 1536px) {
89
- body > header, body > main, body > footer {
90
- max-width: 1450px;
91
- }
92
- }
93
-
94
- section {
95
- margin-bottom: var(--cirth-block-spacing-vertical);
96
- }
97
-
98
- b, strong {
99
- font-weight: bolder;
100
- }
101
-
102
- sub, sup {
103
- vertical-align: baseline;
104
- font-size: .75em;
105
- line-height: 0;
106
- position: relative;
107
- }
108
-
109
- sub {
110
- bottom: -.25em;
111
- }
112
-
113
- sup {
114
- top: -.5em;
115
- }
116
-
117
- address, blockquote, dl, ol, p, pre, table, ul {
118
- margin-top: 0;
119
- margin-bottom: var(--cirth-typography-spacing-vertical);
120
- color: var(--cirth-color);
121
- font-style: normal;
122
- font-weight: var(--cirth-font-weight);
123
- }
124
-
125
- h1, h2, h3, h4, h5, h6 {
126
- margin-top: 0;
127
- margin-bottom: var(--cirth-typography-spacing-vertical);
128
- color: var(--cirth-color);
129
- font-weight: var(--cirth-font-weight);
130
- font-size: var(--cirth-font-size);
131
- line-height: var(--cirth-line-height);
132
- font-family: var(--cirth-font-family);
133
- }
134
-
135
- h1 {
136
- --cirth-color: var(--cirth-h1-color);
137
- }
138
-
139
- h2 {
140
- --cirth-color: var(--cirth-h2-color);
141
- }
142
-
143
- h3 {
144
- --cirth-color: var(--cirth-h3-color);
145
- }
146
-
147
- h4 {
148
- --cirth-color: var(--cirth-h4-color);
149
- }
150
-
151
- h5 {
152
- --cirth-color: var(--cirth-h5-color);
153
- }
154
-
155
- h6 {
156
- --cirth-color: var(--cirth-h6-color);
157
- }
158
-
159
- :where(article, address, blockquote, dl, figure, form, ol, p, pre, table, ul) ~ :is(h1, h2, h3, h4, h5, h6) {
160
- margin-top: var(--cirth-typography-spacing-top);
161
- }
162
-
163
- p, hgroup {
164
- margin-bottom: var(--cirth-typography-spacing-vertical);
165
- }
166
-
167
- hgroup > * {
168
- margin-top: 0;
169
- margin-bottom: 0;
170
- }
171
-
172
- hgroup > :not(:first-child):last-child {
173
- --cirth-color: var(--cirth-muted-color);
174
- --cirth-font-weight: unset;
175
- font-size: var(--cirth-font-size-md);
176
- }
177
-
178
- :where(ol, ul) li {
179
- margin-bottom: calc(var(--cirth-typography-spacing-vertical) * .25);
180
- }
181
-
182
- :where(dl, ol, ul) :where(dl, ol, ul) {
183
- margin: 0;
184
- margin-top: calc(var(--cirth-typography-spacing-vertical) * .25);
185
- }
186
-
187
- ul li {
188
- list-style: square;
189
- }
190
-
191
- mark {
192
- background-color: var(--cirth-mark-background-color);
193
- color: var(--cirth-mark-color);
194
- vertical-align: baseline;
195
- padding: .125rem .25rem;
196
- }
197
-
198
- blockquote {
199
- margin: var(--cirth-typography-spacing-vertical) 0;
200
- padding: var(--cirth-spacing);
201
- border-right: none;
202
- border-left: var(--cirth-border-width-4) solid var(--cirth-blockquote-border-color);
203
- border-inline-start: var(--cirth-border-width-4) solid var(--cirth-blockquote-border-color);
204
- border-inline-end: none;
205
- display: block;
206
- }
207
-
208
- blockquote footer {
209
- margin-top: calc(var(--cirth-typography-spacing-vertical) * .5);
210
- color: var(--cirth-blockquote-footer-color);
211
- }
212
-
213
- abbr[title] {
214
- border-bottom: var(--cirth-border-width-1) dotted;
215
- cursor: help;
216
- text-decoration: none;
217
- }
218
-
219
- ins {
220
- color: var(--cirth-ins-color);
221
- text-decoration: none;
222
- }
223
-
224
- del {
225
- color: var(--cirth-del-color);
226
- }
227
-
228
- ::selection {
229
- background-color: var(--cirth-text-selection-color);
230
- }
231
-
232
- [role="link"] {
233
- --cirth-color: var(--cirth-primary);
234
- --cirth-background-color: transparent;
235
- --cirth-underline: var(--cirth-primary-underline);
236
- background-color: var(--cirth-background-color);
237
- color: var(--cirth-color);
238
- -webkit-text-decoration: var(--cirth-text-decoration);
239
- text-decoration: var(--cirth-text-decoration);
240
- -webkit-text-decoration-color: var(--cirth-underline);
241
- text-decoration-color: var(--cirth-underline);
242
- text-underline-offset: .125em;
243
- transition: background-color var(--cirth-transition), color var(--cirth-transition), text-decoration var(--cirth-transition), box-shadow var(--cirth-transition);
244
- outline: none;
245
- }
246
-
247
- :where(a:not([role="button"])) {
248
- --cirth-color: var(--cirth-primary);
249
- --cirth-background-color: transparent;
250
- --cirth-underline: var(--cirth-primary-underline);
251
- background-color: var(--cirth-background-color);
252
- color: var(--cirth-color);
253
- -webkit-text-decoration: var(--cirth-text-decoration);
254
- text-decoration: var(--cirth-text-decoration);
255
- -webkit-text-decoration-color: var(--cirth-underline);
256
- text-decoration-color: var(--cirth-underline);
257
- text-underline-offset: .125em;
258
- transition: background-color var(--cirth-transition), color var(--cirth-transition), text-decoration var(--cirth-transition), box-shadow var(--cirth-transition);
259
- outline: none;
260
- }
261
-
262
- :where(a:not([role="button"])):is([aria-current]:not([aria-current="false"]), :hover, :active, :focus) {
263
- --cirth-color: var(--cirth-primary-hover);
264
- --cirth-underline: var(--cirth-primary-hover-underline);
265
- --cirth-text-decoration: underline;
266
- }
267
-
268
- [role="link"]:is([aria-current]:not([aria-current="false"]), :hover, :active, :focus) {
269
- --cirth-color: var(--cirth-primary-hover);
270
- --cirth-underline: var(--cirth-primary-hover-underline);
271
- --cirth-text-decoration: underline;
272
- }
273
-
274
- :where(a:not([role="button"])):focus-visible {
275
- box-shadow: 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
276
- }
277
-
278
- [role="link"]:focus-visible {
279
- box-shadow: 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
280
- }
281
-
282
- a[role="button"] {
283
- display: inline-block;
284
- }
285
-
286
- button {
287
- text-transform: none;
288
- -webkit-appearance: button;
289
- margin: 0;
290
- font-family: inherit;
291
- overflow: visible;
292
- }
293
-
294
- button, [role="button"] {
295
- --cirth-background-color: var(--cirth-primary-background);
296
- --cirth-border-color: var(--cirth-primary-border);
297
- --cirth-color: var(--cirth-primary-inverse);
298
- --cirth-box-shadow: var(--cirth-button-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
299
- padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
300
- border: var(--cirth-border-width) solid var(--cirth-border-color);
301
- border-radius: var(--cirth-border-radius);
302
- background-color: var(--cirth-background-color);
303
- box-shadow: var(--cirth-box-shadow);
304
- color: var(--cirth-color);
305
- font-weight: var(--cirth-font-weight);
306
- font-size: var(--cirth-font-size-md);
307
- line-height: var(--cirth-line-height);
308
- text-align: center;
309
- cursor: pointer;
310
- -webkit-user-select: none;
311
- user-select: none;
312
- transition: background-color var(--cirth-transition), border-color var(--cirth-transition), color var(--cirth-transition), box-shadow var(--cirth-transition);
313
- outline: none;
314
- text-decoration: none;
315
- }
316
-
317
- [type="submit"] {
318
- --cirth-background-color: var(--cirth-primary-background);
319
- --cirth-border-color: var(--cirth-primary-border);
320
- --cirth-color: var(--cirth-primary-inverse);
321
- --cirth-box-shadow: var(--cirth-button-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
322
- padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
323
- border: var(--cirth-border-width) solid var(--cirth-border-color);
324
- border-radius: var(--cirth-border-radius);
325
- background-color: var(--cirth-background-color);
326
- box-shadow: var(--cirth-box-shadow);
327
- color: var(--cirth-color);
328
- font-weight: var(--cirth-font-weight);
329
- font-size: var(--cirth-font-size-md);
330
- line-height: var(--cirth-line-height);
331
- text-align: center;
332
- cursor: pointer;
333
- -webkit-user-select: none;
334
- user-select: none;
335
- transition: background-color var(--cirth-transition), border-color var(--cirth-transition), color var(--cirth-transition), box-shadow var(--cirth-transition);
336
- outline: none;
337
- text-decoration: none;
338
- }
339
-
340
- [type="reset"] {
341
- --cirth-background-color: var(--cirth-primary-background);
342
- --cirth-border-color: var(--cirth-primary-border);
343
- --cirth-color: var(--cirth-primary-inverse);
344
- --cirth-box-shadow: var(--cirth-button-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
345
- padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
346
- border: var(--cirth-border-width) solid var(--cirth-border-color);
347
- border-radius: var(--cirth-border-radius);
348
- background-color: var(--cirth-background-color);
349
- box-shadow: var(--cirth-box-shadow);
350
- color: var(--cirth-color);
351
- font-weight: var(--cirth-font-weight);
352
- font-size: var(--cirth-font-size-md);
353
- line-height: var(--cirth-line-height);
354
- text-align: center;
355
- cursor: pointer;
356
- -webkit-user-select: none;
357
- user-select: none;
358
- transition: background-color var(--cirth-transition), border-color var(--cirth-transition), color var(--cirth-transition), box-shadow var(--cirth-transition);
359
- outline: none;
360
- text-decoration: none;
361
- }
362
-
363
- [type="button"] {
364
- --cirth-background-color: var(--cirth-primary-background);
365
- --cirth-border-color: var(--cirth-primary-border);
366
- --cirth-color: var(--cirth-primary-inverse);
367
- --cirth-box-shadow: var(--cirth-button-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
368
- padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
369
- border: var(--cirth-border-width) solid var(--cirth-border-color);
370
- border-radius: var(--cirth-border-radius);
371
- background-color: var(--cirth-background-color);
372
- box-shadow: var(--cirth-box-shadow);
373
- color: var(--cirth-color);
374
- font-weight: var(--cirth-font-weight);
375
- font-size: var(--cirth-font-size-md);
376
- line-height: var(--cirth-line-height);
377
- text-align: center;
378
- cursor: pointer;
379
- -webkit-user-select: none;
380
- user-select: none;
381
- transition: background-color var(--cirth-transition), border-color var(--cirth-transition), color var(--cirth-transition), box-shadow var(--cirth-transition);
382
- outline: none;
383
- text-decoration: none;
384
- }
385
-
386
- [type="file"]::file-selector-button {
387
- --cirth-background-color: var(--cirth-primary-background);
388
- --cirth-border-color: var(--cirth-primary-border);
389
- --cirth-color: var(--cirth-primary-inverse);
390
- --cirth-box-shadow: var(--cirth-button-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
391
- padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
392
- border: var(--cirth-border-width) solid var(--cirth-border-color);
393
- border-radius: var(--cirth-border-radius);
394
- background-color: var(--cirth-background-color);
395
- box-shadow: var(--cirth-box-shadow);
396
- color: var(--cirth-color);
397
- font-weight: var(--cirth-font-weight);
398
- font-size: var(--cirth-font-size-md);
399
- line-height: var(--cirth-line-height);
400
- text-align: center;
401
- cursor: pointer;
402
- -webkit-user-select: none;
403
- user-select: none;
404
- transition: background-color var(--cirth-transition), border-color var(--cirth-transition), color var(--cirth-transition), box-shadow var(--cirth-transition);
405
- outline: none;
406
- text-decoration: none;
407
- }
408
-
409
- button[aria-current]:not([aria-current="false"]), [role="button"][aria-current]:not([aria-current="false"]) {
410
- --cirth-background-color: var(--cirth-primary-hover-background);
411
- --cirth-border-color: var(--cirth-primary-hover-border);
412
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
413
- --cirth-color: var(--cirth-primary-inverse);
414
- }
415
-
416
- button:is(:hover, :active, :focus) {
417
- --cirth-background-color: var(--cirth-primary-hover-background);
418
- --cirth-border-color: var(--cirth-primary-hover-border);
419
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
420
- --cirth-color: var(--cirth-primary-inverse);
421
- }
422
-
423
- [type="submit"][aria-current]:not([aria-current="false"]) {
424
- --cirth-background-color: var(--cirth-primary-hover-background);
425
- --cirth-border-color: var(--cirth-primary-hover-border);
426
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
427
- --cirth-color: var(--cirth-primary-inverse);
428
- }
429
-
430
- [type="submit"]:is(:hover, :active, :focus) {
431
- --cirth-background-color: var(--cirth-primary-hover-background);
432
- --cirth-border-color: var(--cirth-primary-hover-border);
433
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
434
- --cirth-color: var(--cirth-primary-inverse);
435
- }
436
-
437
- [type="reset"][aria-current]:not([aria-current="false"]) {
438
- --cirth-background-color: var(--cirth-primary-hover-background);
439
- --cirth-border-color: var(--cirth-primary-hover-border);
440
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
441
- --cirth-color: var(--cirth-primary-inverse);
442
- }
443
-
444
- [type="reset"]:is(:hover, :active, :focus) {
445
- --cirth-background-color: var(--cirth-primary-hover-background);
446
- --cirth-border-color: var(--cirth-primary-hover-border);
447
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
448
- --cirth-color: var(--cirth-primary-inverse);
449
- }
450
-
451
- [type="button"][aria-current]:not([aria-current="false"]) {
452
- --cirth-background-color: var(--cirth-primary-hover-background);
453
- --cirth-border-color: var(--cirth-primary-hover-border);
454
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
455
- --cirth-color: var(--cirth-primary-inverse);
456
- }
457
-
458
- [type="button"]:is(:hover, :active, :focus) {
459
- --cirth-background-color: var(--cirth-primary-hover-background);
460
- --cirth-border-color: var(--cirth-primary-hover-border);
461
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
462
- --cirth-color: var(--cirth-primary-inverse);
463
- }
464
-
465
- [type="file"]::file-selector-button:is() {
466
- --cirth-background-color: var(--cirth-primary-hover-background);
467
- --cirth-border-color: var(--cirth-primary-hover-border);
468
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
469
- --cirth-color: var(--cirth-primary-inverse);
470
- }
471
-
472
- [type="file"]::file-selector-button:is(:hover, :active, :focus) {
473
- --cirth-background-color: var(--cirth-primary-hover-background);
474
- --cirth-border-color: var(--cirth-primary-hover-border);
475
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
476
- --cirth-color: var(--cirth-primary-inverse);
477
- }
478
-
479
- [role="button"]:is(:hover, :active, :focus) {
480
- --cirth-background-color: var(--cirth-primary-hover-background);
481
- --cirth-border-color: var(--cirth-primary-hover-border);
482
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
483
- --cirth-color: var(--cirth-primary-inverse);
484
- }
485
-
486
- button:focus, button[aria-current]:not([aria-current="false"]):focus, [role="button"]:focus, [role="button"][aria-current]:not([aria-current="false"]):focus {
487
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
488
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
489
- }
490
-
491
- [type="submit"]:focus {
492
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
493
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
494
- }
495
-
496
- [type="submit"][aria-current]:not([aria-current="false"]):focus {
497
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
498
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
499
- }
500
-
501
- [type="reset"]:focus {
502
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
503
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
504
- }
505
-
506
- [type="reset"][aria-current]:not([aria-current="false"]):focus {
507
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
508
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
509
- }
510
-
511
- [type="button"]:focus {
512
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
513
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
514
- }
515
-
516
- [type="button"][aria-current]:not([aria-current="false"]):focus {
517
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
518
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
519
- }
520
-
521
- [type="file"]::file-selector-button:focus {
522
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
523
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
524
- }
525
-
526
- [type="file"]::file-selector-button:is():focus {
527
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
528
- 0 0 0 var(--cirth-outline-width) var(--cirth-primary-focus);
529
- }
530
-
531
- [type="submit"] {
532
- margin-bottom: var(--cirth-spacing);
533
- }
534
-
535
- [type="reset"] {
536
- margin-bottom: var(--cirth-spacing);
537
- }
538
-
539
- [type="button"] {
540
- margin-bottom: var(--cirth-spacing);
541
- }
542
-
543
- [type="reset"] {
544
- --cirth-background-color: var(--cirth-secondary-background);
545
- --cirth-border-color: var(--cirth-secondary-border);
546
- --cirth-color: var(--cirth-secondary-inverse);
547
- cursor: pointer;
548
- }
549
-
550
- [type="file"]::file-selector-button {
551
- --cirth-background-color: var(--cirth-secondary-background);
552
- --cirth-border-color: var(--cirth-secondary-border);
553
- --cirth-color: var(--cirth-secondary-inverse);
554
- cursor: pointer;
555
- }
556
-
557
- [type="reset"]:is([aria-current]:not([aria-current="false"]), :hover, :active, :focus) {
558
- --cirth-background-color: var(--cirth-secondary-hover-background);
559
- --cirth-border-color: var(--cirth-secondary-hover-border);
560
- --cirth-color: var(--cirth-secondary-inverse);
561
- }
562
-
563
- [type="file"]::file-selector-button:is(:hover, :active, :focus) {
564
- --cirth-background-color: var(--cirth-secondary-hover-background);
565
- --cirth-border-color: var(--cirth-secondary-hover-border);
566
- --cirth-color: var(--cirth-secondary-inverse);
567
- }
568
-
569
- [type="reset"]:focus {
570
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
571
- 0 0 0 var(--cirth-outline-width) var(--cirth-secondary-focus);
572
- }
573
-
574
- [type="file"]::file-selector-button:focus {
575
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
576
- 0 0 0 var(--cirth-outline-width) var(--cirth-secondary-focus);
577
- }
578
-
579
- :where(button, [type="submit"], [type="reset"], [type="button"], [role="button"])[disabled] {
580
- opacity: var(--cirth-opacity-disabled);
581
- pointer-events: none;
582
- }
583
-
584
- :where(fieldset[disabled]) :is(button, [type="submit"], [type="button"], [type="reset"], [role="button"]) {
585
- opacity: var(--cirth-opacity-disabled);
586
- pointer-events: none;
587
- }
588
-
589
- :where(table) {
590
- border-collapse: collapse;
591
- border-spacing: 0;
592
- text-indent: 0;
593
- width: 100%;
594
- }
595
-
596
- th, td {
597
- padding: calc(var(--cirth-spacing) / 2) var(--cirth-spacing);
598
- border-bottom: var(--cirth-border-width) solid var(--cirth-table-border-color);
599
- background-color: var(--cirth-background-color);
600
- color: var(--cirth-color);
601
- font-weight: var(--cirth-font-weight);
602
- text-align: left;
603
- text-align: start;
604
- }
605
-
606
- tfoot th, tfoot td {
607
- border-top: var(--cirth-border-width) solid var(--cirth-table-border-color);
608
- border-bottom: 0;
609
- }
610
-
611
- table.striped tbody tr:nth-child(odd) th, table.striped tbody tr:nth-child(odd) td {
612
- background-color: var(--cirth-table-row-stripped-background-color);
613
- }
614
-
615
- :where(audio, canvas, iframe, img, svg, video) {
616
- vertical-align: middle;
617
- }
618
-
619
- audio, video {
620
- display: inline-block;
621
- }
622
-
623
- audio:not([controls]) {
624
- height: 0;
625
- display: none;
626
- }
627
-
628
- :where(iframe) {
629
- border-style: none;
630
- }
631
-
632
- img {
633
- border-style: none;
634
- max-width: 100%;
635
- height: auto;
636
- }
637
-
638
- :where(svg:not([fill])) {
639
- fill: currentColor;
640
- }
641
-
642
- svg:not(:root) {
643
- overflow: hidden;
644
- }
645
-
646
- svg:not(:host) {
647
- overflow: hidden;
648
- }
649
-
650
- pre, code, kbd, samp {
651
- font-size: .875em;
652
- font-family: var(--cirth-font-family);
653
- }
654
-
655
- pre code, pre samp {
656
- font-size: inherit;
657
- font-family: inherit;
658
- }
659
-
660
- pre {
661
- -ms-overflow-style: scrollbar;
662
- overflow: auto;
663
- }
664
-
665
- pre, code, kbd, samp {
666
- border-radius: var(--cirth-border-radius);
667
- background: var(--cirth-code-background-color);
668
- color: var(--cirth-code-color);
669
- font-weight: var(--cirth-font-weight);
670
- line-height: initial;
671
- }
672
-
673
- code, kbd, samp {
674
- padding: .375rem;
675
- display: inline-block;
676
- }
677
-
678
- pre {
679
- margin-bottom: var(--cirth-spacing);
680
- display: block;
681
- overflow-x: auto;
682
- }
683
-
684
- pre > code, pre > samp {
685
- padding: var(--cirth-spacing);
686
- line-height: var(--cirth-line-height);
687
- background: none;
688
- display: block;
689
- }
690
-
691
- kbd {
692
- background-color: var(--cirth-code-kbd-background-color);
693
- color: var(--cirth-code-kbd-color);
694
- vertical-align: baseline;
695
- }
696
-
697
- figure {
698
- margin: 0;
699
- padding: 0;
700
- display: block;
701
- }
702
-
703
- figure figcaption {
704
- padding: calc(var(--cirth-spacing) * .5) 0;
705
- color: var(--cirth-muted-color);
706
- }
707
-
708
- hr {
709
- height: 0;
710
- margin: var(--cirth-typography-spacing-vertical) 0;
711
- border: 0;
712
- border-top: var(--cirth-border-width-1) solid var(--cirth-muted-border-color);
713
- color: inherit;
714
- }
715
-
716
- [hidden], template {
717
- display: none;
718
- }
719
-
720
- canvas {
721
- display: inline-block;
722
- }
723
-
724
- input, optgroup, select, textarea {
725
- font-size: var(--cirth-font-size-md);
726
- line-height: var(--cirth-line-height);
727
- letter-spacing: inherit;
728
- margin: 0;
729
- font-family: inherit;
730
- }
731
-
732
- input {
733
- overflow: visible;
734
- }
735
-
736
- select {
737
- text-transform: none;
738
- }
739
-
740
- legend {
741
- max-width: 100%;
742
- color: inherit;
743
- white-space: normal;
744
- padding: 0;
745
- }
746
-
747
- textarea {
748
- overflow: auto;
749
- }
750
-
751
- [type="checkbox"] {
752
- padding: 0;
753
- }
754
-
755
- [type="radio"] {
756
- padding: 0;
757
- }
758
-
759
- ::-webkit-inner-spin-button {
760
- height: auto;
761
- }
762
-
763
- ::-webkit-outer-spin-button {
764
- height: auto;
765
- }
766
-
767
- [type="search"] {
768
- -webkit-appearance: textfield;
769
- outline-offset: -2px;
770
- }
771
-
772
- [type="search"]::-webkit-search-decoration {
773
- -webkit-appearance: none;
774
- }
775
-
776
- ::-webkit-file-upload-button {
777
- -webkit-appearance: button;
778
- font: inherit;
779
- }
780
-
781
- ::-moz-focus-inner {
782
- border-style: none;
783
- padding: 0;
784
- }
785
-
786
- :-moz-focusring {
787
- outline: none;
788
- }
789
-
790
- :-moz-ui-invalid {
791
- box-shadow: none;
792
- }
793
-
794
- ::-ms-expand {
795
- display: none;
796
- }
797
-
798
- [type="file"] {
799
- border-width: 0;
800
- padding: 0;
801
- }
802
-
803
- [type="range"] {
804
- border-width: 0;
805
- padding: 0;
806
- }
807
-
808
- input:not(:is([type="checkbox"], [type="radio"], [type="range"])) {
809
- height: calc(var(--cirth-size-4) * var(--cirth-line-height) + var(--cirth-form-element-spacing-vertical) * 2 + var(--cirth-border-width) * 2);
810
- }
811
-
812
- fieldset {
813
- width: 100%;
814
- margin: 0;
815
- margin-bottom: var(--cirth-spacing);
816
- border: 0;
817
- padding: 0;
818
- }
819
-
820
- label, fieldset legend {
821
- margin-bottom: calc(var(--cirth-spacing) * .375);
822
- color: var(--cirth-color);
823
- font-weight: var(--cirth-form-label-font-weight, var(--cirth-font-weight));
824
- display: block;
825
- }
826
-
827
- fieldset legend {
828
- margin-bottom: calc(var(--cirth-spacing) * .5);
829
- }
830
-
831
- select, textarea {
832
- width: 100%;
833
- }
834
-
835
- input:not(:is([type="checkbox"], [type="radio"])) {
836
- width: 100%;
837
- }
838
-
839
- button[type="submit"] {
840
- width: 100%;
841
- }
842
-
843
- select, textarea {
844
- appearance: none;
845
- padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
846
- }
847
-
848
- input:not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"])) {
849
- appearance: none;
850
- padding: var(--cirth-form-element-spacing-vertical) var(--cirth-form-element-spacing-horizontal);
851
- }
852
-
853
- input, select, textarea {
854
- --cirth-background-color: var(--cirth-form-element-background-color);
855
- --cirth-border-color: var(--cirth-form-element-border-color);
856
- --cirth-color: var(--cirth-form-element-color);
857
- --cirth-box-shadow: none;
858
- border: var(--cirth-border-width) solid var(--cirth-border-color);
859
- border-radius: var(--cirth-border-radius);
860
- background-color: var(--cirth-background-color);
861
- box-shadow: var(--cirth-box-shadow);
862
- color: var(--cirth-color);
863
- font-weight: var(--cirth-font-weight);
864
- transition: background-color var(--cirth-transition), border-color var(--cirth-transition), color var(--cirth-transition), box-shadow var(--cirth-transition);
865
- outline: none;
866
- }
867
-
868
- input:not(:is([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [readonly])):is(:active, :focus) {
869
- --cirth-background-color: var(--cirth-form-element-active-background-color);
870
- }
871
-
872
- :where(select, textarea):not([readonly]):is(:active, :focus) {
873
- --cirth-background-color: var(--cirth-form-element-active-background-color);
874
- }
875
-
876
- input:not(:is([type="submit"], [type="button"], [type="reset"], [role="switch"], [readonly])):is(:active, :focus) {
877
- --cirth-border-color: var(--cirth-form-element-active-border-color);
878
- }
879
-
880
- :where(select, textarea):not([readonly]):is(:active, :focus) {
881
- --cirth-border-color: var(--cirth-form-element-active-border-color);
882
- }
883
-
884
- input:not(:is([type="submit"], [type="button"], [type="reset"], [type="range"], [type="file"], [readonly])):focus {
885
- --cirth-box-shadow: 0 0 0 var(--cirth-outline-width)
886
- var(--cirth-form-element-focus-color);
887
- }
888
-
889
- :where(select, textarea):not([readonly]):focus {
890
- --cirth-box-shadow: 0 0 0 var(--cirth-outline-width)
891
- var(--cirth-form-element-focus-color);
892
- }
893
-
894
- select[disabled], textarea[disabled], label[aria-disabled="true"] {
895
- opacity: var(--cirth-form-element-disabled-opacity);
896
- pointer-events: none;
897
- }
898
-
899
- input:not(:is([type="submit"], [type="button"], [type="reset"]))[disabled] {
900
- opacity: var(--cirth-form-element-disabled-opacity);
901
- pointer-events: none;
902
- }
903
-
904
- :where(fieldset[disabled]) :is(input:not(:is([type="submit"], [type="button"], [type="reset"])), select, textarea) {
905
- opacity: var(--cirth-form-element-disabled-opacity);
906
- pointer-events: none;
907
- }
908
-
909
- label[aria-disabled="true"] input[disabled] {
910
- opacity: 1;
911
- }
912
-
913
- :where(input, select, textarea):not(:is([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]))[aria-invalid] {
914
- padding-right: calc(var(--cirth-form-element-spacing-horizontal) + var(--cirth-space-6));
915
- padding-left: var(--cirth-form-element-spacing-horizontal);
916
- background-position: center right var(--cirth-space-3);
917
- background-size: var(--cirth-size-4) auto;
918
- background-repeat: no-repeat;
919
- padding-inline-start: var(--cirth-form-element-spacing-horizontal);
920
- padding-inline-end: calc(var(--cirth-form-element-spacing-horizontal) + var(--cirth-space-6));
921
- }
922
-
923
- :where(input, select, textarea):not(:is([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]))[aria-invalid="false"]:not(select) {
924
- background-image: var(--cirth-icon-valid);
925
- }
926
-
927
- :where(input, select, textarea):not(:is([type="checkbox"], [type="radio"], [type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"], [type="range"]))[aria-invalid="true"]:not(select) {
928
- background-image: var(--cirth-icon-invalid);
929
- }
930
-
931
- :where(input, select, textarea)[aria-invalid="false"] {
932
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
933
- }
934
-
935
- :where(input, select, textarea)[aria-invalid="false"]:is(:active, :focus) {
936
- --cirth-border-color: var(--cirth-form-element-valid-active-border-color);
937
- }
938
-
939
- :where(input, select, textarea)[aria-invalid="false"]:is(:active, :focus):not(:is([type="checkbox"], [type="radio"])) {
940
- --cirth-box-shadow: 0 0 0 var(--cirth-outline-width)
941
- var(--cirth-form-element-valid-focus-color);
942
- }
943
-
944
- :where(input, select, textarea)[aria-invalid="true"] {
945
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
946
- }
947
-
948
- :where(input, select, textarea)[aria-invalid="true"]:is(:active, :focus) {
949
- --cirth-border-color: var(--cirth-form-element-invalid-active-border-color);
950
- }
951
-
952
- :where(input, select, textarea)[aria-invalid="true"]:is(:active, :focus):not(:is([type="checkbox"], [type="radio"])) {
953
- --cirth-box-shadow: 0 0 0 var(--cirth-outline-width)
954
- var(--cirth-form-element-invalid-focus-color);
955
- }
956
-
957
- [dir="rtl"] :where(input, select, textarea):not(:is([type="checkbox"], [type="radio"])):is([aria-invalid], [aria-invalid="true"], [aria-invalid="false"]) {
958
- background-position: center left var(--cirth-space-3);
959
- }
960
-
961
- select:invalid {
962
- color: var(--cirth-form-element-placeholder-color);
963
- opacity: 1;
964
- }
965
-
966
- input::placeholder {
967
- color: var(--cirth-form-element-placeholder-color);
968
- opacity: 1;
969
- }
970
-
971
- input::-webkit-input-placeholder {
972
- color: var(--cirth-form-element-placeholder-color);
973
- opacity: 1;
974
- }
975
-
976
- textarea::placeholder {
977
- color: var(--cirth-form-element-placeholder-color);
978
- opacity: 1;
979
- }
980
-
981
- textarea::-webkit-input-placeholder {
982
- color: var(--cirth-form-element-placeholder-color);
983
- opacity: 1;
984
- }
985
-
986
- select, textarea {
987
- margin-bottom: var(--cirth-spacing);
988
- }
989
-
990
- input:not(:is([type="checkbox"], [type="radio"])) {
991
- margin-bottom: var(--cirth-spacing);
992
- }
993
-
994
- select::-ms-expand {
995
- background-color: rgba(0, 0, 0, 0);
996
- border: 0;
997
- }
998
-
999
- select:not(:is([multiple], [size])) {
1000
- padding-right: calc(var(--cirth-form-element-spacing-horizontal) + var(--cirth-space-6));
1001
- padding-left: var(--cirth-form-element-spacing-horizontal);
1002
- background-image: var(--cirth-icon-chevron);
1003
- background-position: center right var(--cirth-space-3);
1004
- background-size: var(--cirth-size-4) auto;
1005
- background-repeat: no-repeat;
1006
- padding-inline-start: var(--cirth-form-element-spacing-horizontal);
1007
- padding-inline-end: calc(var(--cirth-form-element-spacing-horizontal) + var(--cirth-space-6));
1008
- }
1009
-
1010
- select[multiple] option:checked {
1011
- background: var(--cirth-form-element-selected-background-color);
1012
- color: var(--cirth-form-element-color);
1013
- }
1014
-
1015
- [dir="rtl"] select:not(:is([multiple], [size])) {
1016
- background-position: center left var(--cirth-space-3);
1017
- }
1018
-
1019
- textarea {
1020
- resize: vertical;
1021
- display: block;
1022
- }
1023
-
1024
- textarea[aria-invalid] {
1025
- --cirth-icon-height: calc(var(--cirth-size-4) * var(--cirth-line-height) +
1026
- var(--cirth-form-element-spacing-vertical) * 2 +
1027
- var(--cirth-border-width) * 2);
1028
- background-position: top right var(--cirth-space-3);
1029
- background-size: var(--cirth-size-4) var(--cirth-icon-height);
1030
- }
1031
-
1032
- :where(input, select, textarea, fieldset) + small {
1033
- width: 100%;
1034
- margin-top: calc(var(--cirth-spacing) * -.75);
1035
- margin-bottom: var(--cirth-spacing);
1036
- color: var(--cirth-muted-color);
1037
- display: block;
1038
- }
1039
-
1040
- :where(input, select, textarea, fieldset)[aria-invalid="false"] + small {
1041
- color: var(--cirth-ins-color);
1042
- }
1043
-
1044
- :where(input, select, textarea, fieldset)[aria-invalid="true"] + small {
1045
- color: var(--cirth-del-color);
1046
- }
1047
-
1048
- label > :where(input, select, textarea) {
1049
- margin-top: calc(var(--cirth-spacing) * .25);
1050
- }
1051
-
1052
- label:has([type="checkbox"], [type="radio"]) {
1053
- cursor: pointer;
1054
- width: fit-content;
1055
- }
1056
-
1057
- [type="checkbox"] {
1058
- appearance: none;
1059
- margin-top: -.125em;
1060
- border-width: var(--cirth-border-width);
1061
- vertical-align: middle;
1062
- cursor: pointer;
1063
- width: 1.25em;
1064
- height: 1.25em;
1065
- margin-inline-end: .5em;
1066
- }
1067
-
1068
- [type="radio"] {
1069
- appearance: none;
1070
- margin-top: -.125em;
1071
- border-width: var(--cirth-border-width);
1072
- vertical-align: middle;
1073
- cursor: pointer;
1074
- width: 1.25em;
1075
- height: 1.25em;
1076
- margin-inline-end: .5em;
1077
- }
1078
-
1079
- [type="checkbox"]::-ms-check {
1080
- display: none;
1081
- }
1082
-
1083
- [type="radio"]::-ms-check {
1084
- display: none;
1085
- }
1086
-
1087
- [type="checkbox"]:checked {
1088
- --cirth-background-color: var(--cirth-primary-background);
1089
- --cirth-border-color: var(--cirth-primary-border);
1090
- background-image: var(--cirth-icon-checkbox);
1091
- background-position: center;
1092
- background-repeat: no-repeat;
1093
- background-size: .75em;
1094
- }
1095
-
1096
- [type="checkbox"]:checked:active {
1097
- --cirth-background-color: var(--cirth-primary-background);
1098
- --cirth-border-color: var(--cirth-primary-border);
1099
- background-image: var(--cirth-icon-checkbox);
1100
- background-position: center;
1101
- background-repeat: no-repeat;
1102
- background-size: .75em;
1103
- }
1104
-
1105
- [type="checkbox"]:checked:focus {
1106
- --cirth-background-color: var(--cirth-primary-background);
1107
- --cirth-border-color: var(--cirth-primary-border);
1108
- background-image: var(--cirth-icon-checkbox);
1109
- background-position: center;
1110
- background-repeat: no-repeat;
1111
- background-size: .75em;
1112
- }
1113
-
1114
- [type="radio"]:checked {
1115
- --cirth-background-color: var(--cirth-primary-background);
1116
- --cirth-border-color: var(--cirth-primary-border);
1117
- background-image: var(--cirth-icon-checkbox);
1118
- background-position: center;
1119
- background-repeat: no-repeat;
1120
- background-size: .75em;
1121
- }
1122
-
1123
- [type="radio"]:checked:active {
1124
- --cirth-background-color: var(--cirth-primary-background);
1125
- --cirth-border-color: var(--cirth-primary-border);
1126
- background-image: var(--cirth-icon-checkbox);
1127
- background-position: center;
1128
- background-repeat: no-repeat;
1129
- background-size: .75em;
1130
- }
1131
-
1132
- [type="radio"]:checked:focus {
1133
- --cirth-background-color: var(--cirth-primary-background);
1134
- --cirth-border-color: var(--cirth-primary-border);
1135
- background-image: var(--cirth-icon-checkbox);
1136
- background-position: center;
1137
- background-repeat: no-repeat;
1138
- background-size: .75em;
1139
- }
1140
-
1141
- [type="checkbox"] ~ label {
1142
- cursor: pointer;
1143
- margin-bottom: 0;
1144
- display: inline-block;
1145
- }
1146
-
1147
- [type="radio"] ~ label {
1148
- cursor: pointer;
1149
- margin-bottom: 0;
1150
- display: inline-block;
1151
- }
1152
-
1153
- [type="checkbox"] ~ label:not(:last-of-type) {
1154
- margin-inline-end: 1em;
1155
- }
1156
-
1157
- [type="radio"] ~ label:not(:last-of-type) {
1158
- margin-inline-end: 1em;
1159
- }
1160
-
1161
- [type="checkbox"]:indeterminate {
1162
- --cirth-background-color: var(--cirth-primary-background);
1163
- --cirth-border-color: var(--cirth-primary-border);
1164
- background-image: var(--cirth-icon-minus);
1165
- background-position: center;
1166
- background-repeat: no-repeat;
1167
- background-size: .75em;
1168
- }
1169
-
1170
- [type="radio"] {
1171
- border-radius: 50%;
1172
- }
1173
-
1174
- [type="radio"]:checked {
1175
- --cirth-background-color: var(--cirth-primary-inverse);
1176
- background-image: none;
1177
- border-width: .35em;
1178
- }
1179
-
1180
- [type="radio"]:checked:active {
1181
- --cirth-background-color: var(--cirth-primary-inverse);
1182
- background-image: none;
1183
- border-width: .35em;
1184
- }
1185
-
1186
- [type="radio"]:checked:focus {
1187
- --cirth-background-color: var(--cirth-primary-inverse);
1188
- background-image: none;
1189
- border-width: .35em;
1190
- }
1191
-
1192
- [type="checkbox"][role="switch"] {
1193
- --cirth-background-color: var(--cirth-switch-background-color);
1194
- --cirth-color: var(--cirth-switch-color);
1195
- border: var(--cirth-border-width) solid var(--cirth-border-color);
1196
- background-color: var(--cirth-background-color);
1197
- border-radius: 1.25em;
1198
- width: 2.25em;
1199
- height: 1.25em;
1200
- line-height: 1.25em;
1201
- }
1202
-
1203
- [type="checkbox"][role="switch"]:not([aria-invalid]) {
1204
- --cirth-border-color: var(--cirth-switch-background-color);
1205
- }
1206
-
1207
- [type="checkbox"][role="switch"]:before {
1208
- aspect-ratio: 1;
1209
- background-color: var(--cirth-color);
1210
- height: 100%;
1211
- box-shadow: var(--cirth-switch-thumb-box-shadow);
1212
- content: "";
1213
- transition: margin var(--cirth-duration-fast) var(--cirth-ease-in-out);
1214
- border-radius: 50%;
1215
- display: block;
1216
- }
1217
-
1218
- [type="checkbox"][role="switch"]:focus {
1219
- --cirth-background-color: var(--cirth-switch-background-color);
1220
- --cirth-border-color: var(--cirth-switch-background-color);
1221
- }
1222
-
1223
- [type="checkbox"][role="switch"]:checked {
1224
- --cirth-background-color: var(--cirth-switch-checked-background-color);
1225
- --cirth-border-color: var(--cirth-switch-checked-background-color);
1226
- background-image: none;
1227
- }
1228
-
1229
- [type="checkbox"][role="switch"]:checked:before {
1230
- margin-inline-start: 1em;
1231
- }
1232
-
1233
- [type="checkbox"][role="switch"][disabled] {
1234
- --cirth-background-color: var(--cirth-border-color);
1235
- }
1236
-
1237
- [type="checkbox"][aria-invalid="false"]:checked {
1238
- --cirth-background-color: var(--cirth-form-element-valid-border-color);
1239
- }
1240
-
1241
- [type="checkbox"][aria-invalid="false"]:checked:active {
1242
- --cirth-background-color: var(--cirth-form-element-valid-border-color);
1243
- }
1244
-
1245
- [type="checkbox"][aria-invalid="false"]:checked:focus {
1246
- --cirth-background-color: var(--cirth-form-element-valid-border-color);
1247
- }
1248
-
1249
- [type="checkbox"][role="switch"][aria-invalid="false"]:checked {
1250
- --cirth-background-color: var(--cirth-form-element-valid-border-color);
1251
- }
1252
-
1253
- [type="checkbox"][role="switch"][aria-invalid="false"]:checked:active {
1254
- --cirth-background-color: var(--cirth-form-element-valid-border-color);
1255
- }
1256
-
1257
- [type="checkbox"][role="switch"][aria-invalid="false"]:checked:focus {
1258
- --cirth-background-color: var(--cirth-form-element-valid-border-color);
1259
- }
1260
-
1261
- [type="checkbox"]:checked[aria-invalid="true"] {
1262
- --cirth-background-color: var(--cirth-form-element-invalid-border-color);
1263
- }
1264
-
1265
- [type="checkbox"]:checked:active[aria-invalid="true"] {
1266
- --cirth-background-color: var(--cirth-form-element-invalid-border-color);
1267
- }
1268
-
1269
- [type="checkbox"]:checked:focus[aria-invalid="true"] {
1270
- --cirth-background-color: var(--cirth-form-element-invalid-border-color);
1271
- }
1272
-
1273
- [type="checkbox"][role="switch"]:checked[aria-invalid="true"] {
1274
- --cirth-background-color: var(--cirth-form-element-invalid-border-color);
1275
- }
1276
-
1277
- [type="checkbox"][role="switch"]:checked:active[aria-invalid="true"] {
1278
- --cirth-background-color: var(--cirth-form-element-invalid-border-color);
1279
- }
1280
-
1281
- [type="checkbox"][role="switch"]:checked:focus[aria-invalid="true"] {
1282
- --cirth-background-color: var(--cirth-form-element-invalid-border-color);
1283
- }
1284
-
1285
- [type="checkbox"][aria-invalid="false"]:checked {
1286
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1287
- }
1288
-
1289
- [type="checkbox"][aria-invalid="false"]:checked:active {
1290
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1291
- }
1292
-
1293
- [type="checkbox"][aria-invalid="false"]:checked:focus {
1294
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1295
- }
1296
-
1297
- [type="radio"][aria-invalid="false"]:checked {
1298
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1299
- }
1300
-
1301
- [type="radio"][aria-invalid="false"]:checked:active {
1302
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1303
- }
1304
-
1305
- [type="radio"][aria-invalid="false"]:checked:focus {
1306
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1307
- }
1308
-
1309
- [type="checkbox"][role="switch"][aria-invalid="false"]:checked {
1310
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1311
- }
1312
-
1313
- [type="checkbox"][role="switch"][aria-invalid="false"]:checked:active {
1314
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1315
- }
1316
-
1317
- [type="checkbox"][role="switch"][aria-invalid="false"]:checked:focus {
1318
- --cirth-border-color: var(--cirth-form-element-valid-border-color);
1319
- }
1320
-
1321
- [type="checkbox"]:checked[aria-invalid="true"] {
1322
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1323
- }
1324
-
1325
- [type="checkbox"]:checked:active[aria-invalid="true"] {
1326
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1327
- }
1328
-
1329
- [type="checkbox"]:checked:focus[aria-invalid="true"] {
1330
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1331
- }
1332
-
1333
- [type="radio"]:checked[aria-invalid="true"] {
1334
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1335
- }
1336
-
1337
- [type="radio"]:checked:active[aria-invalid="true"] {
1338
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1339
- }
1340
-
1341
- [type="radio"]:checked:focus[aria-invalid="true"] {
1342
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1343
- }
1344
-
1345
- [type="checkbox"][role="switch"]:checked[aria-invalid="true"] {
1346
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1347
- }
1348
-
1349
- [type="checkbox"][role="switch"]:checked:active[aria-invalid="true"] {
1350
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1351
- }
1352
-
1353
- [type="checkbox"][role="switch"]:checked:focus[aria-invalid="true"] {
1354
- --cirth-border-color: var(--cirth-form-element-invalid-border-color);
1355
- }
1356
-
1357
- [type="color"]::-webkit-color-swatch-wrapper {
1358
- padding: 0;
1359
- }
1360
-
1361
- [type="color"]::-moz-focus-inner {
1362
- padding: 0;
1363
- }
1364
-
1365
- [type="color"]::-webkit-color-swatch {
1366
- border-radius: calc(var(--cirth-border-radius) * .5);
1367
- border: 0;
1368
- }
1369
-
1370
- [type="color"]::-moz-color-swatch {
1371
- border-radius: calc(var(--cirth-border-radius) * .5);
1372
- border: 0;
1373
- }
1374
-
1375
- input:not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"])):is([type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"]) {
1376
- --cirth-icon-position: var(--cirth-space-3);
1377
- --cirth-icon-width: var(--cirth-size-4);
1378
- padding-right: calc(var(--cirth-icon-width) + var(--cirth-icon-position));
1379
- background-image: var(--cirth-icon-date);
1380
- background-position: center right var(--cirth-icon-position);
1381
- background-size: var(--cirth-icon-width) auto;
1382
- background-repeat: no-repeat;
1383
- }
1384
-
1385
- input:not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"]))[type="time"] {
1386
- background-image: var(--cirth-icon-time);
1387
- }
1388
-
1389
- [type="date"]::-webkit-calendar-picker-indicator {
1390
- width: var(--cirth-icon-width);
1391
- margin-right: calc(var(--cirth-icon-width) * -1);
1392
- margin-left: var(--cirth-icon-position);
1393
- opacity: 0;
1394
- }
1395
-
1396
- [type="datetime-local"]::-webkit-calendar-picker-indicator {
1397
- width: var(--cirth-icon-width);
1398
- margin-right: calc(var(--cirth-icon-width) * -1);
1399
- margin-left: var(--cirth-icon-position);
1400
- opacity: 0;
1401
- }
1402
-
1403
- [type="month"]::-webkit-calendar-picker-indicator {
1404
- width: var(--cirth-icon-width);
1405
- margin-right: calc(var(--cirth-icon-width) * -1);
1406
- margin-left: var(--cirth-icon-position);
1407
- opacity: 0;
1408
- }
1409
-
1410
- [type="time"]::-webkit-calendar-picker-indicator {
1411
- width: var(--cirth-icon-width);
1412
- margin-right: calc(var(--cirth-icon-width) * -1);
1413
- margin-left: var(--cirth-icon-position);
1414
- opacity: 0;
1415
- }
1416
-
1417
- [type="week"]::-webkit-calendar-picker-indicator {
1418
- width: var(--cirth-icon-width);
1419
- margin-right: calc(var(--cirth-icon-width) * -1);
1420
- margin-left: var(--cirth-icon-position);
1421
- opacity: 0;
1422
- }
1423
-
1424
- @-moz-document url-prefix() {
1425
- [type="date"] {
1426
- padding-right: var(--cirth-form-element-spacing-horizontal);
1427
- background-image: none;
1428
- }
1429
-
1430
- [type="datetime-local"] {
1431
- padding-right: var(--cirth-form-element-spacing-horizontal);
1432
- background-image: none;
1433
- }
1434
-
1435
- [type="month"] {
1436
- padding-right: var(--cirth-form-element-spacing-horizontal);
1437
- background-image: none;
1438
- }
1439
-
1440
- [type="time"] {
1441
- padding-right: var(--cirth-form-element-spacing-horizontal);
1442
- background-image: none;
1443
- }
1444
-
1445
- [type="week"] {
1446
- padding-right: var(--cirth-form-element-spacing-horizontal);
1447
- background-image: none;
1448
- }
1449
- }
1450
-
1451
- [dir="rtl"] :is([type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"]) {
1452
- text-align: right;
1453
- }
1454
-
1455
- [type="file"] {
1456
- --cirth-color: var(--cirth-muted-color);
1457
- margin-left: calc(var(--cirth-outline-width) * -1);
1458
- padding: calc(var(--cirth-form-element-spacing-vertical) * .5) 0;
1459
- padding-left: var(--cirth-outline-width);
1460
- background: none;
1461
- border: 0;
1462
- border-radius: 0;
1463
- }
1464
-
1465
- [type="file"]::file-selector-button {
1466
- margin-right: calc(var(--cirth-spacing) / 2);
1467
- padding: calc(var(--cirth-form-element-spacing-vertical) * .5) var(--cirth-form-element-spacing-horizontal);
1468
- }
1469
-
1470
- [type="file"]:is(:hover, :active, :focus)::file-selector-button {
1471
- --cirth-background-color: var(--cirth-secondary-hover-background);
1472
- --cirth-border-color: var(--cirth-secondary-hover-border);
1473
- }
1474
-
1475
- [type="file"]:focus::file-selector-button {
1476
- --cirth-box-shadow: var(--cirth-button-hover-box-shadow, 0 0 0 rgba(0, 0, 0, 0)),
1477
- 0 0 0 var(--cirth-outline-width) var(--cirth-secondary-focus);
1478
- }
1479
-
1480
- [type="range"] {
1481
- appearance: none;
1482
- background: none;
1483
- width: 100%;
1484
- height: 1.25rem;
1485
- }
1486
-
1487
- [type="range"]::-webkit-slider-runnable-track {
1488
- border-radius: var(--cirth-border-radius);
1489
- background-color: var(--cirth-range-border-color);
1490
- width: 100%;
1491
- height: .375rem;
1492
- transition: background-color var(--cirth-transition), box-shadow var(--cirth-transition);
1493
- }
1494
-
1495
- [type="range"]::-moz-range-track {
1496
- border-radius: var(--cirth-border-radius);
1497
- background-color: var(--cirth-range-border-color);
1498
- width: 100%;
1499
- height: .375rem;
1500
- transition: background-color var(--cirth-transition), box-shadow var(--cirth-transition);
1501
- }
1502
-
1503
- [type="range"]::-ms-track {
1504
- border-radius: var(--cirth-border-radius);
1505
- background-color: var(--cirth-range-border-color);
1506
- width: 100%;
1507
- height: .375rem;
1508
- transition: background-color var(--cirth-transition), box-shadow var(--cirth-transition);
1509
- }
1510
-
1511
- [type="range"]::-webkit-slider-thumb {
1512
- -webkit-appearance: none;
1513
- border: var(--cirth-border-width-2) solid var(--cirth-range-thumb-border-color);
1514
- background-color: var(--cirth-range-thumb-color);
1515
- cursor: pointer;
1516
- width: 1.25rem;
1517
- height: 1.25rem;
1518
- transition: background-color var(--cirth-transition), transform var(--cirth-transition);
1519
- border-radius: 50%;
1520
- margin-top: -.4375rem;
1521
- }
1522
-
1523
- [type="range"]::-moz-range-thumb {
1524
- -webkit-appearance: none;
1525
- border: var(--cirth-border-width-2) solid var(--cirth-range-thumb-border-color);
1526
- background-color: var(--cirth-range-thumb-color);
1527
- cursor: pointer;
1528
- width: 1.25rem;
1529
- height: 1.25rem;
1530
- transition: background-color var(--cirth-transition), transform var(--cirth-transition);
1531
- border-radius: 50%;
1532
- margin-top: -.4375rem;
1533
- }
1534
-
1535
- [type="range"]::-ms-thumb {
1536
- -webkit-appearance: none;
1537
- border: var(--cirth-border-width-2) solid var(--cirth-range-thumb-border-color);
1538
- background-color: var(--cirth-range-thumb-color);
1539
- cursor: pointer;
1540
- width: 1.25rem;
1541
- height: 1.25rem;
1542
- transition: background-color var(--cirth-transition), transform var(--cirth-transition);
1543
- border-radius: 50%;
1544
- margin-top: -.4375rem;
1545
- }
1546
-
1547
- [type="range"]:active {
1548
- --cirth-range-border-color: var(--cirth-range-active-border-color);
1549
- --cirth-range-thumb-color: var(--cirth-range-thumb-active-color);
1550
- }
1551
-
1552
- [type="range"]:focus-within {
1553
- --cirth-range-border-color: var(--cirth-range-active-border-color);
1554
- --cirth-range-thumb-color: var(--cirth-range-thumb-active-color);
1555
- }
1556
-
1557
- [type="range"]:active::-webkit-slider-thumb {
1558
- transform: scale(1.25);
1559
- }
1560
-
1561
- [type="range"]:active::-moz-range-thumb {
1562
- transform: scale(1.25);
1563
- }
1564
-
1565
- [type="range"]:active::-ms-thumb {
1566
- transform: scale(1.25);
1567
- }
1568
-
1569
- input:not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"]))[type="search"] {
1570
- background-image: var(--cirth-icon-search);
1571
- background-position: center left calc(var(--cirth-form-element-spacing-horizontal) + .125rem);
1572
- background-repeat: no-repeat;
1573
- background-size: 1rem;
1574
- padding-inline-start: calc(var(--cirth-form-element-spacing-horizontal) + 1.75rem);
1575
- }
1576
-
1577
- input:not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"]))[type="search"][aria-invalid] {
1578
- background-position: 1.125rem, right .75rem center;
1579
- padding-inline-start: calc(var(--cirth-form-element-spacing-horizontal) + 1.75rem);
1580
- }
1581
-
1582
- input:not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"]))[type="search"][aria-invalid="false"] {
1583
- background-image: var(--cirth-icon-search), var(--cirth-icon-valid);
1584
- }
1585
-
1586
- input:not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"]))[type="search"][aria-invalid="true"] {
1587
- background-image: var(--cirth-icon-search), var(--cirth-icon-invalid);
1588
- }
1589
-
1590
- [dir="rtl"] :where(input):not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"]))[type="search"] {
1591
- background-position: right 1.125rem center;
1592
- }
1593
-
1594
- [dir="rtl"] :where(input):not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"]))[type="search"][aria-invalid] {
1595
- background-position: right 1.125rem center, .75rem;
1596
- }
1597
-
1598
- details {
1599
- margin-bottom: var(--cirth-spacing);
1600
- display: block;
1601
- }
1602
-
1603
- details summary {
1604
- line-height: var(--cirth-size-4);
1605
- cursor: pointer;
1606
- transition: color var(--cirth-transition);
1607
- list-style-type: none;
1608
- }
1609
-
1610
- details summary:not([role]) {
1611
- color: var(--cirth-accordion-close-summary-color);
1612
- }
1613
-
1614
- details summary::-webkit-details-marker {
1615
- display: none;
1616
- }
1617
-
1618
- details summary::marker {
1619
- display: none;
1620
- }
1621
-
1622
- details summary::-moz-list-bullet {
1623
- list-style-type: none;
1624
- }
1625
-
1626
- details summary:after {
1627
- width: var(--cirth-size-4);
1628
- height: var(--cirth-size-4);
1629
- float: right;
1630
- background-image: var(--cirth-icon-chevron);
1631
- background-position: 100%;
1632
- background-size: var(--cirth-size-4) auto;
1633
- content: "";
1634
- transition: transform var(--cirth-transition);
1635
- background-repeat: no-repeat;
1636
- margin-inline-start: calc(var(--cirth-spacing, var(--cirth-space-4)) * .5);
1637
- display: block;
1638
- transform: rotate(-90deg);
1639
- }
1640
-
1641
- details summary:focus {
1642
- outline: none;
1643
- }
1644
-
1645
- details summary:focus:not([role]) {
1646
- color: var(--cirth-accordion-active-summary-color);
1647
- }
1648
-
1649
- details summary:focus-visible:not([role]) {
1650
- outline: var(--cirth-outline-width) solid var(--cirth-primary-focus);
1651
- outline-offset: calc(var(--cirth-spacing, var(--cirth-space-4)) * .5);
1652
- color: var(--cirth-primary);
1653
- }
1654
-
1655
- details summary[role="button"] {
1656
- text-align: left;
1657
- width: 100%;
1658
- }
1659
-
1660
- details summary[role="button"]:after {
1661
- height: calc(var(--cirth-size-4) * var(--cirth-line-height, var(--cirth-line-height-normal)));
1662
- }
1663
-
1664
- details[open] > summary {
1665
- margin-bottom: var(--cirth-spacing);
1666
- }
1667
-
1668
- details[open] > summary:not([role]):not(:focus) {
1669
- color: var(--cirth-accordion-open-summary-color);
1670
- }
1671
-
1672
- details[open] > summary:after {
1673
- transform: rotate(0);
1674
- }
1675
-
1676
- [dir="rtl"] details summary {
1677
- text-align: right;
1678
- }
1679
-
1680
- [dir="rtl"] details summary:after {
1681
- float: left;
1682
- background-position: 0;
1683
- }
1684
-
1685
- article {
1686
- margin-bottom: var(--cirth-block-spacing-vertical);
1687
- padding: var(--cirth-block-spacing-vertical) var(--cirth-block-spacing-horizontal);
1688
- border-radius: var(--cirth-border-radius);
1689
- background: var(--cirth-card-background-color);
1690
- box-shadow: var(--cirth-card-box-shadow);
1691
- }
1692
-
1693
- article > header, article > footer {
1694
- margin-right: calc(var(--cirth-block-spacing-horizontal) * -1);
1695
- margin-left: calc(var(--cirth-block-spacing-horizontal) * -1);
1696
- padding: calc(var(--cirth-block-spacing-vertical) * .66) var(--cirth-block-spacing-horizontal);
1697
- background-color: var(--cirth-card-sectioning-background-color);
1698
- }
1699
-
1700
- article > header {
1701
- margin-top: calc(var(--cirth-block-spacing-vertical) * -1);
1702
- margin-bottom: var(--cirth-block-spacing-vertical);
1703
- border-bottom: var(--cirth-border-width) solid var(--cirth-card-border-color);
1704
- border-top-right-radius: var(--cirth-border-radius);
1705
- border-top-left-radius: var(--cirth-border-radius);
1706
- }
1707
-
1708
- article > footer {
1709
- margin-top: var(--cirth-block-spacing-vertical);
1710
- margin-bottom: calc(var(--cirth-block-spacing-vertical) * -1);
1711
- border-top: var(--cirth-border-width) solid var(--cirth-card-border-color);
1712
- border-bottom-right-radius: var(--cirth-border-radius);
1713
- border-bottom-left-radius: var(--cirth-border-radius);
1714
- }
1715
-
1716
- [role="search"], [role="group"] {
1717
- width: 100%;
1718
- margin-bottom: var(--cirth-spacing);
1719
- border-radius: var(--cirth-border-radius);
1720
- box-shadow: var(--cirth-group-box-shadow, 0 0 0 rgba(0, 0, 0, 0));
1721
- vertical-align: middle;
1722
- transition: box-shadow var(--cirth-transition);
1723
- display: inline-flex;
1724
- position: relative;
1725
- }
1726
-
1727
- [role="search"] > *, [role="search"] select, [role="group"] > *, [role="group"] select {
1728
- flex: auto;
1729
- margin-bottom: 0;
1730
- position: relative;
1731
- }
1732
-
1733
- [role="search"] input:not(:is([type="checkbox"], [type="radio"])) {
1734
- flex: auto;
1735
- margin-bottom: 0;
1736
- position: relative;
1737
- }
1738
-
1739
- [role="group"] input:not(:is([type="checkbox"], [type="radio"])) {
1740
- flex: auto;
1741
- margin-bottom: 0;
1742
- position: relative;
1743
- }
1744
-
1745
- [role="search"] > :not(:first-child), [role="search"] select:not(:first-child), [role="group"] > :not(:first-child), [role="group"] select:not(:first-child) {
1746
- border-top-left-radius: 0;
1747
- border-bottom-left-radius: 0;
1748
- margin-left: 0;
1749
- }
1750
-
1751
- [role="search"] input:not(:is([type="checkbox"], [type="radio"])):not(:first-child) {
1752
- border-top-left-radius: 0;
1753
- border-bottom-left-radius: 0;
1754
- margin-left: 0;
1755
- }
1756
-
1757
- [role="group"] input:not(:is([type="checkbox"], [type="radio"])):not(:first-child) {
1758
- border-top-left-radius: 0;
1759
- border-bottom-left-radius: 0;
1760
- margin-left: 0;
1761
- }
1762
-
1763
- [role="search"] > :not(:last-child), [role="search"] select:not(:last-child), [role="group"] > :not(:last-child), [role="group"] select:not(:last-child) {
1764
- border-top-right-radius: 0;
1765
- border-bottom-right-radius: 0;
1766
- }
1767
-
1768
- [role="search"] input:not(:is([type="checkbox"], [type="radio"])):not(:last-child) {
1769
- border-top-right-radius: 0;
1770
- border-bottom-right-radius: 0;
1771
- }
1772
-
1773
- [role="group"] input:not(:is([type="checkbox"], [type="radio"])):not(:last-child) {
1774
- border-top-right-radius: 0;
1775
- border-bottom-right-radius: 0;
1776
- }
1777
-
1778
- [role="search"] > :focus, [role="search"] select:focus, [role="group"] > :focus, [role="group"] select:focus {
1779
- z-index: 2;
1780
- }
1781
-
1782
- [role="search"] input:not(:is([type="checkbox"], [type="radio"])):focus {
1783
- z-index: 2;
1784
- }
1785
-
1786
- [role="group"] input:not(:is([type="checkbox"], [type="radio"])):focus {
1787
- z-index: 2;
1788
- }
1789
-
1790
- [role="search"] button:not(:first-child), [role="search"] [role="button"]:not(:first-child), [role="search"] select:not(:first-child), [role="group"] button:not(:first-child), [role="group"] [role="button"]:not(:first-child), [role="group"] select:not(:first-child) {
1791
- margin-left: calc(var(--cirth-border-width) * -1);
1792
- }
1793
-
1794
- [role="search"] [type="submit"]:not(:first-child) {
1795
- margin-left: calc(var(--cirth-border-width) * -1);
1796
- }
1797
-
1798
- [role="search"] [type="reset"]:not(:first-child) {
1799
- margin-left: calc(var(--cirth-border-width) * -1);
1800
- }
1801
-
1802
- [role="search"] [type="button"]:not(:first-child) {
1803
- margin-left: calc(var(--cirth-border-width) * -1);
1804
- }
1805
-
1806
- [role="search"] input:not(:is([type="checkbox"], [type="radio"])):not(:first-child) {
1807
- margin-left: calc(var(--cirth-border-width) * -1);
1808
- }
1809
-
1810
- [role="group"] [type="submit"]:not(:first-child) {
1811
- margin-left: calc(var(--cirth-border-width) * -1);
1812
- }
1813
-
1814
- [role="group"] [type="reset"]:not(:first-child) {
1815
- margin-left: calc(var(--cirth-border-width) * -1);
1816
- }
1817
-
1818
- [role="group"] [type="button"]:not(:first-child) {
1819
- margin-left: calc(var(--cirth-border-width) * -1);
1820
- }
1821
-
1822
- [role="group"] input:not(:is([type="checkbox"], [type="radio"])):not(:first-child) {
1823
- margin-left: calc(var(--cirth-border-width) * -1);
1824
- }
1825
-
1826
- [role="search"] button, [role="search"] [role="button"], [role="group"] button, [role="group"] [role="button"] {
1827
- width: auto;
1828
- }
1829
-
1830
- [role="search"] [type="submit"] {
1831
- width: auto;
1832
- }
1833
-
1834
- [role="search"] [type="reset"] {
1835
- width: auto;
1836
- }
1837
-
1838
- [role="search"] [type="button"] {
1839
- width: auto;
1840
- }
1841
-
1842
- [role="group"] [type="submit"] {
1843
- width: auto;
1844
- }
1845
-
1846
- [role="group"] [type="reset"] {
1847
- width: auto;
1848
- }
1849
-
1850
- [role="group"] [type="button"] {
1851
- width: auto;
1852
- }
1853
-
1854
- @supports selector(:has(*)) {
1855
- [role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) {
1856
- --cirth-group-box-shadow: var(--cirth-group-box-shadow-focus-with-button);
1857
- }
1858
-
1859
- [role="group"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) {
1860
- --cirth-group-box-shadow: var(--cirth-group-box-shadow-focus-with-button);
1861
- }
1862
-
1863
- [role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) input:not(:is([type="checkbox"], [type="radio"])) {
1864
- border-color: rgba(0, 0, 0, 0);
1865
- }
1866
-
1867
- [role="search"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) select {
1868
- border-color: rgba(0, 0, 0, 0);
1869
- }
1870
-
1871
- [role="group"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) input:not(:is([type="checkbox"], [type="radio"])) {
1872
- border-color: rgba(0, 0, 0, 0);
1873
- }
1874
-
1875
- [role="group"]:has(button:focus, [type="submit"]:focus, [type="button"]:focus, [role="button"]:focus) select {
1876
- border-color: rgba(0, 0, 0, 0);
1877
- }
1878
-
1879
- [role="search"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) {
1880
- --cirth-group-box-shadow: var(--cirth-group-box-shadow-focus-with-input);
1881
- }
1882
-
1883
- [role="group"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) {
1884
- --cirth-group-box-shadow: var(--cirth-group-box-shadow-focus-with-input);
1885
- }
1886
-
1887
- [role="search"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) button {
1888
- --cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
1889
- var(--cirth-primary-border);
1890
- --cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
1891
- var(--cirth-primary-hover-border);
1892
- }
1893
-
1894
- [role="search"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) [type="submit"] {
1895
- --cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
1896
- var(--cirth-primary-border);
1897
- --cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
1898
- var(--cirth-primary-hover-border);
1899
- }
1900
-
1901
- [role="search"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) [type="button"] {
1902
- --cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
1903
- var(--cirth-primary-border);
1904
- --cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
1905
- var(--cirth-primary-hover-border);
1906
- }
1907
-
1908
- [role="search"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) [role="button"] {
1909
- --cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
1910
- var(--cirth-primary-border);
1911
- --cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
1912
- var(--cirth-primary-hover-border);
1913
- }
1914
-
1915
- [role="group"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) button {
1916
- --cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
1917
- var(--cirth-primary-border);
1918
- --cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
1919
- var(--cirth-primary-hover-border);
1920
- }
1921
-
1922
- [role="group"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) [type="submit"] {
1923
- --cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
1924
- var(--cirth-primary-border);
1925
- --cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
1926
- var(--cirth-primary-hover-border);
1927
- }
1928
-
1929
- [role="group"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) [type="button"] {
1930
- --cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
1931
- var(--cirth-primary-border);
1932
- --cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
1933
- var(--cirth-primary-hover-border);
1934
- }
1935
-
1936
- [role="group"]:has(input:not(:is([type="submit"], [type="button"])):focus, select:focus) [role="button"] {
1937
- --cirth-button-box-shadow: 0 0 0 var(--cirth-border-width)
1938
- var(--cirth-primary-border);
1939
- --cirth-button-hover-box-shadow: 0 0 0 var(--cirth-border-width)
1940
- var(--cirth-primary-hover-border);
1941
- }
1942
-
1943
- [role="search"] button:focus, [role="search"] [role="button"]:focus, [role="group"] button:focus, [role="group"] [role="button"]:focus {
1944
- box-shadow: none;
1945
- }
1946
-
1947
- [role="search"] [type="submit"]:focus {
1948
- box-shadow: none;
1949
- }
1950
-
1951
- [role="search"] [type="reset"]:focus {
1952
- box-shadow: none;
1953
- }
1954
-
1955
- [role="search"] [type="button"]:focus {
1956
- box-shadow: none;
1957
- }
1958
-
1959
- [role="group"] [type="submit"]:focus {
1960
- box-shadow: none;
1961
- }
1962
-
1963
- [role="group"] [type="reset"]:focus {
1964
- box-shadow: none;
1965
- }
1966
-
1967
- [role="group"] [type="button"]:focus {
1968
- box-shadow: none;
1969
- }
1970
- }
1971
-
1972
- [role="search"] > :first-child {
1973
- border-top-left-radius: var(--cirth-radius-pill);
1974
- border-bottom-left-radius: var(--cirth-radius-pill);
1975
- }
1976
-
1977
- [role="search"] > :last-child {
1978
- border-top-right-radius: var(--cirth-radius-pill);
1979
- border-bottom-right-radius: var(--cirth-radius-pill);
1980
- }
1981
-
1982
- [aria-busy="true"]:not(:is(input, select, textarea, html, form)) {
1983
- white-space: nowrap;
1984
- }
1985
-
1986
- [aria-busy="true"]:not(:is(input, select, textarea, html, form)):before {
1987
- background-image: var(--cirth-icon-loading);
1988
- content: "";
1989
- vertical-align: -.125em;
1990
- background-repeat: no-repeat;
1991
- background-size: 1em;
1992
- width: 1em;
1993
- height: 1em;
1994
- display: inline-block;
1995
- }
1996
-
1997
- [aria-busy="true"]:not(:is(input, select, textarea, html, form)):not(:empty):before {
1998
- margin-inline-end: calc(var(--cirth-spacing) * .5);
1999
- }
2000
-
2001
- [aria-busy="true"]:not(:is(input, select, textarea, html, form)):empty {
2002
- text-align: center;
2003
- }
2004
-
2005
- button[aria-busy="true"], [role="button"][aria-busy="true"], a[aria-busy="true"] {
2006
- pointer-events: none;
2007
- }
2008
-
2009
- [type="submit"][aria-busy="true"] {
2010
- pointer-events: none;
2011
- }
2012
-
2013
- [type="button"][aria-busy="true"] {
2014
- pointer-events: none;
2015
- }
2016
-
2017
- [type="reset"][aria-busy="true"] {
2018
- pointer-events: none;
2019
- }
2020
-
2021
- :root {
2022
- --cirth-scrollbar-width: 0px;
2023
- }
2024
-
2025
- :host {
2026
- --cirth-scrollbar-width: 0px;
2027
- }
2028
-
2029
- dialog {
2030
- z-index: var(--cirth-z-index-modal);
2031
- width: inherit;
2032
- min-width: 100%;
2033
- height: inherit;
2034
- min-height: 100%;
2035
- -webkit-backdrop-filter: var(--cirth-modal-overlay-backdrop-filter);
2036
- backdrop-filter: var(--cirth-modal-overlay-backdrop-filter);
2037
- background-color: var(--cirth-modal-overlay-background-color);
2038
- color: var(--cirth-color);
2039
- border: 0;
2040
- justify-content: center;
2041
- align-items: center;
2042
- padding: 0;
2043
- display: flex;
2044
- position: fixed;
2045
- inset: 0;
2046
- }
2047
-
2048
- dialog > article {
2049
- width: 100%;
2050
- max-height: calc(100vh - var(--cirth-spacing) * 2);
2051
- margin: var(--cirth-spacing);
2052
- overflow: auto;
2053
- }
2054
-
2055
- @media (width >= 576px) {
2056
- dialog > article {
2057
- max-width: 510px;
2058
- }
2059
- }
2060
-
2061
- @media (width >= 768px) {
2062
- dialog > article {
2063
- max-width: 700px;
2064
- }
2065
- }
2066
-
2067
- dialog > article > header > * {
2068
- margin-bottom: 0;
2069
- }
2070
-
2071
- dialog > article > header :is(a, button)[rel="prev"] {
2072
- margin: 0;
2073
- margin-left: var(--cirth-spacing);
2074
- float: right;
2075
- padding: 0;
2076
- }
2077
-
2078
- dialog > article > footer {
2079
- text-align: right;
2080
- }
2081
-
2082
- dialog > article > footer button, dialog > article > footer [role="button"] {
2083
- margin-bottom: 0;
2084
- }
2085
-
2086
- dialog > article > footer button:not(:first-of-type), dialog > article > footer [role="button"]:not(:first-of-type) {
2087
- margin-left: calc(var(--cirth-spacing) * .5);
2088
- }
2089
-
2090
- dialog > article :is(a, button)[rel="prev"] {
2091
- width: var(--cirth-size-4);
2092
- height: var(--cirth-size-4);
2093
- margin-top: calc(var(--cirth-spacing) * -1);
2094
- margin-bottom: var(--cirth-spacing);
2095
- background-image: var(--cirth-icon-close);
2096
- background-position: center;
2097
- background-size: auto var(--cirth-size-4);
2098
- opacity: .5;
2099
- transition: opacity var(--cirth-transition);
2100
- background-color: rgba(0, 0, 0, 0);
2101
- background-repeat: no-repeat;
2102
- border: none;
2103
- margin-left: auto;
2104
- display: block;
2105
- }
2106
-
2107
- dialog > article :is(a, button)[rel="prev"]:is([aria-current]:not([aria-current="false"]), :hover, :active, :focus) {
2108
- opacity: 1;
2109
- }
2110
-
2111
- dialog:not([open]), dialog[open="false"] {
2112
- display: none;
2113
- }
2114
-
2115
- :where(nav li):before {
2116
- float: left;
2117
- content: "​";
2118
- }
2119
-
2120
- nav, nav ul {
2121
- display: flex;
2122
- }
2123
-
2124
- nav {
2125
- justify-content: space-between;
2126
- overflow: visible;
2127
- }
2128
-
2129
- nav ol, nav ul {
2130
- align-items: center;
2131
- margin-bottom: 0;
2132
- padding: 0;
2133
- list-style: none;
2134
- }
2135
-
2136
- nav ol:first-of-type, nav ul:first-of-type {
2137
- margin-left: calc(var(--cirth-nav-element-spacing-horizontal) * -1);
2138
- }
2139
-
2140
- nav ol:last-of-type, nav ul:last-of-type {
2141
- margin-right: calc(var(--cirth-nav-element-spacing-horizontal) * -1);
2142
- }
2143
-
2144
- nav li {
2145
- padding: var(--cirth-nav-element-spacing-vertical) var(--cirth-nav-element-spacing-horizontal);
2146
- margin: 0;
2147
- display: inline-block;
2148
- }
2149
-
2150
- nav li :where(a, [role="link"]) {
2151
- margin: calc(var(--cirth-nav-link-spacing-vertical) * -1) calc(var(--cirth-nav-link-spacing-horizontal) * -1);
2152
- padding: var(--cirth-nav-link-spacing-vertical) var(--cirth-nav-link-spacing-horizontal);
2153
- border-radius: var(--cirth-border-radius);
2154
- display: inline-block;
2155
- }
2156
-
2157
- nav li :where(a, [role="link"]):not(:hover) {
2158
- text-decoration: none;
2159
- }
2160
-
2161
- nav li button, nav li [role="button"], nav li select {
2162
- height: auto;
2163
- margin-right: inherit;
2164
- margin-bottom: 0;
2165
- margin-left: inherit;
2166
- padding: calc(var(--cirth-nav-link-spacing-vertical) - var(--cirth-border-width) * 2) var(--cirth-nav-link-spacing-horizontal);
2167
- }
2168
-
2169
- nav li [type="button"] {
2170
- height: auto;
2171
- margin-right: inherit;
2172
- margin-bottom: 0;
2173
- margin-left: inherit;
2174
- padding: calc(var(--cirth-nav-link-spacing-vertical) - var(--cirth-border-width) * 2) var(--cirth-nav-link-spacing-horizontal);
2175
- }
2176
-
2177
- nav li input:not(:is([type="checkbox"], [type="radio"], [type="range"], [type="file"])) {
2178
- height: auto;
2179
- margin-right: inherit;
2180
- margin-bottom: 0;
2181
- margin-left: inherit;
2182
- padding: calc(var(--cirth-nav-link-spacing-vertical) - var(--cirth-border-width) * 2) var(--cirth-nav-link-spacing-horizontal);
2183
- }
2184
-
2185
- nav[aria-label="breadcrumb"] {
2186
- justify-content: start;
2187
- align-items: center;
2188
- }
2189
-
2190
- nav[aria-label="breadcrumb"] ul li:not(:first-child) {
2191
- margin-inline-start: var(--cirth-nav-link-spacing-horizontal);
2192
- }
2193
-
2194
- nav[aria-label="breadcrumb"] ul li a {
2195
- margin: calc(var(--cirth-nav-link-spacing-vertical) * -1) 0;
2196
- margin-inline-start: calc(var(--cirth-nav-link-spacing-horizontal) * -1);
2197
- }
2198
-
2199
- nav[aria-label="breadcrumb"] ul li:not(:last-child):after {
2200
- width: calc(var(--cirth-nav-link-spacing-horizontal) * 4);
2201
- margin: 0 calc(var(--cirth-nav-link-spacing-horizontal) * -1);
2202
- content: var(--cirth-nav-breadcrumb-divider);
2203
- color: var(--cirth-muted-color);
2204
- text-align: center;
2205
- white-space: nowrap;
2206
- text-decoration: none;
2207
- display: inline-block;
2208
- position: absolute;
2209
- }
2210
-
2211
- nav[aria-label="breadcrumb"] a[aria-current]:not([aria-current="false"]) {
2212
- color: inherit;
2213
- pointer-events: none;
2214
- background-color: rgba(0, 0, 0, 0);
2215
- text-decoration: none;
2216
- }
2217
-
2218
- aside nav, aside ol, aside ul, aside li {
2219
- display: block;
2220
- }
2221
-
2222
- aside li {
2223
- padding: calc(var(--cirth-nav-element-spacing-vertical) * .5) var(--cirth-nav-element-spacing-horizontal);
2224
- }
2225
-
2226
- aside li a {
2227
- display: block;
2228
- }
2229
-
2230
- aside li [role="button"] {
2231
- margin: inherit;
2232
- }
2233
-
2234
- [dir="rtl"] nav[aria-label="breadcrumb"] ul li:not(:last-child) :after {
2235
- content: "\\";
2236
- }
2237
-
2238
- progress {
2239
- vertical-align: baseline;
2240
- appearance: none;
2241
- width: 100%;
2242
- height: var(--cirth-size-2);
2243
- margin-bottom: calc(var(--cirth-spacing) * .5);
2244
- border-radius: var(--cirth-border-radius);
2245
- background-color: var(--cirth-progress-background-color);
2246
- color: var(--cirth-progress-color);
2247
- border: 0;
2248
- display: inline-block;
2249
- overflow: hidden;
2250
- }
2251
-
2252
- progress::-webkit-progress-bar {
2253
- border-radius: var(--cirth-border-radius);
2254
- background: none;
2255
- }
2256
-
2257
- progress[value]::-webkit-progress-value {
2258
- background-color: var(--cirth-progress-color);
2259
- transition: inline-size var(--cirth-transition);
2260
- }
2261
-
2262
- progress::-moz-progress-bar {
2263
- background-color: var(--cirth-progress-color);
2264
- }
2265
-
2266
- @media (prefers-reduced-motion: no-preference) {
2267
- progress:indeterminate {
2268
- background: var(--cirth-progress-background-color) linear-gradient(to right, var(--cirth-progress-color) 30%, var(--cirth-progress-background-color) 30%) top left/150% 150% no-repeat;
2269
- animation: 1s linear infinite progress-indeterminate;
2270
- }
2271
-
2272
- progress:indeterminate[value]::-webkit-progress-value {
2273
- background-color: rgba(0, 0, 0, 0);
2274
- }
2275
-
2276
- progress:indeterminate::-moz-progress-bar {
2277
- background-color: rgba(0, 0, 0, 0);
2278
- }
2279
-
2280
- [dir="rtl"] progress:indeterminate {
2281
- animation-direction: reverse;
2282
- }
2283
- }
2284
-
2285
- @keyframes progress-indeterminate {
2286
- 0% {
2287
- background-position: 200% 0;
2288
- }
2289
-
2290
- 100% {
2291
- background-position: -200% 0;
2292
- }
2293
- }
2294
-
2295
- [data-tooltip] {
2296
- position: relative;
2297
- }
2298
-
2299
- [data-tooltip]:not(:is(a, button, input, [role="button"])) {
2300
- border-bottom: var(--cirth-border-width-1) dotted;
2301
- cursor: help;
2302
- text-decoration: none;
2303
- }
2304
-
2305
- [data-tooltip][data-placement="top"]:before, [data-tooltip][data-placement="top"]:after, [data-tooltip]:before, [data-tooltip]:after {
2306
- z-index: var(--cirth-z-index-tooltip);
2307
- padding: var(--cirth-space-1) var(--cirth-space-2);
2308
- border-radius: var(--cirth-border-radius);
2309
- background: var(--cirth-tooltip-background-color);
2310
- content: attr(data-tooltip);
2311
- color: var(--cirth-tooltip-color);
2312
- font-style: normal;
2313
- font-weight: var(--cirth-font-weight);
2314
- font-size: var(--cirth-font-size-sm);
2315
- text-overflow: ellipsis;
2316
- white-space: nowrap;
2317
- opacity: 0;
2318
- pointer-events: none;
2319
- text-decoration: none;
2320
- display: block;
2321
- position: absolute;
2322
- bottom: 100%;
2323
- left: 50%;
2324
- overflow: hidden;
2325
- transform: translate(-50%, -.25rem);
2326
- }
2327
-
2328
- [data-tooltip][data-placement="top"]:after, [data-tooltip]:after {
2329
- content: "";
2330
- color: var(--cirth-tooltip-background-color);
2331
- background-color: rgba(0, 0, 0, 0);
2332
- border-top: .3rem solid;
2333
- border-left: .3rem solid rgba(0, 0, 0, 0);
2334
- border-right: .3rem solid rgba(0, 0, 0, 0);
2335
- border-radius: 0;
2336
- padding: 0;
2337
- transform: translate(-50%);
2338
- }
2339
-
2340
- [data-tooltip][data-placement="bottom"]:before, [data-tooltip][data-placement="bottom"]:after {
2341
- top: 100%;
2342
- bottom: auto;
2343
- transform: translate(-50%, .25rem);
2344
- }
2345
-
2346
- [data-tooltip][data-placement="bottom"]:after {
2347
- border: .3rem solid rgba(0, 0, 0, 0);
2348
- border-bottom-color: currentColor;
2349
- transform: translate(-50%, -.3rem);
2350
- }
2351
-
2352
- [data-tooltip][data-placement="left"]:before, [data-tooltip][data-placement="left"]:after {
2353
- inset: 50% 100% auto auto;
2354
- transform: translate(-.25rem, -50%);
2355
- }
2356
-
2357
- [data-tooltip][data-placement="left"]:after {
2358
- border: .3rem solid rgba(0, 0, 0, 0);
2359
- border-left-color: currentColor;
2360
- transform: translate(.3rem, -50%);
2361
- }
2362
-
2363
- [data-tooltip][data-placement="right"]:before, [data-tooltip][data-placement="right"]:after {
2364
- inset: 50% auto auto 100%;
2365
- transform: translate(.25rem, -50%);
2366
- }
2367
-
2368
- [data-tooltip][data-placement="right"]:after {
2369
- border: .3rem solid rgba(0, 0, 0, 0);
2370
- border-right-color: currentColor;
2371
- transform: translate(-.3rem, -50%);
2372
- }
2373
-
2374
- [data-tooltip]:focus:before, [data-tooltip]:focus:after, [data-tooltip]:hover:before, [data-tooltip]:hover:after {
2375
- opacity: 1;
2376
- }
2377
-
2378
- @media (hover: hover) and (pointer: fine) {
2379
- [data-tooltip]:focus:before, [data-tooltip]:focus:after, [data-tooltip]:hover:before, [data-tooltip]:hover:after {
2380
- --cirth-tooltip-slide-to: translate(-50%, -.25rem);
2381
- animation-duration: var(--cirth-duration-normal);
2382
- opacity: 0;
2383
- animation-name: tooltip-slide;
2384
- animation-fill-mode: forwards;
2385
- transform: translate(-50%, .75rem);
2386
- }
2387
-
2388
- [data-tooltip]:focus:after, [data-tooltip]:hover:after {
2389
- --cirth-tooltip-caret-slide-to: translate(-50%, 0rem);
2390
- animation-name: tooltip-caret-slide;
2391
- transform: translate(-50%, -.25rem);
2392
- }
2393
-
2394
- [data-tooltip][data-placement="bottom"]:focus:before, [data-tooltip][data-placement="bottom"]:focus:after, [data-tooltip][data-placement="bottom"]:hover:before, [data-tooltip][data-placement="bottom"]:hover:after {
2395
- --cirth-tooltip-slide-to: translate(-50%, .25rem);
2396
- animation-name: tooltip-slide;
2397
- transform: translate(-50%, -.75rem);
2398
- }
2399
-
2400
- [data-tooltip][data-placement="bottom"]:focus:after, [data-tooltip][data-placement="bottom"]:hover:after {
2401
- --cirth-tooltip-caret-slide-to: translate(-50%, -.3rem);
2402
- animation-name: tooltip-caret-slide;
2403
- transform: translate(-50%, -.5rem);
2404
- }
2405
-
2406
- [data-tooltip][data-placement="left"]:focus:before, [data-tooltip][data-placement="left"]:focus:after, [data-tooltip][data-placement="left"]:hover:before, [data-tooltip][data-placement="left"]:hover:after {
2407
- --cirth-tooltip-slide-to: translate(-.25rem, -50%);
2408
- animation-name: tooltip-slide;
2409
- transform: translate(.75rem, -50%);
2410
- }
2411
-
2412
- [data-tooltip][data-placement="left"]:focus:after, [data-tooltip][data-placement="left"]:hover:after {
2413
- --cirth-tooltip-caret-slide-to: translate(.3rem, -50%);
2414
- animation-name: tooltip-caret-slide;
2415
- transform: translate(.05rem, -50%);
2416
- }
2417
-
2418
- [data-tooltip][data-placement="right"]:focus:before, [data-tooltip][data-placement="right"]:focus:after, [data-tooltip][data-placement="right"]:hover:before, [data-tooltip][data-placement="right"]:hover:after {
2419
- --cirth-tooltip-slide-to: translate(.25rem, -50%);
2420
- animation-name: tooltip-slide;
2421
- transform: translate(-.75rem, -50%);
2422
- }
2423
-
2424
- [data-tooltip][data-placement="right"]:focus:after, [data-tooltip][data-placement="right"]:hover:after {
2425
- --cirth-tooltip-caret-slide-to: translate(-.3rem, -50%);
2426
- animation-name: tooltip-caret-slide;
2427
- transform: translate(-.05rem, -50%);
2428
- }
2429
- }
2430
-
2431
- @keyframes tooltip-slide {
2432
- to {
2433
- transform: var(--cirth-tooltip-slide-to);
2434
- opacity: 1;
2435
- }
2436
- }
2437
-
2438
- @keyframes tooltip-caret-slide {
2439
- 50% {
2440
- opacity: 0;
2441
- }
2442
-
2443
- to {
2444
- transform: var(--cirth-tooltip-caret-slide-to);
2445
- opacity: 1;
2446
- }
2447
- }
2448
-
2449
- [aria-controls] {
2450
- cursor: pointer;
2451
- }
2452
-
2453
- [aria-disabled="true"], [disabled] {
2454
- cursor: not-allowed;
2455
- }
2456
-
2457
- [aria-hidden="false"][hidden] {
2458
- display: initial;
2459
- }
2460
-
2461
- [aria-hidden="false"][hidden]:not(:focus) {
2462
- clip: rect(0, 0, 0, 0);
2463
- position: absolute;
2464
- }
2465
-
2466
- a, area, button, input, label, select, summary, textarea, [tabindex] {
2467
- -ms-touch-action: manipulation;
2468
- }
2469
-
2470
- [dir="rtl"] {
2471
- direction: rtl;
2472
- }
2473
-
2474
- @media (prefers-reduced-motion: reduce) {
2475
- :not([aria-busy="true"]), :not([aria-busy="true"]):before, :not([aria-busy="true"]):after {
2476
- background-attachment: initial;
2477
- scroll-behavior: auto;
2478
- transition-delay: var(--cirth-duration-instant);
2479
- transition-duration: var(--cirth-duration-instant);
2480
- animation-duration: 1ms;
2481
- animation-iteration-count: 1;
2482
- animation-delay: -1ms;
2483
- }
2484
- }
2485
-
2486
- :root {
2487
- --cirth-color-black: #000;
2488
- --cirth-color-white: #fff;
2489
- --cirth-color-transparent: transparent;
2490
- --cirth-color-current: currentColor;
2491
- --cirth-font-family-ui: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial,
2492
- "Helvetica Neue", sans-serif;
2493
- --cirth-font-family-sans: var(--cirth-font-family-ui), "Apple Color Emoji", "Segoe UI Emoji",
2494
- "Segoe UI Symbol", "Noto Color Emoji";
2495
- --cirth-font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif;
2496
- --cirth-font-family-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono",
2497
- monospace;
2498
- --cirth-font-family-display: var(--cirth-font-family-sans);
2499
- --cirth-font-size-xs: .75rem;
2500
- --cirth-font-size-sm: .875rem;
2501
- --cirth-font-size-md: 1rem;
2502
- --cirth-font-size-lg: 1.125rem;
2503
- --cirth-font-size-xl: 1.25rem;
2504
- --cirth-font-size-2xl: 1.425rem;
2505
- --cirth-font-size-3xl: 1.6rem;
2506
- --cirth-font-size-4xl: 1.8rem;
2507
- --cirth-font-size-5xl: 2rem;
2508
- --cirth-font-size-6xl: 2.3rem;
2509
- --cirth-font-weight-light: 300;
2510
- --cirth-font-weight-regular: 400;
2511
- --cirth-font-weight-medium: 500;
2512
- --cirth-font-weight-semibold: 600;
2513
- --cirth-font-weight-bold: 700;
2514
- --cirth-line-height-none: 1;
2515
- --cirth-line-height-tight: 1.125;
2516
- --cirth-line-height-snug: 1.25;
2517
- --cirth-line-height-normal: 1.5;
2518
- --cirth-line-height-relaxed: 1.625;
2519
- --cirth-line-height-loose: 2;
2520
- --cirth-letter-spacing-tight: 0;
2521
- --cirth-letter-spacing-normal: 0;
2522
- --cirth-letter-spacing-wide: .025em;
2523
- --cirth-space-0: 0;
2524
- --cirth-space-1: .25rem;
2525
- --cirth-space-2: .5rem;
2526
- --cirth-space-3: .75rem;
2527
- --cirth-space-4: 1rem;
2528
- --cirth-space-5: 1.25rem;
2529
- --cirth-space-6: 1.5rem;
2530
- --cirth-space-8: 2rem;
2531
- --cirth-space-10: 2.5rem;
2532
- --cirth-space-12: 3rem;
2533
- --cirth-space-16: 4rem;
2534
- --cirth-space-20: 5rem;
2535
- --cirth-space-24: 6rem;
2536
- --cirth-size-0: 0;
2537
- --cirth-size-1: .25rem;
2538
- --cirth-size-2: .5rem;
2539
- --cirth-size-3: .75rem;
2540
- --cirth-size-4: 1rem;
2541
- --cirth-size-5: 1.25rem;
2542
- --cirth-size-6: 1.5rem;
2543
- --cirth-size-8: 2rem;
2544
- --cirth-size-10: 2.5rem;
2545
- --cirth-size-12: 3rem;
2546
- --cirth-size-16: 4rem;
2547
- --cirth-size-20: 5rem;
2548
- --cirth-size-24: 6rem;
2549
- --cirth-radius-none: 0;
2550
- --cirth-radius-xs: .125rem;
2551
- --cirth-radius-sm: .25rem;
2552
- --cirth-radius-md: .375rem;
2553
- --cirth-radius-lg: .5rem;
2554
- --cirth-radius-xl: .75rem;
2555
- --cirth-radius-2xl: 1rem;
2556
- --cirth-radius-pill: 9999px;
2557
- --cirth-border-width-0: 0;
2558
- --cirth-border-width-1: .0625rem;
2559
- --cirth-border-width-2: .125rem;
2560
- --cirth-border-width-4: .25rem;
2561
- --cirth-outline-width-1: .0625rem;
2562
- --cirth-outline-width-2: .125rem;
2563
- --cirth-outline-width-4: .25rem;
2564
- --cirth-shadow-none: none;
2565
- --cirth-shadow-xs: 0 .0625rem .125rem rgba(0, 0, 0, .05);
2566
- --cirth-shadow-sm: 0 .0625rem .1875rem rgba(0, 0, 0, .1),
2567
- 0 .0625rem .125rem rgba(0, 0, 0, .06);
2568
- --cirth-shadow-md: 0 .25rem .375rem rgba(0, 0, 0, .07),
2569
- 0 .125rem .25rem rgba(0, 0, 0, .06);
2570
- --cirth-shadow-lg: 0 .625rem .9375rem rgba(0, 0, 0, .1),
2571
- 0 .25rem .375rem rgba(0, 0, 0, .05);
2572
- --cirth-shadow-xl: 0 1.25rem 1.5625rem rgba(0, 0, 0, .1),
2573
- 0 .625rem .625rem rgba(0, 0, 0, .04);
2574
- --cirth-shadow-inner: inset 0 .125rem .25rem rgba(0, 0, 0, .06);
2575
- --cirth-duration-instant: 0s;
2576
- --cirth-duration-fast: .1s;
2577
- --cirth-duration-normal: .2s;
2578
- --cirth-duration-slow: .3s;
2579
- --cirth-duration-slower: .5s;
2580
- --cirth-ease-linear: linear;
2581
- --cirth-ease-in: cubic-bezier(.4, 0, 1, 1);
2582
- --cirth-ease-out: cubic-bezier(0, 0, .2, 1);
2583
- --cirth-ease-in-out: cubic-bezier(.4, 0, .2, 1);
2584
- --cirth-opacity-disabled: .5;
2585
- --cirth-opacity-muted: .72;
2586
- --cirth-opacity-overlay: .75;
2587
- --cirth-z-index-dropdown: 1000;
2588
- --cirth-z-index-sticky: 1020;
2589
- --cirth-z-index-fixed: 1030;
2590
- --cirth-z-index-modal-backdrop: 1040;
2591
- --cirth-z-index-modal: 1050;
2592
- --cirth-z-index-tooltip: 1070;
2593
- }
2594
-
2595
- :host {
2596
- --cirth-color-black: #000;
2597
- --cirth-color-white: #fff;
2598
- --cirth-color-transparent: transparent;
2599
- --cirth-color-current: currentColor;
2600
- --cirth-font-family-ui: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial,
2601
- "Helvetica Neue", sans-serif;
2602
- --cirth-font-family-sans: var(--cirth-font-family-ui), "Apple Color Emoji", "Segoe UI Emoji",
2603
- "Segoe UI Symbol", "Noto Color Emoji";
2604
- --cirth-font-family-serif: Georgia, Cambria, "Times New Roman", Times, serif;
2605
- --cirth-font-family-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono",
2606
- monospace;
2607
- --cirth-font-family-display: var(--cirth-font-family-sans);
2608
- --cirth-font-size-xs: .75rem;
2609
- --cirth-font-size-sm: .875rem;
2610
- --cirth-font-size-md: 1rem;
2611
- --cirth-font-size-lg: 1.125rem;
2612
- --cirth-font-size-xl: 1.25rem;
2613
- --cirth-font-size-2xl: 1.425rem;
2614
- --cirth-font-size-3xl: 1.6rem;
2615
- --cirth-font-size-4xl: 1.8rem;
2616
- --cirth-font-size-5xl: 2rem;
2617
- --cirth-font-size-6xl: 2.3rem;
2618
- --cirth-font-weight-light: 300;
2619
- --cirth-font-weight-regular: 400;
2620
- --cirth-font-weight-medium: 500;
2621
- --cirth-font-weight-semibold: 600;
2622
- --cirth-font-weight-bold: 700;
2623
- --cirth-line-height-none: 1;
2624
- --cirth-line-height-tight: 1.125;
2625
- --cirth-line-height-snug: 1.25;
2626
- --cirth-line-height-normal: 1.5;
2627
- --cirth-line-height-relaxed: 1.625;
2628
- --cirth-line-height-loose: 2;
2629
- --cirth-letter-spacing-tight: 0;
2630
- --cirth-letter-spacing-normal: 0;
2631
- --cirth-letter-spacing-wide: .025em;
2632
- --cirth-space-0: 0;
2633
- --cirth-space-1: .25rem;
2634
- --cirth-space-2: .5rem;
2635
- --cirth-space-3: .75rem;
2636
- --cirth-space-4: 1rem;
2637
- --cirth-space-5: 1.25rem;
2638
- --cirth-space-6: 1.5rem;
2639
- --cirth-space-8: 2rem;
2640
- --cirth-space-10: 2.5rem;
2641
- --cirth-space-12: 3rem;
2642
- --cirth-space-16: 4rem;
2643
- --cirth-space-20: 5rem;
2644
- --cirth-space-24: 6rem;
2645
- --cirth-size-0: 0;
2646
- --cirth-size-1: .25rem;
2647
- --cirth-size-2: .5rem;
2648
- --cirth-size-3: .75rem;
2649
- --cirth-size-4: 1rem;
2650
- --cirth-size-5: 1.25rem;
2651
- --cirth-size-6: 1.5rem;
2652
- --cirth-size-8: 2rem;
2653
- --cirth-size-10: 2.5rem;
2654
- --cirth-size-12: 3rem;
2655
- --cirth-size-16: 4rem;
2656
- --cirth-size-20: 5rem;
2657
- --cirth-size-24: 6rem;
2658
- --cirth-radius-none: 0;
2659
- --cirth-radius-xs: .125rem;
2660
- --cirth-radius-sm: .25rem;
2661
- --cirth-radius-md: .375rem;
2662
- --cirth-radius-lg: .5rem;
2663
- --cirth-radius-xl: .75rem;
2664
- --cirth-radius-2xl: 1rem;
2665
- --cirth-radius-pill: 9999px;
2666
- --cirth-border-width-0: 0;
2667
- --cirth-border-width-1: .0625rem;
2668
- --cirth-border-width-2: .125rem;
2669
- --cirth-border-width-4: .25rem;
2670
- --cirth-outline-width-1: .0625rem;
2671
- --cirth-outline-width-2: .125rem;
2672
- --cirth-outline-width-4: .25rem;
2673
- --cirth-shadow-none: none;
2674
- --cirth-shadow-xs: 0 .0625rem .125rem rgba(0, 0, 0, .05);
2675
- --cirth-shadow-sm: 0 .0625rem .1875rem rgba(0, 0, 0, .1),
2676
- 0 .0625rem .125rem rgba(0, 0, 0, .06);
2677
- --cirth-shadow-md: 0 .25rem .375rem rgba(0, 0, 0, .07),
2678
- 0 .125rem .25rem rgba(0, 0, 0, .06);
2679
- --cirth-shadow-lg: 0 .625rem .9375rem rgba(0, 0, 0, .1),
2680
- 0 .25rem .375rem rgba(0, 0, 0, .05);
2681
- --cirth-shadow-xl: 0 1.25rem 1.5625rem rgba(0, 0, 0, .1),
2682
- 0 .625rem .625rem rgba(0, 0, 0, .04);
2683
- --cirth-shadow-inner: inset 0 .125rem .25rem rgba(0, 0, 0, .06);
2684
- --cirth-duration-instant: 0s;
2685
- --cirth-duration-fast: .1s;
2686
- --cirth-duration-normal: .2s;
2687
- --cirth-duration-slow: .3s;
2688
- --cirth-duration-slower: .5s;
2689
- --cirth-ease-linear: linear;
2690
- --cirth-ease-in: cubic-bezier(.4, 0, 1, 1);
2691
- --cirth-ease-out: cubic-bezier(0, 0, .2, 1);
2692
- --cirth-ease-in-out: cubic-bezier(.4, 0, .2, 1);
2693
- --cirth-opacity-disabled: .5;
2694
- --cirth-opacity-muted: .72;
2695
- --cirth-opacity-overlay: .75;
2696
- --cirth-z-index-dropdown: 1000;
2697
- --cirth-z-index-sticky: 1020;
2698
- --cirth-z-index-fixed: 1030;
2699
- --cirth-z-index-modal-backdrop: 1040;
2700
- --cirth-z-index-modal: 1050;
2701
- --cirth-z-index-tooltip: 1070;
2702
- }
2703
-
2704
- :root {
2705
- --cirth-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
2706
- --cirth-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial,
2707
- "Helvetica Neue", sans-serif, var(--cirth-font-family-emoji);
2708
- --cirth-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono",
2709
- monospace, var(--cirth-font-family-emoji);
2710
- --cirth-font-family: var(--cirth-font-family-sans-serif);
2711
- --cirth-line-height: var(--cirth-line-height-normal);
2712
- --cirth-font-weight: var(--cirth-font-weight-regular);
2713
- --cirth-font-size: 100%;
2714
- --cirth-text-underline-offset: .1rem;
2715
- --cirth-border-radius: var(--cirth-radius-sm);
2716
- --cirth-border-width: var(--cirth-border-width-1);
2717
- --cirth-outline-width: var(--cirth-outline-width-2);
2718
- --cirth-transition: var(--cirth-duration-normal) var(--cirth-ease-in-out);
2719
- --cirth-spacing: var(--cirth-space-4);
2720
- --cirth-typography-spacing-vertical: var(--cirth-space-4);
2721
- --cirth-block-spacing-vertical: var(--cirth-spacing);
2722
- --cirth-block-spacing-horizontal: var(--cirth-spacing);
2723
- --cirth-form-element-spacing-vertical: var(--cirth-space-3);
2724
- --cirth-form-element-spacing-horizontal: var(--cirth-space-4);
2725
- --cirth-form-label-font-weight: var(--cirth-font-weight);
2726
- --cirth-group-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
2727
- --cirth-group-box-shadow-focus-with-button: 0 0 0 var(--cirth-outline-width)
2728
- var(--cirth-primary-focus);
2729
- --cirth-group-box-shadow-focus-with-input: 0 0 0 var(--cirth-border-width-1)
2730
- var(--cirth-form-element-border-color);
2731
- --cirth-modal-overlay-backdrop-filter: blur(.375rem);
2732
- --cirth-nav-element-spacing-vertical: var(--cirth-space-4);
2733
- --cirth-nav-element-spacing-horizontal: var(--cirth-space-2);
2734
- --cirth-nav-link-spacing-vertical: var(--cirth-space-2);
2735
- --cirth-nav-link-spacing-horizontal: var(--cirth-space-2);
2736
- --cirth-nav-breadcrumb-divider: ">";
2737
- --cirth-icon-checkbox: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
2738
- --cirth-icon-minus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
2739
- --cirth-icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
2740
- --cirth-icon-date: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
2741
- --cirth-icon-time: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
2742
- --cirth-icon-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
2743
- --cirth-icon-close: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
2744
- --cirth-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
2745
- }
2746
-
2747
- :host {
2748
- --cirth-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
2749
- --cirth-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial,
2750
- "Helvetica Neue", sans-serif, var(--cirth-font-family-emoji);
2751
- --cirth-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono",
2752
- monospace, var(--cirth-font-family-emoji);
2753
- --cirth-font-family: var(--cirth-font-family-sans-serif);
2754
- --cirth-line-height: var(--cirth-line-height-normal);
2755
- --cirth-font-weight: var(--cirth-font-weight-regular);
2756
- --cirth-font-size: 100%;
2757
- --cirth-text-underline-offset: .1rem;
2758
- --cirth-border-radius: var(--cirth-radius-sm);
2759
- --cirth-border-width: var(--cirth-border-width-1);
2760
- --cirth-outline-width: var(--cirth-outline-width-2);
2761
- --cirth-transition: var(--cirth-duration-normal) var(--cirth-ease-in-out);
2762
- --cirth-spacing: var(--cirth-space-4);
2763
- --cirth-typography-spacing-vertical: var(--cirth-space-4);
2764
- --cirth-block-spacing-vertical: var(--cirth-spacing);
2765
- --cirth-block-spacing-horizontal: var(--cirth-spacing);
2766
- --cirth-form-element-spacing-vertical: var(--cirth-space-3);
2767
- --cirth-form-element-spacing-horizontal: var(--cirth-space-4);
2768
- --cirth-form-label-font-weight: var(--cirth-font-weight);
2769
- --cirth-group-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
2770
- --cirth-group-box-shadow-focus-with-button: 0 0 0 var(--cirth-outline-width)
2771
- var(--cirth-primary-focus);
2772
- --cirth-group-box-shadow-focus-with-input: 0 0 0 var(--cirth-border-width-1)
2773
- var(--cirth-form-element-border-color);
2774
- --cirth-modal-overlay-backdrop-filter: blur(.375rem);
2775
- --cirth-nav-element-spacing-vertical: var(--cirth-space-4);
2776
- --cirth-nav-element-spacing-horizontal: var(--cirth-space-2);
2777
- --cirth-nav-link-spacing-vertical: var(--cirth-space-2);
2778
- --cirth-nav-link-spacing-horizontal: var(--cirth-space-2);
2779
- --cirth-nav-breadcrumb-divider: ">";
2780
- --cirth-icon-checkbox: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
2781
- --cirth-icon-minus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(255, 255, 255)' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
2782
- --cirth-icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
2783
- --cirth-icon-date: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
2784
- --cirth-icon-time: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
2785
- --cirth-icon-search: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
2786
- --cirth-icon-close: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(136, 145, 164)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
2787
- --cirth-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
2788
- }
2789
-
2790
- @media (width >= 576px) {
2791
- :root {
2792
- --cirth-font-size: 106.25%;
2793
- }
2794
-
2795
- :host {
2796
- --cirth-font-size: 106.25%;
2797
- }
2798
- }
2799
-
2800
- @media (width >= 768px) {
2801
- :root {
2802
- --cirth-font-size: 112.5%;
2803
- }
2804
-
2805
- :host {
2806
- --cirth-font-size: 112.5%;
2807
- }
2808
- }
2809
-
2810
- @media (width >= 1024px) {
2811
- :root {
2812
- --cirth-font-size: 118.75%;
2813
- }
2814
-
2815
- :host {
2816
- --cirth-font-size: 118.75%;
2817
- }
2818
- }
2819
-
2820
- @media (width >= 1280px) {
2821
- :root {
2822
- --cirth-font-size: 125%;
2823
- }
2824
-
2825
- :host {
2826
- --cirth-font-size: 125%;
2827
- }
2828
- }
2829
-
2830
- @media (width >= 1536px) {
2831
- :root {
2832
- --cirth-font-size: 131.25%;
2833
- }
2834
-
2835
- :host {
2836
- --cirth-font-size: 131.25%;
2837
- }
2838
- }
2839
-
2840
- a {
2841
- --cirth-text-decoration: underline;
2842
- }
2843
-
2844
- small {
2845
- --cirth-font-size: .875em;
2846
- }
2847
-
2848
- h1, h2, h3, h4, h5, h6 {
2849
- --cirth-font-weight: var(--cirth-font-weight-bold);
2850
- }
2851
-
2852
- h1 {
2853
- --cirth-font-size: var(--cirth-font-size-5xl);
2854
- --cirth-line-height: var(--cirth-line-height-tight);
2855
- --cirth-typography-spacing-top: var(--cirth-space-12);
2856
- }
2857
-
2858
- h2 {
2859
- --cirth-font-size: 1.75rem;
2860
- --cirth-line-height: 1.15;
2861
- --cirth-typography-spacing-top: 2.625rem;
2862
- }
2863
-
2864
- h3 {
2865
- --cirth-font-size: 1.5rem;
2866
- --cirth-line-height: 1.175;
2867
- --cirth-typography-spacing-top: 2.25rem;
2868
- }
2869
-
2870
- h4 {
2871
- --cirth-font-size: var(--cirth-font-size-xl);
2872
- --cirth-line-height: 1.2;
2873
- --cirth-typography-spacing-top: 1.874rem;
2874
- }
2875
-
2876
- h5 {
2877
- --cirth-font-size: var(--cirth-font-size-lg);
2878
- --cirth-line-height: 1.225;
2879
- --cirth-typography-spacing-top: 1.6875rem;
2880
- }
2881
-
2882
- h6 {
2883
- --cirth-font-size: var(--cirth-font-size-md);
2884
- --cirth-line-height: var(--cirth-line-height-snug);
2885
- --cirth-typography-spacing-top: var(--cirth-space-6);
2886
- }
2887
-
2888
- thead th, thead td, tfoot th, tfoot td {
2889
- --cirth-font-weight: var(--cirth-font-weight-semibold);
2890
- --cirth-border-width: .1875rem;
2891
- }
2892
-
2893
- pre, code, kbd, samp {
2894
- --cirth-font-family: var(--cirth-font-family-monospace);
2895
- }
2896
-
2897
- kbd {
2898
- --cirth-font-weight: bolder;
2899
- }
2900
-
2901
- input:not(:is([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"])) {
2902
- --cirth-outline-width: var(--cirth-outline-width-1);
2903
- }
2904
-
2905
- :where(select, textarea) {
2906
- --cirth-outline-width: var(--cirth-outline-width-1);
2907
- }
2908
-
2909
- [type="search"] {
2910
- --cirth-border-radius: var(--cirth-radius-pill);
2911
- }
2912
-
2913
- [type="checkbox"] {
2914
- --cirth-border-width: var(--cirth-border-width-2);
2915
- }
2916
-
2917
- [type="radio"] {
2918
- --cirth-border-width: var(--cirth-border-width-2);
2919
- }
2920
-
2921
- [type="checkbox"][role="switch"] {
2922
- --cirth-border-width: .1875rem;
2923
- }
2924
-
2925
- [role="search"] {
2926
- --cirth-border-radius: var(--cirth-radius-pill);
2927
- }
2928
-
2929
- [role="search"] button, [role="search"] [role="button"], [role="group"] button, [role="group"] [role="button"] {
2930
- --cirth-form-element-spacing-horizontal: var(--cirth-space-8);
2931
- }
2932
-
2933
- [role="search"] [type="submit"] {
2934
- --cirth-form-element-spacing-horizontal: var(--cirth-space-8);
2935
- }
2936
-
2937
- [role="search"] [type="button"] {
2938
- --cirth-form-element-spacing-horizontal: var(--cirth-space-8);
2939
- }
2940
-
2941
- [role="group"] [type="submit"] {
2942
- --cirth-form-element-spacing-horizontal: var(--cirth-space-8);
2943
- }
2944
-
2945
- [role="group"] [type="button"] {
2946
- --cirth-form-element-spacing-horizontal: var(--cirth-space-8);
2947
- }
2948
-
2949
- details summary[role="button"]:after {
2950
- filter: brightness(0) invert();
2951
- }
2952
-
2953
- [aria-busy="true"]:not(:is(input, select, textarea)):is(button, [type="submit"], [type="button"], [type="reset"], [role="button"]):before {
2954
- filter: brightness(0) invert();
2955
- }
2956
-
2957
- [data-theme="light"], :root:not([data-theme="dark"]) {
2958
- --lightningcss-light: initial;
2959
- --lightningcss-dark: ;
2960
- color-scheme: light;
2961
- --cirth-background-color: #fff;
2962
- --cirth-color: #373c44;
2963
- --cirth-text-selection-color: rgba(129, 145, 181, .25);
2964
- --cirth-muted-color: #646b79;
2965
- --cirth-muted-border-color: #e7eaf0;
2966
- --cirth-primary: #5d6b89;
2967
- --cirth-primary-background: #525f7a;
2968
- --cirth-primary-border: var(--cirth-primary-background);
2969
- --cirth-primary-underline: rgba(93, 107, 137, .5);
2970
- --cirth-primary-hover: #48536b;
2971
- --cirth-primary-hover-background: #48536b;
2972
- --cirth-primary-hover-border: var(--cirth-primary-hover-background);
2973
- --cirth-primary-hover-underline: var(--cirth-primary-hover);
2974
- --cirth-primary-focus: rgba(129, 145, 181, .5);
2975
- --cirth-primary-inverse: #fff;
2976
- --cirth-secondary: #5d6b89;
2977
- --cirth-secondary-background: #525f7a;
2978
- --cirth-secondary-border: var(--cirth-secondary-background);
2979
- --cirth-secondary-underline: rgba(93, 107, 137, .5);
2980
- --cirth-secondary-hover: #48536b;
2981
- --cirth-secondary-hover-background: #48536b;
2982
- --cirth-secondary-hover-border: var(--cirth-secondary-hover-background);
2983
- --cirth-secondary-hover-underline: var(--cirth-secondary-hover);
2984
- --cirth-secondary-focus: rgba(93, 107, 137, .25);
2985
- --cirth-secondary-inverse: #fff;
2986
- --cirth-contrast: #181c25;
2987
- --cirth-contrast-background: #181c25;
2988
- --cirth-contrast-border: var(--cirth-contrast-background);
2989
- --cirth-contrast-underline: rgba(24, 28, 37, .5);
2990
- --cirth-contrast-hover: #000;
2991
- --cirth-contrast-hover-background: #000;
2992
- --cirth-contrast-hover-border: var(--cirth-contrast-hover-background);
2993
- --cirth-contrast-hover-underline: var(--cirth-secondary-hover);
2994
- --cirth-contrast-focus: rgba(93, 107, 137, .25);
2995
- --cirth-contrast-inverse: #fff;
2996
- --cirth-box-shadow: .0145rem .029rem .174rem rgba(129, 145, 181, .016), .0335rem .067rem .402rem rgba(129, 145, 181, .024), .0625rem .125rem .75rem rgba(129, 145, 181, .03), .1125rem .225rem 1.35rem rgba(129, 145, 181, .035), .2085rem .417rem 2.502rem rgba(129, 145, 181, .043), .5rem 1rem 6rem rgba(129, 145, 181, .06), 0 0 0 .0625rem rgba(129, 145, 181, .016);
2997
- --cirth-h1-color: #2d3138;
2998
- --cirth-h2-color: #373c44;
2999
- --cirth-h3-color: #424751;
3000
- --cirth-h4-color: #4d535e;
3001
- --cirth-h5-color: #5c6370;
3002
- --cirth-h6-color: #646b79;
3003
- --cirth-mark-background-color: #fde7c0;
3004
- --cirth-mark-color: #0f1114;
3005
- --cirth-ins-color: #1d6a54;
3006
- --cirth-del-color: #883935;
3007
- --cirth-blockquote-border-color: var(--cirth-muted-border-color);
3008
- --cirth-blockquote-footer-color: var(--cirth-muted-color);
3009
- --cirth-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3010
- --cirth-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3011
- --cirth-table-border-color: var(--cirth-muted-border-color);
3012
- --cirth-table-row-stripped-background-color: rgba(111, 120, 135, .04);
3013
- --cirth-code-background-color: #f3f5f7;
3014
- --cirth-code-color: #646b79;
3015
- --cirth-code-kbd-background-color: var(--cirth-color);
3016
- --cirth-code-kbd-color: var(--cirth-background-color);
3017
- --cirth-form-element-background-color: #fbfcfc;
3018
- --cirth-form-element-selected-background-color: #dfe3eb;
3019
- --cirth-form-element-border-color: #cfd5e2;
3020
- --cirth-form-element-color: #23262c;
3021
- --cirth-form-element-placeholder-color: var(--cirth-muted-color);
3022
- --cirth-form-element-active-background-color: #fff;
3023
- --cirth-form-element-active-border-color: var(--cirth-primary-border);
3024
- --cirth-form-element-focus-color: var(--cirth-primary-border);
3025
- --cirth-form-element-disabled-opacity: var(--cirth-opacity-disabled);
3026
- --cirth-form-element-invalid-border-color: #b86a6b;
3027
- --cirth-form-element-invalid-active-border-color: #c84f48;
3028
- --cirth-form-element-invalid-focus-color: var(--cirth-form-element-invalid-active-border-color);
3029
- --cirth-form-element-valid-border-color: #4c9b8a;
3030
- --cirth-form-element-valid-active-border-color: #279977;
3031
- --cirth-form-element-valid-focus-color: var(--cirth-form-element-valid-active-border-color);
3032
- --cirth-switch-background-color: #bfc7d9;
3033
- --cirth-switch-checked-background-color: var(--cirth-primary-background);
3034
- --cirth-switch-color: #fff;
3035
- --cirth-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3036
- --cirth-range-border-color: #dfe3eb;
3037
- --cirth-range-active-border-color: #bfc7d9;
3038
- --cirth-range-thumb-border-color: var(--cirth-background-color);
3039
- --cirth-range-thumb-color: var(--cirth-secondary-background);
3040
- --cirth-range-thumb-active-color: var(--cirth-primary-background);
3041
- --cirth-accordion-border-color: var(--cirth-muted-border-color);
3042
- --cirth-accordion-active-summary-color: var(--cirth-primary-hover);
3043
- --cirth-accordion-close-summary-color: var(--cirth-color);
3044
- --cirth-accordion-open-summary-color: var(--cirth-muted-color);
3045
- --cirth-card-background-color: var(--cirth-background-color);
3046
- --cirth-card-border-color: var(--cirth-muted-border-color);
3047
- --cirth-card-box-shadow: var(--cirth-box-shadow);
3048
- --cirth-card-sectioning-background-color: #fbfcfc;
3049
- --cirth-loading-spinner-opacity: var(--cirth-opacity-disabled);
3050
- --cirth-modal-overlay-background-color: rgba(232, 234, 237, var(--cirth-opacity-overlay));
3051
- --cirth-progress-background-color: #dfe3eb;
3052
- --cirth-progress-color: var(--cirth-primary-background);
3053
- --cirth-tooltip-background-color: var(--cirth-contrast-background);
3054
- --cirth-tooltip-color: var(--cirth-contrast-inverse);
3055
- --cirth-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(76, 154.5, 137.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
3056
- --cirth-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(200.25, 79.25, 72.25)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
3057
- }
3058
-
3059
- :host(:not([data-theme="dark"])) {
3060
- --lightningcss-light: initial;
3061
- --lightningcss-dark: ;
3062
- color-scheme: light;
3063
- --cirth-background-color: #fff;
3064
- --cirth-color: #373c44;
3065
- --cirth-text-selection-color: rgba(129, 145, 181, .25);
3066
- --cirth-muted-color: #646b79;
3067
- --cirth-muted-border-color: #e7eaf0;
3068
- --cirth-primary: #5d6b89;
3069
- --cirth-primary-background: #525f7a;
3070
- --cirth-primary-border: var(--cirth-primary-background);
3071
- --cirth-primary-underline: rgba(93, 107, 137, .5);
3072
- --cirth-primary-hover: #48536b;
3073
- --cirth-primary-hover-background: #48536b;
3074
- --cirth-primary-hover-border: var(--cirth-primary-hover-background);
3075
- --cirth-primary-hover-underline: var(--cirth-primary-hover);
3076
- --cirth-primary-focus: rgba(129, 145, 181, .5);
3077
- --cirth-primary-inverse: #fff;
3078
- --cirth-secondary: #5d6b89;
3079
- --cirth-secondary-background: #525f7a;
3080
- --cirth-secondary-border: var(--cirth-secondary-background);
3081
- --cirth-secondary-underline: rgba(93, 107, 137, .5);
3082
- --cirth-secondary-hover: #48536b;
3083
- --cirth-secondary-hover-background: #48536b;
3084
- --cirth-secondary-hover-border: var(--cirth-secondary-hover-background);
3085
- --cirth-secondary-hover-underline: var(--cirth-secondary-hover);
3086
- --cirth-secondary-focus: rgba(93, 107, 137, .25);
3087
- --cirth-secondary-inverse: #fff;
3088
- --cirth-contrast: #181c25;
3089
- --cirth-contrast-background: #181c25;
3090
- --cirth-contrast-border: var(--cirth-contrast-background);
3091
- --cirth-contrast-underline: rgba(24, 28, 37, .5);
3092
- --cirth-contrast-hover: #000;
3093
- --cirth-contrast-hover-background: #000;
3094
- --cirth-contrast-hover-border: var(--cirth-contrast-hover-background);
3095
- --cirth-contrast-hover-underline: var(--cirth-secondary-hover);
3096
- --cirth-contrast-focus: rgba(93, 107, 137, .25);
3097
- --cirth-contrast-inverse: #fff;
3098
- --cirth-box-shadow: .0145rem .029rem .174rem rgba(129, 145, 181, .016), .0335rem .067rem .402rem rgba(129, 145, 181, .024), .0625rem .125rem .75rem rgba(129, 145, 181, .03), .1125rem .225rem 1.35rem rgba(129, 145, 181, .035), .2085rem .417rem 2.502rem rgba(129, 145, 181, .043), .5rem 1rem 6rem rgba(129, 145, 181, .06), 0 0 0 .0625rem rgba(129, 145, 181, .016);
3099
- --cirth-h1-color: #2d3138;
3100
- --cirth-h2-color: #373c44;
3101
- --cirth-h3-color: #424751;
3102
- --cirth-h4-color: #4d535e;
3103
- --cirth-h5-color: #5c6370;
3104
- --cirth-h6-color: #646b79;
3105
- --cirth-mark-background-color: #fde7c0;
3106
- --cirth-mark-color: #0f1114;
3107
- --cirth-ins-color: #1d6a54;
3108
- --cirth-del-color: #883935;
3109
- --cirth-blockquote-border-color: var(--cirth-muted-border-color);
3110
- --cirth-blockquote-footer-color: var(--cirth-muted-color);
3111
- --cirth-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3112
- --cirth-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3113
- --cirth-table-border-color: var(--cirth-muted-border-color);
3114
- --cirth-table-row-stripped-background-color: rgba(111, 120, 135, .04);
3115
- --cirth-code-background-color: #f3f5f7;
3116
- --cirth-code-color: #646b79;
3117
- --cirth-code-kbd-background-color: var(--cirth-color);
3118
- --cirth-code-kbd-color: var(--cirth-background-color);
3119
- --cirth-form-element-background-color: #fbfcfc;
3120
- --cirth-form-element-selected-background-color: #dfe3eb;
3121
- --cirth-form-element-border-color: #cfd5e2;
3122
- --cirth-form-element-color: #23262c;
3123
- --cirth-form-element-placeholder-color: var(--cirth-muted-color);
3124
- --cirth-form-element-active-background-color: #fff;
3125
- --cirth-form-element-active-border-color: var(--cirth-primary-border);
3126
- --cirth-form-element-focus-color: var(--cirth-primary-border);
3127
- --cirth-form-element-disabled-opacity: var(--cirth-opacity-disabled);
3128
- --cirth-form-element-invalid-border-color: #b86a6b;
3129
- --cirth-form-element-invalid-active-border-color: #c84f48;
3130
- --cirth-form-element-invalid-focus-color: var(--cirth-form-element-invalid-active-border-color);
3131
- --cirth-form-element-valid-border-color: #4c9b8a;
3132
- --cirth-form-element-valid-active-border-color: #279977;
3133
- --cirth-form-element-valid-focus-color: var(--cirth-form-element-valid-active-border-color);
3134
- --cirth-switch-background-color: #bfc7d9;
3135
- --cirth-switch-checked-background-color: var(--cirth-primary-background);
3136
- --cirth-switch-color: #fff;
3137
- --cirth-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3138
- --cirth-range-border-color: #dfe3eb;
3139
- --cirth-range-active-border-color: #bfc7d9;
3140
- --cirth-range-thumb-border-color: var(--cirth-background-color);
3141
- --cirth-range-thumb-color: var(--cirth-secondary-background);
3142
- --cirth-range-thumb-active-color: var(--cirth-primary-background);
3143
- --cirth-accordion-border-color: var(--cirth-muted-border-color);
3144
- --cirth-accordion-active-summary-color: var(--cirth-primary-hover);
3145
- --cirth-accordion-close-summary-color: var(--cirth-color);
3146
- --cirth-accordion-open-summary-color: var(--cirth-muted-color);
3147
- --cirth-card-background-color: var(--cirth-background-color);
3148
- --cirth-card-border-color: var(--cirth-muted-border-color);
3149
- --cirth-card-box-shadow: var(--cirth-box-shadow);
3150
- --cirth-card-sectioning-background-color: #fbfcfc;
3151
- --cirth-loading-spinner-opacity: var(--cirth-opacity-disabled);
3152
- --cirth-modal-overlay-background-color: rgba(232, 234, 237, var(--cirth-opacity-overlay));
3153
- --cirth-progress-background-color: #dfe3eb;
3154
- --cirth-progress-color: var(--cirth-primary-background);
3155
- --cirth-tooltip-background-color: var(--cirth-contrast-background);
3156
- --cirth-tooltip-color: var(--cirth-contrast-inverse);
3157
- --cirth-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(76, 154.5, 137.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
3158
- --cirth-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(200.25, 79.25, 72.25)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
3159
- }
3160
-
3161
- [data-theme="light"] input:is([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"]) {
3162
- --cirth-form-element-focus-color: var(--cirth-primary-focus);
3163
- }
3164
-
3165
- :root:not([data-theme="dark"]) input:is([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"]) {
3166
- --cirth-form-element-focus-color: var(--cirth-primary-focus);
3167
- }
3168
-
3169
- :host(:not([data-theme="dark"])) input:is([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"]) {
3170
- --cirth-form-element-focus-color: var(--cirth-primary-focus);
3171
- }
3172
-
3173
- @media only screen and (prefers-color-scheme: dark) {
3174
- :root:not([data-theme]) {
3175
- --lightningcss-light: ;
3176
- --lightningcss-dark: initial;
3177
- color-scheme: dark;
3178
- --cirth-background-color: #13171f;
3179
- --cirth-color: #c2c7d0;
3180
- --cirth-text-selection-color: rgba(144, 158, 190, .19);
3181
- --cirth-muted-color: #7b8495;
3182
- --cirth-muted-border-color: #202632;
3183
- --cirth-primary: #909ebe;
3184
- --cirth-primary-background: #525f7a;
3185
- --cirth-primary-border: var(--cirth-primary-background);
3186
- --cirth-primary-underline: rgba(144, 158, 190, .5);
3187
- --cirth-primary-hover: #b0b9d0;
3188
- --cirth-primary-hover-background: #5d6b89;
3189
- --cirth-primary-hover-border: var(--cirth-primary-hover-background);
3190
- --cirth-primary-hover-underline: var(--cirth-primary-hover);
3191
- --cirth-primary-focus: rgba(144, 158, 190, .376);
3192
- --cirth-primary-inverse: #fff;
3193
- --cirth-secondary: #969eaf;
3194
- --cirth-secondary-background: #525f7a;
3195
- --cirth-secondary-border: var(--cirth-secondary-background);
3196
- --cirth-secondary-underline: rgba(150, 158, 175, .5);
3197
- --cirth-secondary-hover: #b3b9c5;
3198
- --cirth-secondary-hover-background: #5d6b89;
3199
- --cirth-secondary-hover-border: var(--cirth-secondary-hover-background);
3200
- --cirth-secondary-hover-underline: var(--cirth-secondary-hover);
3201
- --cirth-secondary-focus: rgba(144, 158, 190, .25);
3202
- --cirth-secondary-inverse: #fff;
3203
- --cirth-contrast: #dfe3eb;
3204
- --cirth-contrast-background: #eff1f4;
3205
- --cirth-contrast-border: var(--cirth-contrast-background);
3206
- --cirth-contrast-underline: rgba(223, 227, 235, .5);
3207
- --cirth-contrast-hover: #fff;
3208
- --cirth-contrast-hover-background: #fff;
3209
- --cirth-contrast-hover-border: var(--cirth-contrast-hover-background);
3210
- --cirth-contrast-hover-underline: var(--cirth-contrast-hover);
3211
- --cirth-contrast-focus: rgba(207, 213, 226, .25);
3212
- --cirth-contrast-inverse: #000;
3213
- --cirth-box-shadow: .0145rem .029rem .174rem rgba(7, 9, 12, .016), .0335rem .067rem .402rem rgba(7, 9, 12, .024), .0625rem .125rem .75rem rgba(7, 9, 12, .03), .1125rem .225rem 1.35rem rgba(7, 9, 12, .035), .2085rem .417rem 2.502rem rgba(7, 9, 12, .043), .5rem 1rem 6rem rgba(7, 9, 12, .06), 0 0 0 .0625rem rgba(7, 9, 12, .016);
3214
- --cirth-h1-color: #f0f1f3;
3215
- --cirth-h2-color: #e0e3e7;
3216
- --cirth-h3-color: #c2c7d0;
3217
- --cirth-h4-color: #b3b9c5;
3218
- --cirth-h5-color: #a4acba;
3219
- --cirth-h6-color: #8891a4;
3220
- --cirth-mark-background-color: #014063;
3221
- --cirth-mark-color: #fff;
3222
- --cirth-ins-color: #62af9a;
3223
- --cirth-del-color: #ce7e7b;
3224
- --cirth-blockquote-border-color: var(--cirth-muted-border-color);
3225
- --cirth-blockquote-footer-color: var(--cirth-muted-color);
3226
- --cirth-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3227
- --cirth-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3228
- --cirth-table-border-color: var(--cirth-muted-border-color);
3229
- --cirth-table-row-stripped-background-color: rgba(111, 120, 135, .04);
3230
- --cirth-code-background-color: #1a1f28;
3231
- --cirth-code-color: #8891a4;
3232
- --cirth-code-kbd-background-color: var(--cirth-color);
3233
- --cirth-code-kbd-color: var(--cirth-background-color);
3234
- --cirth-form-element-background-color: #1c212c;
3235
- --cirth-form-element-selected-background-color: #2a3140;
3236
- --cirth-form-element-border-color: #2a3140;
3237
- --cirth-form-element-color: #e0e3e7;
3238
- --cirth-form-element-placeholder-color: #8891a4;
3239
- --cirth-form-element-active-background-color: #1a1f28;
3240
- --cirth-form-element-active-border-color: var(--cirth-primary-border);
3241
- --cirth-form-element-focus-color: var(--cirth-primary-border);
3242
- --cirth-form-element-disabled-opacity: var(--cirth-opacity-disabled);
3243
- --cirth-form-element-invalid-border-color: #964a50;
3244
- --cirth-form-element-invalid-active-border-color: #b7403b;
3245
- --cirth-form-element-invalid-focus-color: var(--cirth-form-element-invalid-active-border-color);
3246
- --cirth-form-element-valid-border-color: #2a7b6f;
3247
- --cirth-form-element-valid-active-border-color: #16896a;
3248
- --cirth-form-element-valid-focus-color: var(--cirth-form-element-valid-active-border-color);
3249
- --cirth-switch-background-color: #333c4e;
3250
- --cirth-switch-checked-background-color: var(--cirth-primary-background);
3251
- --cirth-switch-color: #fff;
3252
- --cirth-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3253
- --cirth-range-border-color: #202632;
3254
- --cirth-range-active-border-color: #2a3140;
3255
- --cirth-range-thumb-border-color: var(--cirth-background-color);
3256
- --cirth-range-thumb-color: var(--cirth-secondary-background);
3257
- --cirth-range-thumb-active-color: var(--cirth-primary-background);
3258
- --cirth-accordion-border-color: var(--cirth-muted-border-color);
3259
- --cirth-accordion-active-summary-color: var(--cirth-primary-hover);
3260
- --cirth-accordion-close-summary-color: var(--cirth-color);
3261
- --cirth-accordion-open-summary-color: var(--cirth-muted-color);
3262
- --cirth-card-background-color: #181c25;
3263
- --cirth-card-border-color: var(--cirth-card-background-color);
3264
- --cirth-card-box-shadow: var(--cirth-box-shadow);
3265
- --cirth-card-sectioning-background-color: #1a1f28;
3266
- --cirth-loading-spinner-opacity: var(--cirth-opacity-disabled);
3267
- --cirth-modal-overlay-background-color: rgba(7.5, 8.5, 10, var(--cirth-opacity-overlay));
3268
- --cirth-progress-background-color: #202632;
3269
- --cirth-progress-color: var(--cirth-primary-background);
3270
- --cirth-tooltip-background-color: var(--cirth-contrast-background);
3271
- --cirth-tooltip-color: var(--cirth-contrast-inverse);
3272
- --cirth-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(42, 123, 111)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
3273
- --cirth-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(149.5, 74, 80)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
3274
- }
3275
-
3276
- :host(:not([data-theme])) {
3277
- --lightningcss-light: ;
3278
- --lightningcss-dark: initial;
3279
- color-scheme: dark;
3280
- --cirth-background-color: #13171f;
3281
- --cirth-color: #c2c7d0;
3282
- --cirth-text-selection-color: rgba(144, 158, 190, .19);
3283
- --cirth-muted-color: #7b8495;
3284
- --cirth-muted-border-color: #202632;
3285
- --cirth-primary: #909ebe;
3286
- --cirth-primary-background: #525f7a;
3287
- --cirth-primary-border: var(--cirth-primary-background);
3288
- --cirth-primary-underline: rgba(144, 158, 190, .5);
3289
- --cirth-primary-hover: #b0b9d0;
3290
- --cirth-primary-hover-background: #5d6b89;
3291
- --cirth-primary-hover-border: var(--cirth-primary-hover-background);
3292
- --cirth-primary-hover-underline: var(--cirth-primary-hover);
3293
- --cirth-primary-focus: rgba(144, 158, 190, .376);
3294
- --cirth-primary-inverse: #fff;
3295
- --cirth-secondary: #969eaf;
3296
- --cirth-secondary-background: #525f7a;
3297
- --cirth-secondary-border: var(--cirth-secondary-background);
3298
- --cirth-secondary-underline: rgba(150, 158, 175, .5);
3299
- --cirth-secondary-hover: #b3b9c5;
3300
- --cirth-secondary-hover-background: #5d6b89;
3301
- --cirth-secondary-hover-border: var(--cirth-secondary-hover-background);
3302
- --cirth-secondary-hover-underline: var(--cirth-secondary-hover);
3303
- --cirth-secondary-focus: rgba(144, 158, 190, .25);
3304
- --cirth-secondary-inverse: #fff;
3305
- --cirth-contrast: #dfe3eb;
3306
- --cirth-contrast-background: #eff1f4;
3307
- --cirth-contrast-border: var(--cirth-contrast-background);
3308
- --cirth-contrast-underline: rgba(223, 227, 235, .5);
3309
- --cirth-contrast-hover: #fff;
3310
- --cirth-contrast-hover-background: #fff;
3311
- --cirth-contrast-hover-border: var(--cirth-contrast-hover-background);
3312
- --cirth-contrast-hover-underline: var(--cirth-contrast-hover);
3313
- --cirth-contrast-focus: rgba(207, 213, 226, .25);
3314
- --cirth-contrast-inverse: #000;
3315
- --cirth-box-shadow: .0145rem .029rem .174rem rgba(7, 9, 12, .016), .0335rem .067rem .402rem rgba(7, 9, 12, .024), .0625rem .125rem .75rem rgba(7, 9, 12, .03), .1125rem .225rem 1.35rem rgba(7, 9, 12, .035), .2085rem .417rem 2.502rem rgba(7, 9, 12, .043), .5rem 1rem 6rem rgba(7, 9, 12, .06), 0 0 0 .0625rem rgba(7, 9, 12, .016);
3316
- --cirth-h1-color: #f0f1f3;
3317
- --cirth-h2-color: #e0e3e7;
3318
- --cirth-h3-color: #c2c7d0;
3319
- --cirth-h4-color: #b3b9c5;
3320
- --cirth-h5-color: #a4acba;
3321
- --cirth-h6-color: #8891a4;
3322
- --cirth-mark-background-color: #014063;
3323
- --cirth-mark-color: #fff;
3324
- --cirth-ins-color: #62af9a;
3325
- --cirth-del-color: #ce7e7b;
3326
- --cirth-blockquote-border-color: var(--cirth-muted-border-color);
3327
- --cirth-blockquote-footer-color: var(--cirth-muted-color);
3328
- --cirth-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3329
- --cirth-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3330
- --cirth-table-border-color: var(--cirth-muted-border-color);
3331
- --cirth-table-row-stripped-background-color: rgba(111, 120, 135, .04);
3332
- --cirth-code-background-color: #1a1f28;
3333
- --cirth-code-color: #8891a4;
3334
- --cirth-code-kbd-background-color: var(--cirth-color);
3335
- --cirth-code-kbd-color: var(--cirth-background-color);
3336
- --cirth-form-element-background-color: #1c212c;
3337
- --cirth-form-element-selected-background-color: #2a3140;
3338
- --cirth-form-element-border-color: #2a3140;
3339
- --cirth-form-element-color: #e0e3e7;
3340
- --cirth-form-element-placeholder-color: #8891a4;
3341
- --cirth-form-element-active-background-color: #1a1f28;
3342
- --cirth-form-element-active-border-color: var(--cirth-primary-border);
3343
- --cirth-form-element-focus-color: var(--cirth-primary-border);
3344
- --cirth-form-element-disabled-opacity: var(--cirth-opacity-disabled);
3345
- --cirth-form-element-invalid-border-color: #964a50;
3346
- --cirth-form-element-invalid-active-border-color: #b7403b;
3347
- --cirth-form-element-invalid-focus-color: var(--cirth-form-element-invalid-active-border-color);
3348
- --cirth-form-element-valid-border-color: #2a7b6f;
3349
- --cirth-form-element-valid-active-border-color: #16896a;
3350
- --cirth-form-element-valid-focus-color: var(--cirth-form-element-valid-active-border-color);
3351
- --cirth-switch-background-color: #333c4e;
3352
- --cirth-switch-checked-background-color: var(--cirth-primary-background);
3353
- --cirth-switch-color: #fff;
3354
- --cirth-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3355
- --cirth-range-border-color: #202632;
3356
- --cirth-range-active-border-color: #2a3140;
3357
- --cirth-range-thumb-border-color: var(--cirth-background-color);
3358
- --cirth-range-thumb-color: var(--cirth-secondary-background);
3359
- --cirth-range-thumb-active-color: var(--cirth-primary-background);
3360
- --cirth-accordion-border-color: var(--cirth-muted-border-color);
3361
- --cirth-accordion-active-summary-color: var(--cirth-primary-hover);
3362
- --cirth-accordion-close-summary-color: var(--cirth-color);
3363
- --cirth-accordion-open-summary-color: var(--cirth-muted-color);
3364
- --cirth-card-background-color: #181c25;
3365
- --cirth-card-border-color: var(--cirth-card-background-color);
3366
- --cirth-card-box-shadow: var(--cirth-box-shadow);
3367
- --cirth-card-sectioning-background-color: #1a1f28;
3368
- --cirth-loading-spinner-opacity: var(--cirth-opacity-disabled);
3369
- --cirth-modal-overlay-background-color: rgba(7.5, 8.5, 10, var(--cirth-opacity-overlay));
3370
- --cirth-progress-background-color: #202632;
3371
- --cirth-progress-color: var(--cirth-primary-background);
3372
- --cirth-tooltip-background-color: var(--cirth-contrast-background);
3373
- --cirth-tooltip-color: var(--cirth-contrast-inverse);
3374
- --cirth-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(42, 123, 111)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
3375
- --cirth-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(149.5, 74, 80)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
3376
- }
3377
-
3378
- :root:not([data-theme]) input:is([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"]) {
3379
- --cirth-form-element-focus-color: var(--cirth-primary-focus);
3380
- }
3381
-
3382
- :host(:not([data-theme])) input:is([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"]) {
3383
- --cirth-form-element-focus-color: var(--cirth-primary-focus);
3384
- }
3385
- }
3386
-
3387
- [data-theme="dark"] {
3388
- --lightningcss-light: ;
3389
- --lightningcss-dark: initial;
3390
- color-scheme: dark;
3391
- --cirth-background-color: #13171f;
3392
- --cirth-color: #c2c7d0;
3393
- --cirth-text-selection-color: rgba(144, 158, 190, .19);
3394
- --cirth-muted-color: #7b8495;
3395
- --cirth-muted-border-color: #202632;
3396
- --cirth-primary: #909ebe;
3397
- --cirth-primary-background: #525f7a;
3398
- --cirth-primary-border: var(--cirth-primary-background);
3399
- --cirth-primary-underline: rgba(144, 158, 190, .5);
3400
- --cirth-primary-hover: #b0b9d0;
3401
- --cirth-primary-hover-background: #5d6b89;
3402
- --cirth-primary-hover-border: var(--cirth-primary-hover-background);
3403
- --cirth-primary-hover-underline: var(--cirth-primary-hover);
3404
- --cirth-primary-focus: rgba(144, 158, 190, .376);
3405
- --cirth-primary-inverse: #fff;
3406
- --cirth-secondary: #969eaf;
3407
- --cirth-secondary-background: #525f7a;
3408
- --cirth-secondary-border: var(--cirth-secondary-background);
3409
- --cirth-secondary-underline: rgba(150, 158, 175, .5);
3410
- --cirth-secondary-hover: #b3b9c5;
3411
- --cirth-secondary-hover-background: #5d6b89;
3412
- --cirth-secondary-hover-border: var(--cirth-secondary-hover-background);
3413
- --cirth-secondary-hover-underline: var(--cirth-secondary-hover);
3414
- --cirth-secondary-focus: rgba(144, 158, 190, .25);
3415
- --cirth-secondary-inverse: #fff;
3416
- --cirth-contrast: #dfe3eb;
3417
- --cirth-contrast-background: #eff1f4;
3418
- --cirth-contrast-border: var(--cirth-contrast-background);
3419
- --cirth-contrast-underline: rgba(223, 227, 235, .5);
3420
- --cirth-contrast-hover: #fff;
3421
- --cirth-contrast-hover-background: #fff;
3422
- --cirth-contrast-hover-border: var(--cirth-contrast-hover-background);
3423
- --cirth-contrast-hover-underline: var(--cirth-contrast-hover);
3424
- --cirth-contrast-focus: rgba(207, 213, 226, .25);
3425
- --cirth-contrast-inverse: #000;
3426
- --cirth-box-shadow: .0145rem .029rem .174rem rgba(7, 9, 12, .016), .0335rem .067rem .402rem rgba(7, 9, 12, .024), .0625rem .125rem .75rem rgba(7, 9, 12, .03), .1125rem .225rem 1.35rem rgba(7, 9, 12, .035), .2085rem .417rem 2.502rem rgba(7, 9, 12, .043), .5rem 1rem 6rem rgba(7, 9, 12, .06), 0 0 0 .0625rem rgba(7, 9, 12, .016);
3427
- --cirth-h1-color: #f0f1f3;
3428
- --cirth-h2-color: #e0e3e7;
3429
- --cirth-h3-color: #c2c7d0;
3430
- --cirth-h4-color: #b3b9c5;
3431
- --cirth-h5-color: #a4acba;
3432
- --cirth-h6-color: #8891a4;
3433
- --cirth-mark-background-color: #014063;
3434
- --cirth-mark-color: #fff;
3435
- --cirth-ins-color: #62af9a;
3436
- --cirth-del-color: #ce7e7b;
3437
- --cirth-blockquote-border-color: var(--cirth-muted-border-color);
3438
- --cirth-blockquote-footer-color: var(--cirth-muted-color);
3439
- --cirth-button-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3440
- --cirth-button-hover-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3441
- --cirth-table-border-color: var(--cirth-muted-border-color);
3442
- --cirth-table-row-stripped-background-color: rgba(111, 120, 135, .04);
3443
- --cirth-code-background-color: #1a1f28;
3444
- --cirth-code-color: #8891a4;
3445
- --cirth-code-kbd-background-color: var(--cirth-color);
3446
- --cirth-code-kbd-color: var(--cirth-background-color);
3447
- --cirth-form-element-background-color: #1c212c;
3448
- --cirth-form-element-selected-background-color: #2a3140;
3449
- --cirth-form-element-border-color: #2a3140;
3450
- --cirth-form-element-color: #e0e3e7;
3451
- --cirth-form-element-placeholder-color: #8891a4;
3452
- --cirth-form-element-active-background-color: #1a1f28;
3453
- --cirth-form-element-active-border-color: var(--cirth-primary-border);
3454
- --cirth-form-element-focus-color: var(--cirth-primary-border);
3455
- --cirth-form-element-disabled-opacity: var(--cirth-opacity-disabled);
3456
- --cirth-form-element-invalid-border-color: #964a50;
3457
- --cirth-form-element-invalid-active-border-color: #b7403b;
3458
- --cirth-form-element-invalid-focus-color: var(--cirth-form-element-invalid-active-border-color);
3459
- --cirth-form-element-valid-border-color: #2a7b6f;
3460
- --cirth-form-element-valid-active-border-color: #16896a;
3461
- --cirth-form-element-valid-focus-color: var(--cirth-form-element-valid-active-border-color);
3462
- --cirth-switch-background-color: #333c4e;
3463
- --cirth-switch-checked-background-color: var(--cirth-primary-background);
3464
- --cirth-switch-color: #fff;
3465
- --cirth-switch-thumb-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
3466
- --cirth-range-border-color: #202632;
3467
- --cirth-range-active-border-color: #2a3140;
3468
- --cirth-range-thumb-border-color: var(--cirth-background-color);
3469
- --cirth-range-thumb-color: var(--cirth-secondary-background);
3470
- --cirth-range-thumb-active-color: var(--cirth-primary-background);
3471
- --cirth-accordion-border-color: var(--cirth-muted-border-color);
3472
- --cirth-accordion-active-summary-color: var(--cirth-primary-hover);
3473
- --cirth-accordion-close-summary-color: var(--cirth-color);
3474
- --cirth-accordion-open-summary-color: var(--cirth-muted-color);
3475
- --cirth-card-background-color: #181c25;
3476
- --cirth-card-border-color: var(--cirth-card-background-color);
3477
- --cirth-card-box-shadow: var(--cirth-box-shadow);
3478
- --cirth-card-sectioning-background-color: #1a1f28;
3479
- --cirth-loading-spinner-opacity: var(--cirth-opacity-disabled);
3480
- --cirth-modal-overlay-background-color: rgba(7.5, 8.5, 10, var(--cirth-opacity-overlay));
3481
- --cirth-progress-background-color: #202632;
3482
- --cirth-progress-color: var(--cirth-primary-background);
3483
- --cirth-tooltip-background-color: var(--cirth-contrast-background);
3484
- --cirth-tooltip-color: var(--cirth-contrast-inverse);
3485
- --cirth-icon-valid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(42, 123, 111)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
3486
- --cirth-icon-invalid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(149.5, 74, 80)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
3487
- }
3488
-
3489
- [data-theme="dark"] input:is([type="submit"], [type="button"], [type="reset"], [type="checkbox"], [type="radio"], [type="file"]) {
3490
- --cirth-form-element-focus-color: var(--cirth-primary-focus);
3491
- }
3492
-
3493
- progress {
3494
- accent-color: var(--cirth-primary);
3495
- }
3496
-
3497
- [type="checkbox"] {
3498
- accent-color: var(--cirth-primary);
3499
- }
3500
-
3501
- [type="radio"] {
3502
- accent-color: var(--cirth-primary);
3503
- }
3504
-
3505
- [type="range"] {
3506
- accent-color: var(--cirth-primary);
3507
- }