@simplybusiness/theme-core 7.0.2

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