@db-ux/core-foundations 4.3.1 → 4.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/build/styles/absolute.css +4 -4
- package/build/styles/animation/_animations.scss +0 -80
- package/build/styles/defaults/_default-properties.scss +4 -4
- package/build/styles/defaults/_default-variables.scss +4 -6
- package/build/styles/defaults/default-theme.css +1 -1
- package/build/styles/relative.css +4 -4
- package/build/styles/rollup.css +4 -4
- package/build/styles/webpack.css +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3020,12 +3020,12 @@ html::after {
|
|
|
3020
3020
|
}
|
|
3021
3021
|
@property --db-transition-timing-show {
|
|
3022
3022
|
syntax: "*";
|
|
3023
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3023
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3024
3024
|
inherits: true;
|
|
3025
3025
|
}
|
|
3026
3026
|
@property --db-transition-timing-hide {
|
|
3027
3027
|
syntax: "*";
|
|
3028
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3028
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3029
3029
|
inherits: true;
|
|
3030
3030
|
}
|
|
3031
3031
|
@property --db-transition-timing-emotional {
|
|
@@ -3040,12 +3040,12 @@ html::after {
|
|
|
3040
3040
|
}
|
|
3041
3041
|
@property --db-transition-straight-show {
|
|
3042
3042
|
syntax: "*";
|
|
3043
|
-
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3043
|
+
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3044
3044
|
inherits: true;
|
|
3045
3045
|
}
|
|
3046
3046
|
@property --db-transition-straight-hide {
|
|
3047
3047
|
syntax: "*";
|
|
3048
|
-
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3048
|
+
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3049
3049
|
inherits: true;
|
|
3050
3050
|
}
|
|
3051
3051
|
@property --db-transition-straight-emotional {
|
|
@@ -1,83 +1,3 @@
|
|
|
1
|
-
@keyframes show-right-to-left {
|
|
2
|
-
from {
|
|
3
|
-
transform: translateX(110%);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
to {
|
|
7
|
-
transform: translateX(0%);
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@keyframes hide-right-to-left {
|
|
12
|
-
from {
|
|
13
|
-
transform: translateX(0%);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
to {
|
|
17
|
-
transform: translateX(110%);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@keyframes show-left-to-right {
|
|
22
|
-
from {
|
|
23
|
-
transform: translateX(-110%);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
to {
|
|
27
|
-
transform: translateX(0%);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
@keyframes hide-left-to-right {
|
|
32
|
-
from {
|
|
33
|
-
transform: translateX(0%);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
to {
|
|
37
|
-
transform: translateX(-110%);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@keyframes show-bottom-to-top {
|
|
42
|
-
from {
|
|
43
|
-
transform: translateY(110%);
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
to {
|
|
47
|
-
transform: translateY(0%);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
@keyframes hide-bottom-to-top {
|
|
52
|
-
from {
|
|
53
|
-
transform: translateY(0%);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
to {
|
|
57
|
-
transform: translateY(110%);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@keyframes show-top-to-bottom {
|
|
62
|
-
from {
|
|
63
|
-
transform: translateY(-110%);
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
to {
|
|
67
|
-
transform: translateY(0%);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
@keyframes hide-top-to-bottom {
|
|
72
|
-
from {
|
|
73
|
-
transform: translateY(0%);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
to {
|
|
77
|
-
transform: translateY(-110%);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
1
|
@keyframes popover-animation {
|
|
82
2
|
0% {
|
|
83
3
|
opacity: 0;
|
|
@@ -2943,13 +2943,13 @@
|
|
|
2943
2943
|
|
|
2944
2944
|
@property --db-transition-timing-show {
|
|
2945
2945
|
syntax: "*";
|
|
2946
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
2946
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
2947
2947
|
inherits: true;
|
|
2948
2948
|
}
|
|
2949
2949
|
|
|
2950
2950
|
@property --db-transition-timing-hide {
|
|
2951
2951
|
syntax: "*";
|
|
2952
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
2952
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
2953
2953
|
inherits: true;
|
|
2954
2954
|
}
|
|
2955
2955
|
|
|
@@ -2967,13 +2967,13 @@
|
|
|
2967
2967
|
|
|
2968
2968
|
@property --db-transition-straight-show {
|
|
2969
2969
|
syntax: "*";
|
|
2970
|
-
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
2970
|
+
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
2971
2971
|
inherits: true;
|
|
2972
2972
|
}
|
|
2973
2973
|
|
|
2974
2974
|
@property --db-transition-straight-hide {
|
|
2975
2975
|
syntax: "*";
|
|
2976
|
-
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
2976
|
+
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
2977
2977
|
inherits: true;
|
|
2978
2978
|
}
|
|
2979
2979
|
|
|
@@ -496,14 +496,12 @@
|
|
|
496
496
|
--db-transition-duration-medium: 0.3s;
|
|
497
497
|
--db-transition-duration-fast: 0.15s;
|
|
498
498
|
--db-transition-duration-extra-fast: 0.075s;
|
|
499
|
-
--db-transition-timing-show: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
500
|
-
--db-transition-timing-hide: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
499
|
+
--db-transition-timing-show: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
500
|
+
--db-transition-timing-hide: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
501
501
|
--db-transition-timing-emotional: cubic-bezier(0.27, 0.05, 0.4, 0.95);
|
|
502
502
|
--db-transition-timing-functional: cubic-bezier(0.15, 0, 0.45, 1);
|
|
503
|
-
--db-transition-straight-show: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
504
|
-
|
|
505
|
-
--db-transition-straight-hide: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1) normal
|
|
506
|
-
both;
|
|
503
|
+
--db-transition-straight-show: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
504
|
+
--db-transition-straight-hide: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
507
505
|
--db-transition-straight-emotional: 0.3s cubic-bezier(0.27, 0.05, 0.4, 0.95);
|
|
508
506
|
--db-transition-straight-functional: 0.3s cubic-bezier(0.15, 0, 0.45, 1);
|
|
509
507
|
--db-opacity-3xs: 0.08;
|
|
@@ -94,4 +94,4 @@
|
|
|
94
94
|
--db-neutral-on-bg-vibrant-hovered
|
|
95
95
|
);--db-adaptive-on-bg-vibrant-pressed:var(
|
|
96
96
|
--db-neutral-on-bg-vibrant-pressed
|
|
97
|
-
)}}[data-mode]{background-color:var(--db-neutral-bg-basic-level-1-default);color:var(--db-neutral-on-bg-basic-emphasis-100-default)}[data-mode]:after,[data-mode]:before{--db-icon-color:var(--db-neutral-on-bg-basic-emphasis-100-default)}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@property --db-base-icon-weight-regular-desktop-headline-3xl{syntax:"<number>";initial-value:96;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-2xl{syntax:"<number>";initial-value:80;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-lg{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-md{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-sm{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-2xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-3xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-xs{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-desktop-body-lg{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-desktop-body-xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-desktop-body-2xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-desktop-body-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-regular-desktop-body-md{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-desktop-body-sm{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-desktop-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-desktop-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-desktop-body-xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-mobile-body-lg{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-body-md{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-mobile-body-sm{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-mobile-body-xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-body-xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-mobile-body-2xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-body-3xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-mobile-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-2xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-3xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-3xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-tablet-body-lg{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-tablet-body-md{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-tablet-body-sm{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-tablet-body-xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-tablet-body-xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-tablet-body-2xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-tablet-body-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-regular-tablet-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-tablet-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-lg{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-md{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-sm{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-2xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-2xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-3xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-3xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-3xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-lg{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-md{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-sm{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-xl{syntax:"<number>";initial-value:80;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-xs{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-2xl{syntax:"<number>";initial-value:96;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-2xs{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-3xl{syntax:"<number>";initial-value:120;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-3xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-3xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-lg{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-md{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-sm{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-xs{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-2xl{syntax:"<number>";initial-value:80;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-2xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-3xl{syntax:"<number>";initial-value:96;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-3xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-2xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-3xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-lg{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-md{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-sm{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-2xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-3xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-desktop-body-lg{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-desktop-body-md{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-desktop-body-sm{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-desktop-body-xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-desktop-body-xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-desktop-body-2xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-desktop-body-3xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-functional-desktop-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-desktop-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-3xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-tablet-body-lg{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-tablet-body-md{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-tablet-body-sm{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-tablet-body-xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-tablet-body-xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-tablet-body-2xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-tablet-body-3xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-functional-tablet-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-tablet-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-3xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-mobile-body-lg{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-body-md{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-mobile-body-sm{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-mobile-body-xl{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-body-xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-mobile-body-2xl{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-body-3xl{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-mobile-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-lg{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-md{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-sm{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-2xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-3xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-3xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-3xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-2xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-lg{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-md{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-sm{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-2xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-lg{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-2xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-lg{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-2xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-3xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-2xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-3xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-lg{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-2xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-lg{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-md{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-sm{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-2xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-3xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-3xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-lg{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-md{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-sm{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-xs{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-2xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-2xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-3xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-3xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-3xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-lg{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-md{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-sm{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-2xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-2xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-3xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-3xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-3xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-lg{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-md{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-sm{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-lg{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-md{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-sm{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-3xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-lg{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-md{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-sm{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-3xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-lg{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-md{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-sm{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-2xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-3xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-lg{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-3xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-border-width-3xs{syntax:"*";initial-value:.0625rem;inherits:true}@property --db-border-width-2xs{syntax:"*";initial-value:.125rem;inherits:true}@property --db-border-width-xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-border-width-sm{syntax:"*";initial-value:.375rem;inherits:true}@property --db-border-width-md{syntax:"*";initial-value:.5rem;inherits:true}@property --db-border-width-lg{syntax:"*";initial-value:.625rem;inherits:true}@property --db-border-width-xl{syntax:"*";initial-value:.75rem;inherits:true}@property --db-border-width-2xl{syntax:"*";initial-value:.875rem;inherits:true}@property --db-border-width-3xl{syntax:"*";initial-value:1rem;inherits:true}@property --db-border-radius-3xs{syntax:"*";initial-value:.0625rem;inherits:true}@property --db-border-radius-2xs{syntax:"*";initial-value:.125rem;inherits:true}@property --db-border-radius-xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-border-radius-sm{syntax:"*";initial-value:.5rem;inherits:true}@property --db-border-radius-md{syntax:"*";initial-value:.75rem;inherits:true}@property --db-border-radius-lg{syntax:"*";initial-value:1rem;inherits:true}@property --db-border-radius-xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-border-radius-2xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-border-radius-3xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-border-radius-full{syntax:"*";initial-value:500rem;inherits:true}@property --db-elevation-sm{syntax:"*";initial-value:0 0 1px -1px rgba(0,0,0,.2),0 0 4px 1px rgba(0,0,0,.122),0 0 2px rgba(0,0,0,.141);inherits:true}@property --db-elevation-md{syntax:"*";initial-value:0 0 2px -1px rgba(0,0,0,.2),0 0 8px 1px rgba(0,0,0,.122),0 0 4px rgba(0,0,0,.141);inherits:true}@property --db-elevation-lg{syntax:"*";initial-value:0 0 4px -3px rgba(0,0,0,.2),0 0 16px 3px rgba(0,0,0,.122),0 0 8px 1px rgba(0,0,0,.141);inherits:true}@property --db-sizing-fixed-mobile-header{syntax:"*";initial-value:3.5rem;inherits:true}@property --db-sizing-regular-3xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-sizing-regular-2xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-sizing-regular-xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-sizing-regular-lg{syntax:"*";initial-value:4rem;inherits:true}@property --db-sizing-regular-md{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-sizing-regular-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-sizing-regular-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-sizing-regular-2xs{syntax:"*";initial-value:.75rem;inherits:true}@property --db-sizing-regular-3xs{syntax:"*";initial-value:.5rem;inherits:true}@property --db-sizing-functional-3xs{syntax:"*";initial-value:.375rem;inherits:true}@property --db-sizing-functional-2xs{syntax:"*";initial-value:.625rem;inherits:true}@property --db-sizing-functional-xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-sizing-functional-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-sizing-functional-md{syntax:"*";initial-value:2rem;inherits:true}@property --db-sizing-functional-lg{syntax:"*";initial-value:3rem;inherits:true}@property --db-sizing-functional-xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-sizing-functional-2xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-sizing-functional-3xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-sizing-expressive-3xs{syntax:"*";initial-value:.625rem;inherits:true}@property --db-sizing-expressive-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-sizing-expressive-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-sizing-expressive-sm{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-sizing-expressive-md{syntax:"*";initial-value:3rem;inherits:true}@property --db-sizing-expressive-lg{syntax:"*";initial-value:5rem;inherits:true}@property --db-sizing-expressive-xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-sizing-expressive-2xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-sizing-expressive-3xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-regular-desktop-3xl{syntax:"*";initial-value:40rem;inherits:true}@property --db-spacing-responsive-regular-desktop-2xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-regular-desktop-xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-regular-desktop-lg{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-regular-desktop-md{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-regular-desktop-sm{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-regular-desktop-xs{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-regular-desktop-2xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-regular-desktop-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-regular-tablet-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-regular-tablet-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-regular-tablet-xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-regular-tablet-sm{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-spacing-responsive-regular-tablet-md{syntax:"*";initial-value:4rem;inherits:true}@property --db-spacing-responsive-regular-tablet-lg{syntax:"*";initial-value:6rem;inherits:true}@property --db-spacing-responsive-regular-tablet-xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-regular-tablet-2xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-regular-tablet-3xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-regular-mobile-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-regular-mobile-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-regular-mobile-xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-regular-mobile-sm{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-regular-mobile-md{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-regular-mobile-lg{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-regular-mobile-xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-regular-mobile-2xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-regular-mobile-3xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-functional-desktop-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-functional-desktop-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-functional-desktop-xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-functional-desktop-sm{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-spacing-responsive-functional-desktop-md{syntax:"*";initial-value:4rem;inherits:true}@property --db-spacing-responsive-functional-desktop-lg{syntax:"*";initial-value:6rem;inherits:true}@property --db-spacing-responsive-functional-desktop-xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-functional-desktop-2xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-functional-desktop-3xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-functional-tablet-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-functional-tablet-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-functional-tablet-xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-functional-tablet-sm{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-functional-tablet-md{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-functional-tablet-lg{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-functional-tablet-xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-functional-tablet-2xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-functional-tablet-3xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-functional-mobile-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-functional-mobile-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-functional-mobile-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-functional-mobile-sm{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-functional-mobile-md{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-spacing-responsive-functional-mobile-lg{syntax:"*";initial-value:4rem;inherits:true}@property --db-spacing-responsive-functional-mobile-xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-spacing-responsive-functional-mobile-2xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-functional-mobile-3xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-3xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-2xs{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-xs{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-sm{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-md{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-lg{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-2xl{syntax:"*";initial-value:40rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-3xl{syntax:"*";initial-value:50rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-3xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-2xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-xs{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-sm{syntax:"*";initial-value:4rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-md{syntax:"*";initial-value:6rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-lg{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-2xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-3xl{syntax:"*";initial-value:40rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-2xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-xs{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-sm{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-md{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-lg{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-2xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-3xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-fixed-regular-3xs{syntax:"*";initial-value:.125rem;inherits:true}@property --db-spacing-fixed-regular-2xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-spacing-fixed-regular-xs{syntax:"*";initial-value:.5rem;inherits:true}@property --db-spacing-fixed-regular-sm{syntax:"*";initial-value:.75rem;inherits:true}@property --db-spacing-fixed-regular-md{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-fixed-regular-lg{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-fixed-regular-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-fixed-regular-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-fixed-regular-3xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-fixed-functional-3xs{syntax:"*";initial-value:.125rem;inherits:true}@property --db-spacing-fixed-functional-2xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-spacing-fixed-functional-xs{syntax:"*";initial-value:.375rem;inherits:true}@property --db-spacing-fixed-functional-sm{syntax:"*";initial-value:.5rem;inherits:true}@property --db-spacing-fixed-functional-md{syntax:"*";initial-value:.75rem;inherits:true}@property --db-spacing-fixed-functional-lg{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-fixed-functional-xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-fixed-functional-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-fixed-functional-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-fixed-expressive-3xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-spacing-fixed-expressive-2xs{syntax:"*";initial-value:.5rem;inherits:true}@property --db-spacing-fixed-expressive-xs{syntax:"*";initial-value:.75rem;inherits:true}@property --db-spacing-fixed-expressive-sm{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-fixed-expressive-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-fixed-expressive-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-fixed-expressive-xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-fixed-expressive-2xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-fixed-expressive-3xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-transition-duration-extra-slow{syntax:"*";initial-value:.5s;inherits:true}@property --db-transition-duration-slow{syntax:"*";initial-value:.4s;inherits:true}@property --db-transition-duration-medium{syntax:"*";initial-value:.3s;inherits:true}@property --db-transition-duration-fast{syntax:"*";initial-value:.15s;inherits:true}@property --db-transition-duration-extra-fast{syntax:"*";initial-value:75ms;inherits:true}@property --db-transition-timing-show{syntax:"*";initial-value:cubic-bezier(.49,.1,.16,1) normal both;inherits:true}@property --db-transition-timing-hide{syntax:"*";initial-value:cubic-bezier(.49,.1,.16,1) normal both;inherits:true}@property --db-transition-timing-emotional{syntax:"*";initial-value:cubic-bezier(.27,.05,.4,.95);inherits:true}@property --db-transition-timing-functional{syntax:"*";initial-value:cubic-bezier(.15,0,.45,1);inherits:true}@property --db-transition-straight-show{syntax:"*";initial-value:.5s cubic-bezier(.49,.1,.16,1) normal both;inherits:true}@property --db-transition-straight-hide{syntax:"*";initial-value:.4s cubic-bezier(.49,.1,.16,1) normal both;inherits:true}@property --db-transition-straight-emotional{syntax:"*";initial-value:.3s cubic-bezier(.27,.05,.4,.95);inherits:true}@property --db-transition-straight-functional{syntax:"*";initial-value:.3s cubic-bezier(.15,0,.45,1);inherits:true}@property --db-opacity-3xs{syntax:"<number>";initial-value:.08;inherits:true}@property --db-opacity-2xs{syntax:"<number>";initial-value:.16;inherits:true}@property --db-opacity-xs{syntax:"<number>";initial-value:.24;inherits:true}@property --db-opacity-sm{syntax:"<number>";initial-value:.32;inherits:true}@property --db-opacity-md{syntax:"<number>";initial-value:.4;inherits:true}@property --db-opacity-lg{syntax:"<number>";initial-value:.68;inherits:true}@property --db-opacity-xl{syntax:"<number>";initial-value:.76;inherits:true}@property --db-opacity-2xl{syntax:"<number>";initial-value:.84;inherits:true}@property --db-opacity-3xl{syntax:"<number>";initial-value:.92;inherits:true}@property --db-opacity-full{syntax:"<number>";initial-value:1;inherits:true}@property --db-typography-regular-desktop-headline-3xl{syntax:"*";initial-value:bolder 5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-2xl{syntax:"*";initial-value:bolder 4rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-xl{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-lg{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-md{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-sm{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-2xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-3xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-xs{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-lg{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-2xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-3xl{syntax:"*";initial-value:normal 2rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-md{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-sm{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-lg{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-md{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-sm{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-2xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-3xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-lg{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-md{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-sm{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-2xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-2xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-3xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-3xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-lg{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-md{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-sm{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-2xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-3xl{syntax:"*";initial-value:normal 2rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-lg{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-md{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-sm{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-2xl{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-2xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-3xl{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-3xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-lg{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-md{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-sm{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-xs{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-2xl{syntax:"*";initial-value:normal 2rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-3xl{syntax:"*";initial-value:normal 2.5rem/1.6 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-2xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-lg{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-md{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-sm{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-xl{syntax:"*";initial-value:bolder 4rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-xs{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-2xl{syntax:"*";initial-value:bolder 5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-2xs{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-3xl{syntax:"*";initial-value:bolder 6rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-3xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-lg{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-md{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-sm{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-xs{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-2xl{syntax:"*";initial-value:normal 2rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-3xl{syntax:"*";initial-value:normal 2.5rem/1.6 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-2xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-lg{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-md{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-sm{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-xl{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-xs{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-2xl{syntax:"*";initial-value:bolder 4rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-2xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-3xl{syntax:"*";initial-value:bolder 5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-3xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-lg{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-md{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-sm{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-xs{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-2xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-3xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-2xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-lg{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-md{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-sm{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-2xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-2xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-3xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-3xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-lg{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-md{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-sm{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-2xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-3xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-lg{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-md{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-sm{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-2xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-2xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-3xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-3xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-lg{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-md{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-sm{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-2xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-3xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-lg{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-md{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-sm{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-2xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-2xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-3xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-3xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-lg{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-md{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-sm{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-xl{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-2xl{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-3xl{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-lg{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-md{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-sm{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-xl{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-2xl{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-2xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-3xl{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-3xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-neutral-0{syntax:"<color>";initial-value:#0d0e10;inherits:true}@property --db-neutral-1{syntax:"<color>";initial-value:#16181b;inherits:true}@property --db-neutral-2{syntax:"<color>";initial-value:#222428;inherits:true}@property --db-neutral-3{syntax:"<color>";initial-value:#2e3035;inherits:true}@property --db-neutral-4{syntax:"<color>";initial-value:#3b3e44;inherits:true}@property --db-neutral-5{syntax:"<color>";initial-value:#484b52;inherits:true}@property --db-neutral-6{syntax:"<color>";initial-value:#5a5e67;inherits:true}@property --db-neutral-7{syntax:"<color>";initial-value:#727782;inherits:true}@property --db-neutral-8{syntax:"<color>";initial-value:#8b919d;inherits:true}@property --db-neutral-9{syntax:"<color>";initial-value:#a6abb5;inherits:true}@property --db-neutral-10{syntax:"<color>";initial-value:#c3c7cd;inherits:true}@property --db-neutral-11{syntax:"<color>";initial-value:#e1e2e6;inherits:true}@property --db-neutral-12{syntax:"<color>";initial-value:#edeef0;inherits:true}@property --db-neutral-13{syntax:"<color>";initial-value:#f3f3f5;inherits:true}@property --db-neutral-14{syntax:"<color>";initial-value:#fff;inherits:true}@property --db-neutral-origin-base{syntax:"<color>";initial-value:#232529;inherits:true}@property --db-neutral-origin-light-default{syntax:"<color>";initial-value:#232529;inherits:true}@property --db-neutral-origin-light-hovered{syntax:"<color>";initial-value:#595e66;inherits:true}@property --db-neutral-origin-light-pressed{syntax:"<color>";initial-value:#383b40;inherits:true}@property --db-neutral-origin-dark-default{syntax:"<color>";initial-value:#232529;inherits:true}@property --db-neutral-origin-dark-hovered{syntax:"<color>";initial-value:#595e66;inherits:true}@property --db-neutral-origin-dark-pressed{syntax:"<color>";initial-value:#383b40;inherits:true}@property --db-neutral-on-origin-light-default{syntax:"<color>";initial-value:#f9f9fa;inherits:true}@property --db-neutral-on-origin-dark-default{syntax:"<color>";initial-value:#f9f9fa;inherits:true}@property --db-brand-0{syntax:"<color>";initial-value:#09082f;inherits:true}@property --db-brand-1{syntax:"<color>";initial-value:#110f44;inherits:true}@property --db-brand-2{syntax:"<color>";initial-value:#1b195e;inherits:true}@property --db-brand-3{syntax:"<color>";initial-value:#25237a;inherits:true}@property --db-brand-4{syntax:"<color>";initial-value:#302d97;inherits:true}@property --db-brand-5{syntax:"<color>";initial-value:#3b38b5;inherits:true}@property --db-brand-6{syntax:"<color>";initial-value:#514ec7;inherits:true}@property --db-brand-7{syntax:"<color>";initial-value:#6d6bd4;inherits:true}@property --db-brand-8{syntax:"<color>";initial-value:#8988de;inherits:true}@property --db-brand-9{syntax:"<color>";initial-value:#a6a5e7;inherits:true}@property --db-brand-10{syntax:"<color>";initial-value:#c3c3ef;inherits:true}@property --db-brand-11{syntax:"<color>";initial-value:#e1e1f7;inherits:true}@property --db-brand-12{syntax:"<color>";initial-value:#ededfa;inherits:true}@property --db-brand-13{syntax:"<color>";initial-value:#f3f3fc;inherits:true}@property --db-brand-14{syntax:"<color>";initial-value:#f9f9fd;inherits:true}@property --db-brand-origin-base{syntax:"<color>";initial-value:#514ec7;inherits:true}@property --db-brand-origin-light-default{syntax:"<color>";initial-value:#514ec7;inherits:true}@property --db-brand-origin-light-hovered{syntax:"<color>";initial-value:#1d1b64;inherits:true}@property --db-brand-origin-light-pressed{syntax:"<color>";initial-value:#3834ac;inherits:true}@property --db-brand-origin-dark-default{syntax:"<color>";initial-value:#514ec7;inherits:true}@property --db-brand-origin-dark-hovered{syntax:"<color>";initial-value:#1d1b64;inherits:true}@property --db-brand-origin-dark-pressed{syntax:"<color>";initial-value:#3834ac;inherits:true}@property --db-brand-on-origin-light-default{syntax:"<color>";initial-value:#cbffe7;inherits:true}@property --db-brand-on-origin-dark-default{syntax:"<color>";initial-value:#cbffe7;inherits:true}@property --db-informational-0{syntax:"<color>";initial-value:#00101c;inherits:true}@property --db-informational-1{syntax:"<color>";initial-value:#00192a;inherits:true}@property --db-informational-2{syntax:"<color>";initial-value:#00263d;inherits:true}@property --db-informational-3{syntax:"<color>";initial-value:#003450;inherits:true}@property --db-informational-4{syntax:"<color>";initial-value:#004164;inherits:true}@property --db-informational-5{syntax:"<color>";initial-value:#005078;inherits:true}@property --db-informational-6{syntax:"<color>";initial-value:#006495;inherits:true}@property --db-informational-7{syntax:"<color>";initial-value:#007eba;inherits:true}@property --db-informational-8{syntax:"<color>";initial-value:#0099e1;inherits:true}@property --db-informational-9{syntax:"<color>";initial-value:#41b3ff;inherits:true}@property --db-informational-10{syntax:"<color>";initial-value:#96cbff;inherits:true}@property --db-informational-11{syntax:"<color>";initial-value:#cfe5ff;inherits:true}@property --db-informational-12{syntax:"<color>";initial-value:#e3efff;inherits:true}@property --db-informational-13{syntax:"<color>";initial-value:#ecf4ff;inherits:true}@property --db-informational-14{syntax:"<color>";initial-value:#f6faff;inherits:true}@property --db-informational-origin-base{syntax:"<color>";initial-value:#00aeff;inherits:true}@property --db-informational-origin-light-default{syntax:"<color>";initial-value:#00aeff;inherits:true}@property --db-informational-origin-light-hovered{syntax:"<color>";initial-value:#c2dfff;inherits:true}@property --db-informational-origin-light-pressed{syntax:"<color>";initial-value:#87c6ff;inherits:true}@property --db-informational-origin-dark-default{syntax:"<color>";initial-value:#00aeff;inherits:true}@property --db-informational-origin-dark-hovered{syntax:"<color>";initial-value:#c2dfff;inherits:true}@property --db-informational-origin-dark-pressed{syntax:"<color>";initial-value:#87c6ff;inherits:true}@property --db-informational-on-origin-light-default{syntax:"<color>";initial-value:#000812;inherits:true}@property --db-informational-on-origin-dark-default{syntax:"<color>";initial-value:#000812;inherits:true}@property --db-warning-0{syntax:"<color>";initial-value:#1a0b00;inherits:true}@property --db-warning-1{syntax:"<color>";initial-value:#271300;inherits:true}@property --db-warning-2{syntax:"<color>";initial-value:#381d00;inherits:true}@property --db-warning-3{syntax:"<color>";initial-value:#4a2800;inherits:true}@property --db-warning-4{syntax:"<color>";initial-value:#5c3400;inherits:true}@property --db-warning-5{syntax:"<color>";initial-value:#704000;inherits:true}@property --db-warning-6{syntax:"<color>";initial-value:#8a5100;inherits:true}@property --db-warning-7{syntax:"<color>";initial-value:#ad6600;inherits:true}@property --db-warning-8{syntax:"<color>";initial-value:#d17d00;inherits:true}@property --db-warning-9{syntax:"<color>";initial-value:#f69400;inherits:true}@property --db-warning-10{syntax:"<color>";initial-value:#ffb783;inherits:true}@property --db-warning-11{syntax:"<color>";initial-value:#ffdbc8;inherits:true}@property --db-warning-12{syntax:"<color>";initial-value:#ffeadf;inherits:true}@property --db-warning-13{syntax:"<color>";initial-value:#fff1ea;inherits:true}@property --db-warning-14{syntax:"<color>";initial-value:#fff8f5;inherits:true}@property --db-warning-origin-base{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-warning-origin-light-default{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-warning-origin-light-hovered{syntax:"<color>";initial-value:#ffe4d5;inherits:true}@property --db-warning-origin-light-pressed{syntax:"<color>";initial-value:#ffbf95;inherits:true}@property --db-warning-origin-dark-default{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-warning-origin-dark-hovered{syntax:"<color>";initial-value:#ffe4d5;inherits:true}@property --db-warning-origin-dark-pressed{syntax:"<color>";initial-value:#ffbf95;inherits:true}@property --db-warning-on-origin-light-default{syntax:"<color>";initial-value:#100500;inherits:true}@property --db-warning-on-origin-dark-default{syntax:"<color>";initial-value:#100500;inherits:true}@property --db-successful-0{syntax:"<color>";initial-value:#051100;inherits:true}@property --db-successful-1{syntax:"<color>";initial-value:#091c00;inherits:true}@property --db-successful-2{syntax:"<color>";initial-value:#112900;inherits:true}@property --db-successful-3{syntax:"<color>";initial-value:#193800;inherits:true}@property --db-successful-4{syntax:"<color>";initial-value:#214600;inherits:true}@property --db-successful-5{syntax:"<color>";initial-value:#2a5600;inherits:true}@property --db-successful-6{syntax:"<color>";initial-value:#366b00;inherits:true}@property --db-successful-7{syntax:"<color>";initial-value:#458600;inherits:true}@property --db-successful-8{syntax:"<color>";initial-value:#55a300;inherits:true}@property --db-successful-9{syntax:"<color>";initial-value:#65c101;inherits:true}@property --db-successful-10{syntax:"<color>";initial-value:#76df01;inherits:true}@property --db-successful-11{syntax:"<color>";initial-value:#88fe01;inherits:true}@property --db-successful-12{syntax:"<color>";initial-value:#bfffa3;inherits:true}@property --db-successful-13{syntax:"<color>";initial-value:#d7ffc7;inherits:true}@property --db-successful-14{syntax:"<color>";initial-value:#ecffe5;inherits:true}@property --db-successful-origin-base{syntax:"<color>";initial-value:#85f901;inherits:true}@property --db-successful-origin-light-default{syntax:"<color>";initial-value:#85f901;inherits:true}@property --db-successful-origin-light-hovered{syntax:"<color>";initial-value:#63bc01;inherits:true}@property --db-successful-origin-light-pressed{syntax:"<color>";initial-value:#74da01;inherits:true}@property --db-successful-origin-dark-default{syntax:"<color>";initial-value:#85f901;inherits:true}@property --db-successful-origin-dark-hovered{syntax:"<color>";initial-value:#63bc01;inherits:true}@property --db-successful-origin-dark-pressed{syntax:"<color>";initial-value:#74da01;inherits:true}@property --db-successful-on-origin-light-default{syntax:"<color>";initial-value:#020a00;inherits:true}@property --db-successful-on-origin-dark-default{syntax:"<color>";initial-value:#020a00;inherits:true}@property --db-critical-0{syntax:"<color>";initial-value:#270001;inherits:true}@property --db-critical-1{syntax:"<color>";initial-value:#390002;inherits:true}@property --db-critical-2{syntax:"<color>";initial-value:#500003;inherits:true}@property --db-critical-3{syntax:"<color>";initial-value:#690005;inherits:true}@property --db-critical-4{syntax:"<color>";initial-value:#820008;inherits:true}@property --db-critical-5{syntax:"<color>";initial-value:#9c000c;inherits:true}@property --db-critical-6{syntax:"<color>";initial-value:#c00111;inherits:true}@property --db-critical-7{syntax:"<color>";initial-value:#ef0119;inherits:true}@property --db-critical-8{syntax:"<color>";initial-value:#ff5357;inherits:true}@property --db-critical-9{syntax:"<color>";initial-value:#ff888a;inherits:true}@property --db-critical-10{syntax:"<color>";initial-value:#ffb3b4;inherits:true}@property --db-critical-11{syntax:"<color>";initial-value:#ffdada;inherits:true}@property --db-critical-12{syntax:"<color>";initial-value:#ffe9e9;inherits:true}@property --db-critical-13{syntax:"<color>";initial-value:#fff0f0;inherits:true}@property --db-critical-14{syntax:"<color>";initial-value:#fff8f8;inherits:true}@property --db-critical-origin-base{syntax:"<color>";initial-value:#fe011b;inherits:true}@property --db-critical-origin-light-default{syntax:"<color>";initial-value:#fe011b;inherits:true}@property --db-critical-origin-light-hovered{syntax:"<color>";initial-value:#ff9698;inherits:true}@property --db-critical-origin-light-pressed{syntax:"<color>";initial-value:#ff6669;inherits:true}@property --db-critical-origin-dark-default{syntax:"<color>";initial-value:#fe011b;inherits:true}@property --db-critical-origin-dark-hovered{syntax:"<color>";initial-value:#ff9698;inherits:true}@property --db-critical-origin-dark-pressed{syntax:"<color>";initial-value:#ff6669;inherits:true}@property --db-critical-on-origin-light-default{syntax:"<color>";initial-value:#1a0000;inherits:true}@property --db-critical-on-origin-dark-default{syntax:"<color>";initial-value:#1a0000;inherits:true}@property --db-yellow-0{syntax:"<color>";initial-value:#120e00;inherits:true}@property --db-yellow-1{syntax:"<color>";initial-value:#1d1700;inherits:true}@property --db-yellow-2{syntax:"<color>";initial-value:#2b2300;inherits:true}@property --db-yellow-3{syntax:"<color>";initial-value:#3a3000;inherits:true}@property --db-yellow-4{syntax:"<color>";initial-value:#493d00;inherits:true}@property --db-yellow-5{syntax:"<color>";initial-value:#594a00;inherits:true}@property --db-yellow-6{syntax:"<color>";initial-value:#6f5d00;inherits:true}@property --db-yellow-7{syntax:"<color>";initial-value:#8b7600;inherits:true}@property --db-yellow-8{syntax:"<color>";initial-value:#a98f00;inherits:true}@property --db-yellow-9{syntax:"<color>";initial-value:#c8a900;inherits:true}@property --db-yellow-10{syntax:"<color>";initial-value:#e7c400;inherits:true}@property --db-yellow-11{syntax:"<color>";initial-value:#ffe177;inherits:true}@property --db-yellow-12{syntax:"<color>";initial-value:#ffedbb;inherits:true}@property --db-yellow-13{syntax:"<color>";initial-value:#fff3d4;inherits:true}@property --db-yellow-14{syntax:"<color>";initial-value:#fff9ea;inherits:true}@property --db-yellow-origin-base{syntax:"<color>";initial-value:#ffd900;inherits:true}@property --db-yellow-origin-light-default{syntax:"<color>";initial-value:#ffd900;inherits:true}@property --db-yellow-origin-light-hovered{syntax:"<color>";initial-value:#c0a300;inherits:true}@property --db-yellow-origin-light-pressed{syntax:"<color>";initial-value:#dfbd00;inherits:true}@property --db-yellow-origin-dark-default{syntax:"<color>";initial-value:#ffd900;inherits:true}@property --db-yellow-origin-dark-hovered{syntax:"<color>";initial-value:#c0a300;inherits:true}@property --db-yellow-origin-dark-pressed{syntax:"<color>";initial-value:#dfbd00;inherits:true}@property --db-yellow-on-origin-light-default{syntax:"<color>";initial-value:#0a0700;inherits:true}@property --db-yellow-on-origin-dark-default{syntax:"<color>";initial-value:#0a0700;inherits:true}@property --db-orange-0{syntax:"<color>";initial-value:#1a0b00;inherits:true}@property --db-orange-1{syntax:"<color>";initial-value:#271300;inherits:true}@property --db-orange-2{syntax:"<color>";initial-value:#381d00;inherits:true}@property --db-orange-3{syntax:"<color>";initial-value:#4a2800;inherits:true}@property --db-orange-4{syntax:"<color>";initial-value:#5c3400;inherits:true}@property --db-orange-5{syntax:"<color>";initial-value:#704000;inherits:true}@property --db-orange-6{syntax:"<color>";initial-value:#8a5100;inherits:true}@property --db-orange-7{syntax:"<color>";initial-value:#ad6600;inherits:true}@property --db-orange-8{syntax:"<color>";initial-value:#d17d00;inherits:true}@property --db-orange-9{syntax:"<color>";initial-value:#f69400;inherits:true}@property --db-orange-10{syntax:"<color>";initial-value:#ffb783;inherits:true}@property --db-orange-11{syntax:"<color>";initial-value:#ffdbc8;inherits:true}@property --db-orange-12{syntax:"<color>";initial-value:#ffeadf;inherits:true}@property --db-orange-13{syntax:"<color>";initial-value:#fff1ea;inherits:true}@property --db-orange-14{syntax:"<color>";initial-value:#fff8f5;inherits:true}@property --db-orange-origin-base{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-orange-origin-light-default{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-orange-origin-light-hovered{syntax:"<color>";initial-value:#ffe4d5;inherits:true}@property --db-orange-origin-light-pressed{syntax:"<color>";initial-value:#ffbf95;inherits:true}@property --db-orange-origin-dark-default{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-orange-origin-dark-hovered{syntax:"<color>";initial-value:#ffe4d5;inherits:true}@property --db-orange-origin-dark-pressed{syntax:"<color>";initial-value:#ffbf95;inherits:true}@property --db-orange-on-origin-light-default{syntax:"<color>";initial-value:#100500;inherits:true}@property --db-orange-on-origin-dark-default{syntax:"<color>";initial-value:#100500;inherits:true}@property --db-red-0{syntax:"<color>";initial-value:#280001;inherits:true}@property --db-red-1{syntax:"<color>";initial-value:#390001;inherits:true}@property --db-red-2{syntax:"<color>";initial-value:#500003;inherits:true}@property --db-red-3{syntax:"<color>";initial-value:#690004;inherits:true}@property --db-red-4{syntax:"<color>";initial-value:#820007;inherits:true}@property --db-red-5{syntax:"<color>";initial-value:#9c000b;inherits:true}@property --db-red-6{syntax:"<color>";initial-value:#c00010;inherits:true}@property --db-red-7{syntax:"<color>";initial-value:#ef0017;inherits:true}@property --db-red-8{syntax:"<color>";initial-value:#ff5357;inherits:true}@property --db-red-9{syntax:"<color>";initial-value:#ff888a;inherits:true}@property --db-red-10{syntax:"<color>";initial-value:#ffb3b4;inherits:true}@property --db-red-11{syntax:"<color>";initial-value:#ffdada;inherits:true}@property --db-red-12{syntax:"<color>";initial-value:#ffe9e9;inherits:true}@property --db-red-13{syntax:"<color>";initial-value:#fff0f0;inherits:true}@property --db-red-14{syntax:"<color>";initial-value:#fff8f8;inherits:true}@property --db-red-origin-base{syntax:"<color>";initial-value:#ff0019;inherits:true}@property --db-red-origin-light-default{syntax:"<color>";initial-value:#ff0019;inherits:true}@property --db-red-origin-light-hovered{syntax:"<color>";initial-value:#ff9798;inherits:true}@property --db-red-origin-light-pressed{syntax:"<color>";initial-value:#ff676a;inherits:true}@property --db-red-origin-dark-default{syntax:"<color>";initial-value:#ff0019;inherits:true}@property --db-red-origin-dark-hovered{syntax:"<color>";initial-value:#ff9798;inherits:true}@property --db-red-origin-dark-pressed{syntax:"<color>";initial-value:#ff676a;inherits:true}@property --db-red-on-origin-light-default{syntax:"<color>";initial-value:#1a0000;inherits:true}@property --db-red-on-origin-dark-default{syntax:"<color>";initial-value:#1a0000;inherits:true}@property --db-pink-0{syntax:"<color>";initial-value:#26000c;inherits:true}@property --db-pink-1{syntax:"<color>";initial-value:#380014;inherits:true}@property --db-pink-2{syntax:"<color>";initial-value:#4e0020;inherits:true}@property --db-pink-3{syntax:"<color>";initial-value:#66002b;inherits:true}@property --db-pink-4{syntax:"<color>";initial-value:#7e0037;inherits:true}@property --db-pink-5{syntax:"<color>";initial-value:#980044;inherits:true}@property --db-pink-6{syntax:"<color>";initial-value:#b05;inherits:true}@property --db-pink-7{syntax:"<color>";initial-value:#e9006c;inherits:true}@property --db-pink-8{syntax:"<color>";initial-value:#ff4c87;inherits:true}@property --db-pink-9{syntax:"<color>";initial-value:#ff85a5;inherits:true}@property --db-pink-10{syntax:"<color>";initial-value:#ffb1c3;inherits:true}@property --db-pink-11{syntax:"<color>";initial-value:#ffd9e1;inherits:true}@property --db-pink-12{syntax:"<color>";initial-value:#ffe8ed;inherits:true}@property --db-pink-13{syntax:"<color>";initial-value:#fff0f3;inherits:true}@property --db-pink-14{syntax:"<color>";initial-value:#fff7f9;inherits:true}@property --db-pink-origin-base{syntax:"<color>";initial-value:#f07;inherits:true}@property --db-pink-origin-light-default{syntax:"<color>";initial-value:#f07;inherits:true}@property --db-pink-origin-light-hovered{syntax:"<color>";initial-value:#ff9ab3;inherits:true}@property --db-pink-origin-light-pressed{syntax:"<color>";initial-value:#ff6995;inherits:true}@property --db-pink-origin-dark-default{syntax:"<color>";initial-value:#f07;inherits:true}@property --db-pink-origin-dark-hovered{syntax:"<color>";initial-value:#ff9ab3;inherits:true}@property --db-pink-origin-dark-pressed{syntax:"<color>";initial-value:#ff6995;inherits:true}@property --db-pink-on-origin-light-default{syntax:"<color>";initial-value:#190006;inherits:true}@property --db-pink-on-origin-dark-default{syntax:"<color>";initial-value:#190006;inherits:true}@property --db-violet-0{syntax:"<color>";initial-value:#1d002c;inherits:true}@property --db-violet-1{syntax:"<color>";initial-value:#2b0040;inherits:true}@property --db-violet-2{syntax:"<color>";initial-value:#3e0059;inherits:true}@property --db-violet-3{syntax:"<color>";initial-value:#510173;inherits:true}@property --db-violet-4{syntax:"<color>";initial-value:#65018e;inherits:true}@property --db-violet-5{syntax:"<color>";initial-value:#7a01ab;inherits:true}@property --db-violet-6{syntax:"<color>";initial-value:#9702d2;inherits:true}@property --db-violet-7{syntax:"<color>";initial-value:#b91eff;inherits:true}@property --db-violet-8{syntax:"<color>";initial-value:#c365ff;inherits:true}@property --db-violet-9{syntax:"<color>";initial-value:#cf91ff;inherits:true}@property --db-violet-10{syntax:"<color>";initial-value:#ddb7ff;inherits:true}@property --db-violet-11{syntax:"<color>";initial-value:#eddcff;inherits:true}@property --db-violet-12{syntax:"<color>";initial-value:#f4eaff;inherits:true}@property --db-violet-13{syntax:"<color>";initial-value:#f8f1ff;inherits:true}@property --db-violet-14{syntax:"<color>";initial-value:#fbf8ff;inherits:true}@property --db-violet-origin-base{syntax:"<color>";initial-value:#b603fc;inherits:true}@property --db-violet-origin-light-default{syntax:"<color>";initial-value:#b603fc;inherits:true}@property --db-violet-origin-light-hovered{syntax:"<color>";initial-value:#5c0182;inherits:true}@property --db-violet-origin-light-pressed{syntax:"<color>";initial-value:#9102c9;inherits:true}@property --db-violet-origin-dark-default{syntax:"<color>";initial-value:#b603fc;inherits:true}@property --db-violet-origin-dark-hovered{syntax:"<color>";initial-value:#5c0182;inherits:true}@property --db-violet-origin-dark-pressed{syntax:"<color>";initial-value:#9102c9;inherits:true}@property --db-violet-on-origin-light-default{syntax:"<color>";initial-value:#fbf8ff;inherits:true}@property --db-violet-on-origin-dark-default{syntax:"<color>";initial-value:#fbf8ff;inherits:true}@property --db-blue-0{syntax:"<color>";initial-value:#000b2e;inherits:true}@property --db-blue-1{syntax:"<color>";initial-value:#001442;inherits:true}@property --db-blue-2{syntax:"<color>";initial-value:#001f5b;inherits:true}@property --db-blue-3{syntax:"<color>";initial-value:#012a76;inherits:true}@property --db-blue-4{syntax:"<color>";initial-value:#013692;inherits:true}@property --db-blue-5{syntax:"<color>";initial-value:#0243af;inherits:true}@property --db-blue-6{syntax:"<color>";initial-value:#0354d7;inherits:true}@property --db-blue-7{syntax:"<color>";initial-value:#2c6cfe;inherits:true}@property --db-blue-8{syntax:"<color>";initial-value:#6989ff;inherits:true}@property --db-blue-9{syntax:"<color>";initial-value:#93a6ff;inherits:true}@property --db-blue-10{syntax:"<color>";initial-value:#b9c3ff;inherits:true}@property --db-blue-11{syntax:"<color>";initial-value:#dce1ff;inherits:true}@property --db-blue-12{syntax:"<color>";initial-value:#eaedff;inherits:true}@property --db-blue-13{syntax:"<color>";initial-value:#f1f3ff;inherits:true}@property --db-blue-14{syntax:"<color>";initial-value:#f8f9ff;inherits:true}@property --db-blue-origin-base{syntax:"<color>";initial-value:#0463fb;inherits:true}@property --db-blue-origin-light-default{syntax:"<color>";initial-value:#0463fb;inherits:true}@property --db-blue-origin-light-hovered{syntax:"<color>";initial-value:#012e7f;inherits:true}@property --db-blue-origin-light-pressed{syntax:"<color>";initial-value:#024dc7;inherits:true}@property --db-blue-origin-dark-default{syntax:"<color>";initial-value:#0463fb;inherits:true}@property --db-blue-origin-dark-hovered{syntax:"<color>";initial-value:#012e7f;inherits:true}@property --db-blue-origin-dark-pressed{syntax:"<color>";initial-value:#024dc7;inherits:true}@property --db-blue-on-origin-light-default{syntax:"<color>";initial-value:#f8f9ff;inherits:true}@property --db-blue-on-origin-dark-default{syntax:"<color>";initial-value:#f8f9ff;inherits:true}@property --db-cyan-0{syntax:"<color>";initial-value:#00101c;inherits:true}@property --db-cyan-1{syntax:"<color>";initial-value:#001a2a;inherits:true}@property --db-cyan-2{syntax:"<color>";initial-value:#00263c;inherits:true}@property --db-cyan-3{syntax:"<color>";initial-value:#00344f;inherits:true}@property --db-cyan-4{syntax:"<color>";initial-value:#014263;inherits:true}@property --db-cyan-5{syntax:"<color>";initial-value:#015078;inherits:true}@property --db-cyan-6{syntax:"<color>";initial-value:#016494;inherits:true}@property --db-cyan-7{syntax:"<color>";initial-value:#027eb9;inherits:true}@property --db-cyan-8{syntax:"<color>";initial-value:#0399df;inherits:true}@property --db-cyan-9{syntax:"<color>";initial-value:#3db4ff;inherits:true}@property --db-cyan-10{syntax:"<color>";initial-value:#95ccff;inherits:true}@property --db-cyan-11{syntax:"<color>";initial-value:#cee5ff;inherits:true}@property --db-cyan-12{syntax:"<color>";initial-value:#e2efff;inherits:true}@property --db-cyan-13{syntax:"<color>";initial-value:#ecf4ff;inherits:true}@property --db-cyan-14{syntax:"<color>";initial-value:#f6faff;inherits:true}@property --db-cyan-origin-base{syntax:"<color>";initial-value:#04a9f6;inherits:true}@property --db-cyan-origin-light-default{syntax:"<color>";initial-value:#04a9f6;inherits:true}@property --db-cyan-origin-light-hovered{syntax:"<color>";initial-value:#b8daff;inherits:true}@property --db-cyan-origin-light-pressed{syntax:"<color>";initial-value:#78c1ff;inherits:true}@property --db-cyan-origin-dark-default{syntax:"<color>";initial-value:#04a9f6;inherits:true}@property --db-cyan-origin-dark-hovered{syntax:"<color>";initial-value:#b8daff;inherits:true}@property --db-cyan-origin-dark-pressed{syntax:"<color>";initial-value:#78c1ff;inherits:true}@property --db-cyan-on-origin-light-default{syntax:"<color>";initial-value:#000811;inherits:true}@property --db-cyan-on-origin-dark-default{syntax:"<color>";initial-value:#000811;inherits:true}@property --db-turquoise-0{syntax:"<color>";initial-value:#001110;inherits:true}@property --db-turquoise-1{syntax:"<color>";initial-value:#001c1a;inherits:true}@property --db-turquoise-2{syntax:"<color>";initial-value:#002926;inherits:true}@property --db-turquoise-3{syntax:"<color>";initial-value:#003734;inherits:true}@property --db-turquoise-4{syntax:"<color>";initial-value:#004642;inherits:true}@property --db-turquoise-5{syntax:"<color>";initial-value:#005550;inherits:true}@property --db-turquoise-6{syntax:"<color>";initial-value:#006a64;inherits:true}@property --db-turquoise-7{syntax:"<color>";initial-value:#00857e;inherits:true}@property --db-turquoise-8{syntax:"<color>";initial-value:#00a299;inherits:true}@property --db-turquoise-9{syntax:"<color>";initial-value:#00bfb5;inherits:true}@property --db-turquoise-10{syntax:"<color>";initial-value:#00ded2;inherits:true}@property --db-turquoise-11{syntax:"<color>";initial-value:#00fdf0;inherits:true}@property --db-turquoise-12{syntax:"<color>";initial-value:#9cfff6;inherits:true}@property --db-turquoise-13{syntax:"<color>";initial-value:#c3fff9;inherits:true}@property --db-turquoise-14{syntax:"<color>";initial-value:#e3fffc;inherits:true}@property --db-turquoise-origin-base{syntax:"<color>";initial-value:#00faed;inherits:true}@property --db-turquoise-origin-light-default{syntax:"<color>";initial-value:#00faed;inherits:true}@property --db-turquoise-origin-light-hovered{syntax:"<color>";initial-value:#00bdb3;inherits:true}@property --db-turquoise-origin-light-pressed{syntax:"<color>";initial-value:#00dbd0;inherits:true}@property --db-turquoise-origin-dark-default{syntax:"<color>";initial-value:#00faed;inherits:true}@property --db-turquoise-origin-dark-hovered{syntax:"<color>";initial-value:#00bdb3;inherits:true}@property --db-turquoise-origin-dark-pressed{syntax:"<color>";initial-value:#00dbd0;inherits:true}@property --db-turquoise-on-origin-light-default{syntax:"<color>";initial-value:#000908;inherits:true}@property --db-turquoise-on-origin-dark-default{syntax:"<color>";initial-value:#000908;inherits:true}@property --db-green-0{syntax:"<color>";initial-value:#041103;inherits:true}@property --db-green-1{syntax:"<color>";initial-value:#091c06;inherits:true}@property --db-green-2{syntax:"<color>";initial-value:#10290b;inherits:true}@property --db-green-3{syntax:"<color>";initial-value:#173712;inherits:true}@property --db-green-4{syntax:"<color>";initial-value:#1f4619;inherits:true}@property --db-green-5{syntax:"<color>";initial-value:#275520;inherits:true}@property --db-green-6{syntax:"<color>";initial-value:#336a2a;inherits:true}@property --db-green-7{syntax:"<color>";initial-value:#428636;inherits:true}@property --db-green-8{syntax:"<color>";initial-value:#51a243;inherits:true}@property --db-green-9{syntax:"<color>";initial-value:#61c051;inherits:true}@property --db-green-10{syntax:"<color>";initial-value:#71de5f;inherits:true}@property --db-green-11{syntax:"<color>";initial-value:#96f989;inherits:true}@property --db-green-12{syntax:"<color>";initial-value:#c7fbc2;inherits:true}@property --db-green-13{syntax:"<color>";initial-value:#dbfcd8;inherits:true}@property --db-green-14{syntax:"<color>";initial-value:#eefeec;inherits:true}@property --db-green-origin-base{syntax:"<color>";initial-value:#408335;inherits:true}@property --db-green-origin-light-default{syntax:"<color>";initial-value:#408335;inherits:true}@property --db-green-origin-light-hovered{syntax:"<color>";initial-value:#1c4116;inherits:true}@property --db-green-origin-light-pressed{syntax:"<color>";initial-value:#316828;inherits:true}@property --db-green-origin-dark-default{syntax:"<color>";initial-value:#408335;inherits:true}@property --db-green-origin-dark-hovered{syntax:"<color>";initial-value:#1c4116;inherits:true}@property --db-green-origin-dark-pressed{syntax:"<color>";initial-value:#316828;inherits:true}@property --db-green-on-origin-light-default{syntax:"<color>";initial-value:#f7fef6;inherits:true}@property --db-green-on-origin-dark-default{syntax:"<color>";initial-value:#f7fef6;inherits:true}@property --db-light-green-0{syntax:"<color>";initial-value:#061100;inherits:true}@property --db-light-green-1{syntax:"<color>";initial-value:#0c1b01;inherits:true}@property --db-light-green-2{syntax:"<color>";initial-value:#142901;inherits:true}@property --db-light-green-3{syntax:"<color>";initial-value:#1d3702;inherits:true}@property --db-light-green-4{syntax:"<color>";initial-value:#264604;inherits:true}@property --db-light-green-5{syntax:"<color>";initial-value:#305506;inherits:true}@property --db-light-green-6{syntax:"<color>";initial-value:#3d6a09;inherits:true}@property --db-light-green-7{syntax:"<color>";initial-value:#4e850f;inherits:true}@property --db-light-green-8{syntax:"<color>";initial-value:#60a114;inherits:true}@property --db-light-green-9{syntax:"<color>";initial-value:#72bf1a;inherits:true}@property --db-light-green-10{syntax:"<color>";initial-value:#85dd20;inherits:true}@property --db-light-green-11{syntax:"<color>";initial-value:#99fc26;inherits:true}@property --db-light-green-12{syntax:"<color>";initial-value:#c3ff9d;inherits:true}@property --db-light-green-13{syntax:"<color>";initial-value:#d9ffc4;inherits:true}@property --db-light-green-14{syntax:"<color>";initial-value:#edffe4;inherits:true}@property --db-light-green-origin-base{syntax:"<color>";initial-value:#63a615;inherits:true}@property --db-light-green-origin-light-default{syntax:"<color>";initial-value:#63a615;inherits:true}@property --db-light-green-origin-light-hovered{syntax:"<color>";initial-value:#88e221;inherits:true}@property --db-light-green-origin-light-pressed{syntax:"<color>";initial-value:#75c31b;inherits:true}@property --db-light-green-origin-dark-default{syntax:"<color>";initial-value:#63a615;inherits:true}@property --db-light-green-origin-dark-hovered{syntax:"<color>";initial-value:#88e221;inherits:true}@property --db-light-green-origin-dark-pressed{syntax:"<color>";initial-value:#75c31b;inherits:true}@property --db-light-green-on-origin-light-default{syntax:"<color>";initial-value:#030900;inherits:true}@property --db-light-green-on-origin-dark-default{syntax:"<color>";initial-value:#030900;inherits:true}@property --db-burgundy-0{syntax:"<color>";initial-value:#1e060c;inherits:true}@property --db-burgundy-1{syntax:"<color>";initial-value:#2d0d14;inherits:true}@property --db-burgundy-2{syntax:"<color>";initial-value:#40151f;inherits:true}@property --db-burgundy-3{syntax:"<color>";initial-value:#541e2b;inherits:true}@property --db-burgundy-4{syntax:"<color>";initial-value:#682837;inherits:true}@property --db-burgundy-5{syntax:"<color>";initial-value:#7e3144;inherits:true}@property --db-burgundy-6{syntax:"<color>";initial-value:#9c3f55;inherits:true}@property --db-burgundy-7{syntax:"<color>";initial-value:#c2516c;inherits:true}@property --db-burgundy-8{syntax:"<color>";initial-value:#d77187;inherits:true}@property --db-burgundy-9{syntax:"<color>";initial-value:#df98a5;inherits:true}@property --db-burgundy-10{syntax:"<color>";initial-value:#e8bbc3;inherits:true}@property --db-burgundy-11{syntax:"<color>";initial-value:#f3dde1;inherits:true}@property --db-burgundy-12{syntax:"<color>";initial-value:#f8ebed;inherits:true}@property --db-burgundy-13{syntax:"<color>";initial-value:#faf2f3;inherits:true}@property --db-burgundy-14{syntax:"<color>";initial-value:#fcf8f9;inherits:true}@property --db-burgundy-origin-base{syntax:"<color>";initial-value:#a9455d;inherits:true}@property --db-burgundy-origin-light-default{syntax:"<color>";initial-value:#a9455d;inherits:true}@property --db-burgundy-origin-light-hovered{syntax:"<color>";initial-value:#4f1c28;inherits:true}@property --db-burgundy-origin-light-pressed{syntax:"<color>";initial-value:#833447;inherits:true}@property --db-burgundy-origin-dark-default{syntax:"<color>";initial-value:#a9455d;inherits:true}@property --db-burgundy-origin-dark-hovered{syntax:"<color>";initial-value:#4f1c28;inherits:true}@property --db-burgundy-origin-dark-pressed{syntax:"<color>";initial-value:#833447;inherits:true}@property --db-burgundy-on-origin-light-default{syntax:"<color>";initial-value:#fcf8f9;inherits:true}@property --db-burgundy-on-origin-dark-default{syntax:"<color>";initial-value:#fcf8f9;inherits:true}@property --db-container-3xs{syntax:"*";initial-value:14rem;inherits:true}@property --db-container-2xs{syntax:"*";initial-value:16rem;inherits:true}@property --db-container-xs{syntax:"*";initial-value:20rem;inherits:true}@property --db-container-sm{syntax:"*";initial-value:24rem;inherits:true}@property --db-container-md{syntax:"*";initial-value:28rem;inherits:true}@property --db-container-lg{syntax:"*";initial-value:32rem;inherits:true}@property --db-container-xl{syntax:"*";initial-value:36rem;inherits:true}@property --db-container-2xl{syntax:"*";initial-value:42rem;inherits:true}@property --db-container-3xl{syntax:"*";initial-value:48rem;inherits:true}@property --db-font-family-sans{syntax:"*";initial-value:"OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-font-family-head{syntax:"*";initial-value:"OpenSans Head",helvetica,arial,sans-serif;inherits:true}
|
|
97
|
+
)}}[data-mode]{background-color:var(--db-neutral-bg-basic-level-1-default);color:var(--db-neutral-on-bg-basic-emphasis-100-default)}[data-mode]:after,[data-mode]:before{--db-icon-color:var(--db-neutral-on-bg-basic-emphasis-100-default)}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@layer variables{}@property --db-base-icon-weight-regular-desktop-headline-3xl{syntax:"<number>";initial-value:96;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-2xl{syntax:"<number>";initial-value:80;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-lg{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-md{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-sm{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-2xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-3xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-desktop-headline-xs{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-desktop-body-lg{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-desktop-body-xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-desktop-body-2xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-desktop-body-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-regular-desktop-body-md{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-desktop-body-sm{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-desktop-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-desktop-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-desktop-body-xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-mobile-body-lg{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-body-md{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-mobile-body-sm{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-mobile-body-xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-body-xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-mobile-body-2xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-body-3xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-mobile-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-2xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-3xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-mobile-headline-3xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-tablet-body-lg{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-tablet-body-md{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-tablet-body-sm{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-tablet-body-xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-tablet-body-xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-regular-tablet-body-2xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-tablet-body-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-regular-tablet-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-tablet-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-lg{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-md{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-sm{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-2xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-2xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-3xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-regular-tablet-headline-3xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-3xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-expressive-desktop-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-lg{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-md{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-sm{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-xl{syntax:"<number>";initial-value:80;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-xs{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-2xl{syntax:"<number>";initial-value:96;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-2xs{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-3xl{syntax:"<number>";initial-value:120;inherits:true}@property --db-base-icon-weight-expressive-desktop-headline-3xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-3xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-expressive-tablet-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-lg{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-md{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-sm{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-xl{syntax:"<number>";initial-value:64;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-xs{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-2xl{syntax:"<number>";initial-value:80;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-2xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-3xl{syntax:"<number>";initial-value:96;inherits:true}@property --db-base-icon-weight-expressive-tablet-headline-3xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-2xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-3xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-expressive-mobile-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-lg{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-md{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-sm{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-xs{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-2xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-expressive-mobile-headline-3xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-desktop-body-lg{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-desktop-body-md{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-desktop-body-sm{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-desktop-body-xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-desktop-body-xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-desktop-body-2xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-desktop-body-3xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-functional-desktop-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-desktop-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-functional-desktop-headline-3xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-tablet-body-lg{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-tablet-body-md{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-tablet-body-sm{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-tablet-body-xl{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-tablet-body-xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-tablet-body-2xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-tablet-body-3xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-functional-tablet-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-tablet-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-lg{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-md{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-sm{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-xl{syntax:"<number>";initial-value:40;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-xs{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-2xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-3xl{syntax:"<number>";initial-value:48;inherits:true}@property --db-base-icon-weight-functional-tablet-headline-3xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-mobile-body-lg{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-body-md{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-mobile-body-sm{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-mobile-body-xl{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-body-xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-mobile-body-2xl{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-body-3xl{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-body-2xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-mobile-body-3xs{syntax:"<number>";initial-value:14;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-lg{syntax:"<number>";initial-value:28;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-md{syntax:"<number>";initial-value:24;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-sm{syntax:"<number>";initial-value:20;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-2xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-2xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-3xl{syntax:"<number>";initial-value:32;inherits:true}@property --db-base-icon-weight-functional-mobile-headline-3xs{syntax:"<number>";initial-value:16;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-3xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-2xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-lg{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-md{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-sm{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-2xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-headline-xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-lg{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-2xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-desktop-body-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-lg{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-2xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-3xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-2xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-3xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-mobile-headline-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-lg{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-2xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-lg{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-md{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-sm{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-2xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-3xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-regular-tablet-headline-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-3xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-lg{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-md{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-sm{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-xs{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-2xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-2xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-3xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-base-icon-font-size-expressive-desktop-headline-3xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-3xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-lg{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-md{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-sm{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-xl{syntax:"*";initial-value:4rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-2xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-2xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-3xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-base-icon-font-size-expressive-tablet-headline-3xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-3xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-lg{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-md{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-sm{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-expressive-mobile-headline-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-lg{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-md{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-sm{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-3xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-functional-desktop-headline-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-lg{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-md{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-sm{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-3xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-md{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-xl{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-base-icon-font-size-functional-tablet-headline-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-lg{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-md{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-sm{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-2xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-3xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-body-3xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-lg{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-2xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-3xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-base-icon-font-size-functional-mobile-headline-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-border-width-3xs{syntax:"*";initial-value:.0625rem;inherits:true}@property --db-border-width-2xs{syntax:"*";initial-value:.125rem;inherits:true}@property --db-border-width-xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-border-width-sm{syntax:"*";initial-value:.375rem;inherits:true}@property --db-border-width-md{syntax:"*";initial-value:.5rem;inherits:true}@property --db-border-width-lg{syntax:"*";initial-value:.625rem;inherits:true}@property --db-border-width-xl{syntax:"*";initial-value:.75rem;inherits:true}@property --db-border-width-2xl{syntax:"*";initial-value:.875rem;inherits:true}@property --db-border-width-3xl{syntax:"*";initial-value:1rem;inherits:true}@property --db-border-radius-3xs{syntax:"*";initial-value:.0625rem;inherits:true}@property --db-border-radius-2xs{syntax:"*";initial-value:.125rem;inherits:true}@property --db-border-radius-xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-border-radius-sm{syntax:"*";initial-value:.5rem;inherits:true}@property --db-border-radius-md{syntax:"*";initial-value:.75rem;inherits:true}@property --db-border-radius-lg{syntax:"*";initial-value:1rem;inherits:true}@property --db-border-radius-xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-border-radius-2xl{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-border-radius-3xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-border-radius-full{syntax:"*";initial-value:500rem;inherits:true}@property --db-elevation-sm{syntax:"*";initial-value:0 0 1px -1px rgba(0,0,0,.2),0 0 4px 1px rgba(0,0,0,.122),0 0 2px rgba(0,0,0,.141);inherits:true}@property --db-elevation-md{syntax:"*";initial-value:0 0 2px -1px rgba(0,0,0,.2),0 0 8px 1px rgba(0,0,0,.122),0 0 4px rgba(0,0,0,.141);inherits:true}@property --db-elevation-lg{syntax:"*";initial-value:0 0 4px -3px rgba(0,0,0,.2),0 0 16px 3px rgba(0,0,0,.122),0 0 8px 1px rgba(0,0,0,.141);inherits:true}@property --db-sizing-fixed-mobile-header{syntax:"*";initial-value:3.5rem;inherits:true}@property --db-sizing-regular-3xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-sizing-regular-2xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-sizing-regular-xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-sizing-regular-lg{syntax:"*";initial-value:4rem;inherits:true}@property --db-sizing-regular-md{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-sizing-regular-sm{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-sizing-regular-xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-sizing-regular-2xs{syntax:"*";initial-value:.75rem;inherits:true}@property --db-sizing-regular-3xs{syntax:"*";initial-value:.5rem;inherits:true}@property --db-sizing-functional-3xs{syntax:"*";initial-value:.375rem;inherits:true}@property --db-sizing-functional-2xs{syntax:"*";initial-value:.625rem;inherits:true}@property --db-sizing-functional-xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-sizing-functional-sm{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-sizing-functional-md{syntax:"*";initial-value:2rem;inherits:true}@property --db-sizing-functional-lg{syntax:"*";initial-value:3rem;inherits:true}@property --db-sizing-functional-xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-sizing-functional-2xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-sizing-functional-3xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-sizing-expressive-3xs{syntax:"*";initial-value:.625rem;inherits:true}@property --db-sizing-expressive-2xs{syntax:"*";initial-value:.875rem;inherits:true}@property --db-sizing-expressive-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-sizing-expressive-sm{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-sizing-expressive-md{syntax:"*";initial-value:3rem;inherits:true}@property --db-sizing-expressive-lg{syntax:"*";initial-value:5rem;inherits:true}@property --db-sizing-expressive-xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-sizing-expressive-2xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-sizing-expressive-3xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-regular-desktop-3xl{syntax:"*";initial-value:40rem;inherits:true}@property --db-spacing-responsive-regular-desktop-2xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-regular-desktop-xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-regular-desktop-lg{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-regular-desktop-md{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-regular-desktop-sm{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-regular-desktop-xs{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-regular-desktop-2xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-regular-desktop-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-regular-tablet-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-regular-tablet-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-regular-tablet-xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-regular-tablet-sm{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-spacing-responsive-regular-tablet-md{syntax:"*";initial-value:4rem;inherits:true}@property --db-spacing-responsive-regular-tablet-lg{syntax:"*";initial-value:6rem;inherits:true}@property --db-spacing-responsive-regular-tablet-xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-regular-tablet-2xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-regular-tablet-3xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-regular-mobile-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-regular-mobile-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-regular-mobile-xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-regular-mobile-sm{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-regular-mobile-md{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-regular-mobile-lg{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-regular-mobile-xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-regular-mobile-2xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-regular-mobile-3xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-functional-desktop-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-functional-desktop-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-functional-desktop-xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-functional-desktop-sm{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-spacing-responsive-functional-desktop-md{syntax:"*";initial-value:4rem;inherits:true}@property --db-spacing-responsive-functional-desktop-lg{syntax:"*";initial-value:6rem;inherits:true}@property --db-spacing-responsive-functional-desktop-xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-functional-desktop-2xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-functional-desktop-3xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-functional-tablet-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-functional-tablet-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-functional-tablet-xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-functional-tablet-sm{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-functional-tablet-md{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-functional-tablet-lg{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-functional-tablet-xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-functional-tablet-2xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-functional-tablet-3xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-functional-mobile-3xs{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-responsive-functional-mobile-2xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-functional-mobile-xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-functional-mobile-sm{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-functional-mobile-md{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-spacing-responsive-functional-mobile-lg{syntax:"*";initial-value:4rem;inherits:true}@property --db-spacing-responsive-functional-mobile-xl{syntax:"*";initial-value:6rem;inherits:true}@property --db-spacing-responsive-functional-mobile-2xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-functional-mobile-3xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-3xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-2xs{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-xs{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-sm{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-md{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-lg{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-2xl{syntax:"*";initial-value:40rem;inherits:true}@property --db-spacing-responsive-expressive-desktop-3xl{syntax:"*";initial-value:50rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-3xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-2xs{syntax:"*";initial-value:1.75rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-xs{syntax:"*";initial-value:2.5rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-sm{syntax:"*";initial-value:4rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-md{syntax:"*";initial-value:6rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-lg{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-2xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-responsive-expressive-tablet-3xl{syntax:"*";initial-value:40rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-3xs{syntax:"*";initial-value:1.25rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-2xs{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-xs{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-sm{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-md{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-lg{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-xl{syntax:"*";initial-value:10rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-2xl{syntax:"*";initial-value:15rem;inherits:true}@property --db-spacing-responsive-expressive-mobile-3xl{syntax:"*";initial-value:30rem;inherits:true}@property --db-spacing-fixed-regular-3xs{syntax:"*";initial-value:.125rem;inherits:true}@property --db-spacing-fixed-regular-2xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-spacing-fixed-regular-xs{syntax:"*";initial-value:.5rem;inherits:true}@property --db-spacing-fixed-regular-sm{syntax:"*";initial-value:.75rem;inherits:true}@property --db-spacing-fixed-regular-md{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-fixed-regular-lg{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-fixed-regular-xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-fixed-regular-2xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-fixed-regular-3xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-fixed-functional-3xs{syntax:"*";initial-value:.125rem;inherits:true}@property --db-spacing-fixed-functional-2xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-spacing-fixed-functional-xs{syntax:"*";initial-value:.375rem;inherits:true}@property --db-spacing-fixed-functional-sm{syntax:"*";initial-value:.5rem;inherits:true}@property --db-spacing-fixed-functional-md{syntax:"*";initial-value:.75rem;inherits:true}@property --db-spacing-fixed-functional-lg{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-fixed-functional-xl{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-fixed-functional-2xl{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-fixed-functional-3xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-fixed-expressive-3xs{syntax:"*";initial-value:.25rem;inherits:true}@property --db-spacing-fixed-expressive-2xs{syntax:"*";initial-value:.5rem;inherits:true}@property --db-spacing-fixed-expressive-xs{syntax:"*";initial-value:.75rem;inherits:true}@property --db-spacing-fixed-expressive-sm{syntax:"*";initial-value:1rem;inherits:true}@property --db-spacing-fixed-expressive-md{syntax:"*";initial-value:1.5rem;inherits:true}@property --db-spacing-fixed-expressive-lg{syntax:"*";initial-value:2rem;inherits:true}@property --db-spacing-fixed-expressive-xl{syntax:"*";initial-value:3rem;inherits:true}@property --db-spacing-fixed-expressive-2xl{syntax:"*";initial-value:5rem;inherits:true}@property --db-spacing-fixed-expressive-3xl{syntax:"*";initial-value:7.5rem;inherits:true}@property --db-transition-duration-extra-slow{syntax:"*";initial-value:.5s;inherits:true}@property --db-transition-duration-slow{syntax:"*";initial-value:.4s;inherits:true}@property --db-transition-duration-medium{syntax:"*";initial-value:.3s;inherits:true}@property --db-transition-duration-fast{syntax:"*";initial-value:.15s;inherits:true}@property --db-transition-duration-extra-fast{syntax:"*";initial-value:75ms;inherits:true}@property --db-transition-timing-show{syntax:"*";initial-value:cubic-bezier(.49,.1,.16,1);inherits:true}@property --db-transition-timing-hide{syntax:"*";initial-value:cubic-bezier(.49,.1,.16,1);inherits:true}@property --db-transition-timing-emotional{syntax:"*";initial-value:cubic-bezier(.27,.05,.4,.95);inherits:true}@property --db-transition-timing-functional{syntax:"*";initial-value:cubic-bezier(.15,0,.45,1);inherits:true}@property --db-transition-straight-show{syntax:"*";initial-value:.5s cubic-bezier(.49,.1,.16,1);inherits:true}@property --db-transition-straight-hide{syntax:"*";initial-value:.4s cubic-bezier(.49,.1,.16,1);inherits:true}@property --db-transition-straight-emotional{syntax:"*";initial-value:.3s cubic-bezier(.27,.05,.4,.95);inherits:true}@property --db-transition-straight-functional{syntax:"*";initial-value:.3s cubic-bezier(.15,0,.45,1);inherits:true}@property --db-opacity-3xs{syntax:"<number>";initial-value:.08;inherits:true}@property --db-opacity-2xs{syntax:"<number>";initial-value:.16;inherits:true}@property --db-opacity-xs{syntax:"<number>";initial-value:.24;inherits:true}@property --db-opacity-sm{syntax:"<number>";initial-value:.32;inherits:true}@property --db-opacity-md{syntax:"<number>";initial-value:.4;inherits:true}@property --db-opacity-lg{syntax:"<number>";initial-value:.68;inherits:true}@property --db-opacity-xl{syntax:"<number>";initial-value:.76;inherits:true}@property --db-opacity-2xl{syntax:"<number>";initial-value:.84;inherits:true}@property --db-opacity-3xl{syntax:"<number>";initial-value:.92;inherits:true}@property --db-opacity-full{syntax:"<number>";initial-value:1;inherits:true}@property --db-typography-regular-desktop-headline-3xl{syntax:"*";initial-value:bolder 5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-2xl{syntax:"*";initial-value:bolder 4rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-xl{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-lg{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-md{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-sm{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-2xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-3xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-headline-xs{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-lg{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-2xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-3xl{syntax:"*";initial-value:normal 2rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-md{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-sm{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-desktop-body-xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-lg{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-md{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-sm{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-2xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-3xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-lg{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-md{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-sm{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-2xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-2xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-3xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-mobile-headline-3xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-lg{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-md{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-sm{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-2xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-3xl{syntax:"*";initial-value:normal 2rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-lg{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-md{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-sm{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-2xl{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-2xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-3xl{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-regular-tablet-headline-3xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-lg{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-md{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-sm{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-xs{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-2xl{syntax:"*";initial-value:normal 2rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-3xl{syntax:"*";initial-value:normal 2.5rem/1.6 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-2xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-lg{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-md{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-sm{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-xl{syntax:"*";initial-value:bolder 4rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-xs{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-2xl{syntax:"*";initial-value:bolder 5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-2xs{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-3xl{syntax:"*";initial-value:bolder 6rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-desktop-headline-3xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-lg{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-md{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-sm{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-xs{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-2xl{syntax:"*";initial-value:normal 2rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-3xl{syntax:"*";initial-value:normal 2.5rem/1.6 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-2xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-lg{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-md{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-sm{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-xl{syntax:"*";initial-value:bolder 3rem/1.3333333333 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-xs{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-2xl{syntax:"*";initial-value:bolder 4rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-2xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-3xl{syntax:"*";initial-value:bolder 5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-tablet-headline-3xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-lg{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-md{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-sm{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-xs{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-2xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-3xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-2xs{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-lg{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-md{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-sm{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-xs{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-2xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-2xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-3xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-expressive-mobile-headline-3xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-lg{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-md{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-sm{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-2xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-3xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-lg{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-md{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-sm{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-2xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-2xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-3xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-desktop-headline-3xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-lg{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-md{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-sm{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-xl{syntax:"*";initial-value:normal 1.25rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-2xl{syntax:"*";initial-value:normal 1.5rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-3xl{syntax:"*";initial-value:normal 1.75rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-lg{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-md{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-sm{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-xl{syntax:"*";initial-value:bolder 2rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-xs{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-2xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-2xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-3xl{syntax:"*";initial-value:bolder 2.5rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-tablet-headline-3xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-lg{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-md{syntax:"*";initial-value:normal .875rem/1.4285714286 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-sm{syntax:"*";initial-value:normal .75rem/1.3333333333 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-xl{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-2xl{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-3xl{syntax:"*";initial-value:normal 1rem/1.5 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-2xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-body-3xs{syntax:"*";initial-value:normal .625rem/1.4 "OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-lg{syntax:"*";initial-value:bolder 1.5rem/1.1666666667 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-md{syntax:"*";initial-value:bolder 1.25rem/1.2 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-sm{syntax:"*";initial-value:bolder 1rem/1.25 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-xl{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-2xl{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-2xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-3xl{syntax:"*";initial-value:bolder 1.75rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-typography-functional-mobile-headline-3xs{syntax:"*";initial-value:bolder .875rem/1.1428571429 "OpenSans Head",helvetica,arial,sans-serif;inherits:true}@property --db-neutral-0{syntax:"<color>";initial-value:#0d0e10;inherits:true}@property --db-neutral-1{syntax:"<color>";initial-value:#16181b;inherits:true}@property --db-neutral-2{syntax:"<color>";initial-value:#222428;inherits:true}@property --db-neutral-3{syntax:"<color>";initial-value:#2e3035;inherits:true}@property --db-neutral-4{syntax:"<color>";initial-value:#3b3e44;inherits:true}@property --db-neutral-5{syntax:"<color>";initial-value:#484b52;inherits:true}@property --db-neutral-6{syntax:"<color>";initial-value:#5a5e67;inherits:true}@property --db-neutral-7{syntax:"<color>";initial-value:#727782;inherits:true}@property --db-neutral-8{syntax:"<color>";initial-value:#8b919d;inherits:true}@property --db-neutral-9{syntax:"<color>";initial-value:#a6abb5;inherits:true}@property --db-neutral-10{syntax:"<color>";initial-value:#c3c7cd;inherits:true}@property --db-neutral-11{syntax:"<color>";initial-value:#e1e2e6;inherits:true}@property --db-neutral-12{syntax:"<color>";initial-value:#edeef0;inherits:true}@property --db-neutral-13{syntax:"<color>";initial-value:#f3f3f5;inherits:true}@property --db-neutral-14{syntax:"<color>";initial-value:#fff;inherits:true}@property --db-neutral-origin-base{syntax:"<color>";initial-value:#232529;inherits:true}@property --db-neutral-origin-light-default{syntax:"<color>";initial-value:#232529;inherits:true}@property --db-neutral-origin-light-hovered{syntax:"<color>";initial-value:#595e66;inherits:true}@property --db-neutral-origin-light-pressed{syntax:"<color>";initial-value:#383b40;inherits:true}@property --db-neutral-origin-dark-default{syntax:"<color>";initial-value:#232529;inherits:true}@property --db-neutral-origin-dark-hovered{syntax:"<color>";initial-value:#595e66;inherits:true}@property --db-neutral-origin-dark-pressed{syntax:"<color>";initial-value:#383b40;inherits:true}@property --db-neutral-on-origin-light-default{syntax:"<color>";initial-value:#f9f9fa;inherits:true}@property --db-neutral-on-origin-dark-default{syntax:"<color>";initial-value:#f9f9fa;inherits:true}@property --db-brand-0{syntax:"<color>";initial-value:#09082f;inherits:true}@property --db-brand-1{syntax:"<color>";initial-value:#110f44;inherits:true}@property --db-brand-2{syntax:"<color>";initial-value:#1b195e;inherits:true}@property --db-brand-3{syntax:"<color>";initial-value:#25237a;inherits:true}@property --db-brand-4{syntax:"<color>";initial-value:#302d97;inherits:true}@property --db-brand-5{syntax:"<color>";initial-value:#3b38b5;inherits:true}@property --db-brand-6{syntax:"<color>";initial-value:#514ec7;inherits:true}@property --db-brand-7{syntax:"<color>";initial-value:#6d6bd4;inherits:true}@property --db-brand-8{syntax:"<color>";initial-value:#8988de;inherits:true}@property --db-brand-9{syntax:"<color>";initial-value:#a6a5e7;inherits:true}@property --db-brand-10{syntax:"<color>";initial-value:#c3c3ef;inherits:true}@property --db-brand-11{syntax:"<color>";initial-value:#e1e1f7;inherits:true}@property --db-brand-12{syntax:"<color>";initial-value:#ededfa;inherits:true}@property --db-brand-13{syntax:"<color>";initial-value:#f3f3fc;inherits:true}@property --db-brand-14{syntax:"<color>";initial-value:#f9f9fd;inherits:true}@property --db-brand-origin-base{syntax:"<color>";initial-value:#514ec7;inherits:true}@property --db-brand-origin-light-default{syntax:"<color>";initial-value:#514ec7;inherits:true}@property --db-brand-origin-light-hovered{syntax:"<color>";initial-value:#1d1b64;inherits:true}@property --db-brand-origin-light-pressed{syntax:"<color>";initial-value:#3834ac;inherits:true}@property --db-brand-origin-dark-default{syntax:"<color>";initial-value:#514ec7;inherits:true}@property --db-brand-origin-dark-hovered{syntax:"<color>";initial-value:#1d1b64;inherits:true}@property --db-brand-origin-dark-pressed{syntax:"<color>";initial-value:#3834ac;inherits:true}@property --db-brand-on-origin-light-default{syntax:"<color>";initial-value:#cbffe7;inherits:true}@property --db-brand-on-origin-dark-default{syntax:"<color>";initial-value:#cbffe7;inherits:true}@property --db-informational-0{syntax:"<color>";initial-value:#00101c;inherits:true}@property --db-informational-1{syntax:"<color>";initial-value:#00192a;inherits:true}@property --db-informational-2{syntax:"<color>";initial-value:#00263d;inherits:true}@property --db-informational-3{syntax:"<color>";initial-value:#003450;inherits:true}@property --db-informational-4{syntax:"<color>";initial-value:#004164;inherits:true}@property --db-informational-5{syntax:"<color>";initial-value:#005078;inherits:true}@property --db-informational-6{syntax:"<color>";initial-value:#006495;inherits:true}@property --db-informational-7{syntax:"<color>";initial-value:#007eba;inherits:true}@property --db-informational-8{syntax:"<color>";initial-value:#0099e1;inherits:true}@property --db-informational-9{syntax:"<color>";initial-value:#41b3ff;inherits:true}@property --db-informational-10{syntax:"<color>";initial-value:#96cbff;inherits:true}@property --db-informational-11{syntax:"<color>";initial-value:#cfe5ff;inherits:true}@property --db-informational-12{syntax:"<color>";initial-value:#e3efff;inherits:true}@property --db-informational-13{syntax:"<color>";initial-value:#ecf4ff;inherits:true}@property --db-informational-14{syntax:"<color>";initial-value:#f6faff;inherits:true}@property --db-informational-origin-base{syntax:"<color>";initial-value:#00aeff;inherits:true}@property --db-informational-origin-light-default{syntax:"<color>";initial-value:#00aeff;inherits:true}@property --db-informational-origin-light-hovered{syntax:"<color>";initial-value:#c2dfff;inherits:true}@property --db-informational-origin-light-pressed{syntax:"<color>";initial-value:#87c6ff;inherits:true}@property --db-informational-origin-dark-default{syntax:"<color>";initial-value:#00aeff;inherits:true}@property --db-informational-origin-dark-hovered{syntax:"<color>";initial-value:#c2dfff;inherits:true}@property --db-informational-origin-dark-pressed{syntax:"<color>";initial-value:#87c6ff;inherits:true}@property --db-informational-on-origin-light-default{syntax:"<color>";initial-value:#000812;inherits:true}@property --db-informational-on-origin-dark-default{syntax:"<color>";initial-value:#000812;inherits:true}@property --db-warning-0{syntax:"<color>";initial-value:#1a0b00;inherits:true}@property --db-warning-1{syntax:"<color>";initial-value:#271300;inherits:true}@property --db-warning-2{syntax:"<color>";initial-value:#381d00;inherits:true}@property --db-warning-3{syntax:"<color>";initial-value:#4a2800;inherits:true}@property --db-warning-4{syntax:"<color>";initial-value:#5c3400;inherits:true}@property --db-warning-5{syntax:"<color>";initial-value:#704000;inherits:true}@property --db-warning-6{syntax:"<color>";initial-value:#8a5100;inherits:true}@property --db-warning-7{syntax:"<color>";initial-value:#ad6600;inherits:true}@property --db-warning-8{syntax:"<color>";initial-value:#d17d00;inherits:true}@property --db-warning-9{syntax:"<color>";initial-value:#f69400;inherits:true}@property --db-warning-10{syntax:"<color>";initial-value:#ffb783;inherits:true}@property --db-warning-11{syntax:"<color>";initial-value:#ffdbc8;inherits:true}@property --db-warning-12{syntax:"<color>";initial-value:#ffeadf;inherits:true}@property --db-warning-13{syntax:"<color>";initial-value:#fff1ea;inherits:true}@property --db-warning-14{syntax:"<color>";initial-value:#fff8f5;inherits:true}@property --db-warning-origin-base{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-warning-origin-light-default{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-warning-origin-light-hovered{syntax:"<color>";initial-value:#ffe4d5;inherits:true}@property --db-warning-origin-light-pressed{syntax:"<color>";initial-value:#ffbf95;inherits:true}@property --db-warning-origin-dark-default{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-warning-origin-dark-hovered{syntax:"<color>";initial-value:#ffe4d5;inherits:true}@property --db-warning-origin-dark-pressed{syntax:"<color>";initial-value:#ffbf95;inherits:true}@property --db-warning-on-origin-light-default{syntax:"<color>";initial-value:#100500;inherits:true}@property --db-warning-on-origin-dark-default{syntax:"<color>";initial-value:#100500;inherits:true}@property --db-successful-0{syntax:"<color>";initial-value:#051100;inherits:true}@property --db-successful-1{syntax:"<color>";initial-value:#091c00;inherits:true}@property --db-successful-2{syntax:"<color>";initial-value:#112900;inherits:true}@property --db-successful-3{syntax:"<color>";initial-value:#193800;inherits:true}@property --db-successful-4{syntax:"<color>";initial-value:#214600;inherits:true}@property --db-successful-5{syntax:"<color>";initial-value:#2a5600;inherits:true}@property --db-successful-6{syntax:"<color>";initial-value:#366b00;inherits:true}@property --db-successful-7{syntax:"<color>";initial-value:#458600;inherits:true}@property --db-successful-8{syntax:"<color>";initial-value:#55a300;inherits:true}@property --db-successful-9{syntax:"<color>";initial-value:#65c101;inherits:true}@property --db-successful-10{syntax:"<color>";initial-value:#76df01;inherits:true}@property --db-successful-11{syntax:"<color>";initial-value:#88fe01;inherits:true}@property --db-successful-12{syntax:"<color>";initial-value:#bfffa3;inherits:true}@property --db-successful-13{syntax:"<color>";initial-value:#d7ffc7;inherits:true}@property --db-successful-14{syntax:"<color>";initial-value:#ecffe5;inherits:true}@property --db-successful-origin-base{syntax:"<color>";initial-value:#85f901;inherits:true}@property --db-successful-origin-light-default{syntax:"<color>";initial-value:#85f901;inherits:true}@property --db-successful-origin-light-hovered{syntax:"<color>";initial-value:#63bc01;inherits:true}@property --db-successful-origin-light-pressed{syntax:"<color>";initial-value:#74da01;inherits:true}@property --db-successful-origin-dark-default{syntax:"<color>";initial-value:#85f901;inherits:true}@property --db-successful-origin-dark-hovered{syntax:"<color>";initial-value:#63bc01;inherits:true}@property --db-successful-origin-dark-pressed{syntax:"<color>";initial-value:#74da01;inherits:true}@property --db-successful-on-origin-light-default{syntax:"<color>";initial-value:#020a00;inherits:true}@property --db-successful-on-origin-dark-default{syntax:"<color>";initial-value:#020a00;inherits:true}@property --db-critical-0{syntax:"<color>";initial-value:#270001;inherits:true}@property --db-critical-1{syntax:"<color>";initial-value:#390002;inherits:true}@property --db-critical-2{syntax:"<color>";initial-value:#500003;inherits:true}@property --db-critical-3{syntax:"<color>";initial-value:#690005;inherits:true}@property --db-critical-4{syntax:"<color>";initial-value:#820008;inherits:true}@property --db-critical-5{syntax:"<color>";initial-value:#9c000c;inherits:true}@property --db-critical-6{syntax:"<color>";initial-value:#c00111;inherits:true}@property --db-critical-7{syntax:"<color>";initial-value:#ef0119;inherits:true}@property --db-critical-8{syntax:"<color>";initial-value:#ff5357;inherits:true}@property --db-critical-9{syntax:"<color>";initial-value:#ff888a;inherits:true}@property --db-critical-10{syntax:"<color>";initial-value:#ffb3b4;inherits:true}@property --db-critical-11{syntax:"<color>";initial-value:#ffdada;inherits:true}@property --db-critical-12{syntax:"<color>";initial-value:#ffe9e9;inherits:true}@property --db-critical-13{syntax:"<color>";initial-value:#fff0f0;inherits:true}@property --db-critical-14{syntax:"<color>";initial-value:#fff8f8;inherits:true}@property --db-critical-origin-base{syntax:"<color>";initial-value:#fe011b;inherits:true}@property --db-critical-origin-light-default{syntax:"<color>";initial-value:#fe011b;inherits:true}@property --db-critical-origin-light-hovered{syntax:"<color>";initial-value:#ff9698;inherits:true}@property --db-critical-origin-light-pressed{syntax:"<color>";initial-value:#ff6669;inherits:true}@property --db-critical-origin-dark-default{syntax:"<color>";initial-value:#fe011b;inherits:true}@property --db-critical-origin-dark-hovered{syntax:"<color>";initial-value:#ff9698;inherits:true}@property --db-critical-origin-dark-pressed{syntax:"<color>";initial-value:#ff6669;inherits:true}@property --db-critical-on-origin-light-default{syntax:"<color>";initial-value:#1a0000;inherits:true}@property --db-critical-on-origin-dark-default{syntax:"<color>";initial-value:#1a0000;inherits:true}@property --db-yellow-0{syntax:"<color>";initial-value:#120e00;inherits:true}@property --db-yellow-1{syntax:"<color>";initial-value:#1d1700;inherits:true}@property --db-yellow-2{syntax:"<color>";initial-value:#2b2300;inherits:true}@property --db-yellow-3{syntax:"<color>";initial-value:#3a3000;inherits:true}@property --db-yellow-4{syntax:"<color>";initial-value:#493d00;inherits:true}@property --db-yellow-5{syntax:"<color>";initial-value:#594a00;inherits:true}@property --db-yellow-6{syntax:"<color>";initial-value:#6f5d00;inherits:true}@property --db-yellow-7{syntax:"<color>";initial-value:#8b7600;inherits:true}@property --db-yellow-8{syntax:"<color>";initial-value:#a98f00;inherits:true}@property --db-yellow-9{syntax:"<color>";initial-value:#c8a900;inherits:true}@property --db-yellow-10{syntax:"<color>";initial-value:#e7c400;inherits:true}@property --db-yellow-11{syntax:"<color>";initial-value:#ffe177;inherits:true}@property --db-yellow-12{syntax:"<color>";initial-value:#ffedbb;inherits:true}@property --db-yellow-13{syntax:"<color>";initial-value:#fff3d4;inherits:true}@property --db-yellow-14{syntax:"<color>";initial-value:#fff9ea;inherits:true}@property --db-yellow-origin-base{syntax:"<color>";initial-value:#ffd900;inherits:true}@property --db-yellow-origin-light-default{syntax:"<color>";initial-value:#ffd900;inherits:true}@property --db-yellow-origin-light-hovered{syntax:"<color>";initial-value:#c0a300;inherits:true}@property --db-yellow-origin-light-pressed{syntax:"<color>";initial-value:#dfbd00;inherits:true}@property --db-yellow-origin-dark-default{syntax:"<color>";initial-value:#ffd900;inherits:true}@property --db-yellow-origin-dark-hovered{syntax:"<color>";initial-value:#c0a300;inherits:true}@property --db-yellow-origin-dark-pressed{syntax:"<color>";initial-value:#dfbd00;inherits:true}@property --db-yellow-on-origin-light-default{syntax:"<color>";initial-value:#0a0700;inherits:true}@property --db-yellow-on-origin-dark-default{syntax:"<color>";initial-value:#0a0700;inherits:true}@property --db-orange-0{syntax:"<color>";initial-value:#1a0b00;inherits:true}@property --db-orange-1{syntax:"<color>";initial-value:#271300;inherits:true}@property --db-orange-2{syntax:"<color>";initial-value:#381d00;inherits:true}@property --db-orange-3{syntax:"<color>";initial-value:#4a2800;inherits:true}@property --db-orange-4{syntax:"<color>";initial-value:#5c3400;inherits:true}@property --db-orange-5{syntax:"<color>";initial-value:#704000;inherits:true}@property --db-orange-6{syntax:"<color>";initial-value:#8a5100;inherits:true}@property --db-orange-7{syntax:"<color>";initial-value:#ad6600;inherits:true}@property --db-orange-8{syntax:"<color>";initial-value:#d17d00;inherits:true}@property --db-orange-9{syntax:"<color>";initial-value:#f69400;inherits:true}@property --db-orange-10{syntax:"<color>";initial-value:#ffb783;inherits:true}@property --db-orange-11{syntax:"<color>";initial-value:#ffdbc8;inherits:true}@property --db-orange-12{syntax:"<color>";initial-value:#ffeadf;inherits:true}@property --db-orange-13{syntax:"<color>";initial-value:#fff1ea;inherits:true}@property --db-orange-14{syntax:"<color>";initial-value:#fff8f5;inherits:true}@property --db-orange-origin-base{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-orange-origin-light-default{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-orange-origin-light-hovered{syntax:"<color>";initial-value:#ffe4d5;inherits:true}@property --db-orange-origin-light-pressed{syntax:"<color>";initial-value:#ffbf95;inherits:true}@property --db-orange-origin-dark-default{syntax:"<color>";initial-value:#f90;inherits:true}@property --db-orange-origin-dark-hovered{syntax:"<color>";initial-value:#ffe4d5;inherits:true}@property --db-orange-origin-dark-pressed{syntax:"<color>";initial-value:#ffbf95;inherits:true}@property --db-orange-on-origin-light-default{syntax:"<color>";initial-value:#100500;inherits:true}@property --db-orange-on-origin-dark-default{syntax:"<color>";initial-value:#100500;inherits:true}@property --db-red-0{syntax:"<color>";initial-value:#280001;inherits:true}@property --db-red-1{syntax:"<color>";initial-value:#390001;inherits:true}@property --db-red-2{syntax:"<color>";initial-value:#500003;inherits:true}@property --db-red-3{syntax:"<color>";initial-value:#690004;inherits:true}@property --db-red-4{syntax:"<color>";initial-value:#820007;inherits:true}@property --db-red-5{syntax:"<color>";initial-value:#9c000b;inherits:true}@property --db-red-6{syntax:"<color>";initial-value:#c00010;inherits:true}@property --db-red-7{syntax:"<color>";initial-value:#ef0017;inherits:true}@property --db-red-8{syntax:"<color>";initial-value:#ff5357;inherits:true}@property --db-red-9{syntax:"<color>";initial-value:#ff888a;inherits:true}@property --db-red-10{syntax:"<color>";initial-value:#ffb3b4;inherits:true}@property --db-red-11{syntax:"<color>";initial-value:#ffdada;inherits:true}@property --db-red-12{syntax:"<color>";initial-value:#ffe9e9;inherits:true}@property --db-red-13{syntax:"<color>";initial-value:#fff0f0;inherits:true}@property --db-red-14{syntax:"<color>";initial-value:#fff8f8;inherits:true}@property --db-red-origin-base{syntax:"<color>";initial-value:#ff0019;inherits:true}@property --db-red-origin-light-default{syntax:"<color>";initial-value:#ff0019;inherits:true}@property --db-red-origin-light-hovered{syntax:"<color>";initial-value:#ff9798;inherits:true}@property --db-red-origin-light-pressed{syntax:"<color>";initial-value:#ff676a;inherits:true}@property --db-red-origin-dark-default{syntax:"<color>";initial-value:#ff0019;inherits:true}@property --db-red-origin-dark-hovered{syntax:"<color>";initial-value:#ff9798;inherits:true}@property --db-red-origin-dark-pressed{syntax:"<color>";initial-value:#ff676a;inherits:true}@property --db-red-on-origin-light-default{syntax:"<color>";initial-value:#1a0000;inherits:true}@property --db-red-on-origin-dark-default{syntax:"<color>";initial-value:#1a0000;inherits:true}@property --db-pink-0{syntax:"<color>";initial-value:#26000c;inherits:true}@property --db-pink-1{syntax:"<color>";initial-value:#380014;inherits:true}@property --db-pink-2{syntax:"<color>";initial-value:#4e0020;inherits:true}@property --db-pink-3{syntax:"<color>";initial-value:#66002b;inherits:true}@property --db-pink-4{syntax:"<color>";initial-value:#7e0037;inherits:true}@property --db-pink-5{syntax:"<color>";initial-value:#980044;inherits:true}@property --db-pink-6{syntax:"<color>";initial-value:#b05;inherits:true}@property --db-pink-7{syntax:"<color>";initial-value:#e9006c;inherits:true}@property --db-pink-8{syntax:"<color>";initial-value:#ff4c87;inherits:true}@property --db-pink-9{syntax:"<color>";initial-value:#ff85a5;inherits:true}@property --db-pink-10{syntax:"<color>";initial-value:#ffb1c3;inherits:true}@property --db-pink-11{syntax:"<color>";initial-value:#ffd9e1;inherits:true}@property --db-pink-12{syntax:"<color>";initial-value:#ffe8ed;inherits:true}@property --db-pink-13{syntax:"<color>";initial-value:#fff0f3;inherits:true}@property --db-pink-14{syntax:"<color>";initial-value:#fff7f9;inherits:true}@property --db-pink-origin-base{syntax:"<color>";initial-value:#f07;inherits:true}@property --db-pink-origin-light-default{syntax:"<color>";initial-value:#f07;inherits:true}@property --db-pink-origin-light-hovered{syntax:"<color>";initial-value:#ff9ab3;inherits:true}@property --db-pink-origin-light-pressed{syntax:"<color>";initial-value:#ff6995;inherits:true}@property --db-pink-origin-dark-default{syntax:"<color>";initial-value:#f07;inherits:true}@property --db-pink-origin-dark-hovered{syntax:"<color>";initial-value:#ff9ab3;inherits:true}@property --db-pink-origin-dark-pressed{syntax:"<color>";initial-value:#ff6995;inherits:true}@property --db-pink-on-origin-light-default{syntax:"<color>";initial-value:#190006;inherits:true}@property --db-pink-on-origin-dark-default{syntax:"<color>";initial-value:#190006;inherits:true}@property --db-violet-0{syntax:"<color>";initial-value:#1d002c;inherits:true}@property --db-violet-1{syntax:"<color>";initial-value:#2b0040;inherits:true}@property --db-violet-2{syntax:"<color>";initial-value:#3e0059;inherits:true}@property --db-violet-3{syntax:"<color>";initial-value:#510173;inherits:true}@property --db-violet-4{syntax:"<color>";initial-value:#65018e;inherits:true}@property --db-violet-5{syntax:"<color>";initial-value:#7a01ab;inherits:true}@property --db-violet-6{syntax:"<color>";initial-value:#9702d2;inherits:true}@property --db-violet-7{syntax:"<color>";initial-value:#b91eff;inherits:true}@property --db-violet-8{syntax:"<color>";initial-value:#c365ff;inherits:true}@property --db-violet-9{syntax:"<color>";initial-value:#cf91ff;inherits:true}@property --db-violet-10{syntax:"<color>";initial-value:#ddb7ff;inherits:true}@property --db-violet-11{syntax:"<color>";initial-value:#eddcff;inherits:true}@property --db-violet-12{syntax:"<color>";initial-value:#f4eaff;inherits:true}@property --db-violet-13{syntax:"<color>";initial-value:#f8f1ff;inherits:true}@property --db-violet-14{syntax:"<color>";initial-value:#fbf8ff;inherits:true}@property --db-violet-origin-base{syntax:"<color>";initial-value:#b603fc;inherits:true}@property --db-violet-origin-light-default{syntax:"<color>";initial-value:#b603fc;inherits:true}@property --db-violet-origin-light-hovered{syntax:"<color>";initial-value:#5c0182;inherits:true}@property --db-violet-origin-light-pressed{syntax:"<color>";initial-value:#9102c9;inherits:true}@property --db-violet-origin-dark-default{syntax:"<color>";initial-value:#b603fc;inherits:true}@property --db-violet-origin-dark-hovered{syntax:"<color>";initial-value:#5c0182;inherits:true}@property --db-violet-origin-dark-pressed{syntax:"<color>";initial-value:#9102c9;inherits:true}@property --db-violet-on-origin-light-default{syntax:"<color>";initial-value:#fbf8ff;inherits:true}@property --db-violet-on-origin-dark-default{syntax:"<color>";initial-value:#fbf8ff;inherits:true}@property --db-blue-0{syntax:"<color>";initial-value:#000b2e;inherits:true}@property --db-blue-1{syntax:"<color>";initial-value:#001442;inherits:true}@property --db-blue-2{syntax:"<color>";initial-value:#001f5b;inherits:true}@property --db-blue-3{syntax:"<color>";initial-value:#012a76;inherits:true}@property --db-blue-4{syntax:"<color>";initial-value:#013692;inherits:true}@property --db-blue-5{syntax:"<color>";initial-value:#0243af;inherits:true}@property --db-blue-6{syntax:"<color>";initial-value:#0354d7;inherits:true}@property --db-blue-7{syntax:"<color>";initial-value:#2c6cfe;inherits:true}@property --db-blue-8{syntax:"<color>";initial-value:#6989ff;inherits:true}@property --db-blue-9{syntax:"<color>";initial-value:#93a6ff;inherits:true}@property --db-blue-10{syntax:"<color>";initial-value:#b9c3ff;inherits:true}@property --db-blue-11{syntax:"<color>";initial-value:#dce1ff;inherits:true}@property --db-blue-12{syntax:"<color>";initial-value:#eaedff;inherits:true}@property --db-blue-13{syntax:"<color>";initial-value:#f1f3ff;inherits:true}@property --db-blue-14{syntax:"<color>";initial-value:#f8f9ff;inherits:true}@property --db-blue-origin-base{syntax:"<color>";initial-value:#0463fb;inherits:true}@property --db-blue-origin-light-default{syntax:"<color>";initial-value:#0463fb;inherits:true}@property --db-blue-origin-light-hovered{syntax:"<color>";initial-value:#012e7f;inherits:true}@property --db-blue-origin-light-pressed{syntax:"<color>";initial-value:#024dc7;inherits:true}@property --db-blue-origin-dark-default{syntax:"<color>";initial-value:#0463fb;inherits:true}@property --db-blue-origin-dark-hovered{syntax:"<color>";initial-value:#012e7f;inherits:true}@property --db-blue-origin-dark-pressed{syntax:"<color>";initial-value:#024dc7;inherits:true}@property --db-blue-on-origin-light-default{syntax:"<color>";initial-value:#f8f9ff;inherits:true}@property --db-blue-on-origin-dark-default{syntax:"<color>";initial-value:#f8f9ff;inherits:true}@property --db-cyan-0{syntax:"<color>";initial-value:#00101c;inherits:true}@property --db-cyan-1{syntax:"<color>";initial-value:#001a2a;inherits:true}@property --db-cyan-2{syntax:"<color>";initial-value:#00263c;inherits:true}@property --db-cyan-3{syntax:"<color>";initial-value:#00344f;inherits:true}@property --db-cyan-4{syntax:"<color>";initial-value:#014263;inherits:true}@property --db-cyan-5{syntax:"<color>";initial-value:#015078;inherits:true}@property --db-cyan-6{syntax:"<color>";initial-value:#016494;inherits:true}@property --db-cyan-7{syntax:"<color>";initial-value:#027eb9;inherits:true}@property --db-cyan-8{syntax:"<color>";initial-value:#0399df;inherits:true}@property --db-cyan-9{syntax:"<color>";initial-value:#3db4ff;inherits:true}@property --db-cyan-10{syntax:"<color>";initial-value:#95ccff;inherits:true}@property --db-cyan-11{syntax:"<color>";initial-value:#cee5ff;inherits:true}@property --db-cyan-12{syntax:"<color>";initial-value:#e2efff;inherits:true}@property --db-cyan-13{syntax:"<color>";initial-value:#ecf4ff;inherits:true}@property --db-cyan-14{syntax:"<color>";initial-value:#f6faff;inherits:true}@property --db-cyan-origin-base{syntax:"<color>";initial-value:#04a9f6;inherits:true}@property --db-cyan-origin-light-default{syntax:"<color>";initial-value:#04a9f6;inherits:true}@property --db-cyan-origin-light-hovered{syntax:"<color>";initial-value:#b8daff;inherits:true}@property --db-cyan-origin-light-pressed{syntax:"<color>";initial-value:#78c1ff;inherits:true}@property --db-cyan-origin-dark-default{syntax:"<color>";initial-value:#04a9f6;inherits:true}@property --db-cyan-origin-dark-hovered{syntax:"<color>";initial-value:#b8daff;inherits:true}@property --db-cyan-origin-dark-pressed{syntax:"<color>";initial-value:#78c1ff;inherits:true}@property --db-cyan-on-origin-light-default{syntax:"<color>";initial-value:#000811;inherits:true}@property --db-cyan-on-origin-dark-default{syntax:"<color>";initial-value:#000811;inherits:true}@property --db-turquoise-0{syntax:"<color>";initial-value:#001110;inherits:true}@property --db-turquoise-1{syntax:"<color>";initial-value:#001c1a;inherits:true}@property --db-turquoise-2{syntax:"<color>";initial-value:#002926;inherits:true}@property --db-turquoise-3{syntax:"<color>";initial-value:#003734;inherits:true}@property --db-turquoise-4{syntax:"<color>";initial-value:#004642;inherits:true}@property --db-turquoise-5{syntax:"<color>";initial-value:#005550;inherits:true}@property --db-turquoise-6{syntax:"<color>";initial-value:#006a64;inherits:true}@property --db-turquoise-7{syntax:"<color>";initial-value:#00857e;inherits:true}@property --db-turquoise-8{syntax:"<color>";initial-value:#00a299;inherits:true}@property --db-turquoise-9{syntax:"<color>";initial-value:#00bfb5;inherits:true}@property --db-turquoise-10{syntax:"<color>";initial-value:#00ded2;inherits:true}@property --db-turquoise-11{syntax:"<color>";initial-value:#00fdf0;inherits:true}@property --db-turquoise-12{syntax:"<color>";initial-value:#9cfff6;inherits:true}@property --db-turquoise-13{syntax:"<color>";initial-value:#c3fff9;inherits:true}@property --db-turquoise-14{syntax:"<color>";initial-value:#e3fffc;inherits:true}@property --db-turquoise-origin-base{syntax:"<color>";initial-value:#00faed;inherits:true}@property --db-turquoise-origin-light-default{syntax:"<color>";initial-value:#00faed;inherits:true}@property --db-turquoise-origin-light-hovered{syntax:"<color>";initial-value:#00bdb3;inherits:true}@property --db-turquoise-origin-light-pressed{syntax:"<color>";initial-value:#00dbd0;inherits:true}@property --db-turquoise-origin-dark-default{syntax:"<color>";initial-value:#00faed;inherits:true}@property --db-turquoise-origin-dark-hovered{syntax:"<color>";initial-value:#00bdb3;inherits:true}@property --db-turquoise-origin-dark-pressed{syntax:"<color>";initial-value:#00dbd0;inherits:true}@property --db-turquoise-on-origin-light-default{syntax:"<color>";initial-value:#000908;inherits:true}@property --db-turquoise-on-origin-dark-default{syntax:"<color>";initial-value:#000908;inherits:true}@property --db-green-0{syntax:"<color>";initial-value:#041103;inherits:true}@property --db-green-1{syntax:"<color>";initial-value:#091c06;inherits:true}@property --db-green-2{syntax:"<color>";initial-value:#10290b;inherits:true}@property --db-green-3{syntax:"<color>";initial-value:#173712;inherits:true}@property --db-green-4{syntax:"<color>";initial-value:#1f4619;inherits:true}@property --db-green-5{syntax:"<color>";initial-value:#275520;inherits:true}@property --db-green-6{syntax:"<color>";initial-value:#336a2a;inherits:true}@property --db-green-7{syntax:"<color>";initial-value:#428636;inherits:true}@property --db-green-8{syntax:"<color>";initial-value:#51a243;inherits:true}@property --db-green-9{syntax:"<color>";initial-value:#61c051;inherits:true}@property --db-green-10{syntax:"<color>";initial-value:#71de5f;inherits:true}@property --db-green-11{syntax:"<color>";initial-value:#96f989;inherits:true}@property --db-green-12{syntax:"<color>";initial-value:#c7fbc2;inherits:true}@property --db-green-13{syntax:"<color>";initial-value:#dbfcd8;inherits:true}@property --db-green-14{syntax:"<color>";initial-value:#eefeec;inherits:true}@property --db-green-origin-base{syntax:"<color>";initial-value:#408335;inherits:true}@property --db-green-origin-light-default{syntax:"<color>";initial-value:#408335;inherits:true}@property --db-green-origin-light-hovered{syntax:"<color>";initial-value:#1c4116;inherits:true}@property --db-green-origin-light-pressed{syntax:"<color>";initial-value:#316828;inherits:true}@property --db-green-origin-dark-default{syntax:"<color>";initial-value:#408335;inherits:true}@property --db-green-origin-dark-hovered{syntax:"<color>";initial-value:#1c4116;inherits:true}@property --db-green-origin-dark-pressed{syntax:"<color>";initial-value:#316828;inherits:true}@property --db-green-on-origin-light-default{syntax:"<color>";initial-value:#f7fef6;inherits:true}@property --db-green-on-origin-dark-default{syntax:"<color>";initial-value:#f7fef6;inherits:true}@property --db-light-green-0{syntax:"<color>";initial-value:#061100;inherits:true}@property --db-light-green-1{syntax:"<color>";initial-value:#0c1b01;inherits:true}@property --db-light-green-2{syntax:"<color>";initial-value:#142901;inherits:true}@property --db-light-green-3{syntax:"<color>";initial-value:#1d3702;inherits:true}@property --db-light-green-4{syntax:"<color>";initial-value:#264604;inherits:true}@property --db-light-green-5{syntax:"<color>";initial-value:#305506;inherits:true}@property --db-light-green-6{syntax:"<color>";initial-value:#3d6a09;inherits:true}@property --db-light-green-7{syntax:"<color>";initial-value:#4e850f;inherits:true}@property --db-light-green-8{syntax:"<color>";initial-value:#60a114;inherits:true}@property --db-light-green-9{syntax:"<color>";initial-value:#72bf1a;inherits:true}@property --db-light-green-10{syntax:"<color>";initial-value:#85dd20;inherits:true}@property --db-light-green-11{syntax:"<color>";initial-value:#99fc26;inherits:true}@property --db-light-green-12{syntax:"<color>";initial-value:#c3ff9d;inherits:true}@property --db-light-green-13{syntax:"<color>";initial-value:#d9ffc4;inherits:true}@property --db-light-green-14{syntax:"<color>";initial-value:#edffe4;inherits:true}@property --db-light-green-origin-base{syntax:"<color>";initial-value:#63a615;inherits:true}@property --db-light-green-origin-light-default{syntax:"<color>";initial-value:#63a615;inherits:true}@property --db-light-green-origin-light-hovered{syntax:"<color>";initial-value:#88e221;inherits:true}@property --db-light-green-origin-light-pressed{syntax:"<color>";initial-value:#75c31b;inherits:true}@property --db-light-green-origin-dark-default{syntax:"<color>";initial-value:#63a615;inherits:true}@property --db-light-green-origin-dark-hovered{syntax:"<color>";initial-value:#88e221;inherits:true}@property --db-light-green-origin-dark-pressed{syntax:"<color>";initial-value:#75c31b;inherits:true}@property --db-light-green-on-origin-light-default{syntax:"<color>";initial-value:#030900;inherits:true}@property --db-light-green-on-origin-dark-default{syntax:"<color>";initial-value:#030900;inherits:true}@property --db-burgundy-0{syntax:"<color>";initial-value:#1e060c;inherits:true}@property --db-burgundy-1{syntax:"<color>";initial-value:#2d0d14;inherits:true}@property --db-burgundy-2{syntax:"<color>";initial-value:#40151f;inherits:true}@property --db-burgundy-3{syntax:"<color>";initial-value:#541e2b;inherits:true}@property --db-burgundy-4{syntax:"<color>";initial-value:#682837;inherits:true}@property --db-burgundy-5{syntax:"<color>";initial-value:#7e3144;inherits:true}@property --db-burgundy-6{syntax:"<color>";initial-value:#9c3f55;inherits:true}@property --db-burgundy-7{syntax:"<color>";initial-value:#c2516c;inherits:true}@property --db-burgundy-8{syntax:"<color>";initial-value:#d77187;inherits:true}@property --db-burgundy-9{syntax:"<color>";initial-value:#df98a5;inherits:true}@property --db-burgundy-10{syntax:"<color>";initial-value:#e8bbc3;inherits:true}@property --db-burgundy-11{syntax:"<color>";initial-value:#f3dde1;inherits:true}@property --db-burgundy-12{syntax:"<color>";initial-value:#f8ebed;inherits:true}@property --db-burgundy-13{syntax:"<color>";initial-value:#faf2f3;inherits:true}@property --db-burgundy-14{syntax:"<color>";initial-value:#fcf8f9;inherits:true}@property --db-burgundy-origin-base{syntax:"<color>";initial-value:#a9455d;inherits:true}@property --db-burgundy-origin-light-default{syntax:"<color>";initial-value:#a9455d;inherits:true}@property --db-burgundy-origin-light-hovered{syntax:"<color>";initial-value:#4f1c28;inherits:true}@property --db-burgundy-origin-light-pressed{syntax:"<color>";initial-value:#833447;inherits:true}@property --db-burgundy-origin-dark-default{syntax:"<color>";initial-value:#a9455d;inherits:true}@property --db-burgundy-origin-dark-hovered{syntax:"<color>";initial-value:#4f1c28;inherits:true}@property --db-burgundy-origin-dark-pressed{syntax:"<color>";initial-value:#833447;inherits:true}@property --db-burgundy-on-origin-light-default{syntax:"<color>";initial-value:#fcf8f9;inherits:true}@property --db-burgundy-on-origin-dark-default{syntax:"<color>";initial-value:#fcf8f9;inherits:true}@property --db-container-3xs{syntax:"*";initial-value:14rem;inherits:true}@property --db-container-2xs{syntax:"*";initial-value:16rem;inherits:true}@property --db-container-xs{syntax:"*";initial-value:20rem;inherits:true}@property --db-container-sm{syntax:"*";initial-value:24rem;inherits:true}@property --db-container-md{syntax:"*";initial-value:28rem;inherits:true}@property --db-container-lg{syntax:"*";initial-value:32rem;inherits:true}@property --db-container-xl{syntax:"*";initial-value:36rem;inherits:true}@property --db-container-2xl{syntax:"*";initial-value:42rem;inherits:true}@property --db-container-3xl{syntax:"*";initial-value:48rem;inherits:true}@property --db-font-family-sans{syntax:"*";initial-value:"OpenSans",helvetica,arial,sans-serif;inherits:true}@property --db-font-family-head{syntax:"*";initial-value:"OpenSans Head",helvetica,arial,sans-serif;inherits:true}
|
|
@@ -3020,12 +3020,12 @@ html::after {
|
|
|
3020
3020
|
}
|
|
3021
3021
|
@property --db-transition-timing-show {
|
|
3022
3022
|
syntax: "*";
|
|
3023
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3023
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3024
3024
|
inherits: true;
|
|
3025
3025
|
}
|
|
3026
3026
|
@property --db-transition-timing-hide {
|
|
3027
3027
|
syntax: "*";
|
|
3028
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3028
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3029
3029
|
inherits: true;
|
|
3030
3030
|
}
|
|
3031
3031
|
@property --db-transition-timing-emotional {
|
|
@@ -3040,12 +3040,12 @@ html::after {
|
|
|
3040
3040
|
}
|
|
3041
3041
|
@property --db-transition-straight-show {
|
|
3042
3042
|
syntax: "*";
|
|
3043
|
-
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3043
|
+
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3044
3044
|
inherits: true;
|
|
3045
3045
|
}
|
|
3046
3046
|
@property --db-transition-straight-hide {
|
|
3047
3047
|
syntax: "*";
|
|
3048
|
-
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3048
|
+
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3049
3049
|
inherits: true;
|
|
3050
3050
|
}
|
|
3051
3051
|
@property --db-transition-straight-emotional {
|
package/build/styles/rollup.css
CHANGED
|
@@ -3020,12 +3020,12 @@ html::after {
|
|
|
3020
3020
|
}
|
|
3021
3021
|
@property --db-transition-timing-show {
|
|
3022
3022
|
syntax: "*";
|
|
3023
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3023
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3024
3024
|
inherits: true;
|
|
3025
3025
|
}
|
|
3026
3026
|
@property --db-transition-timing-hide {
|
|
3027
3027
|
syntax: "*";
|
|
3028
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3028
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3029
3029
|
inherits: true;
|
|
3030
3030
|
}
|
|
3031
3031
|
@property --db-transition-timing-emotional {
|
|
@@ -3040,12 +3040,12 @@ html::after {
|
|
|
3040
3040
|
}
|
|
3041
3041
|
@property --db-transition-straight-show {
|
|
3042
3042
|
syntax: "*";
|
|
3043
|
-
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3043
|
+
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3044
3044
|
inherits: true;
|
|
3045
3045
|
}
|
|
3046
3046
|
@property --db-transition-straight-hide {
|
|
3047
3047
|
syntax: "*";
|
|
3048
|
-
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3048
|
+
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3049
3049
|
inherits: true;
|
|
3050
3050
|
}
|
|
3051
3051
|
@property --db-transition-straight-emotional {
|
package/build/styles/webpack.css
CHANGED
|
@@ -3020,12 +3020,12 @@ html::after {
|
|
|
3020
3020
|
}
|
|
3021
3021
|
@property --db-transition-timing-show {
|
|
3022
3022
|
syntax: "*";
|
|
3023
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3023
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3024
3024
|
inherits: true;
|
|
3025
3025
|
}
|
|
3026
3026
|
@property --db-transition-timing-hide {
|
|
3027
3027
|
syntax: "*";
|
|
3028
|
-
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3028
|
+
initial-value: cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3029
3029
|
inherits: true;
|
|
3030
3030
|
}
|
|
3031
3031
|
@property --db-transition-timing-emotional {
|
|
@@ -3040,12 +3040,12 @@ html::after {
|
|
|
3040
3040
|
}
|
|
3041
3041
|
@property --db-transition-straight-show {
|
|
3042
3042
|
syntax: "*";
|
|
3043
|
-
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3043
|
+
initial-value: 0.5s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3044
3044
|
inherits: true;
|
|
3045
3045
|
}
|
|
3046
3046
|
@property --db-transition-straight-hide {
|
|
3047
3047
|
syntax: "*";
|
|
3048
|
-
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1)
|
|
3048
|
+
initial-value: 0.4s cubic-bezier(0.49, 0.1, 0.16, 1);
|
|
3049
3049
|
inherits: true;
|
|
3050
3050
|
}
|
|
3051
3051
|
@property --db-transition-straight-emotional {
|