@utahdts/utah-design-system-header 0.1.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,43 +1,3990 @@
1
+ /*
2
+ BEM standard: Block, Element, Modifier
3
+ Block: use dashes to separate words:
4
+ - my-react-component
5
+ - super-list
6
+ - cats-r-great
7
+ Element: use two underscores for elements
8
+ Elements are children at any level of the Block:
9
+ - my-react-component__block
10
+ - super-list__name
11
+ - super-list__info
12
+ - cats-r-great__whiskers
13
+ Modifier: use two dashes for modifiers
14
+ - my-react-component--alt
15
+ - super-list--flat
16
+ - cats-r-great--black
17
+ */
18
+ /*
19
+ ############ _settings-index.scss ############
20
+ CSS Class Variables
21
+ */
22
+ /*
23
+ ############ _spacing.scss ############
24
+ 8px horizontal spacing
25
+ */
26
+ .utah-design-system {
27
+ --spacing-3xs: 2px;
28
+ --spacing-2xs: 4px;
29
+ --spacing-xs: 8px;
30
+ --spacing-s: 12px;
31
+ --spacing: 16px;
32
+ --spacing-l: 24px;
33
+ --spacing-xl: 32px;
34
+ --spacing-2xl: 40px;
35
+ --spacing-3xl: 48px;
36
+ --spacing-4xl: 64px;
37
+ --spacing-5xl: 80px;
38
+ --spacing-6xl: 96px;
39
+ }
40
+
41
+ .utah-design-system .m-spacing {
42
+ margin: var(--spacing);
43
+ }
44
+
45
+ .utah-design-system .mt-spacing {
46
+ margin-top: var(--spacing);
47
+ }
48
+
49
+ .utah-design-system .mr-spacing {
50
+ margin-right: var(--spacing);
51
+ }
52
+
53
+ .utah-design-system .mb-spacing {
54
+ margin-bottom: var(--spacing);
55
+ }
56
+
57
+ .utah-design-system .ml-spacing {
58
+ margin-left: var(--spacing);
59
+ }
60
+
61
+ .utah-design-system .mx-spacing {
62
+ margin-left: var(--spacing);
63
+ margin-right: var(--spacing);
64
+ }
65
+
66
+ .utah-design-system .my-spacing {
67
+ margin-top: var(--spacing);
68
+ margin-bottom: var(--spacing);
69
+ }
70
+
71
+ .utah-design-system .m-spacing-l {
72
+ margin: var(--spacing-l);
73
+ }
74
+
75
+ .utah-design-system .mt-spacing-l {
76
+ margin-top: var(--spacing-l);
77
+ }
78
+
79
+ .utah-design-system .mr-spacing-l {
80
+ margin-right: var(--spacing-l);
81
+ }
82
+
83
+ .utah-design-system .mb-spacing-l {
84
+ margin-bottom: var(--spacing-l);
85
+ }
86
+
87
+ .utah-design-system .ml-spacing-l {
88
+ margin-left: var(--spacing-l);
89
+ }
90
+
91
+ .utah-design-system .mx-spacing-l {
92
+ margin-left: var(--spacing-l);
93
+ margin-right: var(--spacing-l);
94
+ }
95
+
96
+ .utah-design-system .my-spacing-l {
97
+ margin-top: var(--spacing-l);
98
+ margin-bottom: var(--spacing-l);
99
+ }
100
+
101
+ .utah-design-system .m-spacing-s {
102
+ margin: var(--spacing-s);
103
+ }
104
+
105
+ .utah-design-system .mt-spacing-s {
106
+ margin-top: var(--spacing-s);
107
+ }
108
+
109
+ .utah-design-system .mr-spacing-s {
110
+ margin-right: var(--spacing-s);
111
+ }
112
+
113
+ .utah-design-system .mb-spacing-s {
114
+ margin-bottom: var(--spacing-s);
115
+ }
116
+
117
+ .utah-design-system .ml-spacing-s {
118
+ margin-left: var(--spacing-s);
119
+ }
120
+
121
+ .utah-design-system .mx-spacing-s {
122
+ margin-left: var(--spacing-s);
123
+ margin-right: var(--spacing-s);
124
+ }
125
+
126
+ .utah-design-system .my-spacing-s {
127
+ margin-top: var(--spacing-s);
128
+ margin-bottom: var(--spacing-s);
129
+ }
130
+
131
+ .utah-design-system .m-spacing-xs {
132
+ margin: var(--spacing-xs);
133
+ }
134
+
135
+ .utah-design-system .mt-spacing-xs {
136
+ margin-top: var(--spacing-xs);
137
+ }
138
+
139
+ .utah-design-system .mr-spacing-xs {
140
+ margin-right: var(--spacing-xs);
141
+ }
142
+
143
+ .utah-design-system .mb-spacing-xs {
144
+ margin-bottom: var(--spacing-xs);
145
+ }
146
+
147
+ .utah-design-system .ml-spacing-xs {
148
+ margin-left: var(--spacing-xs);
149
+ }
150
+
151
+ .utah-design-system .mx-spacing-xs {
152
+ margin-left: var(--spacing-xs);
153
+ margin-right: var(--spacing-xs);
154
+ }
155
+
156
+ .utah-design-system .my-spacing-xs {
157
+ margin-top: var(--spacing-xs);
158
+ margin-bottom: var(--spacing-xs);
159
+ }
160
+
161
+ .utah-design-system .p-spacing {
162
+ padding: var(--spacing);
163
+ }
164
+
165
+ .utah-design-system .pt-spacing {
166
+ padding-top: var(--spacing);
167
+ }
168
+
169
+ .utah-design-system .pr-spacing {
170
+ padding-right: var(--spacing);
171
+ }
172
+
173
+ .utah-design-system .pb-spacing {
174
+ padding-bottom: var(--spacing);
175
+ }
176
+
177
+ .utah-design-system .pl-spacing {
178
+ padding-left: var(--spacing);
179
+ }
180
+
181
+ .utah-design-system .px-spacing {
182
+ padding-left: var(--spacing);
183
+ padding-right: var(--spacing);
184
+ }
185
+
186
+ .utah-design-system .py-spacing {
187
+ padding-top: var(--spacing);
188
+ padding-bottom: var(--spacing);
189
+ }
190
+
191
+ .utah-design-system .p-spacing-l {
192
+ padding: var(--spacing-l);
193
+ }
194
+
195
+ .utah-design-system .pt-spacing-l {
196
+ padding-top: var(--spacing-l);
197
+ }
198
+
199
+ .utah-design-system .pr-spacing-l {
200
+ padding-right: var(--spacing-l);
201
+ }
202
+
203
+ .utah-design-system .pb-spacing-l {
204
+ padding-bottom: var(--spacing-l);
205
+ }
206
+
207
+ .utah-design-system .pl-spacing-l {
208
+ padding-left: var(--spacing-l);
209
+ }
210
+
211
+ .utah-design-system .px-spacing-l {
212
+ padding-left: var(--spacing-l);
213
+ padding-right: var(--spacing-l);
214
+ }
215
+
216
+ .utah-design-system .py-spacing-l {
217
+ padding-top: var(--spacing-l);
218
+ padding-bottom: var(--spacing-l);
219
+ }
220
+
221
+ .utah-design-system .m-auto {
222
+ margin: auto;
223
+ }
224
+
225
+ .utah-design-system .mt-auto {
226
+ margin-top: auto;
227
+ }
228
+
229
+ .utah-design-system .mr-auto {
230
+ margin-right: auto;
231
+ }
232
+
233
+ .utah-design-system .mb-auto {
234
+ margin-bottom: auto;
235
+ }
236
+
237
+ .utah-design-system .ml-auto {
238
+ margin-left: auto;
239
+ }
240
+
241
+ .utah-design-system .mx-auto {
242
+ margin-left: auto;
243
+ margin-right: auto;
244
+ }
245
+
246
+ .utah-design-system .my-auto {
247
+ margin-top: auto;
248
+ margin-bottom: auto;
249
+ }
250
+
251
+ /*
252
+ ############ _font-size.scss ############
253
+ Grid variables
254
+ */
255
+ .utah-design-system {
256
+ --grid-fixed: var(--content-width);
257
+ --grid-fixed-half: calc(var(--grid-fixed) / 2);
258
+ --grid-fixed-form: calc(var(--grid-fixed) / 2.3);
259
+ --grid-fixed-third: calc(var(--grid-fixed) / 3);
260
+ --grid-fixed-fourth: calc(var(--grid-fixed) / 4);
261
+ }
262
+
263
+ .grid-wrapper {
264
+ display: flex;
265
+ justify-content: center;
266
+ }
267
+
268
+ .grid-fixed {
269
+ max-width: var(--grid-fixed);
270
+ width: 100%;
271
+ display: grid;
272
+ grid-template-columns: 1fr;
273
+ gap: var(--spacing-l);
274
+ }
275
+
276
+ .grid-fixed--2col {
277
+ grid-template-columns: 1fr 1fr;
278
+ }
279
+
280
+ .grid-fixed--3col {
281
+ grid-template-columns: 1fr 1fr 1fr;
282
+ }
283
+
284
+ .grid-fixed--4col {
285
+ grid-template-columns: 1fr 1fr 1fr 1fr;
286
+ }
287
+
288
+ .grid-fixed .grid-column-span-2 {
289
+ grid-column: span 2;
290
+ }
291
+
292
+ /*
293
+ ############ _font-size.scss ############
294
+ Font size variables
295
+ */
296
+ .utah-design-system {
297
+ --normal-font-family: "Source Sans Pro", "Helvetica Neue", sans-serif;
298
+ --fixed-width-font-family: "Source Code Pro", monospace;
299
+ --font-size-2xs: .8125rem;
300
+ --font-size-xs: .875rem;
301
+ --font-size-s: .9375rem;
302
+ --font-size: 1rem;
303
+ --font-size-m: 1.125rem;
304
+ --font-size-l: 1.25rem;
305
+ --font-size-xl: 1.5rem;
306
+ --font-size-2xl: 1.75rem;
307
+ --font-size-3xl: 2rem;
308
+ --font-size-4xl: 2.5rem;
309
+ --font-size-5xl: 3rem;
310
+ --font-size-6xl: 3.5rem;
311
+ --font-size-7xl: 4.5rem;
312
+ --font-weight-normal: 400;
313
+ --font-weight-semi-bold: 600;
314
+ --font-weight-bold: 700;
315
+ --font-weight-black: 900;
316
+ }
317
+
318
+ .font-size-2xs {
319
+ font-size: var(--font-size-2xs);
320
+ }
321
+
322
+ .font-size-xs {
323
+ font-size: var(--font-size-xs);
324
+ }
325
+
326
+ .font-size-s {
327
+ font-size: var(--font-size-s);
328
+ }
329
+
330
+ .font-size {
331
+ font-size: var(--font-size);
332
+ }
333
+
334
+ .font-size-m {
335
+ font-size: var(--font-size-m);
336
+ }
337
+
338
+ .font-size-l {
339
+ font-size: var(--font-size-l);
340
+ }
341
+
342
+ .font-size-xl {
343
+ font-size: var(--font-size-xl);
344
+ }
345
+
346
+ .font-size-2xl {
347
+ font-size: var(--font-size-2xl);
348
+ }
349
+
350
+ .font-size-3xl {
351
+ font-size: var(--font-size-3xl);
352
+ }
353
+
354
+ .font-size-4xl {
355
+ font-size: var(--font-size-4xl);
356
+ }
357
+
358
+ .font-size-5xl {
359
+ font-size: var(--font-size-5xl);
360
+ }
361
+
362
+ .font-size-6xl {
363
+ font-size: var(--font-size-6xl);
364
+ }
365
+
366
+ .font-size-7xl {
367
+ font-size: var(--font-size-7xl);
368
+ }
369
+
370
+ .font-normal {
371
+ font-weight: var(--font-weight-normal);
372
+ }
373
+
374
+ .font-semi-bold {
375
+ font-weight: var(--font-weight-semi-bold);
376
+ }
377
+
378
+ .font-bold {
379
+ font-weight: var(--font-weight-bold);
380
+ }
381
+
382
+ .font-black {
383
+ font-weight: var(--font-weight-black);
384
+ }
385
+
386
+ /*
387
+ ############ _color-swatches.scss ############
388
+ base color swatches for the design system
389
+ */
390
+ /* Generated by Glyphter (http://www.glyphter.com) on Fri Jan 20 2023*/
391
+ @font-face {
392
+ font-family: "utah design system";
393
+ src: url("https://cdn.utah.gov/design-system/fonts/utah-design-system.eot");
394
+ src: url("https://cdn.utah.gov/design-system/fonts/utah-design-system.eot?#iefix") format("embedded-opentype"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.woff") format("woff"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.ttf") format("truetype"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.svg#utah-design-system") format("svg");
395
+ font-weight: normal;
396
+ font-style: normal;
397
+ }
398
+ .utah-design-system {
399
+ --icon-check-mark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12.15'%3E%3Cg%3E%3Cpath d='M6.185,12.15L0,5.966,2.335,3.631l3.85,3.849L13.665,0l2.335,2.335L6.185,12.15Z' style='fill: %23fff;'/%3E%3C/g%3E%3C/svg%3E");
400
+ --icon-chevron-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg%3E%3Crect width='14' height='14' style='fill: none;'/%3E%3Cpath d='M3.142,5l3.716,3.71,3.717-3.71,1.142,1.142-4.859,4.858L2,6.142l1.142-1.142Z' style='fill: %23474747;'/%3E%3C/g%3E%3C/svg%3E");
401
+ }
402
+
403
+ .utah-design-system [class*=utds-icon-after-]::after {
404
+ display: inline-block;
405
+ font-family: "utah design system";
406
+ font-style: normal;
407
+ font-weight: normal;
408
+ line-height: 1;
409
+ -webkit-font-smoothing: antialiased;
410
+ -moz-osx-font-smoothing: grayscale;
411
+ margin-left: var(--spacing-2xs);
412
+ }
413
+
414
+ .utah-design-system [class*=utds-icon-before-]::before {
415
+ display: inline-block;
416
+ font-family: "utah design system";
417
+ font-style: normal;
418
+ font-weight: normal;
419
+ line-height: 1;
420
+ -webkit-font-smoothing: antialiased;
421
+ -moz-osx-font-smoothing: grayscale;
422
+ margin-right: var(--spacing-2xs);
423
+ }
424
+
425
+ .utah-design-system .utds-icon-before-external-link::before,
426
+ .utah-design-system .utds-icon-after-external-link::after {
427
+ content: "A";
428
+ font-size: 0.65em;
429
+ }
430
+
431
+ .utah-design-system .utds-icon-before-waffle::before,
432
+ .utah-design-system .utds-icon-after-waffle::after {
433
+ content: "B";
434
+ }
435
+
436
+ .utah-design-system .utds-icon-before-alert::before,
437
+ .utah-design-system .utds-icon-after-alert::after {
438
+ content: "C";
439
+ }
440
+
441
+ .utah-design-system .utds-icon-before-help::before,
442
+ .utah-design-system .utds-icon-after-help::after {
443
+ content: "D";
444
+ }
445
+
446
+ .utah-design-system .utds-icon-before-bookmark::before,
447
+ .utah-design-system .utds-icon-after-bookmark::after {
448
+ content: "E";
449
+ }
450
+
451
+ .utah-design-system .utds-icon-before-search::before,
452
+ .utah-design-system .utds-icon-after-search::after {
453
+ content: "F";
454
+ }
455
+
456
+ .utah-design-system .utds-icon-before-check::before,
457
+ .utah-design-system .utds-icon-after-check::after {
458
+ content: "G";
459
+ }
460
+
461
+ .utah-design-system .utds-icon-before-star::before,
462
+ .utah-design-system .utds-icon-after-star::after {
463
+ content: "H";
464
+ }
465
+
466
+ .utah-design-system .utds-icon-before-info::before,
467
+ .utah-design-system .utds-icon-after-info::after {
468
+ content: "I";
469
+ }
470
+
471
+ .utah-design-system .utds-icon-before-unfold-less::before,
472
+ .utah-design-system .utds-icon-after-unfold-less::after {
473
+ content: "J";
474
+ }
475
+
476
+ .utah-design-system .utds-icon-before-unfold-more::before,
477
+ .utah-design-system .utds-icon-after-unfold-more::after {
478
+ content: "K";
479
+ }
480
+
481
+ .utah-design-system .utds-icon-before-circle-chevron-down::before,
482
+ .utah-design-system .utds-icon-after-circle-chevron-down::after {
483
+ content: "L";
484
+ }
485
+
486
+ .utah-design-system .utds-icon-before-circle-chevron-up::before,
487
+ .utah-design-system .utds-icon-after-circle-chevron-up::after {
488
+ content: "M";
489
+ }
490
+
491
+ .utah-design-system .utds-icon-before-chevron-up::before,
492
+ .utah-design-system .utds-icon-after-chevron-up::after {
493
+ content: "N";
494
+ }
495
+
496
+ .utah-design-system .utds-icon-before-chevron-right::before,
497
+ .utah-design-system .utds-icon-after-chevron-right::after {
498
+ content: "O";
499
+ }
500
+
501
+ .utah-design-system .utds-icon-before-chevron-down::before,
502
+ .utah-design-system .utds-icon-after-chevron-down::after {
503
+ content: "P";
504
+ }
505
+
506
+ .utah-design-system .utds-icon-before-chevron-left::before,
507
+ .utah-design-system .utds-icon-after-chevron-left::after {
508
+ content: "Q";
509
+ }
510
+
511
+ .utah-design-system .utds-icon-before-arrow-up::before,
512
+ .utah-design-system .utds-icon-after-arrow-up::after {
513
+ content: "R";
514
+ }
515
+
516
+ .utah-design-system .utds-icon-before-arrow-right::before,
517
+ .utah-design-system .utds-icon-after-arrow-right::after {
518
+ content: "S";
519
+ }
520
+
521
+ .utah-design-system .utds-icon-before-arrow-down::before,
522
+ .utah-design-system .utds-icon-after-arrow-down::after {
523
+ content: "T";
524
+ }
525
+
526
+ .utah-design-system .utds-icon-before-arrow-left::before,
527
+ .utah-design-system .utds-icon-after-arrow-left::after {
528
+ content: "U";
529
+ }
530
+
531
+ .utah-design-system .utds-icon-before-plus::before,
532
+ .utah-design-system .utds-icon-after-plus::after {
533
+ content: "V";
534
+ }
535
+
536
+ .utah-design-system .utds-icon-before-minus::before,
537
+ .utah-design-system .utds-icon-after-minus::after {
538
+ content: "W";
539
+ }
540
+
541
+ .utah-design-system .utds-icon-before-x-icon::before,
542
+ .utah-design-system .utds-icon-after-x-icon::after {
543
+ content: "X";
544
+ }
545
+
546
+ .utah-design-system .utds-icon-before-edit::before,
547
+ .utah-design-system .utds-icon-after-edit::after {
548
+ content: "Y";
549
+ }
550
+
551
+ .utah-design-system .utds-icon-before-edit-box::before,
552
+ .utah-design-system .utds-icon-after-edit-box::after {
553
+ content: "Z";
554
+ }
555
+
556
+ .utah-design-system .utds-icon-before-verified::before,
557
+ .utah-design-system .utds-icon-after-verified::after {
558
+ content: "a";
559
+ }
560
+
561
+ .utah-design-system .utds-icon-before-gear::before,
562
+ .utah-design-system .utds-icon-after-gear::after {
563
+ content: "b";
564
+ }
565
+
566
+ .utah-design-system .utds-icon-before-doc::before,
567
+ .utah-design-system .utds-icon-after-doc::after {
568
+ content: "c";
569
+ }
570
+
571
+ .utah-design-system .utds-icon-before-doc-square::before,
572
+ .utah-design-system .utds-icon-after-doc-square::after {
573
+ content: "d";
574
+ }
575
+
576
+ .utah-design-system .utds-icon-before-warning::before,
577
+ .utah-design-system .utds-icon-after-warning::after {
578
+ content: "e";
579
+ }
580
+
581
+ .utah-design-system .utds-icon-before-error::before,
582
+ .utah-design-system .utds-icon-after-error::after {
583
+ content: "f";
584
+ }
585
+
586
+ .utah-design-system .utds-icon-before-copy::before,
587
+ .utah-design-system .utds-icon-after-copy::after {
588
+ content: "g";
589
+ }
590
+
591
+ .utah-design-system .utds-icon-before-home-menu::before,
592
+ .utah-design-system .utds-icon-after-home-menu::after {
593
+ content: "h";
594
+ }
595
+
596
+ .utah-design-system .utds-icon-before-hamburger::before,
597
+ .utah-design-system .utds-icon-after-hamburger::after {
598
+ content: "i";
599
+ }
600
+
601
+ .utah-design-system .utds-icon-before-account::before,
602
+ .utah-design-system .utds-icon-after-account::after {
603
+ content: "j";
604
+ }
605
+
606
+ /*
607
+ ############ _settings-index.scss ############
608
+ variables and settings
609
+ */
610
+ .utah-design-system {
611
+ /* color */
612
+ /* ######## Pick these colors to match your desired style ######## */
613
+ --primary-color: purple;
614
+ --primary-color-dark: rgb(50, 0, 50);
615
+ --primary-color-light: rgb(219, 159, 219);
616
+ --gray-on-primary-color: #474747;
617
+ --secondary-color: rgb(0, 255, 136);
618
+ --secondary-color-dark: rgb(0, 66, 35);
619
+ --secondary-color-light: rgb(183, 250, 218);
620
+ --gray-on-secondary-color: #474747;
621
+ --accent-color: gold;
622
+ --accent-color-dark: rgb(114, 97, 0);
623
+ --accent-color-light: rgb(245, 238, 196);
624
+ --gray-on-accent-color: #474747;
625
+ --form-ele-color: #2765e4;
626
+ --form-ele-color-light: #7aa0ee;
627
+ --form-ele-disabled-color: #949494;
628
+ /* ######## --------------------------------------------- ######## */
629
+ --gray-color: #474747;
630
+ --gray-medium-color: #616161;
631
+ --gray-3-1-contrast: #949494;
632
+ --gray-medium-light-color: #d7d7d7;
633
+ --gray-light-color: #f1f1f1;
634
+ --gray-dark-color: #333333;
635
+ --hover-gray-color: rgba(0,0,0,0.07);
636
+ --hover-gray-color-opaque: rgba(233,233,233);
637
+ --code-color: #e4e4e4;
638
+ --gray-border: #d7d7d7;
639
+ --danger-color: #ba0000;
640
+ --warning-color: #ba6300;
641
+ --info-color: var(--secondary-color);
642
+ --success-color: #2f8700;
643
+ /* transition timings */
644
+ --timing-xquick: 100ms;
645
+ --timing-quick: 200ms;
646
+ --timing-medium: 400ms;
647
+ --timing-slow: 600ms;
648
+ /* rounded corners */
649
+ --radius-small1x: 3px;
650
+ --radius-small: 6px;
651
+ --radius-medium: 9px;
652
+ --radius-large: 12px;
653
+ --radius-circle: 999px;
654
+ /* form element sizes */
655
+ --form-ele-small4x: .75rem;
656
+ --form-ele-small3x: 1rem;
657
+ --form-ele-small2x: 1.25rem;
658
+ --form-ele-small1x: 1.5rem;
659
+ --form-ele-small: 1.875rem;
660
+ --form-ele-medium: 2.25rem;
661
+ --form-ele-large: 2.5rem;
662
+ --form-ele-large1x: 3.125rem;
663
+ --form-checkbox-small: 0.875rem;
664
+ --form-checkbox-medium: 1.125rem;
665
+ --form-checkbox-large: 1.375rem;
666
+ /* content layout sizes */
667
+ --content-width-narrow: 800px;
668
+ --content-width: 1224px;
669
+ --content-width-wide: 1432px;
670
+ --documentation-width: 700px;
671
+ --documentation-left-width: 200px;
672
+ --documentation-right-width: 200px;
673
+ --documentation-padding: var(--spacing-2xl) var(--spacing-xl);
674
+ /* elevation box shadows */
675
+ --drop-shadow-color: rgba(0, 0, 0, 0.3);
676
+ --elevation-small: 0 3px 6px var(--drop-shadow-color);
677
+ --elevation-medium: 0 6px 12px var(--drop-shadow-color);
678
+ --elevation-large: 0 12px 16px var(--drop-shadow-color);
679
+ }
680
+
681
+ /* color utility classes */
682
+ .primary-color-background {
683
+ background-color: var(--primary-color);
684
+ }
685
+
686
+ .primary-color-dark-background {
687
+ background-color: var(--primary-color-dark);
688
+ }
689
+
690
+ .primary-color-light-background {
691
+ background-color: var(--primary-color-light);
692
+ }
693
+
694
+ .gray-on-primary-background {
695
+ background-color: var(--gray-on-primary-color);
696
+ }
697
+
698
+ .primary-color {
699
+ color: var(--primary-color);
700
+ }
701
+
702
+ .primary-color-border {
703
+ border-color: var(--primary-color);
704
+ }
705
+
706
+ .secondary-color-background {
707
+ background-color: var(--secondary-color);
708
+ }
709
+
710
+ .secondary-color-dark-background {
711
+ background-color: var(--secondary-color-dark);
712
+ }
713
+
714
+ .secondary-color-light-background {
715
+ background-color: var(--secondary-color-light);
716
+ }
717
+
718
+ .gray-on-secondary-background {
719
+ background-color: var(--gray-on-secondary-color);
720
+ }
721
+
722
+ .secondary-color {
723
+ color: var(--secondary-color);
724
+ }
725
+
726
+ .secondary-color-border {
727
+ border-color: var(--secondary-color);
728
+ }
729
+
730
+ .accent-color-background {
731
+ background-color: var(--accent-color);
732
+ }
733
+
734
+ .accent-color-dark-background {
735
+ background-color: var(--accent-color-dark);
736
+ }
737
+
738
+ .accent-color-light-background {
739
+ background-color: var(--accent-color-light);
740
+ }
741
+
742
+ .gray-on-accent-background {
743
+ background-color: var(--gray-on-accent-color);
744
+ }
745
+
746
+ .accent-color {
747
+ color: var(--accent-color);
748
+ }
749
+
750
+ .accent-color-border {
751
+ border-color: var(--accent-color);
752
+ }
753
+
754
+ .gray-color-background {
755
+ background-color: var(--gray-color);
756
+ }
757
+
758
+ .gray-color-light-background {
759
+ background-color: var(--gray-light-color);
760
+ }
761
+
762
+ .white-color {
763
+ color: white;
764
+ }
765
+
766
+ .background-frosted-dark {
767
+ background: rgba(0, 0, 0, 0.6);
768
+ backdrop-filter: blur(16px) brightness(1.5);
769
+ -webkit-backdrop-filter: blur(16px) brightness(1.5);
770
+ }
771
+
772
+ .background-frosted-light {
773
+ background: rgba(255, 255, 255, 0.1);
774
+ backdrop-filter: blur(16px);
775
+ -webkit-backdrop-filter: blur(16px);
776
+ }
777
+
778
+ .backdrop-dark {
779
+ background: rgba(0, 0, 0, 0.6);
780
+ backdrop-filter: blur(6px) brightness(60%);
781
+ }
782
+
783
+ /*
784
+ ############ _tools-index.scss ############
785
+ scss mixins and functions
786
+ */
787
+ /*
788
+ ############ _generic-index.scss ############
789
+ css resets, etc.
790
+ */
791
+ /*
792
+ ############ _settings-index.scss ############
793
+ CSS Class Variables
794
+ */
795
+ /*
796
+ ############ _elements-index.scss ############
797
+ elemental html: h1, h2, h3, ul, li, etc.
798
+ */
799
+ .utah-design-system {
800
+ margin: 0;
801
+ font-family: var(--normal-font-family);
802
+ font-size: 16px;
803
+ line-height: 1.4;
804
+ -webkit-font-smoothing: antialiased;
805
+ -moz-osx-font-smoothing: grayscale;
806
+ background: white;
807
+ color: var(--gray-color);
808
+ }
809
+
810
+ .utah-design-system h1 {
811
+ font-size: var(--font-size-4xl);
812
+ margin: 0;
813
+ }
814
+
815
+ .utah-design-system h2 {
816
+ font-size: var(--font-size-3xl);
817
+ margin: 0;
818
+ }
819
+
820
+ .utah-design-system h3 {
821
+ font-size: var(--font-size-2xl);
822
+ font-weight: var(--font-weight-normal);
823
+ margin: 0;
824
+ }
825
+
826
+ .utah-design-system h4 {
827
+ font-size: var(--font-size-l);
828
+ font-weight: var(--font-weight-normal);
829
+ margin: 0;
830
+ }
831
+
832
+ .utah-design-system h5 {
833
+ font-size: var(--font-size);
834
+ margin: 0;
835
+ }
836
+
837
+ .utah-design-system h6 {
838
+ font-size: var(--font-size);
839
+ margin: 0;
840
+ }
841
+
842
+ .utah-design-system p {
843
+ margin: 0 0 var(--spacing-l);
844
+ }
845
+
846
+ .utah-design-system code {
847
+ font-family: var(--fixed-width-font-family);
848
+ font-size: 0.95rem;
849
+ background: var(--code-color);
850
+ padding: var(--spacing-3xs) var(--spacing-2xs);
851
+ border-radius: var(--radius-small1x);
852
+ }
853
+
854
+ .utah-design-system code.primary-color {
855
+ color: var(--primary-color);
856
+ background: var(--primary-color-light);
857
+ }
858
+
859
+ .utah-design-system pre {
860
+ font-family: var(--fixed-width-font-family);
861
+ font-size: 0.95rem;
862
+ white-space: pre-wrap;
863
+ word-wrap: break-word;
864
+ margin: 0 0 var(--spacing) 0;
865
+ }
866
+
867
+ .utah-design-system pre.gray-block {
868
+ background: var(--gray-light-color);
869
+ padding: var(--spacing-s) var(--spacing);
870
+ border-radius: var(--radius-medium);
871
+ }
872
+
873
+ .utah-design-system pre.gray-block--overflow {
874
+ width: 100%;
875
+ overflow-x: scroll;
876
+ box-sizing: border-box;
877
+ }
878
+
879
+ .utah-design-system .gray-block__overflow-content {
880
+ width: max-content;
881
+ }
882
+
883
+ .utah-design-system ul, .utah-design-system ol {
884
+ padding: 0 0 0 var(--spacing-2xl);
885
+ margin: 0;
886
+ line-height: 1.7;
887
+ }
888
+
889
+ .utah-design-system hr {
890
+ height: 0;
891
+ width: 100%;
892
+ border: none;
893
+ border-top: 1px solid var(--gray-border);
894
+ }
895
+
896
+ .utah-design-system a[href]:not(.button) {
897
+ color: var(--primary-color);
898
+ }
899
+
900
+ .utah-design-system a[href]:not(.button):hover {
901
+ box-shadow: -3px -1px 0 0px var(--hover-gray-color-opaque), 3px -1px 0 0px var(--hover-gray-color-opaque), 3px 1px 0 0px var(--hover-gray-color-opaque), -3px 1px 0 0px var(--hover-gray-color-opaque), inset 0 0 0 1000px var(--hover-gray-color-opaque);
902
+ color: var(--primary-color-dark);
903
+ }
904
+
905
+ .utah-design-system .external-link::after {
906
+ content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.1143 18.1138'%3E%3Cg%3E%3Cpath d='m15.0996,18.1138H1c-.5527,0-1-.4478-1-1V3.0142c0-.5522.4473-1,1-1h7.043v2H2v12.0996h12.0996v-6.043h2v7.043c0,.5522-.4473,1-1,1Z' style='fill: var(--primary-color);'/%3E%3Crect x='6.5977' y='4.5318' width='11.9697' height='1.9998' transform='translate(-.2262 10.5174) rotate(-45)' style='fill: currentColor;'/%3E%3Cpolygon points='18.1143 8.0425 16.1143 8.0425 16.1143 2 10.0713 2 10.0713 0 18.1143 0 18.1143 8.0425' style='fill: currentColor;'/%3E%3C/g%3E%3C/svg%3E%0A");
907
+ height: 0.7rem;
908
+ width: 0.7rem;
909
+ background-position: top left;
910
+ display: inline-block;
911
+ }
912
+
913
+ /*
914
+ ############ _objects-index.scss ############
915
+ containers and general design patterns, 2up, 3up, layout grids, etc.
916
+ */
917
+ .lead-in {
918
+ font-size: var(--font-size-m);
919
+ line-height: 1.6rem;
920
+ }
921
+
922
+ /*
923
+ ############ _settings-index.scss ############
924
+ CSS Class Variables
925
+ */
926
+ .utah-design-system .accordion__header, .utah-design-system .accordion__header.button {
927
+ border-radius: 0;
928
+ font-size: var(--font-size-2xl);
929
+ font-weight: var(--font-weight-bold);
930
+ padding: var(--spacing);
931
+ border: none;
932
+ display: flex;
933
+ flex-direction: row;
934
+ justify-content: space-between;
935
+ width: 100%;
936
+ box-sizing: border-box;
937
+ }
938
+
939
+ .utah-design-system .accordion__content {
940
+ background: var(--gray-light-color);
941
+ padding: 0;
942
+ box-sizing: border-box;
943
+ height: 0;
944
+ overflow: hidden;
945
+ }
946
+
947
+ .utah-design-system .accordion__content--open {
948
+ height: auto;
949
+ padding: var(--spacing);
950
+ }
951
+
952
+ .utah-design-system .tab-group__list {
953
+ display: flex;
954
+ justify-content: space-evenly;
955
+ }
956
+
957
+ .utah-design-system .tab-group__list.tab-group--small-text .tab-group__tab-button {
958
+ font-size: var(--font-size);
959
+ }
960
+
961
+ .utah-design-system .tab-group__tab {
962
+ flex: 1 1 auto;
963
+ display: flex;
964
+ justify-content: center;
965
+ position: relative;
966
+ }
967
+
968
+ .utah-design-system .tab-group__tab::after {
969
+ content: "";
970
+ position: absolute;
971
+ left: 0;
972
+ bottom: 0;
973
+ width: 100%;
974
+ height: 1px;
975
+ background: var(--gray-color);
976
+ }
977
+
978
+ .utah-design-system .tab-group__tab--selected::after {
979
+ height: 5px;
980
+ bottom: -2px;
981
+ border-radius: var(--radius-circle);
982
+ background-color: var(--primary-color);
983
+ }
984
+
985
+ .utah-design-system .tab-group__tab-button {
986
+ border: none;
987
+ font-size: var(--font-size-l);
988
+ font-weight: var(--font-weight-semi-bold);
989
+ background-color: transparent;
990
+ margin: var(--spacing-xs) 0;
991
+ }
992
+
993
+ .utah-design-system .tab-group__tab-button:hover {
994
+ background-color: var(--hover-gray-color);
995
+ color: inherit;
996
+ }
997
+
998
+ .utah-design-system .tab-group__tab-button--selected {
999
+ color: var(--primary-color);
1000
+ }
1001
+
1002
+ .utah-design-system .tab-group__panel {
1003
+ display: none;
1004
+ padding-top: var(--spacing);
1005
+ }
1006
+
1007
+ .utah-design-system .tab-group__panel--selected {
1008
+ display: block;
1009
+ }
1010
+
1011
+ /*
1012
+ ############ _tools-index.scss ############
1013
+ scss mixins and functions
1014
+ */ /*
1015
+ ############ _button.scss ############
1016
+ */
1017
+ .utah-design-system {
1018
+ /* ------------ Show a dark contrast color on a light background ------------ */
1019
+ /* ------------ Show a light contrast color on dark background ------------ */
1020
+ }
1021
+
1022
+ .utah-design-system button, .utah-design-system .button {
1023
+ background: white;
1024
+ border-radius: 999px;
1025
+ border: 2px solid var(--gray-color);
1026
+ font-size: 1rem;
1027
+ min-height: var(--form-ele-medium);
1028
+ padding: 0 var(--spacing-xl);
1029
+ display: flex;
1030
+ align-items: center;
1031
+ justify-content: center;
1032
+ cursor: pointer;
1033
+ transition: all 200ms ease-in-out, transform 100ms ease, box-shadow 100ms ease;
1034
+ color: var(--gray-color);
1035
+ text-decoration: none;
1036
+ position: relative;
1037
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1038
+ }
1039
+
1040
+ .utah-design-system button svg, .utah-design-system .button svg {
1041
+ fill: currentColor;
1042
+ }
1043
+
1044
+ .utah-design-system button:hover, .utah-design-system .button:hover {
1045
+ background: var(--gray-color);
1046
+ color: white;
1047
+ }
1048
+
1049
+ .utah-design-system button[disabled], .utah-design-system button[disable]:hover, .utah-design-system .button[disabled], .utah-design-system .button[disable]:hover {
1050
+ cursor: not-allowed;
1051
+ background: white !important;
1052
+ color: var(--form-ele-disabled-color) !important;
1053
+ border-color: var(--form-ele-disabled-color) !important;
1054
+ }
1055
+
1056
+ .utah-design-system button[disabled]:active, .utah-design-system button[disabled].active, .utah-design-system button[disable]:hover:active, .utah-design-system button[disable]:hover.active, .utah-design-system .button[disabled]:active, .utah-design-system .button[disabled].active, .utah-design-system .button[disable]:hover:active, .utah-design-system .button[disable]:hover.active {
1057
+ transform: none;
1058
+ box-shadow: none;
1059
+ }
1060
+
1061
+ .utah-design-system button:active, .utah-design-system button--active, .utah-design-system .button:active, .utah-design-system .button--active {
1062
+ transform: scale(0.96);
1063
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.5);
1064
+ }
1065
+
1066
+ .utah-design-system button:focus-visible, .utah-design-system .button:focus-visible {
1067
+ outline: 2px solid var(--form-ele-color);
1068
+ outline-offset: 2px;
1069
+ transition: none;
1070
+ }
1071
+
1072
+ .utah-design-system .button {
1073
+ /* ------------ SIZES ------------ */
1074
+ /* ------------ SOLID COLOR ------------ */
1075
+ }
1076
+
1077
+ .utah-design-system .button--small1x {
1078
+ font-size: 0.85rem;
1079
+ min-height: var(--form-ele-small1x);
1080
+ padding: 0 var(--spacing-xs);
1081
+ border-width: 1px;
1082
+ }
1083
+
1084
+ .utah-design-system .button--small {
1085
+ font-size: 0.938rem;
1086
+ min-height: var(--form-ele-small);
1087
+ padding: 0 var(--spacing);
1088
+ }
1089
+
1090
+ .utah-design-system .button--large {
1091
+ font-size: 1.25rem;
1092
+ min-height: var(--form-ele-large);
1093
+ }
1094
+
1095
+ .utah-design-system .button--large1x {
1096
+ font-size: 1.5rem;
1097
+ min-height: var(--form-ele-large1x);
1098
+ padding: 0 var(--spacing-2xl);
1099
+ }
1100
+
1101
+ .utah-design-system .button--icon {
1102
+ display: flex;
1103
+ align-items: center;
1104
+ }
1105
+
1106
+ .utah-design-system .button--icon svg {
1107
+ height: 0.8rem;
1108
+ width: 0.8rem;
1109
+ fill: currentColor;
1110
+ }
1111
+
1112
+ .utah-design-system .button--icon-left {
1113
+ margin-right: var(--spacing-xs);
1114
+ }
1115
+
1116
+ .utah-design-system .button--icon-right {
1117
+ margin-left: var(--spacing-xs);
1118
+ }
1119
+
1120
+ .utah-design-system .button--primary-color {
1121
+ border-color: var(--primary-color);
1122
+ color: var(--primary-color);
1123
+ }
1124
+
1125
+ .utah-design-system .button--primary-color:hover {
1126
+ background-color: var(--primary-color);
1127
+ color: white;
1128
+ }
1129
+
1130
+ .utah-design-system .button--primary-color:hover svg {
1131
+ fill: white;
1132
+ }
1133
+
1134
+ .primary-color-is-light.utah-design-system .button--primary-color {
1135
+ border-color: var(--primary-color-dark);
1136
+ color: var(--primary-color-dark);
1137
+ }
1138
+
1139
+ .primary-color-is-light.utah-design-system .button--primary-color:hover {
1140
+ background-color: var(--primary-color-dark);
1141
+ color: white;
1142
+ }
1143
+
1144
+ .utah-design-system .button--secondary-color {
1145
+ border-color: var(--secondary-color);
1146
+ color: var(--secondary-color);
1147
+ }
1148
+
1149
+ .utah-design-system .button--secondary-color:hover {
1150
+ background-color: var(--secondary-color);
1151
+ color: white;
1152
+ }
1153
+
1154
+ .secondary-color-is-light.utah-design-system .button--secondary-color {
1155
+ border-color: var(--secondary-color-dark);
1156
+ color: var(--secondary-color-dark);
1157
+ }
1158
+
1159
+ .secondary-color-is-light.utah-design-system .button--secondary-color:hover {
1160
+ background-color: var(--secondary-color-dark);
1161
+ color: white;
1162
+ }
1163
+
1164
+ .utah-design-system .button--accent-color {
1165
+ border-color: var(--accent-color);
1166
+ color: var(--accent-color);
1167
+ }
1168
+
1169
+ .utah-design-system .button--accent-color:hover {
1170
+ background-color: var(--accent-color);
1171
+ color: white;
1172
+ }
1173
+
1174
+ .accent-color-is-light.utah-design-system .button--accent-color {
1175
+ border-color: var(--accent-color-dark);
1176
+ color: var(--accent-color-dark);
1177
+ }
1178
+
1179
+ .accent-color-is-light.utah-design-system .button--accent-color:hover {
1180
+ background-color: var(--accent-color-dark);
1181
+ color: white;
1182
+ }
1183
+
1184
+ .utah-design-system .button--solid {
1185
+ background: var(--gray-color);
1186
+ color: white;
1187
+ }
1188
+
1189
+ .utah-design-system .button--solid:hover {
1190
+ background-color: var(--gray-dark-color);
1191
+ border-color: var(--gray-dark-color);
1192
+ }
1193
+
1194
+ .utah-design-system .button--solid.button--primary-color {
1195
+ background-color: var(--primary-color);
1196
+ border-color: var(--primary-color);
1197
+ color: white;
1198
+ }
1199
+
1200
+ .utah-design-system .button--solid.button--primary-color:hover {
1201
+ background-color: var(--primary-color-dark);
1202
+ border-color: var(--primary-color-dark);
1203
+ }
1204
+
1205
+ .primary-color-is-light.utah-design-system .button--solid.button--primary-color {
1206
+ color: var(--gray-on-primary-color);
1207
+ border-color: var(--primary-color-dark);
1208
+ }
1209
+
1210
+ .primary-color-is-light.utah-design-system .button--solid.button--primary-color:hover {
1211
+ color: white;
1212
+ border-color: var(--primary-color-dark);
1213
+ }
1214
+
1215
+ .utah-design-system .button--solid.button--primary-color.contrast-border-dark {
1216
+ border-color: var(--gray-on-primary-color);
1217
+ }
1218
+
1219
+ .utah-design-system .button--solid.button--secondary-color {
1220
+ background-color: var(--secondary-color);
1221
+ border-color: var(--secondary-color);
1222
+ color: white;
1223
+ }
1224
+
1225
+ .utah-design-system .button--solid.button--secondary-color:hover {
1226
+ background-color: var(--secondary-color-dark);
1227
+ border-color: var(--secondary-color-dark);
1228
+ }
1229
+
1230
+ .secondary-color-is-light.utah-design-system .button--solid.button--secondary-color {
1231
+ color: var(--gray-on-secondary-color);
1232
+ border-color: var(--secondary-color-dark);
1233
+ }
1234
+
1235
+ .secondary-color-is-light.utah-design-system .button--solid.button--secondary-color:hover {
1236
+ color: white;
1237
+ border-color: var(--secondary-color-dark);
1238
+ }
1239
+
1240
+ .utah-design-system .button--solid.button--secondary-color.contrast-border-dark {
1241
+ border-color: var(--gray-on-secondary-color);
1242
+ }
1243
+
1244
+ .utah-design-system .button--solid.button--accent-color {
1245
+ background-color: var(--accent-color);
1246
+ border-color: var(--accent-color);
1247
+ color: white;
1248
+ }
1249
+
1250
+ .utah-design-system .button--solid.button--accent-color:hover {
1251
+ background-color: var(--accent-color-dark);
1252
+ border-color: var(--accent-color-dark);
1253
+ }
1254
+
1255
+ .accent-color-is-light.utah-design-system .button--solid.button--accent-color {
1256
+ color: var(--gray-on-accent-color);
1257
+ border-color: var(--accent-color-dark);
1258
+ }
1259
+
1260
+ .accent-color-is-light.utah-design-system .button--solid.button--accent-color:hover {
1261
+ color: white;
1262
+ border-color: var(--accent-color-dark);
1263
+ }
1264
+
1265
+ .utah-design-system .button--solid.button--accent-color.contrast-border-dark {
1266
+ border-color: var(--gray-on-accent-color);
1267
+ }
1268
+
1269
+ .utah-design-system .button--solid.contrast-border-light {
1270
+ border-color: white;
1271
+ }
1272
+
1273
+ .utah-design-system .button--solid[disabled], .utah-design-system .button--solid[disable]:hover {
1274
+ cursor: not-allowed;
1275
+ background: var(--form-ele-disabled-color) !important;
1276
+ color: white !important;
1277
+ border-color: var(--form-ele-disabled-color) !important;
1278
+ }
1279
+
1280
+ .utah-design-system .primary-color-background .button--solid.contrast-border-dark {
1281
+ border-color: var(--gray-on-primary-color);
1282
+ }
1283
+
1284
+ .utah-design-system .secondary-color-background .button--solid.contrast-border-dark {
1285
+ border-color: var(--gray-on-secondary-color);
1286
+ }
1287
+
1288
+ .utah-design-system .accent-color-background .button--solid.contrast-border-dark {
1289
+ border-color: var(--gray-on-accent-color);
1290
+ }
1291
+
1292
+ .utah-design-system .dark-background-color .button {
1293
+ border-color: white;
1294
+ background: none;
1295
+ color: white;
1296
+ }
1297
+
1298
+ .utah-design-system .dark-background-color .button:hover {
1299
+ border-color: white;
1300
+ background: white;
1301
+ color: var(--gray-color);
1302
+ }
1303
+
1304
+ .utah-design-system .dark-background-color .button.button--primary-color {
1305
+ border-color: var(--primary-color);
1306
+ background: white;
1307
+ color: var(--primary-color);
1308
+ }
1309
+
1310
+ .utah-design-system .dark-background-color .button.button--primary-color:hover {
1311
+ border-color: white;
1312
+ background: var(--primary-color);
1313
+ color: white;
1314
+ }
1315
+
1316
+ .primary-color-is-light.utah-design-system .dark-background-color .button.button--primary-color {
1317
+ border-color: var(--primary-color);
1318
+ background: none;
1319
+ color: var(--primary-color);
1320
+ }
1321
+
1322
+ .primary-color-is-light.utah-design-system .dark-background-color .button.button--primary-color:hover {
1323
+ background: var(--primary-color);
1324
+ color: var(--gray-color);
1325
+ }
1326
+
1327
+ .utah-design-system .dark-background-color .button.button--secondary-color {
1328
+ border-color: var(--secondary-color);
1329
+ background: white;
1330
+ color: var(--secondary-color);
1331
+ }
1332
+
1333
+ .utah-design-system .dark-background-color .button.button--secondary-color:hover {
1334
+ border-color: white;
1335
+ background: var(--secondary-color);
1336
+ color: white;
1337
+ }
1338
+
1339
+ .secondary-color-is-light.utah-design-system .dark-background-color .button.button--secondary-color {
1340
+ border-color: var(--secondary-color);
1341
+ background: none;
1342
+ color: var(--secondary-color);
1343
+ }
1344
+
1345
+ .secondary-color-is-light.utah-design-system .dark-background-color .button.button--secondary-color:hover {
1346
+ background: var(--secondary-color);
1347
+ color: var(--gray-color);
1348
+ }
1349
+
1350
+ .utah-design-system .dark-background-color .button.button--accent-color {
1351
+ border-color: var(--accent-color);
1352
+ background: white;
1353
+ color: var(--accent-color);
1354
+ }
1355
+
1356
+ .utah-design-system .dark-background-color .button.button--accent-color:hover {
1357
+ border-color: white;
1358
+ background: var(--accent-color);
1359
+ color: white;
1360
+ }
1361
+
1362
+ .accent-color-is-light.utah-design-system .dark-background-color .button.button--accent-color {
1363
+ border-color: var(--accent-color);
1364
+ background: none;
1365
+ color: var(--accent-color);
1366
+ }
1367
+
1368
+ .accent-color-is-light.utah-design-system .dark-background-color .button.button--accent-color:hover {
1369
+ background: var(--accent-color);
1370
+ color: var(--gray-color);
1371
+ }
1372
+
1373
+ .utah-design-system .dark-background-color .button--solid {
1374
+ border-color: white;
1375
+ background: white;
1376
+ color: var(--gray-color);
1377
+ }
1378
+
1379
+ .utah-design-system .dark-background-color .button--solid:hover {
1380
+ border-color: white;
1381
+ background: none;
1382
+ color: white;
1383
+ }
1384
+
1385
+ .utah-design-system .dark-background-color .button--solid.button--primary-color {
1386
+ border-color: white;
1387
+ background: var(--primary-color);
1388
+ color: white;
1389
+ }
1390
+
1391
+ .utah-design-system .dark-background-color .button--solid.button--primary-color:hover {
1392
+ border-color: var(--primary-color);
1393
+ background: white;
1394
+ color: var(--primary-color);
1395
+ }
1396
+
1397
+ .primary-color-is-light.utah-design-system .dark-background-color .button--solid.button--primary-color {
1398
+ border-color: var(--primary-color);
1399
+ background: var(--primary-color);
1400
+ color: var(--gray-color);
1401
+ }
1402
+
1403
+ .primary-color-is-light.utah-design-system .dark-background-color .button--solid.button--primary-color:hover {
1404
+ background: var(--primary-color-dark);
1405
+ color: white;
1406
+ }
1407
+
1408
+ .utah-design-system .dark-background-color .button--solid.button--secondary-color {
1409
+ border-color: white;
1410
+ background: var(--secondary-color);
1411
+ color: white;
1412
+ }
1413
+
1414
+ .utah-design-system .dark-background-color .button--solid.button--secondary-color:hover {
1415
+ border-color: var(--secondary-color);
1416
+ background: white;
1417
+ color: var(--secondary-color);
1418
+ }
1419
+
1420
+ .secondary-color-is-light.utah-design-system .dark-background-color .button--solid.button--secondary-color {
1421
+ border-color: var(--secondary-color);
1422
+ background: var(--secondary-color);
1423
+ color: var(--gray-color);
1424
+ }
1425
+
1426
+ .secondary-color-is-light.utah-design-system .dark-background-color .button--solid.button--secondary-color:hover {
1427
+ background: var(--secondary-color-dark);
1428
+ color: white;
1429
+ }
1430
+
1431
+ .utah-design-system .dark-background-color .button--solid.button--accent-color {
1432
+ border-color: white;
1433
+ background: var(--accent-color);
1434
+ color: white;
1435
+ }
1436
+
1437
+ .utah-design-system .dark-background-color .button--solid.button--accent-color:hover {
1438
+ border-color: var(--accent-color);
1439
+ background: white;
1440
+ color: var(--accent-color);
1441
+ }
1442
+
1443
+ .accent-color-is-light.utah-design-system .dark-background-color .button--solid.button--accent-color {
1444
+ border-color: var(--accent-color);
1445
+ background: var(--accent-color);
1446
+ color: var(--gray-color);
1447
+ }
1448
+
1449
+ .accent-color-is-light.utah-design-system .dark-background-color .button--solid.button--accent-color:hover {
1450
+ background: var(--accent-color-dark);
1451
+ color: white;
1452
+ }
1453
+
1454
+ /*
1455
+ ############ _color-swatches.scss ############
1456
+ base color swatches for the design system
1457
+ */
1458
+ /*
1459
+ ############ _icon-button.scss ############
1460
+ */
1461
+ .utah-design-system .icon-button {
1462
+ border-radius: 999px;
1463
+ font-size: 1rem;
1464
+ min-height: var(--form-ele-medium);
1465
+ min-width: var(--form-ele-medium);
1466
+ padding: 0;
1467
+ display: flex;
1468
+ align-items: center;
1469
+ justify-content: center;
1470
+ cursor: pointer;
1471
+ /* ------------ SIZES ------------ */
1472
+ }
1473
+
1474
+ .utah-design-system .icon-button--borderless {
1475
+ border-color: transparent;
1476
+ background: transparent;
1477
+ }
1478
+
1479
+ .utah-design-system .icon-button--borderless:hover {
1480
+ color: var(--gray-dark-color);
1481
+ background: var(--hover-gray-color);
1482
+ }
1483
+
1484
+ .utah-design-system .icon-button--borderless.button--primary-color:hover {
1485
+ color: var(--primary-color-dark);
1486
+ }
1487
+
1488
+ .utah-design-system .icon-button--borderless.button--secondary-color:hover {
1489
+ color: var(--secondary-color-dark);
1490
+ }
1491
+
1492
+ .utah-design-system .icon-button--borderless.button--accent-color:hover {
1493
+ color: var(--accent-color-dark);
1494
+ }
1495
+
1496
+ .primary-color-is-light.utah-design-system .icon-button--borderless.button--primary-color {
1497
+ border-color: transparent;
1498
+ }
1499
+
1500
+ .primary-color-is-light.utah-design-system .icon-button--borderless.button--primary-color:hover {
1501
+ color: var(--primary-color-dark);
1502
+ background: var(--hover-gray-color);
1503
+ }
1504
+
1505
+ .secondary-color-is-light.utah-design-system .icon-button--borderless.button--secondary-color {
1506
+ border-color: transparent;
1507
+ }
1508
+
1509
+ .secondary-color-is-light.utah-design-system .icon-button--borderless.button--secondary-color:hover {
1510
+ color: var(--secondary-color-dark);
1511
+ background: var(--hover-gray-color);
1512
+ }
1513
+
1514
+ .accent-color-is-light.utah-design-system .icon-button--borderless.button--accent-color {
1515
+ border-color: transparent;
1516
+ }
1517
+
1518
+ .accent-color-is-light.utah-design-system .icon-button--borderless.button--accent-color:hover {
1519
+ color: var(--accent-color-dark);
1520
+ background: var(--hover-gray-color);
1521
+ }
1522
+
1523
+ .utah-design-system .icon-button--borderless[disabled], .utah-design-system .icon-button--borderless[disable]:hover {
1524
+ background: transparent !important;
1525
+ border-color: transparent !important;
1526
+ }
1527
+
1528
+ .utah-design-system .icon-button__icon {
1529
+ transition: all var(--timing-quick) ease-in-out;
1530
+ }
1531
+
1532
+ .utah-design-system .icon-button__icon--rotate180 {
1533
+ transform: rotate(180deg);
1534
+ }
1535
+
1536
+ .utah-design-system .icon-button [class*=utds-icon-before-] {
1537
+ line-height: 0.5;
1538
+ display: block;
1539
+ }
1540
+
1541
+ .utah-design-system .icon-button [class*=utds-icon-before-]::before {
1542
+ margin: 0;
1543
+ font-size: 1.25rem;
1544
+ }
1545
+
1546
+ .utah-design-system .icon-button--small1x {
1547
+ font-size: 0.85rem;
1548
+ min-height: var(--form-ele-small1x);
1549
+ min-width: var(--form-ele-small1x);
1550
+ border-width: 1px;
1551
+ }
1552
+
1553
+ .utah-design-system .icon-button--small1x [class*=utds-icon-before-]::before {
1554
+ font-size: 1rem;
1555
+ }
1556
+
1557
+ .utah-design-system .icon-button--small {
1558
+ font-size: 0.938rem;
1559
+ min-height: var(--form-ele-small);
1560
+ min-width: var(--form-ele-small);
1561
+ }
1562
+
1563
+ .utah-design-system .icon-button--small [class*=utds-icon-before-]::before {
1564
+ font-size: 1.125rem;
1565
+ }
1566
+
1567
+ .utah-design-system .icon-button--large {
1568
+ font-size: 1.25rem;
1569
+ min-height: var(--form-ele-large);
1570
+ min-width: var(--form-ele-large);
1571
+ }
1572
+
1573
+ .utah-design-system .icon-button--large [class*=utds-icon-before-]::before {
1574
+ font-size: 1.45rem;
1575
+ }
1576
+
1577
+ .utah-design-system .icon-button--large1x {
1578
+ font-size: 1.5rem;
1579
+ min-height: var(--form-ele-large1x);
1580
+ min-width: var(--form-ele-large1x);
1581
+ }
1582
+
1583
+ .utah-design-system .icon-button--large1x [class*=utds-icon-before-]::before {
1584
+ font-size: 1.7rem;
1585
+ }
1586
+
1587
+ .input-wrapper {
1588
+ margin: 0 0 var(--spacing-s) 0;
1589
+ }
1590
+
1591
+ .form.form--stacked .input-wrapper {
1592
+ display: flex;
1593
+ flex-direction: column;
1594
+ gap: 3px;
1595
+ align-items: flex-start;
1596
+ }
1597
+
1598
+ input[type=text],
1599
+ textarea {
1600
+ color: var(--gray-color);
1601
+ min-height: var(--form-ele-medium);
1602
+ border-radius: var(--radius-small);
1603
+ box-sizing: border-box;
1604
+ border: 1px solid var(--gray-color);
1605
+ width: 100%;
1606
+ padding: 0 var(--spacing-xs);
1607
+ box-shadow: var(--hover-gray-color) 0 0 0 0;
1608
+ transition: box-shadow var(--timing-xquick) ease-in-out;
1609
+ }
1610
+
1611
+ input[type=text]:hover,
1612
+ textarea:hover {
1613
+ box-shadow: var(--hover-gray-color) 0 0 0 5px;
1614
+ border-color: black;
1615
+ }
1616
+
1617
+ input[type=text]:focus-visible,
1618
+ textarea:focus-visible {
1619
+ outline: 2px solid var(--form-ele-color);
1620
+ outline-offset: 2px;
1621
+ transition: none;
1622
+ }
1623
+
1624
+ textarea {
1625
+ padding: var(--spacing-xs);
1626
+ }
1627
+
1628
+ input[type=checkbox] {
1629
+ width: var(--form-checkbox-medium);
1630
+ height: var(--form-checkbox-medium);
1631
+ position: relative;
1632
+ border-radius: var(--radius-small1x);
1633
+ border: 1px solid var(--gray-color);
1634
+ background-color: white;
1635
+ box-sizing: border-box;
1636
+ appearance: none;
1637
+ }
1638
+
1639
+ input[type=checkbox]::after {
1640
+ content: "";
1641
+ display: block;
1642
+ position: absolute;
1643
+ width: 100%;
1644
+ height: 100%;
1645
+ top: 0;
1646
+ left: 0;
1647
+ border-radius: var(--radius-circle);
1648
+ z-index: -1;
1649
+ box-shadow: var(--hover-gray-color) 0 0 0 0;
1650
+ transition: box-shadow var(--timing-xquick) ease-in-out;
1651
+ }
1652
+
1653
+ input[type=checkbox]:hover {
1654
+ border-color: black;
1655
+ }
1656
+
1657
+ input[type=checkbox]:hover::after {
1658
+ box-shadow: var(--hover-gray-color) 0 0 0 7px;
1659
+ border-color: black;
1660
+ }
1661
+
1662
+ input[type=checkbox]::before {
1663
+ content: "";
1664
+ display: block;
1665
+ background: var(--form-ele-color);
1666
+ background-image: var(--icon-check-mark-light);
1667
+ background-repeat: no-repeat;
1668
+ background-position: center center;
1669
+ background-size: 30%;
1670
+ border-radius: var(--radius-small1x);
1671
+ width: 100%;
1672
+ height: 100%;
1673
+ opacity: 0;
1674
+ }
1675
+
1676
+ input[type=checkbox]:checked {
1677
+ border-width: 0;
1678
+ background-color: var(--form-ele-color);
1679
+ }
1680
+
1681
+ input[type=checkbox]:checked::before {
1682
+ opacity: 1;
1683
+ background-size: 80%;
1684
+ transition: background-size var(--timing-quick) ease, opacity var(--timing-quick) ease;
1685
+ }
1686
+
1687
+ .input-wrapper--checkbox {
1688
+ display: flex;
1689
+ flex-direction: row-reverse;
1690
+ justify-content: flex-end;
1691
+ align-items: center;
1692
+ position: relative;
1693
+ z-index: 1;
1694
+ }
1695
+
1696
+ .input-wrapper label {
1697
+ padding: 0 0 0 var(--spacing-2xs);
1698
+ }
1699
+
1700
+ select {
1701
+ color: var(--gray-color);
1702
+ min-height: var(--form-ele-medium);
1703
+ border-radius: var(--radius-small);
1704
+ box-sizing: border-box;
1705
+ border: 1px solid var(--gray-color);
1706
+ width: 100%;
1707
+ padding: 0 var(--spacing-xs);
1708
+ appearance: none;
1709
+ background: white var(--icon-chevron-dark) no-repeat right 5px center;
1710
+ background-size: 16px;
1711
+ box-shadow: var(--hover-gray-color) 0 0 0 0;
1712
+ transition: box-shadow var(--timing-xquick) ease-in-out;
1713
+ }
1714
+
1715
+ select:hover {
1716
+ box-shadow: var(--hover-gray-color) 0 0 0 5px;
1717
+ border-color: black;
1718
+ }
1719
+
1720
+ select:focus-visible {
1721
+ outline: 2px solid var(--form-ele-color);
1722
+ outline-offset: 2px;
1723
+ transition: none;
1724
+ }
1725
+
1726
+ .info-box {
1727
+ display: flex;
1728
+ align-items: center;
1729
+ min-height: var(--form-ele-medium);
1730
+ background: white;
1731
+ position: relative;
1732
+ border-radius: var(--radius-small);
1733
+ }
1734
+
1735
+ .info-box::before {
1736
+ content: "";
1737
+ display: block;
1738
+ width: var(--spacing-xs);
1739
+ height: 100%;
1740
+ border-top-left-radius: var(--radius-small);
1741
+ border-bottom-left-radius: var(--radius-small);
1742
+ background-color: var(--secondary-color);
1743
+ }
1744
+
1745
+ .info-box__content {
1746
+ display: flex;
1747
+ align-items: center;
1748
+ padding: 0 var(--spacing-s);
1749
+ }
1750
+
1751
+ input[type=radio] {
1752
+ appearance: none;
1753
+ border-radius: var(--radius-circle);
1754
+ border: 1px solid var(--gray-color);
1755
+ width: var(--form-ele-small1x);
1756
+ height: var(--form-ele-small1x);
1757
+ position: relative;
1758
+ top: var(--spacing-2xs);
1759
+ margin-right: var(--spacing-xs);
1760
+ }
1761
+
1762
+ input[type=radio]::before {
1763
+ content: "";
1764
+ display: block;
1765
+ width: 100%;
1766
+ height: 100%;
1767
+ border-radius: var(--radius-circle);
1768
+ box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 0px;
1769
+ transition: box-shadow var(--timing-xquick) ease-in-out;
1770
+ }
1771
+
1772
+ input[type=radio]:hover::before {
1773
+ box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 7px;
1774
+ }
1775
+
1776
+ input[type=radio]:checked {
1777
+ background-color: var(--secondary-color);
1778
+ border: 1px solid var(--secondary-color);
1779
+ }
1780
+
1781
+ input[type=radio]:checked::after {
1782
+ content: "";
1783
+ display: block;
1784
+ width: 50%;
1785
+ height: 50%;
1786
+ border-radius: var(--radius-circle);
1787
+ background-color: white;
1788
+ position: absolute;
1789
+ left: 50%;
1790
+ top: 50%;
1791
+ transform: translate(-50%, -50%);
1792
+ }
1793
+
1794
+ .checkbox:hover ~ span:first-of-type {
1795
+ box-shadow: rgb(240, 241, 242) 0px 0px 0px 7px;
1796
+ }
1797
+
1798
+ span {
1799
+ border-radius: 999px;
1800
+ box-shadow: rgb(240, 241, 242) 0px 0px 0px 0px;
1801
+ }
1802
+
1803
+ input[type=checkbox].switch {
1804
+ border: 0;
1805
+ clip: rect(0 0 0 0);
1806
+ height: 1px;
1807
+ margin: -1px;
1808
+ overflow: hidden;
1809
+ padding: 0;
1810
+ position: absolute;
1811
+ width: 1px;
1812
+ }
1813
+
1814
+ .switch__label {
1815
+ position: absolute;
1816
+ right: 0;
1817
+ transform: translateX(calc(100% + var(--spacing-2xs)));
1818
+ color: var(--gray-color);
1819
+ min-width: max-content;
1820
+ }
1821
+
1822
+ .switch__wrapper {
1823
+ min-width: 20px;
1824
+ background: #7b7b7b;
1825
+ color: white;
1826
+ border-radius: var(--radius-circle);
1827
+ min-height: var(--form-ele-small3x);
1828
+ padding: var(--spacing-3xs);
1829
+ position: relative;
1830
+ display: inline-flex;
1831
+ align-items: center;
1832
+ box-shadow: var(--hover-gray-color) 0 0 0 0;
1833
+ transition: box-shadow var(--timing-xquick) ease-in-out;
1834
+ }
1835
+
1836
+ .switch__wrapper--on {
1837
+ background: var(--form-ele-color);
1838
+ }
1839
+
1840
+ .switch__wrapper:hover {
1841
+ box-shadow: var(--hover-gray-color) 0 0 0 5px;
1842
+ border-color: black;
1843
+ }
1844
+
1845
+ .switch__wrapper:has(input:focus) {
1846
+ outline: 2px solid var(--form-ele-color);
1847
+ outline-offset: 2px;
1848
+ transition: none;
1849
+ }
1850
+
1851
+ .switch--small.switch__wrapper {
1852
+ min-height: var(--form-ele-small4x);
1853
+ }
1854
+
1855
+ .switch--small .switch__slider {
1856
+ height: var(--form-ele-small4x);
1857
+ width: var(--form-ele-small4x);
1858
+ }
1859
+
1860
+ .switch--small .switch__inner-label {
1861
+ font-size: var(--font-size-xs);
1862
+ height: var(--form-ele-small4x);
1863
+ line-height: var(--form-ele-small4x);
1864
+ }
1865
+
1866
+ .switch--large.switch__wrapper {
1867
+ min-height: var(--form-ele-small1x);
1868
+ }
1869
+
1870
+ .switch--large .switch__slider {
1871
+ height: var(--form-ele-small1x);
1872
+ width: var(--form-ele-small1x);
1873
+ }
1874
+
1875
+ .switch__slider {
1876
+ height: var(--form-ele-small3x);
1877
+ width: var(--form-ele-small3x);
1878
+ border-radius: var(--radius-circle);
1879
+ background: white;
1880
+ position: absolute;
1881
+ left: 2px;
1882
+ transition: all var(--timing-quick);
1883
+ display: flex;
1884
+ align-items: center;
1885
+ justify-content: center;
1886
+ }
1887
+
1888
+ .switch__slider--on {
1889
+ left: 100%;
1890
+ transform: translateX(calc(-100% - 2px));
1891
+ background: white;
1892
+ }
1893
+
1894
+ .switch__slider svg {
1895
+ fill: var(--gray-color);
1896
+ width: 0.65rem;
1897
+ height: 0.65rem;
1898
+ }
1899
+
1900
+ .switch__inner-label {
1901
+ position: relative;
1902
+ width: 100%;
1903
+ height: var(--form-ele-small3x);
1904
+ font-size: var(--font-size-s);
1905
+ line-height: var(--font-size-s);
1906
+ }
1907
+
1908
+ .switch__inner-label-on, .switch__inner-label-off {
1909
+ width: calc(100% - var(--form-ele-2small1x));
1910
+ position: absolute;
1911
+ right: 2px;
1912
+ opacity: 0;
1913
+ transition: opacity var(--timing-quick);
1914
+ text-align: center;
1915
+ display: inline-block;
1916
+ }
1917
+
1918
+ .switch__inner-label-on.show, .switch__inner-label-off.show {
1919
+ opacity: 1;
1920
+ }
1921
+
1922
+ .switch__inner-label-on {
1923
+ color: white;
1924
+ right: unset;
1925
+ left: 2px;
1926
+ }
1927
+
1928
+ .switch--disabled {
1929
+ background: var(--form-ele-disabled-color);
1930
+ cursor: not-allowed;
1931
+ }
1932
+
1933
+ .switch--disabled.switch__wrapper--on {
1934
+ background: var(--form-ele-color-light);
1935
+ }
1936
+
1937
+ .input-wrapper--switch label {
1938
+ padding: var(--spacing-3xs) var(--spacing-xs);
1939
+ }
1940
+
1941
+ .switch-old {
1942
+ display: block;
1943
+ box-sizing: border-box;
1944
+ border: none;
1945
+ background: none;
1946
+ padding: 0;
1947
+ position: relative;
1948
+ min-height: 20px;
1949
+ }
1950
+
1951
+ .switch-old:focus,
1952
+ .switch-old:hover {
1953
+ outline: none;
1954
+ }
1955
+
1956
+ .switch-old:focus::before,
1957
+ .switch-old:hover::before {
1958
+ box-shadow: 0 0 0.5em #2a2a28;
1959
+ }
1960
+
1961
+ .switch-old::before,
1962
+ .switch-old::after {
1963
+ content: "";
1964
+ position: absolute;
1965
+ height: 16px;
1966
+ transition: all 0.25s ease;
1967
+ }
1968
+
1969
+ .switch-old::before {
1970
+ left: 0;
1971
+ top: 0.2em;
1972
+ width: 32px;
1973
+ border: 1px solid #7a7a77;
1974
+ background: #7a7a77;
1975
+ border-radius: 16px;
1976
+ }
1977
+
1978
+ .switch-old::after {
1979
+ top: 4px;
1980
+ background-color: #fff;
1981
+ border-radius: 50%;
1982
+ width: 14px;
1983
+ height: 14px;
1984
+ border: 1px solid #7a7a77;
1985
+ left: 16px;
1986
+ border-color: #699957;
1987
+ color: #699957;
1988
+ }
1989
+
1990
+ .switch-old::before {
1991
+ background-color: #699957;
1992
+ border-color: #699957;
1993
+ }
1994
+
1995
+ .utah-design-system .main-menu__wrapper {
1996
+ background-color: var(--gray-light-color);
1997
+ display: flex;
1998
+ justify-content: space-between;
1999
+ align-items: center;
2000
+ padding: 0 var(--spacing-l) 0 var(--spacing-xs);
2001
+ }
2002
+
2003
+ .utah-design-system .main-menu__wrapper .utds-icon-before-search::before {
2004
+ font-size: 1.1rem;
2005
+ }
2006
+
2007
+ .utah-design-system .main-menu .menu-item__search {
2008
+ margin-left: auto;
2009
+ }
2010
+
2011
+ .utah-design-system .main-menu__search-placeholder {
2012
+ height: var(--form-ele-medium);
2013
+ width: var(--form-ele-medium);
2014
+ }
2015
+
2016
+ .utah-design-system .horizontal-menu > ul {
2017
+ list-style-type: none;
2018
+ display: flex;
2019
+ padding: 0;
2020
+ }
2021
+
2022
+ .utah-design-system .horizontal-menu > ul li .menu-item__title {
2023
+ position: relative;
2024
+ }
2025
+
2026
+ .utah-design-system .horizontal-menu > ul li a[href], .utah-design-system .horizontal-menu > ul li button {
2027
+ display: flex;
2028
+ align-items: center;
2029
+ text-decoration: none;
2030
+ color: var(--gray-color);
2031
+ padding: var(--spacing-3xs) var(--spacing);
2032
+ margin: var(--spacing-xs) 0;
2033
+ border-radius: 999px;
2034
+ transition: all var(--timing-quick) ease-in-out;
2035
+ position: relative;
2036
+ box-sizing: border-box;
2037
+ font-size: var(--font-size);
2038
+ font-weight: var(--font-weight-semi-bold);
2039
+ min-height: auto;
2040
+ line-height: 1.7;
2041
+ }
2042
+
2043
+ .utah-design-system .horizontal-menu > ul li a[href] .icon-chevron-down, .utah-design-system .horizontal-menu > ul li button .icon-chevron-down {
2044
+ font-size: 1rem;
2045
+ margin-right: -2px;
2046
+ }
2047
+
2048
+ .utah-design-system .horizontal-menu > ul li a[href]:hover, .utah-design-system .horizontal-menu > ul li button:hover {
2049
+ color: black;
2050
+ box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
2051
+ }
2052
+
2053
+ .utah-design-system .horizontal-menu > ul li a[href].menu-item--selected + span.menu-chiclet::after, .utah-design-system .horizontal-menu > ul li button.menu-item--selected + span.menu-chiclet::after {
2054
+ content: "";
2055
+ width: 100%;
2056
+ height: var(--spacing-2xs);
2057
+ background: var(--primary-color);
2058
+ display: block;
2059
+ position: absolute;
2060
+ top: 0;
2061
+ left: 0;
2062
+ border-bottom-left-radius: var(--spacing-2xs);
2063
+ border-bottom-right-radius: var(--spacing-2xs);
2064
+ outline: none;
2065
+ outline-offset: 0;
2066
+ }
2067
+
2068
+ .utah-design-system .menu-item__title {
2069
+ display: flex;
2070
+ flex-direction: row;
2071
+ align-items: center;
2072
+ }
2073
+
2074
+ .utah-design-system .menu-item__button-title {
2075
+ border: none;
2076
+ padding: 0;
2077
+ background: none;
2078
+ }
2079
+
2080
+ .utah-design-system .menu-item__button-title:hover {
2081
+ background: none;
2082
+ color: var(--primary-color);
2083
+ }
2084
+
2085
+ .utah-design-system .menu-item a[href] {
2086
+ text-decoration: none;
2087
+ color: var(--gray-color);
2088
+ }
2089
+
2090
+ .utah-design-system .menu-item a[href].menu-item--selected {
2091
+ color: var(--primary-color);
2092
+ }
2093
+
2094
+ .utah-design-system .menu-item__chevron {
2095
+ transform: rotate(-90deg);
2096
+ }
2097
+
2098
+ .utah-design-system .menu-item__chevron svg {
2099
+ width: 10px;
2100
+ height: 10px;
2101
+ }
2102
+
2103
+ .utah-design-system .menu-item__chevron--open {
2104
+ transform: rotate(0deg);
2105
+ }
2106
+
2107
+ .utah-design-system .menu-item__sub-menu {
2108
+ display: none;
2109
+ }
2110
+
2111
+ .utah-design-system .menu-item__sub-menu--open {
2112
+ display: block;
2113
+ }
2114
+
2115
+ .utah-design-system .menu-side-panel {
2116
+ margin: var(--spacing) 0 0 0;
2117
+ font-size: var(--font-size-xs);
2118
+ }
2119
+
2120
+ .utah-design-system .menu-side-panel:first-child {
2121
+ margin: 0;
2122
+ }
2123
+
2124
+ .utah-design-system .menu-side-panel__header {
2125
+ font-size: var(--font-size);
2126
+ }
2127
+
2128
+ .utah-design-system .menu-side-panel > ul {
2129
+ margin-left: calc(0px - var(--spacing));
2130
+ }
2131
+
2132
+ .utah-design-system .menu-side-panel ul {
2133
+ list-style-type: none;
2134
+ padding: 0;
2135
+ }
2136
+
2137
+ .utah-design-system .menu-side-panel ul ul:first-of-type {
2138
+ border-left: 1px solid #DBDBDB;
2139
+ margin-left: var(--spacing);
2140
+ }
2141
+
2142
+ .utah-design-system .menu-side-panel .menu-item__title a {
2143
+ flex: 1 0 auto;
2144
+ padding: var(--spacing-2xs) var(--spacing);
2145
+ display: block;
2146
+ border-radius: var(--radius-circle);
2147
+ position: relative;
2148
+ transition: all var(--timing-quick) ease-in-out;
2149
+ }
2150
+
2151
+ .utah-design-system .menu-side-panel .menu-item__title a:hover {
2152
+ box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
2153
+ color: var(--primary-color);
2154
+ }
2155
+
2156
+ .utah-design-system .menu-side-panel .menu-item__title a.menu-item--selected {
2157
+ font-weight: bold;
2158
+ border-top-left-radius: 0;
2159
+ border-bottom-left-radius: 0;
2160
+ box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
2161
+ }
2162
+
2163
+ .utah-design-system .menu-side-panel .menu-item__title a.menu-item--selected::after {
2164
+ content: "";
2165
+ position: absolute;
2166
+ left: -3px;
2167
+ top: 0;
2168
+ width: 5px;
2169
+ height: 100%;
2170
+ background: var(--primary-color);
2171
+ border-radius: var(--radius-circle);
2172
+ }
2173
+
2174
+ .utah-design-system .menu-side-panel .menu-item button {
2175
+ min-height: unset;
2176
+ min-width: unset;
2177
+ }
2178
+
2179
+ .utah-design-system .menu-side-panel .menu-item__button-title {
2180
+ flex: 1 0 auto;
2181
+ justify-content: flex-start;
2182
+ font-size: var(--font-size-xs);
2183
+ padding: var(--spacing-2xs) var(--spacing);
2184
+ line-height: 1.7;
2185
+ }
2186
+
2187
+ .utah-design-system .menu-side-panel .menu-item__button-title:hover {
2188
+ box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
2189
+ }
2190
+
2191
+ .utah-design-system .menu-side-panel .menu-item__chevron {
2192
+ padding: var(--spacing-xs);
2193
+ }
2194
+
2195
+ .utah-design-system .menu-side-panel .menu-item__chevron svg {
2196
+ transition: transform var(--timing-quick) ease;
2197
+ }
2198
+
2199
+ .utah-design-system ul.vertical-menu {
2200
+ list-style-type: none;
2201
+ margin: 0;
2202
+ padding: 0;
2203
+ }
2204
+
2205
+ .utah-design-system .vertical-menu li > ul {
2206
+ padding-left: var(--spacing-s);
2207
+ }
2208
+
2209
+ .utah-design-system .vertical-menu button.vertical-menu__button-title,
2210
+ .utah-design-system .vertical-menu a[href].vertical-menu__link-title {
2211
+ border-radius: var(--radius-circle);
2212
+ border: none;
2213
+ box-shadow: none;
2214
+ box-sizing: border-box;
2215
+ color: var(--gray-color);
2216
+ display: flex;
2217
+ font-size: var(--font-size-2xs);
2218
+ justify-content: flex-start;
2219
+ line-height: 1.7;
2220
+ margin: var(--spacing-2xs) 0;
2221
+ min-height: unset;
2222
+ padding: var(--spacing-2xs) var(--spacing);
2223
+ text-align: left;
2224
+ text-decoration: none;
2225
+ width: 100%;
2226
+ position: relative;
2227
+ }
2228
+
2229
+ .utah-design-system .vertical-menu button.vertical-menu__button-title:hover,
2230
+ .utah-design-system .vertical-menu a[href].vertical-menu__link-title:hover {
2231
+ background: var(--hover-gray-color);
2232
+ color: var(--primary-color);
2233
+ box-shadow: none;
2234
+ }
2235
+
2236
+ .utah-design-system .vertical-menu button.vertical-menu__button-title:active,
2237
+ .utah-design-system .vertical-menu a[href].vertical-menu__link-title:active {
2238
+ transform: none;
2239
+ }
2240
+
2241
+ .utah-design-system .vertical-menu button.vertical-menu__button-title.menu-item--selected,
2242
+ .utah-design-system .vertical-menu a[href].vertical-menu__link-title.menu-item--selected {
2243
+ font-weight: bold;
2244
+ border-top-left-radius: 0;
2245
+ border-bottom-left-radius: 0;
2246
+ box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
2247
+ }
2248
+
2249
+ .utah-design-system .vertical-menu button.vertical-menu__button-title.menu-item--selected::after,
2250
+ .utah-design-system .vertical-menu a[href].vertical-menu__link-title.menu-item--selected::after {
2251
+ content: "";
2252
+ position: absolute;
2253
+ left: -3px;
2254
+ top: 0;
2255
+ width: 5px;
2256
+ height: 100%;
2257
+ background: var(--primary-color);
2258
+ border-radius: var(--radius-circle);
2259
+ }
2260
+
2261
+ .utah-design-system .vertical-menu a.vertical-menu__link-title:hover {
2262
+ box-shadow: none;
2263
+ }
2264
+
2265
+ .utah-design-system .vertical-menu__link-text {
2266
+ flex: 1 0 auto;
2267
+ }
2268
+
2269
+ .utah-design-system .vertical-menu__divider {
2270
+ display: block;
2271
+ margin: var(--spacing-s) var(--spacing-s);
2272
+ height: 1px;
2273
+ background-color: var(--gray-medium-light-color);
2274
+ }
2275
+
2276
+ .utah-design-system .vertical-menu .utds-icon-before-chevron-right {
2277
+ font-size: 0.6rem;
2278
+ line-height: 0.5;
2279
+ transform: rotate(0deg);
2280
+ transition: transform var(--timing-quick) ease;
2281
+ }
2282
+
2283
+ .utah-design-system .vertical-menu .utds-icon-before-chevron-right::before {
2284
+ margin-right: 0;
2285
+ }
2286
+
2287
+ .utah-design-system .vertical-menu .utds-icon-before-chevron-right.is-open {
2288
+ transform: rotate(90deg);
2289
+ }
2290
+
2291
+ .utah-design-system .menu-item--mega-menu .popup__content {
2292
+ padding: var(--spacing) var(--spacing-l);
2293
+ }
2294
+
2295
+ .utah-design-system .menu-item--mega-menu .popup__content > ul {
2296
+ display: flex;
2297
+ gap: var(--spacing-xl);
2298
+ }
2299
+
2300
+ .utah-design-system .menu-item--mega-menu .popup__content > ul > li {
2301
+ font-weight: bold;
2302
+ font-size: var(--font-size-l);
2303
+ }
2304
+
2305
+ .utah-design-system .menu-item--mega-menu .popup__content > ul > li > ul {
2306
+ font-size: var(--font-size);
2307
+ font-weight: var(--font-weight-semi-bold);
2308
+ }
2309
+
2310
+ .utah-design-system .menu-item--mega-menu .popup__content a[href].vertical-menu__link-title {
2311
+ text-decoration: underline;
2312
+ color: var(--primary-color);
2313
+ }
2314
+
2315
+ /*
2316
+ ############ _spacing.scss ############
2317
+ 8px horizontal spacing
2318
+ */
2319
+ .utah-design-system {
2320
+ --spacing-3xs: 2px;
2321
+ --spacing-2xs: 4px;
2322
+ --spacing-xs: 8px;
2323
+ --spacing-s: 12px;
2324
+ --spacing: 16px;
2325
+ --spacing-l: 24px;
2326
+ --spacing-xl: 32px;
2327
+ --spacing-2xl: 40px;
2328
+ --spacing-3xl: 48px;
2329
+ --spacing-4xl: 64px;
2330
+ --spacing-5xl: 80px;
2331
+ --spacing-6xl: 96px;
2332
+ }
2333
+
2334
+ .utah-design-system .m-spacing {
2335
+ margin: var(--spacing);
2336
+ }
2337
+
2338
+ .utah-design-system .mt-spacing {
2339
+ margin-top: var(--spacing);
2340
+ }
2341
+
2342
+ .utah-design-system .mr-spacing {
2343
+ margin-right: var(--spacing);
2344
+ }
2345
+
2346
+ .utah-design-system .mb-spacing {
2347
+ margin-bottom: var(--spacing);
2348
+ }
2349
+
2350
+ .utah-design-system .ml-spacing {
2351
+ margin-left: var(--spacing);
2352
+ }
2353
+
2354
+ .utah-design-system .mx-spacing {
2355
+ margin-left: var(--spacing);
2356
+ margin-right: var(--spacing);
2357
+ }
2358
+
2359
+ .utah-design-system .my-spacing {
2360
+ margin-top: var(--spacing);
2361
+ margin-bottom: var(--spacing);
2362
+ }
2363
+
2364
+ .utah-design-system .m-spacing-l {
2365
+ margin: var(--spacing-l);
2366
+ }
2367
+
2368
+ .utah-design-system .mt-spacing-l {
2369
+ margin-top: var(--spacing-l);
2370
+ }
2371
+
2372
+ .utah-design-system .mr-spacing-l {
2373
+ margin-right: var(--spacing-l);
2374
+ }
2375
+
2376
+ .utah-design-system .mb-spacing-l {
2377
+ margin-bottom: var(--spacing-l);
2378
+ }
2379
+
2380
+ .utah-design-system .ml-spacing-l {
2381
+ margin-left: var(--spacing-l);
2382
+ }
2383
+
2384
+ .utah-design-system .mx-spacing-l {
2385
+ margin-left: var(--spacing-l);
2386
+ margin-right: var(--spacing-l);
2387
+ }
2388
+
2389
+ .utah-design-system .my-spacing-l {
2390
+ margin-top: var(--spacing-l);
2391
+ margin-bottom: var(--spacing-l);
2392
+ }
2393
+
2394
+ .utah-design-system .m-spacing-s {
2395
+ margin: var(--spacing-s);
2396
+ }
2397
+
2398
+ .utah-design-system .mt-spacing-s {
2399
+ margin-top: var(--spacing-s);
2400
+ }
2401
+
2402
+ .utah-design-system .mr-spacing-s {
2403
+ margin-right: var(--spacing-s);
2404
+ }
2405
+
2406
+ .utah-design-system .mb-spacing-s {
2407
+ margin-bottom: var(--spacing-s);
2408
+ }
2409
+
2410
+ .utah-design-system .ml-spacing-s {
2411
+ margin-left: var(--spacing-s);
2412
+ }
2413
+
2414
+ .utah-design-system .mx-spacing-s {
2415
+ margin-left: var(--spacing-s);
2416
+ margin-right: var(--spacing-s);
2417
+ }
2418
+
2419
+ .utah-design-system .my-spacing-s {
2420
+ margin-top: var(--spacing-s);
2421
+ margin-bottom: var(--spacing-s);
2422
+ }
2423
+
2424
+ .utah-design-system .m-spacing-xs {
2425
+ margin: var(--spacing-xs);
2426
+ }
2427
+
2428
+ .utah-design-system .mt-spacing-xs {
2429
+ margin-top: var(--spacing-xs);
2430
+ }
2431
+
2432
+ .utah-design-system .mr-spacing-xs {
2433
+ margin-right: var(--spacing-xs);
2434
+ }
2435
+
2436
+ .utah-design-system .mb-spacing-xs {
2437
+ margin-bottom: var(--spacing-xs);
2438
+ }
2439
+
2440
+ .utah-design-system .ml-spacing-xs {
2441
+ margin-left: var(--spacing-xs);
2442
+ }
2443
+
2444
+ .utah-design-system .mx-spacing-xs {
2445
+ margin-left: var(--spacing-xs);
2446
+ margin-right: var(--spacing-xs);
2447
+ }
2448
+
2449
+ .utah-design-system .my-spacing-xs {
2450
+ margin-top: var(--spacing-xs);
2451
+ margin-bottom: var(--spacing-xs);
2452
+ }
2453
+
2454
+ .utah-design-system .p-spacing {
2455
+ padding: var(--spacing);
2456
+ }
2457
+
2458
+ .utah-design-system .pt-spacing {
2459
+ padding-top: var(--spacing);
2460
+ }
2461
+
2462
+ .utah-design-system .pr-spacing {
2463
+ padding-right: var(--spacing);
2464
+ }
2465
+
2466
+ .utah-design-system .pb-spacing {
2467
+ padding-bottom: var(--spacing);
2468
+ }
2469
+
2470
+ .utah-design-system .pl-spacing {
2471
+ padding-left: var(--spacing);
2472
+ }
2473
+
2474
+ .utah-design-system .px-spacing {
2475
+ padding-left: var(--spacing);
2476
+ padding-right: var(--spacing);
2477
+ }
2478
+
2479
+ .utah-design-system .py-spacing {
2480
+ padding-top: var(--spacing);
2481
+ padding-bottom: var(--spacing);
2482
+ }
2483
+
2484
+ .utah-design-system .p-spacing-l {
2485
+ padding: var(--spacing-l);
2486
+ }
2487
+
2488
+ .utah-design-system .pt-spacing-l {
2489
+ padding-top: var(--spacing-l);
2490
+ }
2491
+
2492
+ .utah-design-system .pr-spacing-l {
2493
+ padding-right: var(--spacing-l);
2494
+ }
2495
+
2496
+ .utah-design-system .pb-spacing-l {
2497
+ padding-bottom: var(--spacing-l);
2498
+ }
2499
+
2500
+ .utah-design-system .pl-spacing-l {
2501
+ padding-left: var(--spacing-l);
2502
+ }
2503
+
2504
+ .utah-design-system .px-spacing-l {
2505
+ padding-left: var(--spacing-l);
2506
+ padding-right: var(--spacing-l);
2507
+ }
2508
+
2509
+ .utah-design-system .py-spacing-l {
2510
+ padding-top: var(--spacing-l);
2511
+ padding-bottom: var(--spacing-l);
2512
+ }
2513
+
2514
+ .utah-design-system .m-auto {
2515
+ margin: auto;
2516
+ }
2517
+
2518
+ .utah-design-system .mt-auto {
2519
+ margin-top: auto;
2520
+ }
2521
+
2522
+ .utah-design-system .mr-auto {
2523
+ margin-right: auto;
2524
+ }
2525
+
2526
+ .utah-design-system .mb-auto {
2527
+ margin-bottom: auto;
2528
+ }
2529
+
2530
+ .utah-design-system .ml-auto {
2531
+ margin-left: auto;
2532
+ }
2533
+
2534
+ .utah-design-system .mx-auto {
2535
+ margin-left: auto;
2536
+ margin-right: auto;
2537
+ }
2538
+
2539
+ .utah-design-system .my-auto {
2540
+ margin-top: auto;
2541
+ margin-bottom: auto;
2542
+ }
2543
+
2544
+ /*
2545
+ ############ _font-size.scss ############
2546
+ Grid variables
2547
+ */
2548
+ .utah-design-system {
2549
+ --grid-fixed: var(--content-width);
2550
+ --grid-fixed-half: calc(var(--grid-fixed) / 2);
2551
+ --grid-fixed-form: calc(var(--grid-fixed) / 2.3);
2552
+ --grid-fixed-third: calc(var(--grid-fixed) / 3);
2553
+ --grid-fixed-fourth: calc(var(--grid-fixed) / 4);
2554
+ }
2555
+
2556
+ .grid-wrapper {
2557
+ display: flex;
2558
+ justify-content: center;
2559
+ }
2560
+
2561
+ .grid-fixed {
2562
+ max-width: var(--grid-fixed);
2563
+ width: 100%;
2564
+ display: grid;
2565
+ grid-template-columns: 1fr;
2566
+ gap: var(--spacing-l);
2567
+ }
2568
+
2569
+ .grid-fixed--2col {
2570
+ grid-template-columns: 1fr 1fr;
2571
+ }
2572
+
2573
+ .grid-fixed--3col {
2574
+ grid-template-columns: 1fr 1fr 1fr;
2575
+ }
2576
+
2577
+ .grid-fixed--4col {
2578
+ grid-template-columns: 1fr 1fr 1fr 1fr;
2579
+ }
2580
+
2581
+ .grid-fixed .grid-column-span-2 {
2582
+ grid-column: span 2;
2583
+ }
2584
+
2585
+ /*
2586
+ ############ _font-size.scss ############
2587
+ Font size variables
2588
+ */
2589
+ .utah-design-system {
2590
+ --normal-font-family: "Source Sans Pro", "Helvetica Neue", sans-serif;
2591
+ --fixed-width-font-family: "Source Code Pro", monospace;
2592
+ --font-size-2xs: .8125rem;
2593
+ --font-size-xs: .875rem;
2594
+ --font-size-s: .9375rem;
2595
+ --font-size: 1rem;
2596
+ --font-size-m: 1.125rem;
2597
+ --font-size-l: 1.25rem;
2598
+ --font-size-xl: 1.5rem;
2599
+ --font-size-2xl: 1.75rem;
2600
+ --font-size-3xl: 2rem;
2601
+ --font-size-4xl: 2.5rem;
2602
+ --font-size-5xl: 3rem;
2603
+ --font-size-6xl: 3.5rem;
2604
+ --font-size-7xl: 4.5rem;
2605
+ --font-weight-normal: 400;
2606
+ --font-weight-semi-bold: 600;
2607
+ --font-weight-bold: 700;
2608
+ --font-weight-black: 900;
2609
+ }
2610
+
2611
+ .font-size-2xs {
2612
+ font-size: var(--font-size-2xs);
2613
+ }
2614
+
2615
+ .font-size-xs {
2616
+ font-size: var(--font-size-xs);
2617
+ }
2618
+
2619
+ .font-size-s {
2620
+ font-size: var(--font-size-s);
2621
+ }
2622
+
2623
+ .font-size {
2624
+ font-size: var(--font-size);
2625
+ }
2626
+
2627
+ .font-size-m {
2628
+ font-size: var(--font-size-m);
2629
+ }
2630
+
2631
+ .font-size-l {
2632
+ font-size: var(--font-size-l);
2633
+ }
2634
+
2635
+ .font-size-xl {
2636
+ font-size: var(--font-size-xl);
2637
+ }
2638
+
2639
+ .font-size-2xl {
2640
+ font-size: var(--font-size-2xl);
2641
+ }
2642
+
2643
+ .font-size-3xl {
2644
+ font-size: var(--font-size-3xl);
2645
+ }
2646
+
2647
+ .font-size-4xl {
2648
+ font-size: var(--font-size-4xl);
2649
+ }
2650
+
2651
+ .font-size-5xl {
2652
+ font-size: var(--font-size-5xl);
2653
+ }
2654
+
2655
+ .font-size-6xl {
2656
+ font-size: var(--font-size-6xl);
2657
+ }
2658
+
2659
+ .font-size-7xl {
2660
+ font-size: var(--font-size-7xl);
2661
+ }
2662
+
2663
+ .font-normal {
2664
+ font-weight: var(--font-weight-normal);
2665
+ }
2666
+
2667
+ .font-semi-bold {
2668
+ font-weight: var(--font-weight-semi-bold);
2669
+ }
2670
+
2671
+ .font-bold {
2672
+ font-weight: var(--font-weight-bold);
2673
+ }
2674
+
2675
+ .font-black {
2676
+ font-weight: var(--font-weight-black);
2677
+ }
2678
+
2679
+ /* Generated by Glyphter (http://www.glyphter.com) on Fri Jan 20 2023*/
2680
+ @font-face {
2681
+ font-family: "utah design system";
2682
+ src: url("https://cdn.utah.gov/design-system/fonts/utah-design-system.eot");
2683
+ src: url("https://cdn.utah.gov/design-system/fonts/utah-design-system.eot?#iefix") format("embedded-opentype"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.woff") format("woff"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.ttf") format("truetype"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.svg#utah-design-system") format("svg");
2684
+ font-weight: normal;
2685
+ font-style: normal;
2686
+ }
2687
+ .utah-design-system {
2688
+ --icon-check-mark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12.15'%3E%3Cg%3E%3Cpath d='M6.185,12.15L0,5.966,2.335,3.631l3.85,3.849L13.665,0l2.335,2.335L6.185,12.15Z' style='fill: %23fff;'/%3E%3C/g%3E%3C/svg%3E");
2689
+ --icon-chevron-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg%3E%3Crect width='14' height='14' style='fill: none;'/%3E%3Cpath d='M3.142,5l3.716,3.71,3.717-3.71,1.142,1.142-4.859,4.858L2,6.142l1.142-1.142Z' style='fill: %23474747;'/%3E%3C/g%3E%3C/svg%3E");
2690
+ }
2691
+
2692
+ .utah-design-system [class*=utds-icon-after-]::after {
2693
+ display: inline-block;
2694
+ font-family: "utah design system";
2695
+ font-style: normal;
2696
+ font-weight: normal;
2697
+ line-height: 1;
2698
+ -webkit-font-smoothing: antialiased;
2699
+ -moz-osx-font-smoothing: grayscale;
2700
+ margin-left: var(--spacing-2xs);
2701
+ }
2702
+
2703
+ .utah-design-system [class*=utds-icon-before-]::before {
2704
+ display: inline-block;
2705
+ font-family: "utah design system";
2706
+ font-style: normal;
2707
+ font-weight: normal;
2708
+ line-height: 1;
2709
+ -webkit-font-smoothing: antialiased;
2710
+ -moz-osx-font-smoothing: grayscale;
2711
+ margin-right: var(--spacing-2xs);
2712
+ }
2713
+
2714
+ .utah-design-system .utds-icon-before-external-link::before,
2715
+ .utah-design-system .utds-icon-after-external-link::after {
2716
+ content: "A";
2717
+ font-size: 0.65em;
2718
+ }
2719
+
2720
+ .utah-design-system .utds-icon-before-waffle::before,
2721
+ .utah-design-system .utds-icon-after-waffle::after {
2722
+ content: "B";
2723
+ }
2724
+
2725
+ .utah-design-system .utds-icon-before-alert::before,
2726
+ .utah-design-system .utds-icon-after-alert::after {
2727
+ content: "C";
2728
+ }
2729
+
2730
+ .utah-design-system .utds-icon-before-help::before,
2731
+ .utah-design-system .utds-icon-after-help::after {
2732
+ content: "D";
2733
+ }
2734
+
2735
+ .utah-design-system .utds-icon-before-bookmark::before,
2736
+ .utah-design-system .utds-icon-after-bookmark::after {
2737
+ content: "E";
2738
+ }
2739
+
2740
+ .utah-design-system .utds-icon-before-search::before,
2741
+ .utah-design-system .utds-icon-after-search::after {
2742
+ content: "F";
2743
+ }
2744
+
2745
+ .utah-design-system .utds-icon-before-check::before,
2746
+ .utah-design-system .utds-icon-after-check::after {
2747
+ content: "G";
2748
+ }
2749
+
2750
+ .utah-design-system .utds-icon-before-star::before,
2751
+ .utah-design-system .utds-icon-after-star::after {
2752
+ content: "H";
2753
+ }
2754
+
2755
+ .utah-design-system .utds-icon-before-info::before,
2756
+ .utah-design-system .utds-icon-after-info::after {
2757
+ content: "I";
2758
+ }
2759
+
2760
+ .utah-design-system .utds-icon-before-unfold-less::before,
2761
+ .utah-design-system .utds-icon-after-unfold-less::after {
2762
+ content: "J";
2763
+ }
2764
+
2765
+ .utah-design-system .utds-icon-before-unfold-more::before,
2766
+ .utah-design-system .utds-icon-after-unfold-more::after {
2767
+ content: "K";
2768
+ }
2769
+
2770
+ .utah-design-system .utds-icon-before-circle-chevron-down::before,
2771
+ .utah-design-system .utds-icon-after-circle-chevron-down::after {
2772
+ content: "L";
2773
+ }
2774
+
2775
+ .utah-design-system .utds-icon-before-circle-chevron-up::before,
2776
+ .utah-design-system .utds-icon-after-circle-chevron-up::after {
2777
+ content: "M";
2778
+ }
2779
+
2780
+ .utah-design-system .utds-icon-before-chevron-up::before,
2781
+ .utah-design-system .utds-icon-after-chevron-up::after {
2782
+ content: "N";
2783
+ }
2784
+
2785
+ .utah-design-system .utds-icon-before-chevron-right::before,
2786
+ .utah-design-system .utds-icon-after-chevron-right::after {
2787
+ content: "O";
2788
+ }
2789
+
2790
+ .utah-design-system .utds-icon-before-chevron-down::before,
2791
+ .utah-design-system .utds-icon-after-chevron-down::after {
2792
+ content: "P";
2793
+ }
2794
+
2795
+ .utah-design-system .utds-icon-before-chevron-left::before,
2796
+ .utah-design-system .utds-icon-after-chevron-left::after {
2797
+ content: "Q";
2798
+ }
2799
+
2800
+ .utah-design-system .utds-icon-before-arrow-up::before,
2801
+ .utah-design-system .utds-icon-after-arrow-up::after {
2802
+ content: "R";
2803
+ }
2804
+
2805
+ .utah-design-system .utds-icon-before-arrow-right::before,
2806
+ .utah-design-system .utds-icon-after-arrow-right::after {
2807
+ content: "S";
2808
+ }
2809
+
2810
+ .utah-design-system .utds-icon-before-arrow-down::before,
2811
+ .utah-design-system .utds-icon-after-arrow-down::after {
2812
+ content: "T";
2813
+ }
2814
+
2815
+ .utah-design-system .utds-icon-before-arrow-left::before,
2816
+ .utah-design-system .utds-icon-after-arrow-left::after {
2817
+ content: "U";
2818
+ }
2819
+
2820
+ .utah-design-system .utds-icon-before-plus::before,
2821
+ .utah-design-system .utds-icon-after-plus::after {
2822
+ content: "V";
2823
+ }
2824
+
2825
+ .utah-design-system .utds-icon-before-minus::before,
2826
+ .utah-design-system .utds-icon-after-minus::after {
2827
+ content: "W";
2828
+ }
2829
+
2830
+ .utah-design-system .utds-icon-before-x-icon::before,
2831
+ .utah-design-system .utds-icon-after-x-icon::after {
2832
+ content: "X";
2833
+ }
2834
+
2835
+ .utah-design-system .utds-icon-before-edit::before,
2836
+ .utah-design-system .utds-icon-after-edit::after {
2837
+ content: "Y";
2838
+ }
2839
+
2840
+ .utah-design-system .utds-icon-before-edit-box::before,
2841
+ .utah-design-system .utds-icon-after-edit-box::after {
2842
+ content: "Z";
2843
+ }
2844
+
2845
+ .utah-design-system .utds-icon-before-verified::before,
2846
+ .utah-design-system .utds-icon-after-verified::after {
2847
+ content: "a";
2848
+ }
2849
+
2850
+ .utah-design-system .utds-icon-before-gear::before,
2851
+ .utah-design-system .utds-icon-after-gear::after {
2852
+ content: "b";
2853
+ }
2854
+
2855
+ .utah-design-system .utds-icon-before-doc::before,
2856
+ .utah-design-system .utds-icon-after-doc::after {
2857
+ content: "c";
2858
+ }
2859
+
2860
+ .utah-design-system .utds-icon-before-doc-square::before,
2861
+ .utah-design-system .utds-icon-after-doc-square::after {
2862
+ content: "d";
2863
+ }
2864
+
2865
+ .utah-design-system .utds-icon-before-warning::before,
2866
+ .utah-design-system .utds-icon-after-warning::after {
2867
+ content: "e";
2868
+ }
2869
+
2870
+ .utah-design-system .utds-icon-before-error::before,
2871
+ .utah-design-system .utds-icon-after-error::after {
2872
+ content: "f";
2873
+ }
2874
+
2875
+ .utah-design-system .utds-icon-before-copy::before,
2876
+ .utah-design-system .utds-icon-after-copy::after {
2877
+ content: "g";
2878
+ }
2879
+
2880
+ .utah-design-system .utds-icon-before-home-menu::before,
2881
+ .utah-design-system .utds-icon-after-home-menu::after {
2882
+ content: "h";
2883
+ }
2884
+
2885
+ .utah-design-system .utds-icon-before-hamburger::before,
2886
+ .utah-design-system .utds-icon-after-hamburger::after {
2887
+ content: "i";
2888
+ }
2889
+
2890
+ .utah-design-system .utds-icon-before-account::before,
2891
+ .utah-design-system .utds-icon-after-account::after {
2892
+ content: "j";
2893
+ }
2894
+
2895
+ /*
2896
+ ############ _settings-index.scss ############
2897
+ variables and settings
2898
+ */
2899
+ .utah-design-system {
2900
+ /* color */
2901
+ /* ######## Pick these colors to match your desired style ######## */
2902
+ --primary-color: purple;
2903
+ --primary-color-dark: rgb(50, 0, 50);
2904
+ --primary-color-light: rgb(219, 159, 219);
2905
+ --gray-on-primary-color: #474747;
2906
+ --secondary-color: rgb(0, 255, 136);
2907
+ --secondary-color-dark: rgb(0, 66, 35);
2908
+ --secondary-color-light: rgb(183, 250, 218);
2909
+ --gray-on-secondary-color: #474747;
2910
+ --accent-color: gold;
2911
+ --accent-color-dark: rgb(114, 97, 0);
2912
+ --accent-color-light: rgb(245, 238, 196);
2913
+ --gray-on-accent-color: #474747;
2914
+ --form-ele-color: #2765e4;
2915
+ --form-ele-color-light: #7aa0ee;
2916
+ --form-ele-disabled-color: #949494;
2917
+ /* ######## --------------------------------------------- ######## */
2918
+ --gray-color: #474747;
2919
+ --gray-medium-color: #616161;
2920
+ --gray-3-1-contrast: #949494;
2921
+ --gray-medium-light-color: #d7d7d7;
2922
+ --gray-light-color: #f1f1f1;
2923
+ --gray-dark-color: #333333;
2924
+ --hover-gray-color: rgba(0,0,0,0.07);
2925
+ --hover-gray-color-opaque: rgba(233,233,233);
2926
+ --code-color: #e4e4e4;
2927
+ --gray-border: #d7d7d7;
2928
+ --danger-color: #ba0000;
2929
+ --warning-color: #ba6300;
2930
+ --info-color: var(--secondary-color);
2931
+ --success-color: #2f8700;
2932
+ /* transition timings */
2933
+ --timing-xquick: 100ms;
2934
+ --timing-quick: 200ms;
2935
+ --timing-medium: 400ms;
2936
+ --timing-slow: 600ms;
2937
+ /* rounded corners */
2938
+ --radius-small1x: 3px;
2939
+ --radius-small: 6px;
2940
+ --radius-medium: 9px;
2941
+ --radius-large: 12px;
2942
+ --radius-circle: 999px;
2943
+ /* form element sizes */
2944
+ --form-ele-small4x: .75rem;
2945
+ --form-ele-small3x: 1rem;
2946
+ --form-ele-small2x: 1.25rem;
2947
+ --form-ele-small1x: 1.5rem;
2948
+ --form-ele-small: 1.875rem;
2949
+ --form-ele-medium: 2.25rem;
2950
+ --form-ele-large: 2.5rem;
2951
+ --form-ele-large1x: 3.125rem;
2952
+ --form-checkbox-small: 0.875rem;
2953
+ --form-checkbox-medium: 1.125rem;
2954
+ --form-checkbox-large: 1.375rem;
2955
+ /* content layout sizes */
2956
+ --content-width-narrow: 800px;
2957
+ --content-width: 1224px;
2958
+ --content-width-wide: 1432px;
2959
+ --documentation-width: 700px;
2960
+ --documentation-left-width: 200px;
2961
+ --documentation-right-width: 200px;
2962
+ --documentation-padding: var(--spacing-2xl) var(--spacing-xl);
2963
+ /* elevation box shadows */
2964
+ --drop-shadow-color: rgba(0, 0, 0, 0.3);
2965
+ --elevation-small: 0 3px 6px var(--drop-shadow-color);
2966
+ --elevation-medium: 0 6px 12px var(--drop-shadow-color);
2967
+ --elevation-large: 0 12px 16px var(--drop-shadow-color);
2968
+ }
2969
+
2970
+ /* color utility classes */
2971
+ .primary-color-background {
2972
+ background-color: var(--primary-color);
2973
+ }
2974
+
2975
+ .primary-color-dark-background {
2976
+ background-color: var(--primary-color-dark);
2977
+ }
2978
+
2979
+ .primary-color-light-background {
2980
+ background-color: var(--primary-color-light);
2981
+ }
2982
+
2983
+ .gray-on-primary-background {
2984
+ background-color: var(--gray-on-primary-color);
2985
+ }
2986
+
2987
+ .primary-color {
2988
+ color: var(--primary-color);
2989
+ }
2990
+
2991
+ .primary-color-border {
2992
+ border-color: var(--primary-color);
2993
+ }
2994
+
2995
+ .secondary-color-background {
2996
+ background-color: var(--secondary-color);
2997
+ }
2998
+
2999
+ .secondary-color-dark-background {
3000
+ background-color: var(--secondary-color-dark);
3001
+ }
3002
+
3003
+ .secondary-color-light-background {
3004
+ background-color: var(--secondary-color-light);
3005
+ }
3006
+
3007
+ .gray-on-secondary-background {
3008
+ background-color: var(--gray-on-secondary-color);
3009
+ }
3010
+
3011
+ .secondary-color {
3012
+ color: var(--secondary-color);
3013
+ }
3014
+
3015
+ .secondary-color-border {
3016
+ border-color: var(--secondary-color);
3017
+ }
3018
+
3019
+ .accent-color-background {
3020
+ background-color: var(--accent-color);
3021
+ }
3022
+
3023
+ .accent-color-dark-background {
3024
+ background-color: var(--accent-color-dark);
3025
+ }
3026
+
3027
+ .accent-color-light-background {
3028
+ background-color: var(--accent-color-light);
3029
+ }
3030
+
3031
+ .gray-on-accent-background {
3032
+ background-color: var(--gray-on-accent-color);
3033
+ }
3034
+
3035
+ .accent-color {
3036
+ color: var(--accent-color);
3037
+ }
3038
+
3039
+ .accent-color-border {
3040
+ border-color: var(--accent-color);
3041
+ }
3042
+
3043
+ .gray-color-background {
3044
+ background-color: var(--gray-color);
3045
+ }
3046
+
3047
+ .gray-color-light-background {
3048
+ background-color: var(--gray-light-color);
3049
+ }
3050
+
3051
+ .white-color {
3052
+ color: white;
3053
+ }
3054
+
3055
+ .background-frosted-dark {
3056
+ background: rgba(0, 0, 0, 0.6);
3057
+ backdrop-filter: blur(16px) brightness(1.5);
3058
+ -webkit-backdrop-filter: blur(16px) brightness(1.5);
3059
+ }
3060
+
3061
+ .background-frosted-light {
3062
+ background: rgba(255, 255, 255, 0.1);
3063
+ backdrop-filter: blur(16px);
3064
+ -webkit-backdrop-filter: blur(16px);
3065
+ }
3066
+
3067
+ .backdrop-dark {
3068
+ background: rgba(0, 0, 0, 0.6);
3069
+ backdrop-filter: blur(6px) brightness(60%);
3070
+ }
3071
+
3072
+ .utah-design-system .popup__wrapper {
3073
+ position: absolute;
3074
+ z-index: 100;
3075
+ background: none transparent;
3076
+ left: 0;
3077
+ top: 0;
3078
+ transition: opacity 100ms ease-in-out;
3079
+ }
3080
+
3081
+ .utah-design-system .popup__wrapper--visible {
3082
+ opacity: 1;
3083
+ }
3084
+
3085
+ .utah-design-system .popup__wrapper--visible .popup__content {
3086
+ transform: scale(1);
3087
+ }
3088
+
3089
+ .utah-design-system .popup__wrapper--hidden {
3090
+ opacity: 0;
3091
+ pointer-events: none;
3092
+ }
3093
+
3094
+ .utah-design-system .popup__wrapper--hidden .popup__content {
3095
+ transform: scale(0.7);
3096
+ }
3097
+
3098
+ .utah-design-system .popup__wrapper--close-button-absolute .popup__close-button {
3099
+ position: absolute;
3100
+ top: var(--spacing-xs);
3101
+ right: var(--spacing-xs);
3102
+ }
3103
+
3104
+ .utah-design-system .popup__content {
3105
+ background: white;
3106
+ border-radius: var(--radius-small);
3107
+ border: 1px solid var(--gray-3-1-contrast);
3108
+ box-sizing: border-box;
3109
+ min-width: 180px;
3110
+ padding: var(--spacing-s);
3111
+ transition: transform 100ms ease-in-out;
3112
+ box-shadow: var(--elevation-small);
3113
+ }
3114
+
3115
+ .utah-design-system .popup__close-button {
3116
+ float: right;
3117
+ }
3118
+
3119
+ .utah-design-system .popup__close-button .utds-icon-before-x-icon::before {
3120
+ font-size: 0.7rem;
3121
+ }
3122
+
3123
+ .utah-design-system .popup__arrow {
3124
+ visibility: hidden;
3125
+ }
3126
+
3127
+ .utah-design-system .popup__arrow, .utah-design-system .popup__arrow::before {
3128
+ position: absolute;
3129
+ width: 9px;
3130
+ height: 9px;
3131
+ background: inherit;
3132
+ z-index: -1;
3133
+ }
3134
+
3135
+ .utah-design-system .popup__arrow::before {
3136
+ visibility: visible;
3137
+ content: "";
3138
+ transform: rotate(45deg);
3139
+ }
3140
+
3141
+ .utah-design-system .popup__wrapper[data-popper-placement^=top] .popup__content {
3142
+ transform-origin: bottom;
3143
+ }
3144
+
3145
+ .utah-design-system .popup__wrapper[data-popper-placement^=top] .popup__arrow {
3146
+ bottom: -5px;
3147
+ }
3148
+
3149
+ .utah-design-system .popup__wrapper[data-popper-placement^=top] .popup__arrow::before {
3150
+ border-bottom: 1px solid var(--gray-3-1-contrast);
3151
+ border-right: 1px solid var(--gray-3-1-contrast);
3152
+ }
3153
+
3154
+ .utah-design-system .popup__wrapper[data-popper-placement^=bottom] .popup__content {
3155
+ transform-origin: top;
3156
+ }
3157
+
3158
+ .utah-design-system .popup__wrapper[data-popper-placement^=bottom] .popup__arrow {
3159
+ top: -6px;
3160
+ }
3161
+
3162
+ .utah-design-system .popup__wrapper[data-popper-placement^=bottom] .popup__arrow::before {
3163
+ border-top: 1px solid var(--gray-3-1-contrast);
3164
+ border-left: 1px solid var(--gray-3-1-contrast);
3165
+ }
3166
+
3167
+ .utah-design-system .popup__wrapper[data-popper-placement^=left] .popup__content {
3168
+ transform-origin: right;
3169
+ }
3170
+
3171
+ .utah-design-system .popup__wrapper[data-popper-placement^=left] .popup__arrow {
3172
+ right: -5px;
3173
+ }
3174
+
3175
+ .utah-design-system .popup__wrapper[data-popper-placement^=left] .popup__arrow::before {
3176
+ border-top: 1px solid var(--gray-3-1-contrast);
3177
+ border-right: 1px solid var(--gray-3-1-contrast);
3178
+ }
3179
+
3180
+ .utah-design-system .popup__wrapper[data-popper-placement^=right] .popup__content {
3181
+ transform-origin: left;
3182
+ }
3183
+
3184
+ .utah-design-system .popup__wrapper[data-popper-placement^=right] .popup__arrow {
3185
+ left: -6px;
3186
+ }
3187
+
3188
+ .utah-design-system .popup__wrapper[data-popper-placement^=right] .popup__arrow::before {
3189
+ border-bottom: 1px solid var(--gray-3-1-contrast);
3190
+ border-left: 1px solid var(--gray-3-1-contrast);
3191
+ }
3192
+
3193
+ .utah-design-system .tooltip__wrapper {
3194
+ position: absolute;
3195
+ z-index: 110;
3196
+ background: none transparent;
3197
+ left: 0;
3198
+ top: 0;
3199
+ transition: opacity 100ms ease-in-out;
3200
+ }
3201
+
3202
+ .utah-design-system .tooltip__wrapper--visible {
3203
+ opacity: 1;
3204
+ }
3205
+
3206
+ .utah-design-system .tooltip__wrapper--visible .tooltip__content {
3207
+ transform: scale(1);
3208
+ }
3209
+
3210
+ .utah-design-system .tooltip__wrapper--hidden {
3211
+ opacity: 0;
3212
+ pointer-events: none;
3213
+ }
3214
+
3215
+ .utah-design-system .tooltip__wrapper--hidden .tooltip__content {
3216
+ transform: scale(0.7);
3217
+ }
3218
+
3219
+ .utah-design-system .tooltip__content {
3220
+ border-radius: var(--radius-small);
3221
+ background: var(--gray-color);
3222
+ color: white;
3223
+ box-sizing: border-box;
3224
+ padding: var(--spacing-3xs) var(--spacing-s);
3225
+ transition: transform 100ms ease-in-out;
3226
+ box-shadow: var(--elevation-small);
3227
+ }
3228
+
3229
+ .utah-design-system .tooltip__arrow {
3230
+ visibility: hidden;
3231
+ }
3232
+
3233
+ .utah-design-system .tooltip__arrow, .utah-design-system .tooltip__arrow::before {
3234
+ position: absolute;
3235
+ width: 6px;
3236
+ height: 6px;
3237
+ background: inherit;
3238
+ z-index: -1;
3239
+ }
3240
+
3241
+ .utah-design-system .tooltip__arrow::before {
3242
+ visibility: visible;
3243
+ content: "";
3244
+ transform: rotate(45deg);
3245
+ }
3246
+
3247
+ .utah-design-system .tooltip__wrapper[data-popper-placement^=top] .tooltip__content {
3248
+ transform-origin: bottom;
3249
+ }
3250
+
3251
+ .utah-design-system .tooltip__wrapper[data-popper-placement^=top] .tooltip__arrow {
3252
+ bottom: -2px;
3253
+ }
3254
+
3255
+ .utah-design-system .tooltip__wrapper[data-popper-placement^=bottom] .tooltip__content {
3256
+ transform-origin: top;
3257
+ }
3258
+
3259
+ .utah-design-system .tooltip__wrapper[data-popper-placement^=bottom] .tooltip__arrow {
3260
+ top: -3px;
3261
+ }
3262
+
3263
+ .utah-design-system .tooltip__wrapper[data-popper-placement^=left] .tooltip__content {
3264
+ transform-origin: right;
3265
+ }
3266
+
3267
+ .utah-design-system .tooltip__wrapper[data-popper-placement^=left] .tooltip__arrow {
3268
+ right: -2px;
3269
+ }
3270
+
3271
+ .utah-design-system .tooltip__wrapper[data-popper-placement^=right] .tooltip__content {
3272
+ transform-origin: left;
3273
+ }
3274
+
3275
+ .utah-design-system .tooltip__wrapper[data-popper-placement^=right] .tooltip__arrow {
3276
+ left: -3px;
3277
+ }
3278
+
3279
+ .utah-design-system .modal-backdrop {
3280
+ position: fixed;
3281
+ width: 100vw;
3282
+ height: 100vh;
3283
+ top: 0;
3284
+ left: 0;
3285
+ z-index: 1000;
3286
+ }
3287
+
3288
+ .utah-design-system .search-modal__form {
3289
+ position: fixed;
3290
+ top: 25%;
3291
+ z-index: 1010;
3292
+ }
3293
+
3294
+ .utah-design-system .search-modal__input {
3295
+ border-radius: var(--radius-circle);
3296
+ border: none;
3297
+ width: 50vw;
3298
+ padding: var(--spacing) 170px var(--spacing) var(--spacing-3xl);
3299
+ font-size: var(--font-size-l);
3300
+ }
3301
+
3302
+ .utah-design-system .search-modal__button-wrapper {
3303
+ position: absolute;
3304
+ right: var(--spacing-s);
3305
+ }
3306
+
3307
+ .utah-design-system .search-modal__close-button-wrapper {
3308
+ position: fixed;
3309
+ top: var(--spacing);
3310
+ right: var(--spacing);
3311
+ z-index: 1010;
3312
+ }
3313
+
3314
+ .utah-design-system .search-modal__close-button [class*=utds-icon-before-]::before {
3315
+ font-size: 1rem;
3316
+ color: white;
3317
+ }
3318
+
3319
+ .utah-design-system .search-modal__close-button:hover {
3320
+ background: white;
3321
+ }
3322
+
3323
+ .utah-design-system .search-modal__close-button:hover [class*=utds-icon-before-]::before {
3324
+ color: var(--primary-color);
3325
+ }
3326
+
3327
+ .utah-design-system .search-modal__icon-search {
3328
+ position: absolute;
3329
+ top: calc(50% + 2px);
3330
+ left: var(--spacing);
3331
+ }
3332
+
3333
+ .utah-design-system .search-modal__icon-search[class*=utds-icon-before-]::before {
3334
+ display: block;
3335
+ font-size: 1.3rem;
3336
+ }
3337
+
3338
+ .documentation-template {
3339
+ display: flex;
3340
+ flex-direction: row;
3341
+ width: 100%;
3342
+ max-width: var(--content-width-wide);
3343
+ justify-content: space-around;
3344
+ align-items: flex-start;
3345
+ }
3346
+
3347
+ .documentation-template__wrapper {
3348
+ display: flex;
3349
+ justify-content: center;
3350
+ }
3351
+
3352
+ .documentation-template__side-panel-left {
3353
+ border-right: 1px solid var(--gray-border);
3354
+ padding: var(--documentation-padding);
3355
+ width: var(--documentation-left-width);
3356
+ }
3357
+
3358
+ .documentation-template__content {
3359
+ flex: 1 1 auto;
3360
+ max-width: var(--documentation-width);
3361
+ padding: var(--documentation-padding);
3362
+ }
3363
+
3364
+ .documentation-template__content h1 {
3365
+ margin: calc(-1 * var(--spacing-xs)) 0 0 0;
3366
+ }
3367
+
3368
+ .documentation-template__content code svg {
3369
+ height: 10px;
3370
+ }
3371
+
3372
+ .documentation-template__content table .props-code-wrapper {
3373
+ display: flex;
3374
+ flex-direction: row;
3375
+ gap: var(--spacing-xs);
3376
+ flex-wrap: wrap;
3377
+ }
3378
+
3379
+ .documentation-template__side-panel-right {
3380
+ position: sticky;
3381
+ top: 0;
3382
+ border-left: 1px solid var(--gray-border);
3383
+ padding: var(--documentation-padding);
3384
+ width: var(--documentation-right-width);
3385
+ }
3386
+
3387
+ .landing-page-template {
3388
+ display: flex;
3389
+ justify-content: center;
3390
+ align-items: center;
3391
+ flex-direction: column;
3392
+ }
3393
+
3394
+ .landing-page-template .content-width {
3395
+ max-width: var(--content-width-narrow);
3396
+ }
3397
+
3398
+ input.input--height-small,
3399
+ .input--height-small {
3400
+ min-height: var(--form-ele-small);
3401
+ }
3402
+
3403
+ input.input--height-small1x,
3404
+ .input--height-small1x {
3405
+ min-height: var(--form-ele-small1x);
3406
+ }
3407
+
3408
+ .spinner {
3409
+ display: flex;
3410
+ align-items: center;
3411
+ justify-content: center;
3412
+ overflow: visible;
3413
+ vertical-align: middle;
3414
+ }
3415
+
3416
+ .spinner svg {
3417
+ display: block;
3418
+ }
3419
+
3420
+ .spinner svg path {
3421
+ fill: none;
3422
+ }
3423
+
3424
+ .spinner__animation {
3425
+ animation: spinner-animation 0.5s linear infinite;
3426
+ }
3427
+
3428
+ .spinner__track {
3429
+ stroke: #b0b0b0;
3430
+ }
3431
+
3432
+ .spinner__value {
3433
+ stroke: var(--form-ele-color);
3434
+ stroke-linecap: round;
3435
+ transform-origin: center;
3436
+ transition: stroke-dashoffset 0.2s cubic-bezier(0.4, 1, 0.75, 0.9);
3437
+ }
3438
+
3439
+ @keyframes spinner-animation {
3440
+ 0% {
3441
+ transform: rotate(0deg);
3442
+ }
3443
+ 100% {
3444
+ transform: rotate(1turn);
3445
+ }
3446
+ }
3447
+ table {
3448
+ border-collapse: collapse;
3449
+ }
3450
+
3451
+ table thead {
3452
+ border-bottom: 1px solid var(--gray-color);
3453
+ }
3454
+
3455
+ table thead tr th {
3456
+ text-align: center;
3457
+ vertical-align: bottom;
3458
+ font-weight: bold;
3459
+ padding: var(--spacing-s);
3460
+ }
3461
+
3462
+ table thead tr th.text-left {
3463
+ text-align: left;
3464
+ }
3465
+
3466
+ table thead tr th.text-right {
3467
+ text-align: right;
3468
+ }
3469
+
3470
+ table tbody tr td {
3471
+ vertical-align: top;
3472
+ padding: var(--spacing-s);
3473
+ }
3474
+
3475
+ table.table--alt tbody tr:nth-child(2n) td {
3476
+ background-color: #F5F5F5;
3477
+ }
3478
+
3479
+ table.table--lines-x tbody tr td {
3480
+ border-bottom: 1px solid var(--gray-3-1-contrast);
3481
+ }
3482
+
3483
+ table.table--lines-x tbody tr:last-child td {
3484
+ border-bottom: 1px solid var(--gray-color);
3485
+ }
3486
+
3487
+ table.table--v-align-center tbody tr td {
3488
+ vertical-align: middle;
3489
+ }
3490
+
3491
+ table.table--condensed thead tr th {
3492
+ padding: var(--spacing-2xs);
3493
+ }
3494
+
3495
+ table.table--condensed tbody tr td {
3496
+ padding: var(--spacing-2xs);
3497
+ }
3498
+
3499
+ table .table-header {
3500
+ position: relative;
3501
+ }
3502
+
3503
+ table .table-header--sorted::before {
3504
+ content: "";
3505
+ height: 7px;
3506
+ width: 100%;
3507
+ background: var(--primary-color);
3508
+ display: block;
3509
+ position: absolute;
3510
+ left: 0;
3511
+ bottom: -4px;
3512
+ border-radius: var(--radius-circle);
3513
+ }
3514
+
3515
+ .utah-design-system .on-this-page {
3516
+ font-size: var(--font-size-xs);
3517
+ }
3518
+
3519
+ .utah-design-system .on-this-page__header {
3520
+ font-size: var(--font-size);
3521
+ font-weight: bold;
3522
+ }
3523
+
3524
+ .utah-design-system .on-this-page__list {
3525
+ list-style-type: none;
3526
+ padding: 0;
3527
+ margin-left: calc(0px - var(--spacing));
3528
+ }
3529
+
3530
+ .utah-design-system .on-this-page__list ul {
3531
+ margin-left: var(--spacing);
3532
+ }
3533
+
3534
+ .utah-design-system .on-this-page__list a[href] {
3535
+ text-decoration: none;
3536
+ color: var(--gray-color);
3537
+ padding: var(--spacing-2xs) var(--spacing);
3538
+ display: block;
3539
+ margin-right: calc(0px - var(--spacing));
3540
+ border-radius: var(--radius-circle);
3541
+ transition: all var(--timing-quick) ease-in-out;
3542
+ }
3543
+
3544
+ .utah-design-system .on-this-page__list a[href]:hover {
3545
+ box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
3546
+ color: var(--primary-color);
3547
+ }
3548
+
3549
+ /*
3550
+ ############ _popup.scss ############
3551
+ */
3552
+ .utah-design-system .color-family {
3553
+ display: flex;
3554
+ margin: 0 0 var(--spacing-2xs) 0;
3555
+ }
3556
+
3557
+ .utah-design-system .color-family__title {
3558
+ margin: 0 var(--spacing-s) 0 0;
3559
+ padding: 0 var(--spacing-s);
3560
+ color: white;
3561
+ border-radius: 999px;
3562
+ min-height: unset;
3563
+ border: none;
3564
+ }
3565
+
3566
+ .utah-design-system .color-family__title.color-is-light {
3567
+ color: var(--gray-color);
3568
+ }
3569
+
3570
+ .utah-design-system .color-family__swatches {
3571
+ list-style-type: none;
3572
+ margin: 0 0 0 auto;
3573
+ padding: 0;
3574
+ display: flex;
3575
+ gap: 2px;
3576
+ }
3577
+
3578
+ .utah-design-system .color-family__swatches li {
3579
+ padding: 0;
3580
+ }
3581
+
3582
+ .utah-design-system .color-family__swatch {
3583
+ width: 20px;
3584
+ height: 20px;
3585
+ border: none;
3586
+ border-radius: 0;
3587
+ min-height: auto;
3588
+ padding: 0;
3589
+ }
3590
+
3591
+ /*
3592
+ ############ _popup.scss ############
3593
+ */
3594
+ .popup {
3595
+ position: fixed;
3596
+ top: 25%;
3597
+ left: 2%;
3598
+ background-color: white;
3599
+ border-radius: 10px;
3600
+ box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
3601
+ z-index: 1000;
3602
+ }
3603
+
3604
+ .popup__title-bar {
3605
+ display: flex;
3606
+ justify-content: space-between;
3607
+ align-items: center;
3608
+ }
3609
+
3610
+ .popup__title {
3611
+ padding: var(--spacing);
3612
+ }
3613
+
3614
+ /*
3615
+ ############ _components-index.scss ############
3616
+ component specific, BEM (Block, Element, Modifier)
3617
+ @media for each component should be contained with the component.
3618
+ */
3619
+ /* ---- Base Components ---- */
3620
+ /* ---- Project Components ---- */
3621
+ @keyframes fade-in {
3622
+ 0% {
3623
+ opacity: 0;
3624
+ }
3625
+ 100% {
3626
+ opacity: 1;
3627
+ }
3628
+ }
3629
+ @keyframes drop-in {
3630
+ 0% {
3631
+ opacity: 0;
3632
+ transform: translate(-50%, -100px);
3633
+ }
3634
+ 100% {
3635
+ opacity: 1;
3636
+ transform: translate(-50%, 0);
3637
+ }
3638
+ }
3639
+ @keyframes pop-in {
3640
+ 0% {
3641
+ opacity: 0;
3642
+ transform: scale(0.7);
3643
+ }
3644
+ 100% {
3645
+ opacity: 1;
3646
+ transform: scale(1);
3647
+ }
3648
+ }
3649
+ @keyframes pop-in-center {
3650
+ 0% {
3651
+ opacity: 0;
3652
+ transform: scale(0.7) translateX(-50%);
3653
+ }
3654
+ 100% {
3655
+ opacity: 1;
3656
+ transform: scale(1) translateX(-50%);
3657
+ }
3658
+ }
3659
+ /*
3660
+ ############ _utilities.scss ############
3661
+ utility classes, atomic css
3662
+ */
3663
+ .content-width {
3664
+ width: 100%;
3665
+ max-width: var(--content-width);
3666
+ }
3667
+
3668
+ .full-width {
3669
+ width: 100%;
3670
+ }
3671
+
3672
+ .visually-hidden {
3673
+ border: 0;
3674
+ clip: rect(0 0 0 0);
3675
+ height: 1px;
3676
+ margin: -1px;
3677
+ overflow: hidden;
3678
+ padding: 0;
3679
+ position: absolute;
3680
+ width: 1px;
3681
+ }
3682
+
3683
+ /* alignment */
3684
+ .text-left {
3685
+ text-align: left;
3686
+ }
3687
+
3688
+ .text-center {
3689
+ text-align: center;
3690
+ }
3691
+
3692
+ .text-right {
3693
+ text-align: right;
3694
+ }
3695
+
3696
+ .text-justify {
3697
+ text-align: justify;
3698
+ }
3699
+
3700
+ /* flex */
3701
+ .flex {
3702
+ display: flex;
3703
+ }
3704
+
3705
+ .flex-row {
3706
+ flex-direction: row;
3707
+ }
3708
+
3709
+ .flex-row-reverse {
3710
+ flex-direction: row-reverse;
3711
+ }
3712
+
3713
+ .flex-col {
3714
+ flex-direction: column;
3715
+ }
3716
+
3717
+ .flex-col-reverse {
3718
+ flex-direction: column-reverse;
3719
+ }
3720
+
3721
+ .flex-wrap {
3722
+ flex-wrap: wrap;
3723
+ }
3724
+
3725
+ .flex-wrap-reverse {
3726
+ flex-wrap: wrap-reverse;
3727
+ }
3728
+
3729
+ .flex-nowrap {
3730
+ flex-wrap: nowrap;
3731
+ }
3732
+
3733
+ .flex-1 {
3734
+ flex: 1 1 0%;
3735
+ }
3736
+
3737
+ .flex-auto {
3738
+ flex: 1 1 auto;
3739
+ }
3740
+
3741
+ .flex-initial {
3742
+ flex: 0 1 auto;
3743
+ }
3744
+
3745
+ .flex-none {
3746
+ flex: none;
3747
+ }
3748
+
3749
+ /* flex - justify content */
3750
+ .justify-start {
3751
+ justify-content: flex-start;
3752
+ }
3753
+
3754
+ .justify-end {
3755
+ justify-content: flex-end;
3756
+ }
3757
+
3758
+ .justify-center {
3759
+ justify-content: center;
3760
+ }
3761
+
3762
+ .justify-between {
3763
+ justify-content: space-between;
3764
+ }
3765
+
3766
+ .justify-around {
3767
+ justify-content: space-around;
3768
+ }
3769
+
3770
+ .justify-evenly {
3771
+ justify-content: space-evenly;
3772
+ }
3773
+
3774
+ /* grid - justify self */
3775
+ .justify-self-auto {
3776
+ justify-self: auto;
3777
+ }
3778
+
3779
+ .justify-self-start {
3780
+ justify-self: start;
3781
+ }
3782
+
3783
+ .justify-self-end {
3784
+ justify-self: end;
3785
+ }
3786
+
3787
+ .justify-self-center {
3788
+ justify-self: center;
3789
+ }
3790
+
3791
+ .justify-self-stretch {
3792
+ justify-self: stretch;
3793
+ }
3794
+
3795
+ /* flex - align items */
3796
+ .items-start {
3797
+ align-items: flex-start;
3798
+ }
3799
+
3800
+ .items-end {
3801
+ align-items: flex-end;
3802
+ }
3803
+
3804
+ .items-center {
3805
+ align-items: center;
3806
+ }
3807
+
3808
+ .items-baseline {
3809
+ align-items: baseline;
3810
+ }
3811
+
3812
+ .items-stretch {
3813
+ align-items: stretch;
3814
+ }
3815
+
3816
+ /* flex - align self */
3817
+ .self-auto {
3818
+ align-self: auto;
3819
+ }
3820
+
3821
+ .self-start {
3822
+ align-self: flex-start;
3823
+ }
3824
+
3825
+ .self-end {
3826
+ align-self: flex-end;
3827
+ }
3828
+
3829
+ .self-center {
3830
+ align-self: center;
3831
+ }
3832
+
3833
+ .self-stretch {
3834
+ align-self: stretch;
3835
+ }
3836
+
3837
+ .self-baseline {
3838
+ align-self: baseline;
3839
+ }
3840
+
3841
+ /* flex/grid - gap */
3842
+ .gap-xs {
3843
+ gap: var(--spacing-xs);
3844
+ }
3845
+
3846
+ .gap-s {
3847
+ gap: var(--spacing-s);
3848
+ }
3849
+
3850
+ .gap {
3851
+ gap: var(--spacing);
3852
+ }
3853
+
3854
+ .gap-l {
3855
+ gap: var(--spacing-l);
3856
+ }
3857
+
3858
+ .flex-4up {
3859
+ flex: 0 1 25%;
3860
+ }
3861
+
3862
+ .flex-4up-gap {
3863
+ flex: 0 1 calc(25% - var(--spacing));
3864
+ }
3865
+
3866
+ .flex-3up-gap {
3867
+ flex: 0 1 calc(33% - var(--spacing));
3868
+ }
3869
+
3870
+ /* ----- Positioning ---- */
3871
+ .hcenter {
3872
+ position: absolute;
3873
+ left: 50%;
3874
+ transform: translateX(-50%);
3875
+ }
3876
+
3877
+ .vcenter {
3878
+ position: absolute;
3879
+ top: 50%;
3880
+ transform: translateY(-50%);
3881
+ }
3882
+
3883
+ .vcenter.right {
3884
+ right: 0;
3885
+ }
3886
+
3887
+ .vcenter.left {
3888
+ left: 0;
3889
+ }
3890
+
3891
+ .vcenter.hcenter {
3892
+ transform: translate(-50%, -50%);
3893
+ }
3894
+
3895
+ /* ----- Transformation ---- */
3896
+ .rotate90 {
3897
+ transform: rotate(90deg);
3898
+ }
3899
+
3900
+ .rotate180 {
3901
+ transform: rotate(180deg);
3902
+ }
3903
+
3904
+ .rotate270 {
3905
+ transform: rotate(270deg);
3906
+ }
3907
+
3908
+ /*
3909
+ PRINT SCSS
3910
+ */
3911
+ @media print {
3912
+ @page {
3913
+ size: 8.5in 11in;
3914
+ margin: 0.5in;
3915
+ }
3916
+ html, body {
3917
+ font-family: "Source Sans Pro", sans-serif;
3918
+ font-size: 8pt;
3919
+ height: auto;
3920
+ color: #000000;
3921
+ }
3922
+ .no-print {
3923
+ display: none;
3924
+ }
3925
+ .avoid {
3926
+ page-break-inside: avoid;
3927
+ }
3928
+ .page-break {
3929
+ page-break-after: always;
3930
+ }
3931
+ .print-page-no-margin {
3932
+ width: 8.5in;
3933
+ margin: 0;
3934
+ padding: 0;
3935
+ box-shadow: none;
3936
+ }
3937
+ }
3938
+ /*
3939
+ ############ _super-index.scss ############
3940
+ Overall overrides, @media, themes, etc. that supersede styles higher in the pyramid
3941
+ */
3942
+ /*
3943
+ ############ _tip-index.scss ############
3944
+ A place to add css temporarily
3945
+ NOTE: CSS added this this file should eventually be removed or
3946
+ located to the correct folder/file where it best belongs.
3947
+ */
1
3948
  .utds-citizen-experience-wrapper {
2
3949
  display: flex;
3
3950
  justify-content: flex-end;
4
3951
  flex: 1;
5
3952
  }
6
3953
 
7
- .utds-action-items-wrapper {
3954
+ .utah-design-system .utds-action-items-wrapper {
8
3955
  display: flex;
9
3956
  gap: var(--spacing);
10
3957
  margin-right: var(--spacing);
11
3958
  }
12
- .utds-header-action-item {
3959
+ .utah-design-system .utds-header-action-item {
13
3960
  display: flex;
14
3961
  align-items: center;
15
3962
  position: relative;
16
3963
  }
17
- .utds-header-action-item__icon-button.icon-button {
3964
+ .utah-design-system .utds-header-action-item__icon-button.icon-button {
18
3965
  border: 2px solid transparent;
19
3966
  position: relative;
20
3967
  }
21
- .utds-header-action-item__icon-button.icon-button:hover {
3968
+ .utah-design-system .utds-header-action-item__icon-button.icon-button:hover {
22
3969
  background: var(--hover-gray-color);
23
3970
  color: black;
24
3971
  }
25
- .utds-header-action-item__icon-button.icon-button:hover svg {
3972
+ .utah-design-system .utds-header-action-item__icon-button.icon-button:hover svg {
26
3973
  fill: black;
27
3974
  }
28
- .utds-header-action-item__icon-button--has-title .icon-button {
3975
+ .utah-design-system .utds-header-action-item__icon-button--has-title .icon-button {
29
3976
  padding: 0 var(--spacing-s);
30
3977
  flex-direction: row-reverse;
31
3978
  }
32
- .utds-header-action-item__icon-button svg {
3979
+ .utah-design-system .utds-header-action-item__icon-button svg {
33
3980
  width: 20px;
34
3981
  height: 20px;
35
3982
  fill: var(--gray-color);
36
3983
  }
37
- .utds-header-action-item__icon-button.icon-waffle .utds-icon-before-waffle::before {
3984
+ .utah-design-system .utds-header-action-item__icon-button.icon-waffle [class*=utds-icon-before-].utds-icon-before-waffle::before {
38
3985
  font-size: 17px;
39
3986
  }
40
- .utds-header-action-item__title {
3987
+ .utah-design-system .utds-header-action-item__title {
41
3988
  margin-left: var(--spacing-xs);
42
3989
  }
43
3990
 
@@ -63,7 +4010,6 @@ CSS Class Variables
63
4010
  --spacing-5xl: 80px;
64
4011
  --spacing-6xl: 96px;
65
4012
  }
66
-
67
4013
  .utah-design-system .m-spacing {
68
4014
  margin: var(--spacing);
69
4015
  }
@@ -283,6 +4229,10 @@ Font size variables
283
4229
  --font-size-5xl: 3rem;
284
4230
  --font-size-6xl: 3.5rem;
285
4231
  --font-size-7xl: 4.5rem;
4232
+ --font-weight-normal: 400;
4233
+ --font-weight-semi-bold: 600;
4234
+ --font-weight-bold: 700;
4235
+ --font-weight-black: 900;
286
4236
  }
287
4237
 
288
4238
  .font-size-2xs {
@@ -337,13 +4287,6 @@ Font size variables
337
4287
  font-size: var(--font-size-7xl);
338
4288
  }
339
4289
 
340
- .utah-design-system {
341
- --font-weight-normal: 400;
342
- --font-weight-semi-bold: 600;
343
- --font-weight-bold: 700;
344
- --font-weight-black: 900;
345
- }
346
-
347
4290
  .font-normal {
348
4291
  font-weight: var(--font-weight-normal);
349
4292
  }
@@ -529,6 +4472,18 @@ base color swatches for the design system
529
4472
  .utah-design-system .utds-icon-after-copy::after {
530
4473
  content: "g";
531
4474
  }
4475
+ .utah-design-system .utds-icon-before-home-menu::before,
4476
+ .utah-design-system .utds-icon-after-home-menu::after {
4477
+ content: "h";
4478
+ }
4479
+ .utah-design-system .utds-icon-before-hamburger::before,
4480
+ .utah-design-system .utds-icon-after-hamburger::after {
4481
+ content: "i";
4482
+ }
4483
+ .utah-design-system .utds-icon-before-account::before,
4484
+ .utah-design-system .utds-icon-after-account::after {
4485
+ content: "j";
4486
+ }
532
4487
 
533
4488
  /*
534
4489
  ############ _settings-index.scss ############
@@ -702,6 +4657,11 @@ variables and settings
702
4657
  -webkit-backdrop-filter: blur(16px);
703
4658
  }
704
4659
 
4660
+ .backdrop-dark {
4661
+ background: rgba(0, 0, 0, 0.6);
4662
+ backdrop-filter: blur(6px) brightness(60%);
4663
+ }
4664
+
705
4665
  .utah-design-system .popup__wrapper {
706
4666
  position: absolute;
707
4667
  z-index: 100;
@@ -875,7 +4835,7 @@ variables and settings
875
4835
  height: 100%;
876
4836
  width: auto;
877
4837
  fill: var(--primary-color);
878
- font-family: SourceSansPro-Regular, "Source Sans Pro";
4838
+ font-family: SourceSansPro-Regular, "Source Sans Pro", Arial, Helvetica, sans-serif;
879
4839
  font-weight: normal;
880
4840
  font-size: 14px;
881
4841
  display: block;
@@ -911,6 +4871,10 @@ variables and settings
911
4871
  width: 9px;
912
4872
  }
913
4873
 
4874
+ /*
4875
+ ############ _tools-index.scss ############
4876
+ scss mixins and functions
4877
+ */
914
4878
  .utah-design-system ul.vertical-menu {
915
4879
  list-style-type: none;
916
4880
  margin: 0;
@@ -936,6 +4900,7 @@ variables and settings
936
4900
  text-align: left;
937
4901
  text-decoration: none;
938
4902
  width: 100%;
4903
+ position: relative;
939
4904
  }
940
4905
  .utah-design-system .vertical-menu button.vertical-menu__button-title:hover,
941
4906
  .utah-design-system .vertical-menu a[href].vertical-menu__link-title:hover {
@@ -947,6 +4912,24 @@ variables and settings
947
4912
  .utah-design-system .vertical-menu a[href].vertical-menu__link-title:active {
948
4913
  transform: none;
949
4914
  }
4915
+ .utah-design-system .vertical-menu button.vertical-menu__button-title.menu-item--selected,
4916
+ .utah-design-system .vertical-menu a[href].vertical-menu__link-title.menu-item--selected {
4917
+ font-weight: bold;
4918
+ border-top-left-radius: 0;
4919
+ border-bottom-left-radius: 0;
4920
+ box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
4921
+ }
4922
+ .utah-design-system .vertical-menu button.vertical-menu__button-title.menu-item--selected::after,
4923
+ .utah-design-system .vertical-menu a[href].vertical-menu__link-title.menu-item--selected::after {
4924
+ content: "";
4925
+ position: absolute;
4926
+ left: -3px;
4927
+ top: 0;
4928
+ width: 5px;
4929
+ height: 100%;
4930
+ background: var(--primary-color);
4931
+ border-radius: var(--radius-circle);
4932
+ }
950
4933
  .utah-design-system .vertical-menu a.vertical-menu__link-title:hover {
951
4934
  box-shadow: none;
952
4935
  }
@@ -971,3 +4954,102 @@ variables and settings
971
4954
  .utah-design-system .vertical-menu .utds-icon-before-chevron-right.is-open {
972
4955
  transform: rotate(90deg);
973
4956
  }
4957
+
4958
+ .utah-design-system .main-menu__hamburger.icon-button .utds-icon-before-x-icon::before {
4959
+ font-size: 0.9rem;
4960
+ }
4961
+
4962
+ .utah-design-system.utds-header-mobile-menu,
4963
+ .utah-design-system .utds-header-mobile__utah-id-wrapper,
4964
+ .utah-design-system .icon-button.main-menu__hamburger,
4965
+ .utah-design-system .utds-header-mobile__vip-action-items--left,
4966
+ .utah-design-system .utds-header-mobile__vip-action-items--right {
4967
+ display: none;
4968
+ }
4969
+
4970
+ .utds-header-mobile-menu {
4971
+ opacity: 0;
4972
+ pointer-events: none;
4973
+ }
4974
+ .utds-header-mobile-menu.utah-design-system {
4975
+ transition: opacity 200ms ease;
4976
+ position: absolute;
4977
+ top: 106px;
4978
+ left: 0;
4979
+ width: 100vw;
4980
+ height: 100vh;
4981
+ z-index: 1000;
4982
+ background-color: transparent;
4983
+ }
4984
+ .utds-header-mobile-menu.is-open {
4985
+ opacity: 1;
4986
+ pointer-events: all;
4987
+ }
4988
+ .utds-header-mobile-menu__backdrop {
4989
+ background: rgba(0, 0, 0, 0.6);
4990
+ backdrop-filter: blur(6px) brightness(60%);
4991
+ position: absolute;
4992
+ top: 0;
4993
+ left: 0;
4994
+ width: 100%;
4995
+ height: 100%;
4996
+ }
4997
+ .utds-header-mobile-menu__wrapper {
4998
+ position: absolute;
4999
+ background: white;
5000
+ border-radius: var(--radius-medium);
5001
+ box-shadow: var(--elevation-small);
5002
+ margin: var(--spacing-s);
5003
+ width: calc(100% - 2 * var(--spacing-s));
5004
+ }
5005
+ .utds-header-mobile-menu__action-bar {
5006
+ background: var(--gray-light-color);
5007
+ border-top-right-radius: var(--radius-medium);
5008
+ border-top-left-radius: var(--radius-medium);
5009
+ display: flex;
5010
+ justify-content: center;
5011
+ align-items: center;
5012
+ box-sizing: border-box;
5013
+ gap: var(--spacing-s);
5014
+ }
5015
+ .utds-header-mobile-menu__action-item {
5016
+ position: relative;
5017
+ padding: var(--spacing-xs) 0;
5018
+ }
5019
+ .utds-header-mobile-menu__action-item--selected span.menu-chiclet::after {
5020
+ content: "";
5021
+ width: 100%;
5022
+ height: var(--spacing-2xs);
5023
+ background: var(--primary-color);
5024
+ display: block;
5025
+ position: absolute;
5026
+ bottom: 0;
5027
+ left: 0;
5028
+ border-top-left-radius: var(--spacing-2xs);
5029
+ border-top-right-radius: var(--spacing-2xs);
5030
+ outline: none;
5031
+ outline-offset: 0;
5032
+ }
5033
+ .utah-design-system .utds-header-mobile-menu__action-item .icon-button [class*=utds-icon-before-home]::before {
5034
+ font-size: 1.4rem;
5035
+ }
5036
+
5037
+ .utds-header-mobile-menu__content {
5038
+ padding: var(--spacing-s) var(--spacing);
5039
+ }
5040
+ .utds-header-mobile-menu__content .vertical-menu {
5041
+ border-left: 1px solid var(--gray-medium-light-color);
5042
+ }
5043
+ .utds-header-mobile-menu__content-item {
5044
+ display: none;
5045
+ }
5046
+ .utds-header-mobile-menu__content-item.is-open {
5047
+ display: block;
5048
+ }
5049
+
5050
+ .utds-header-mobile__utah-id-wrapper {
5051
+ padding: var(--spacing-xs) 0;
5052
+ }
5053
+ .utds-header-mobile__utah-id-wrapper button.utds-utah-id__button {
5054
+ min-height: var(--form-ele-small);
5055
+ }