@wwtdev/bsds-css 0.0.3 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/_form-elements.scss +11 -26
- package/dist/components/_form-hints.scss +14 -0
- package/dist/components/_form-labels.scss +20 -0
- package/dist/components/form-elements.css +10 -25
- package/dist/components/form-hints.css +10 -0
- package/dist/components/form-labels.css +16 -0
- package/dist/wwt-bsds.css +31 -17
- package/dist/wwt-bsds.min.css +1 -1
- package/package.json +2 -2
|
@@ -1,18 +1,9 @@
|
|
|
1
1
|
@mixin form-elements() {
|
|
2
|
-
:where(
|
|
3
|
-
color: var(--bs-ink-base);
|
|
4
|
-
display: inline-block;
|
|
5
|
-
font-size: var(--bs-text-sm);
|
|
6
|
-
font-weight: 600;
|
|
7
|
-
line-height: var(--bs-leading-base);
|
|
8
|
-
width: 100%;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
:where(.required) {
|
|
2
|
+
:where(.required) {
|
|
12
3
|
color: var(--bs-red-400);
|
|
13
4
|
}
|
|
14
5
|
|
|
15
|
-
:where(
|
|
6
|
+
:where([data-disabled], [data-disabled] .required) {
|
|
16
7
|
color: var(--bs-gray-400);
|
|
17
8
|
}
|
|
18
9
|
|
|
@@ -43,8 +34,7 @@
|
|
|
43
34
|
}
|
|
44
35
|
|
|
45
36
|
:where(input, textarea, select):focus {
|
|
46
|
-
box-shadow:
|
|
47
|
-
0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
37
|
+
box-shadow: 0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
48
38
|
0 0 0 4px var(--outline-color, var(--bs-blue-400));
|
|
49
39
|
outline: 2px solid transparent;
|
|
50
40
|
}
|
|
@@ -66,6 +56,11 @@
|
|
|
66
56
|
color: var(--bs-gray-400);
|
|
67
57
|
}
|
|
68
58
|
|
|
59
|
+
/* chrome user agent styling was applying opacity: 0.7 */
|
|
60
|
+
:where(select:disabled) {
|
|
61
|
+
opacity: 1;
|
|
62
|
+
}
|
|
63
|
+
|
|
69
64
|
:where(input, textarea, select):disabled::placeholder,
|
|
70
65
|
:where(input, textarea, select)[disabled]::placeholder {
|
|
71
66
|
color: var(--bs-gray-400);
|
|
@@ -128,13 +123,12 @@
|
|
|
128
123
|
width: 1rem;
|
|
129
124
|
}
|
|
130
125
|
:where(input[type^='checkbox'], input[type^='radio']):focus {
|
|
131
|
-
box-shadow:
|
|
132
|
-
inset 0 0 0 0.125rem var(--box-shadow),
|
|
126
|
+
box-shadow: inset 0 0 0 0.125rem var(--box-shadow),
|
|
133
127
|
0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
134
128
|
0 0 0 4px var(--outline-color, var(--bs-blue-400));
|
|
135
129
|
}
|
|
136
130
|
|
|
137
|
-
:where(input[type^='checkbox'], input[type^='radio'])
|
|
131
|
+
:where(input[type^='checkbox'], input[type^='radio'])[data-error] {
|
|
138
132
|
--box-shadow: var(--bs-red-400);
|
|
139
133
|
}
|
|
140
134
|
|
|
@@ -245,19 +239,10 @@
|
|
|
245
239
|
}
|
|
246
240
|
|
|
247
241
|
/* Errors and Messages */
|
|
248
|
-
:where(input)
|
|
242
|
+
:where(input)[data-error] {
|
|
249
243
|
border-color: var(--bs-red-400);
|
|
250
244
|
}
|
|
251
245
|
|
|
252
|
-
:where(.message) {
|
|
253
|
-
color: var(--bs-gray-400);
|
|
254
|
-
font-size: var(--bs-text-xs);
|
|
255
|
-
padding-top: 0.5rem;
|
|
256
|
-
}
|
|
257
|
-
:where(.message.error) {
|
|
258
|
-
color: var(--bs-red-400);
|
|
259
|
-
}
|
|
260
|
-
|
|
261
246
|
/* Fieldset */
|
|
262
247
|
:where(fieldset) {
|
|
263
248
|
border: none;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@mixin form-labels() {
|
|
2
|
+
:where(label, legend) {
|
|
3
|
+
color: var(--bs-ink-base);
|
|
4
|
+
display: inline-block;
|
|
5
|
+
font-size: var(--bs-text-sm);
|
|
6
|
+
font-weight: 600;
|
|
7
|
+
line-height: var(--bs-leading-base);
|
|
8
|
+
width: 100%;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
:where(.required) {
|
|
12
|
+
color: var(--bs-red-400);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:where([data-disabled], [data-disabled] .required, [data-disabled] label) {
|
|
16
|
+
color: var(--bs-gray-400);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
}
|
|
20
|
+
|
|
@@ -1,17 +1,8 @@
|
|
|
1
|
-
:where(label, legend) {
|
|
2
|
-
color: var(--bs-ink-base);
|
|
3
|
-
display: inline-block;
|
|
4
|
-
font-size: var(--bs-text-sm);
|
|
5
|
-
font-weight: 600;
|
|
6
|
-
line-height: var(--bs-leading-base);
|
|
7
|
-
width: 100%;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
1
|
:where(.required) {
|
|
11
2
|
color: var(--bs-red-400);
|
|
12
3
|
}
|
|
13
4
|
|
|
14
|
-
:where(
|
|
5
|
+
:where([data-disabled], [data-disabled] .required) {
|
|
15
6
|
color: var(--bs-gray-400);
|
|
16
7
|
}
|
|
17
8
|
|
|
@@ -42,8 +33,7 @@
|
|
|
42
33
|
}
|
|
43
34
|
|
|
44
35
|
:where(input, textarea, select):focus {
|
|
45
|
-
box-shadow:
|
|
46
|
-
0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
36
|
+
box-shadow: 0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
47
37
|
0 0 0 4px var(--outline-color, var(--bs-blue-400));
|
|
48
38
|
outline: 2px solid transparent;
|
|
49
39
|
}
|
|
@@ -65,6 +55,11 @@
|
|
|
65
55
|
color: var(--bs-gray-400);
|
|
66
56
|
}
|
|
67
57
|
|
|
58
|
+
/* chrome user agent styling was applying opacity: 0.7 */
|
|
59
|
+
:where(select:disabled) {
|
|
60
|
+
opacity: 1;
|
|
61
|
+
}
|
|
62
|
+
|
|
68
63
|
:where(input, textarea, select):disabled::placeholder,
|
|
69
64
|
:where(input, textarea, select)[disabled]::placeholder {
|
|
70
65
|
color: var(--bs-gray-400);
|
|
@@ -127,13 +122,12 @@
|
|
|
127
122
|
width: 1rem;
|
|
128
123
|
}
|
|
129
124
|
:where(input[type^='checkbox'], input[type^='radio']):focus {
|
|
130
|
-
box-shadow:
|
|
131
|
-
inset 0 0 0 0.125rem var(--box-shadow),
|
|
125
|
+
box-shadow: inset 0 0 0 0.125rem var(--box-shadow),
|
|
132
126
|
0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
133
127
|
0 0 0 4px var(--outline-color, var(--bs-blue-400));
|
|
134
128
|
}
|
|
135
129
|
|
|
136
|
-
:where(input[type^='checkbox'], input[type^='radio'])
|
|
130
|
+
:where(input[type^='checkbox'], input[type^='radio'])[data-error] {
|
|
137
131
|
--box-shadow: var(--bs-red-400);
|
|
138
132
|
}
|
|
139
133
|
|
|
@@ -244,19 +238,10 @@
|
|
|
244
238
|
}
|
|
245
239
|
|
|
246
240
|
/* Errors and Messages */
|
|
247
|
-
:where(input)
|
|
241
|
+
:where(input)[data-error] {
|
|
248
242
|
border-color: var(--bs-red-400);
|
|
249
243
|
}
|
|
250
244
|
|
|
251
|
-
:where(.message) {
|
|
252
|
-
color: var(--bs-gray-400);
|
|
253
|
-
font-size: var(--bs-text-xs);
|
|
254
|
-
padding-top: 0.5rem;
|
|
255
|
-
}
|
|
256
|
-
:where(.message.error) {
|
|
257
|
-
color: var(--bs-red-400);
|
|
258
|
-
}
|
|
259
|
-
|
|
260
245
|
/* Fieldset */
|
|
261
246
|
:where(fieldset) {
|
|
262
247
|
border: none;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
:where(label, legend) {
|
|
2
|
+
color: var(--bs-ink-base);
|
|
3
|
+
display: inline-block;
|
|
4
|
+
font-size: var(--bs-text-sm);
|
|
5
|
+
font-weight: 600;
|
|
6
|
+
line-height: var(--bs-leading-base);
|
|
7
|
+
width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
:where(.required) {
|
|
11
|
+
color: var(--bs-red-400);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
:where([data-disabled], [data-disabled] .required, [data-disabled] label) {
|
|
15
|
+
color: var(--bs-gray-400);
|
|
16
|
+
}
|
package/dist/wwt-bsds.css
CHANGED
|
@@ -910,7 +910,15 @@ a.button {
|
|
|
910
910
|
color: var(--bs-red-400);
|
|
911
911
|
}
|
|
912
912
|
|
|
913
|
-
:where(
|
|
913
|
+
:where([data-disabled], [data-disabled] .required, [data-disabled] label) {
|
|
914
|
+
color: var(--bs-gray-400);
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
:where(.required) {
|
|
918
|
+
color: var(--bs-red-400);
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
:where([data-disabled], [data-disabled] .required) {
|
|
914
922
|
color: var(--bs-gray-400);
|
|
915
923
|
}
|
|
916
924
|
|
|
@@ -948,8 +956,7 @@ a.button {
|
|
|
948
956
|
}
|
|
949
957
|
|
|
950
958
|
:where(input, textarea, select):focus {
|
|
951
|
-
box-shadow:
|
|
952
|
-
0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
959
|
+
box-shadow: 0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
953
960
|
0 0 0 4px var(--outline-color, var(--bs-blue-400));
|
|
954
961
|
outline: 2px solid transparent;
|
|
955
962
|
}
|
|
@@ -973,6 +980,12 @@ a.button {
|
|
|
973
980
|
color: var(--bs-gray-400);
|
|
974
981
|
}
|
|
975
982
|
|
|
983
|
+
/* chrome user agent styling was applying opacity: 0.7 */
|
|
984
|
+
|
|
985
|
+
:where(select:disabled) {
|
|
986
|
+
opacity: 1;
|
|
987
|
+
}
|
|
988
|
+
|
|
976
989
|
:where(input, textarea, select):disabled::-moz-placeholder, :where(input, textarea, select)[disabled]::-moz-placeholder {
|
|
977
990
|
color: var(--bs-gray-400);
|
|
978
991
|
opacity: 1;
|
|
@@ -1049,13 +1062,12 @@ a.button {
|
|
|
1049
1062
|
}
|
|
1050
1063
|
|
|
1051
1064
|
:where(input[type^='checkbox'], input[type^='radio']):focus {
|
|
1052
|
-
box-shadow:
|
|
1053
|
-
inset 0 0 0 0.125rem var(--box-shadow),
|
|
1065
|
+
box-shadow: inset 0 0 0 0.125rem var(--box-shadow),
|
|
1054
1066
|
0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
1055
1067
|
0 0 0 4px var(--outline-color, var(--bs-blue-400));
|
|
1056
1068
|
}
|
|
1057
1069
|
|
|
1058
|
-
:where(input[type^='checkbox'], input[type^='radio'])
|
|
1070
|
+
:where(input[type^='checkbox'], input[type^='radio'])[data-error] {
|
|
1059
1071
|
--box-shadow: var(--bs-red-400);
|
|
1060
1072
|
}
|
|
1061
1073
|
|
|
@@ -1167,20 +1179,10 @@ a.button {
|
|
|
1167
1179
|
|
|
1168
1180
|
/* Errors and Messages */
|
|
1169
1181
|
|
|
1170
|
-
:where(input)
|
|
1182
|
+
:where(input)[data-error] {
|
|
1171
1183
|
border-color: var(--bs-red-400);
|
|
1172
1184
|
}
|
|
1173
1185
|
|
|
1174
|
-
:where(.message) {
|
|
1175
|
-
color: var(--bs-gray-400);
|
|
1176
|
-
font-size: var(--bs-text-xs);
|
|
1177
|
-
padding-top: 0.5rem;
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
:where(.message.error) {
|
|
1181
|
-
color: var(--bs-red-400);
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
1186
|
/* Fieldset */
|
|
1185
1187
|
|
|
1186
1188
|
:where(fieldset) {
|
|
@@ -1195,6 +1197,18 @@ a.button {
|
|
|
1195
1197
|
padding: 0;
|
|
1196
1198
|
}
|
|
1197
1199
|
|
|
1200
|
+
:where(.hints) {
|
|
1201
|
+
color: var(--bs-ink-light);
|
|
1202
|
+
font-size: var(--bs-text-xs);
|
|
1203
|
+
padding: 0.5rem 0.75rem 0 0.75rem;
|
|
1204
|
+
margin: 0;
|
|
1205
|
+
list-style: none;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
:where(.hints[data-error]) {
|
|
1209
|
+
color: var(--bs-red-400);
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1198
1212
|
.pill {
|
|
1199
1213
|
--pill-background: var(--bs-bg-subtle);
|
|
1200
1214
|
--pill-border: transparent;
|
package/dist/wwt-bsds.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--bs-transparent:transparent;--bs-white:#fff;--bs-black:#0a0b19;--bs-blue-10:rgba(0,134,234,0.1);--bs-blue-100:#99cff7;--bs-blue-200:#66b6f2;--bs-blue-300:#339eee;--bs-blue-400:#0086ea;--bs-blue-500:#006dc7;--bs-red-10:rgba(238,40,42,0.1);--bs-red-100:#f8a9aa;--bs-red-200:#f57e7f;--bs-red-300:#f15355;--bs-red-400:#ee282a;--bs-red-500:#d91214;--bs-plum-10:rgba(28,0,135,0.1);--bs-plum-100:#a499cf;--bs-plum-200:#7766b7;--bs-plum-300:#49339f;--bs-plum-400:#1c0087;--bs-royal-100:#c5cceb;--bs-royal-200:#7585d1;--bs-royal-300:#5365c4;--bs-royal-400:#162fb4;--bs-violet-100:#cbc0da;--bs-violet-200:#9983b6;--bs-violet-300:#634291;--bs-violet-400:#330072;--bs-navy-100:#c6c6d1;--bs-navy-200:#8d8ea1;--bs-navy-300:#555775;--bs-navy-400:#1d1e48;--bs-navy-500:#131431;--bs-orange-10:rgba(250,70,22,0.1);--bs-orange-100:#fed1c5;--bs-orange-200:#fda58d;--bs-orange-300:#fc7755;--bs-orange-400:#fa4616;--bs-orange-warning:#ea6712;--bs-pink-100:#f6cbe0;--bs-pink-200:#eb7eaf;--bs-pink-300:#e45e9b;--bs-pink-400:#e31c79;--bs-pink-500:#d11a6f;--bs-purple-10:rgba(130,18,196,0.09);--bs-purple-100:#e0c5ef;--bs-purple-200:#bf8adf;--bs-purple-300:#a154d0;--bs-purple-400:#8212c4;--bs-gray-100:#f0f0fa;--bs-gray-200:#c9cad9;--bs-gray-300:#a3a4b7;--bs-gray-400:#4e4f5f;--bs-gray-500:#292940;--bs-gradient-dark:linear-gradient(90deg,#1c0087 0,#ee282a 35%,#fff 50%,#0086ea 65%,#1c0087 100%);--bs-gradient-light:linear-gradient(90deg,#1c0087 0,#ee282a 35%,#fff 50%,#0086ea 65%,#1c0087 100%);--bs-gradient-line:linear-gradient(90deg,#ee282a 0,#1c0087 50%,#0086ea 100%);--bs-space-0:0;--bs-space-1:.25rem;--bs-space-2:.5rem;--bs-space-3:.75rem;--bs-space-4:1rem;--bs-space-5:1.25rem;--bs-space-6:1.5rem;--bs-space-7:1.75rem;--bs-space-8:2rem;--bs-space-9:2.25rem;--bs-space-10:2.5rem;--bs-space-11:2.75rem;--bs-space-12:3rem;--bs-space-14:3.5rem;--bs-space-16:4rem;--bs-space-20:5rem;--bs-space-24:6rem;--bs-space-28:7rem;--bs-space-32:8rem;--bs-space-36:9rem;--bs-space-40:10rem;--bs-space-44:11rem;--bs-space-48:12rem;--bs-space-52:13rem;--bs-space-56:14rem;--bs-space-60:15rem;--bs-space-64:16rem;--bs-space-72:18rem;--bs-space-80:20rem;--bs-space-96:24rem;--bs-space-px:1px;--bs-space-0-half:.125rem;--bs-space-1-half:.375rem;--bs-space-2-half:.625rem;--bs-space-3-half:.875rem;--bs-space-f-1:clamp(0.25rem,calc(0.13rem + 0.5vw), 0.5rem);--bs-space-f-2:clamp(0.5rem,calc(0.38rem + 0.5vw), 0.75rem);--bs-space-f-3:clamp(0.75rem,calc(0.63rem + 0.5vw), 1rem);--bs-space-f-4:clamp(1rem,calc(0.75rem + 1vw), 1.5rem);--bs-space-f-6:clamp(1.5rem,calc(1.25rem + 1vw), 2rem);--bs-space-f-8:clamp(2rem,calc(1.5rem + 2vw), 3rem);--bs-space-f-12:clamp(4rem,calc(3rem + 4vw), 6rem);--bs-space-f-16:clamp(4rem,calc(3rem + 4vw), 6rem);--bs-space-f-24:clamp(6rem,calc(5rem + 4vw), 8rem);--bs-space-f-4to8:clamp(1rem,calc(0.5rem + 2vw), 2rem);--bs-space-f-6to12:clamp(1.5rem,calc(0.75rem + 3vw), 3rem);--bs-space-f-12to24:clamp(3rem,calc(1.5rem + 6vw), 6rem);--bs-text-xs:.75rem;--bs-text-sm:.875rem;--bs-text-base:1rem;--bs-text-md:1.125rem;--bs-text-lg:1.25rem;--bs-text-xl:1.5rem;--bs-text-2xl:2rem;--bs-text-3xl:2.25rem;--bs-text-4xl:3rem;--bs-text-f-xs:clamp(0.69rem,calc(0.84rem + -0.19vw), 0.79rem);--bs-text-f-sm:clamp(0.83rem,calc(0.92rem + -0.11vw), 0.89rem);--bs-text-f-base:clamp(1rem,calc(1rem + 0vw), 1rem);--bs-text-f-md:clamp(1rem,calc(0.94rem + 0.25vw), 1.125rem);--bs-text-f-lg:clamp(1.125rem,calc(1.06rem + 0.25vw), 1.25rem);--bs-text-f-xl:clamp(1.25rem,calc(1.13rem + 0.5vw), 1.5rem);--bs-text-f-2xl:clamp(1.5rem,calc(1.25rem + 1vw), 2rem);--bs-text-f-3xl:clamp(2rem,calc(1.88rem + 0.5vw), 2.25rem);--bs-text-f-4xl:clamp(2.25rem,calc(1.88rem + 1.5vw), 3rem);--bs-leading-sm:115%;--bs-leading-base:150%;--bs-shadow:-4px 4px 12px rgba(0,0,0,0.06),-8px 8px 16px rgba(28,0,135,0.2);--bs-shadow-contentLow:-4px 4px 12px rgba(0,0,0,0.06),-8px 8px 16px rgba(28,0,135,0.2);--bs-shadow-contentLowCenter:0 0 12px rgba(0,0,0,0.06),0 0 16px rgba(28,0,135,0.2);--bs-shadow-contentMedium:-8px 8px 24px rgba(0,0,0,0.06),-16px 16px 32px rgba(28,0,135,0.2);--bs-shadow-contentHigh:0 16px 48px rgba(0,0,0,0.06),0 32px 64px rgba(28,0,135,0.2);--bs-shadow-drawerLeft:-12px 12px 24px rgba(0,0,0,0.06),-16px 16px 32px rgba(28,0,135,0.2);--bs-shadow-drawerRight:-12px 12px 24px rgba(0,0,0,0.06),16px 16px 32px rgba(28,0,135,0.2);--bs-shadow-profilePhoto:inset 0 0 .5em rgba(28,0,135,0.25)}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{margin:0}ul[role='list'],ol[role='list']{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}:where(input,textarea,select){font:inherit}button{font-family:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}:root,:host{--bs-bg-base:var(--bs-white);--bs-bg-subtle:var(--bs-gray-100);--bs-bg-invert:var(--bs-navy-500);--bs-bg-invert-subtle:var(--bs-navy-400);--bs-ink-base:var(--bs-black);--bs-ink-medium:var(--bs-gray-500);--bs-ink-light:var(--bs-gray-400);--bs-ink-accent:var(--bs-plum-400);--bs-ink-invert:var(--bs-white);--bs-border:var(--bs-gray-200);--bs-content-top:4rem;--bs-font-normal:400;--bs-font-bold:600}.dark,.dark :host{--bs-bg-base:var(--bs-navy-500);--bs-bg-subtle:#2f2f51;--bs-bg-invert:var(--bs-white);--bs-bg-invert-subtle:var(--bs-gray-100);--bs-ink-base:var(--bs-white);--bs-ink-medium:var(--bs-gray-100);--bs-ink-light:var(--bs-gray-200);--bs-ink-accent:var(--bs-plum-100);--bs-ink-invert:var(--bs-black);--bs-border:var(--bs-gray-400)}body,:host{background-color:var(--bs-bg-base);color:var(--bs-ink-light)}:target{scroll-margin-top:var(--bs-content-top)}::-moz-selection{background-color:var(--bs-royal-400);color:var(--bs-white)}::selection{background-color:var(--bs-royal-400);color:var(--bs-white)}[hidden]{display:none}hr{border:0;height:1px;background:var(--bs-border)}body{font-weight:400;font-family:'Roobert',sans-serif;font-size:var(--bs-text-base)}[data-variant^="heading-xl"]{font-size:var(--bs-text-4xl);font-weight:400;line-height:var(--bs-leading-sm)}h1,[data-variant^="heading-1"]{font-size:var(--bs-text-3xl);font-weight:400;line-height:var(--bs-leading-sm)}h2,[data-variant^="heading-2"]{font-size:var(--bs-text-2xl);font-weight:600;line-height:var(--bs-leading-sm)}h3,[data-variant^="heading-3"]{font-size:var(--bs-text-xl);font-weight:600;line-height:var(--bs-leading-sm)}h4,[data-variant^="heading-4"]{font-size:var(--bs-text-lg);font-weight:600}h5,[data-variant^="heading-5"]{font-size:var(--bs-text-md);font-weight:600}h6,[data-variant^="heading-6"]{font-size:var(--bs-text-base);font-weight:600}.prose{font-size:var(--bs-text-md);max-width:70ch}.prose :where(h1,h2,h3,h4,h5,h6):not([data-color]){color:var(--bs-ink-base)}[data-variant^="default"]{font-size:var(--bs-text-base)}.bs-meta,[data-variant^="meta"]{font-size:var(--bs-text-xs);font-weight:600}:where(.prose blockquote){border-left:4px solid var(--bs-plum-200);color:var(--bs-plum-200);font-style:italic;font-weight:400;padding-left:var(--bs-space-4)}.prose:where([data-width="wide"]){max-width:90%}.prose:where([data-width="wide"])>:is(p,h1,h2,h3,h4,h5,h6,blockquote,ul,ol){max-width:48rem}:where([data-font-size^='4xl']){font-size:var(--bs-text-4xl);line-height:var(--bs-leading-sm)}:where([data-font-size^='3xl']){font-size:var(--bs-text-3xl);line-height:var(--bs-leading-sm)}:where([data-font-size^='2xl']){font-size:var(--bs-text-2xl);line-height:var(--bs-leading-sm)}:where([data-font-size^='xl']){font-size:var(--bs-text-xl);line-height:var(--bs-leading-sm)}:where([data-font-size^='lg']){font-size:var(--bs-text-lg)}:where([data-font-size^='md']){font-size:var(--bs-text-md)}:where([data-font-size^='base']){font-size:var(--bs-text-base)}:where([data-font-size^='sm']){font-size:var(--bs-text-sm)}:where([data-font-size^='xs']){font-size:var(--bs-text-xs)}:where([data-color^='base']){color:var(--bs-ink-base)}:where([data-color^='medium']){color:var(--bs-ink-medium)}:where([data-color^='light']){color:var(--bs-ink-light)}:where([data-color^='accent']){color:var(--bs-ink-accent)}:where([data-weight^='normal'],[data-weight^='400']){font-weight:400}:where([data-weight^='bold'],[data-weight^='600']){font-weight:600}body:where(.fluid){font-size:var(--bs-text-f-md)}:where(.fluid) h1,:where(.fluid) [data-variant^='heading-1']{font-size:var(--bs-text-f-3xl)}:where(.fluid) h2,:where(.fluid) [data-variant^='heading-2']{font-size:var(--bs-text-f-2xl)}:where(.fluid) h3,:where(.fluid) [data-variant^='heading-3']{font-size:var(--bs-text-f-xl)}:where(.fluid) h4,:where(.fluid) [data-variant^='heading-4']{font-size:var(--bs-text-f-lg)}:where(.fluid) h5,:where(.fluid) [data-variant^='heading-5']{font-size:var(--bs-text-f-md)}:where(.fluid) h6,:where(.fluid) [data-variant^='heading-6']{font-size:var(--bs-text-f-sm)}:where(.fluid).prose,:where(.fluid) .prose,:where(.fluid) [data-variant^='default']{font-size:var(--bs-text-f-md)}:where(.fluid) .bs-meta,:where(.fluid) [data-variant^='meta']{font-size:var(--bs-text-f-xs)}:where(.fluid) [data-font-size^='4xl']{font-size:var(--bs-text-f-4xl)}:where(.fluid) [data-font-size^='3xl']{font-size:var(--bs-text-f-3xl)}:where(.fluid) [data-font-size^='2xl']{font-size:var(--bs-text-f-2xl)}:where(.fluid) [data-font-size^='xl']{font-size:var(--bs-text-f-xl);line-height:var(--bs-leading-sm)}:where(.fluid) [data-font-size^='lg']{font-size:var(--bs-text-f-lg)}:where(.fluid) [data-font-size^='md']{font-size:var(--bs-text-f-md)}:where(.fluid) [data-font-size^='base']{font-size:var(--bs-text-f-base)}:where(.fluid) [data-font-size^='sm']{font-size:var(--bs-text-f-sm)}:where(.fluid) [data-font-size^='xs']{font-size:var(--bs-text-f-xs)}:where(.prose) a{border-radius:.25rem;-webkit-box-decoration-break:clone;box-decoration-break:clone;color:var(--bs-purple-400);text-decoration:underline;text-underline-offset:2px;transition:all .15s ease-in-out;outline-color:var(--bs-blue-400)}:where(.prose) a:where(:not(.button)):hover,:where(.prose) a:where(:not(.button)):focus,:where(.prose) a:where(:not(.button)):focus-visible{color:var(--bs-plum-400);text-decoration-color:var(--bs-purple-400)}:where(.prose) a:focus-visible{outline-offset:var(--bs-space-1);outline-style:solid;outline-width:2px}:where(.prose) a:focus:where(:not(:focus-visible)){outline:0}.dark :where(.prose) a:not(.button,.pill){color:var(--bs-purple-200);outline-color:var(--bs-blue-300)}.dark :where(.prose) a:where(:not(.button)):hover,.dark :where(.prose) a:where(:not(.button)):focus,.dark :where(.prose) a:where(:not(.button)):focus-visible{color:var(--bs-pink-300);text-decoration-color:var(--bs-purple-200)}.dark :where(.prose) a:focus-visible{outline-offset:var(--bs-space-1)}.dark :where(.prose) a:focus:where(:not(:focus-visible)){outline:0}.box-shadow{box-shadow:var(--bs-shadow)}.box-shadow:where([data-variant="center"]){box-shadow:var(--bs-shadow-contentLowCenter)}.box-shadow:where([data-variant="medium"]){box-shadow:var(--bs-shadow-contentMedium)}.box-shadow:where([data-variant="high"]){box-shadow:var(--bs-shadow-contentHigh)}.box-shadow:where([data-variant="left-panel"]){box-shadow:var(--bs-shadow-drawerLeft)}.box-shadow:where([data-variant="right-panel"]){box-shadow:var(--bs-shadow-drawerRight)}.box-shadow:where([data-variant="profile"]){box-shadow:var(--bs-shadow-profilePhoto)}.badge[data-position^='left']::before,.badge:where(:not([data-position^='left']))::after{align-items:center;background:var(--bs-red-500);border-radius:.5rem;content:'';display:inline-flex;font-size:.8125rem;font-variant-numeric:tabular-nums;font-weight:600;height:6px;justify-content:center;line-height:1;position:relative;vertical-align:top;width:6px}.pill .badge::before,.pill .badge::after{font-size:.8125em}.badge[data-count]:where([data-position^='left'])::before,.badge[data-count]:where(:not([data-position^='left']))::after{color:white;content:attr(data-count);min-height:1rem;min-width:1rem;padding:0 4px;top:-0.0625rem;vertical-align:unset;width:auto}.badge[data-count]::before{margin-right:.25rem}.badge[data-count]::after{margin-left:.25rem}.badge[data-count='0']::before,.badge[data-count='0']::after{display:none}.badge[data-badge-color^='blue']::before,.badge[data-badge-color^='blue']::after{background:var(--bs-blue-500)}.badge[data-badge-color^='white']::before,.badge[data-badge-color^='white']::after{background:white;color:var(--badge-text,var(--bs-black))}:where(button){background-color:inherit;border-color:transparent;color:inherit;font-size:var(--bs-text-base);position:relative;padding:var(--bs-space-0);text-decoration:none}.button{--btn-main:var(--bs-blue-400);--btn-secondary:var(--bs-blue-300);--btn-highlight:var(--bs-blue-100);align-items:center;background-color:var(--btn-main);border:0;border-radius:.25rem;color:var(--bs-white);cursor:pointer;display:inline-flex;font-size:var(--bs-text-md);font-weight:600;line-height:1.5;outline:2px solid transparent;padding:var(--bs-space-1) var(--bs-space-4) calc(var(--bs-space-1) * 1.5);position:relative;text-decoration:none;transition:all 100ms ease-in-out;vertical-align:middle}.button:hover{background-color:var(--btn-secondary)}.button:active{background-color:var(--btn-secondary);transform:scale(0.97);transform-origin:center;box-shadow:inset 0 0 4px 1px var(--btn-main)}.button::before{border-color:transparent;border-radius:.5rem;border-style:solid;border-width:.125rem;content:'';height:calc(100% + 0.5rem);inset:-0.25rem;position:absolute;transition:border-color .125s ease-in-out;width:calc(100% + 0.5rem)}.button:focus::before{border-color:var(--btn-main)}.button:focus-visible::before{border-color:var(--btn-main);box-shadow:none}.button:focus:not(:focus-visible)::before{border-color:transparent;box-shadow:none}.button:where([data-ghost]){--btn-light:var(--bs-blue-10);--btn-secondary:var(--bs-blue-10);background-color:transparent;box-shadow:inset 0 0 0 1px var(--btn-main);color:var(--btn-main)}.button:where([data-ghost])::before{border-radius:.4375rem}.button:where([data-ghost]):hover,.button:where([data-ghost]):focus{background-color:var(--btn-light)}.button:where([data-ghost]):active{box-shadow:inset 0 0 0 1px var(--btn-main),inset 0 0 4px 1px var(--btn-highlight)}.button:where([data-variant^='secondary']){--btn-main:var(--bs-plum-400);--btn-secondary:var(--bs-plum-300);--btn-light:var(--bs-plum-10);--btn-highlight:var(--bs-plum-100)}.dark .button:where([data-variant^='secondary']){--btn-main:var(--bs-plum-200);--btn-secondary:var(--bs-plum-300);--btn-light:var(--bs-navy-400);--btn-highlight:var(--bs-plum-400)}.button:where([data-variant^='positive']){--btn-main:var(--bs-purple-400);--btn-secondary:var(--bs-purple-300);--btn-light:var(--bs-purple-10);--btn-highlight:var(--bs-purple-100)}.button:where([data-variant^='warning']){--btn-main:var(--bs-orange-warning);--btn-secondary:var(--bs-orange-300);--btn-light:var(--bs-orange-10);--btn-highlight:var(--bs-orange-100)}.button:where([data-variant^='negative']){--btn-main:var(--bs-red-400);--btn-secondary:var(--bs-red-300);--btn-light:var(--bs-red-10);--btn-highlight:var(--bs-red-100)}.button:where([data-text]){background-color:transparent;color:var(--bs-blue-500);cursor:pointer;font-size:var(--bs-text-md);font-weight:400;line-height:150%}.button:where([data-text]):hover{background-color:transparent;text-decoration:underline}.button:where([data-text]):active{box-shadow:none}.button:where([data-size^='sm']){font-size:var(--bs-text-sm)}.button:where([data-text][data-size^='sm']){font-size:var(--bs-text-base)}:where(button:disabled),.button:where([aria-disabled='true']){pointer-events:none}.button:where(:disabled),.button:where([aria-disabled='true']){color:var(--bs-gray-400);background-color:var(--bs-gray-200)}.button:where([data-ghost]):disabled,.button:where([data-ghost])[aria-disabled='true']{box-shadow:inset 0 0 0 1px var(--bs-gray-400)}.button:where([data-text]):disabled,.button:where([data-text][aria-disabled='true']){background-color:transparent}.button :where(svg:not([height])){height:var(--bs-text-base)}.button:where([data-size^='sm']) :where(svg:not([height])){height:var(--bs-text-xs)}a.button{align-items:center;display:inline-flex;outline:0;vertical-align:middle}:where(label,legend){color:var(--bs-ink-base);display:inline-block;font-size:var(--bs-text-sm);font-weight:600;line-height:var(--bs-leading-base);width:100%}:where(.required){color:var(--bs-red-400)}:where(.disabled,.disabled .required){color:var(--bs-gray-400)}:where(label+input,label>input):not([type^='checkbox'],[type^='radio']),:where(label+textarea,label>textarea),:where(label+select,label>select){margin-top:.25rem}:where(input):not([type^='checkbox'],[type^='radio'],[type^='file'],[type^='range']),:where(textarea,select){-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--input-bg,var(--bs-bg-base));border:1px solid var(--input-border,var(--bs-violet-300));border-radius:.25rem;color:var(--bs-ink-base);font-size:var(--bs-text-base);font-weight:400;line-height:var(--bs-leading-base);min-height:40px;padding:.5rem .75rem;width:100%}:where(input,textarea,select)::-moz-placeholder{color:var(--bs-violet-200);opacity:1}:where(input,textarea,select)::placeholder{color:var(--bs-violet-200);opacity:1}:where(input,textarea,select):focus{box-shadow:0 0 0 2px var(--offset-color,var(--bs-bg-base)),0 0 0 4px var(--outline-color,var(--bs-blue-400));outline:2px solid transparent}:where(.box) :where(input,textarea,select):focus{--offset-color:var(--bs-bg-subtle)}:where(.box[data-invert]) :where(input,textarea,select):focus{--offset-color:var(--bs-bg-invert)}:where(input,textarea,select)[required]:focus,:where(input,textarea,select).error{--outline-color:var(--bs-red-200)}:where(input,textarea,select):disabled{background-color:var(--bs-gray-200);border-color:var(--bs-gray-400);color:var(--bs-gray-400)}:where(input,textarea,select):disabled::-moz-placeholder,:where(input,textarea,select)[disabled]::-moz-placeholder{color:var(--bs-gray-400);opacity:1}:where(input,textarea,select):disabled::placeholder,:where(input,textarea,select)[disabled]::placeholder{color:var(--bs-gray-400);opacity:1}:where(textarea+.character-count){color:var(--bs-ink-base);font-size:var(--bs-text-xs);font-weight:400;text-align:right}:where(textarea[disabled]+.character-count){color:var(--bs-gray-400)}:where(select){background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%230A0B19' d='M8.048 13.375a.745.745 0 0 1-.526-.217L0 5.686l1.053-1.061 6.995 6.95 6.897-6.85 1.053 1.06-7.423 7.373a.745.745 0 0 1-.527.217Z'/%3E%3C/svg%3E");background-position:right .75rem center;background-repeat:no-repeat;background-size:1em 1em}.dark :where(select){background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M8.048 13.375a.745.745 0 0 1-.526-.217L0 5.686l1.053-1.061 6.995 6.95 6.897-6.85 1.053 1.06-7.423 7.373a.745.745 0 0 1-.527.217Z'/%3E%3C/svg%3E")}:where(.checkbox,.radio){display:flex;align-items:center;font-size:var(--bs-text-base);font-weight:400;gap:.5em;line-height:115%}:where(.checkbox,.radio) label{font-size:var(--bs-text-base);font-weight:400;line-height:115%;width:auto}:where(input[type^='checkbox'],input[type^='radio']){--box-shadow:var(--bs-ink-base);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bg-base);box-shadow:inset 0 0 0 .125rem var(--box-shadow);display:grid;height:1rem;margin:0;place-content:center;position:relative;width:1rem}:where(input[type^='checkbox'],input[type^='radio']):focus{box-shadow:inset 0 0 0 .125rem var(--box-shadow),0 0 0 2px var(--offset-color,var(--bs-bg-base)),0 0 0 4px var(--outline-color,var(--bs-blue-400))}:where(input[type^='checkbox'],input[type^='radio']).error{--box-shadow:var(--bs-red-400)}:where(input[type^='checkbox']){border-radius:.125rem}:where(input[type^='radio']){border-radius:50%}:where(.checkbox,.radio)[data-size='sm'],:where(.checkbox,.radio)[data-size='sm'] label{font-size:var(--bs-text-sm);line-height:100%}:where(.checkbox,.radio)[data-size='sm'] input{width:var(--bs-text-xs);height:var(--bs-text-xs)}:where(input[type='checkbox'])::before{--filled-size:1rem;--check-fill-color:var(--bs-blue-400);content:'';border-radius:.125rem;box-shadow:inset var(--filled-size) var(--filled-size) var(--check-fill-color);height:var(--filled-size);visibility:hidden;width:var(--filled-size)}:where(input[type^='checkbox'])::after{border:solid var(--bs-white);border-width:0 .125rem .125rem 0;content:'';height:.75em;left:50%;position:absolute;top:50%;transform-origin:center;transform:translate(-50%,-60%) rotate(45deg);visibility:hidden;width:.375em}:where(input[type='radio'])::before{--filled-size:1rem;--radio-fill-color:var(--bs-blue-400);background-color:var(--radio-fill-color);border-radius:50%;box-sizing:content-box;content:'';height:var(--filled-size);visibility:hidden;width:var(--filled-size)}:where(input[type='radio'])::after{--inner-size:.375rem;--inner-fill-color:var(--bs-white);background-color:var(--inner-fill-color);border-radius:50%;box-sizing:content-box;content:'';height:var(--inner-size);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);visibility:hidden;width:var(--inner-size)}:where(input[type='checkbox']:checked,input[type='radio']:checked)::before,:where(input[type='checkbox']:checked,input[type='radio']:checked)::after{visibility:visible}:where(.checkbox,.radio)[data-size='sm'] input::before{--filled-size:var(--bs-text-xs)}:where(.checkbox[data-size='sm'] input[type='checkbox'])::after{height:.5625;width:.3125}:where(.radio[data-size='sm'] input[type='radio'])::after{--inner-size:.25rem}:where(input[type='checkbox'],input[type='radio']):disabled{--box-shadow:var(--bs-gray-400);background-color:transparent}:where(input[type='checkbox']):checked:disabled:before{--check-fill-color:var(--bs-gray-400)}:where(input[type='radio']):checked:disabled:before{--radio-fill-color:var(--bs-gray-400)}:where(input).error{border-color:var(--bs-red-400)}:where(.message){color:var(--bs-gray-400);font-size:var(--bs-text-xs);padding-top:.5rem}:where(.message.error){color:var(--bs-red-400)}:where(fieldset){border:0;margin-left:0;margin-right:0;padding:0}:where(fieldset legend){margin-bottom:.25rem;padding:0}.pill{--pill-background:var(--bs-bg-subtle);--pill-border:transparent;--pill-text:var(--bs-royal-400);align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--pill-background);border:1px solid var(--pill-border);border-radius:4px;color:var(--pill-text);display:inline-flex;font-size:var(--bs-text-xs);gap:4px;line-height:1.33;padding:4px 6px;text-decoration:none;vertical-align:middle}:where(.dark) .pill{--pill-text:var(--bs-royal-100)}.pill>svg{height:1rem}:is(a,button).pill{color:var(--pill-text);cursor:pointer;transition:all .15s ease-in-out}:is(a,button).pill:is(:hover,:focus){--pill-border:var(--bs-royal-400);color:var(--pill-text);outline:transparent}:where(.dark) :is(a,button).pill:is(:hover,:focus){--pill-border:var(--bs-royal-200)}:where(.box,[class*="bg-"]:not([class~="bg-white"])) .pill{--pill-background:var(--bs-bg-base)}:where(.box[data-invert]) .pill{--pill-background:var(--bs-bg-invert-subtle);--pill-text:var(--bs-gray-100)}:where(.box[data-invert]) :is(a,button).pill:is(:hover,:focus){--pill-border:var(--bs-gray-100)}:where(.dark .box[data-invert]) .pill{--pill-text:var(--bs-royal-400)}:where(.dark .box[data-invert]) :is(a,button).pill:is(:hover,:focus){--pill-border:var(--bs-royal-400)}.pill:where([data-status]){--status-color:var(--bs-blue-400)}.pill:where([data-status])::before{background-color:var(--status-color);border-radius:100%;content:'';height:12px;width:12px}.pill:where([data-status^="active"]){--status-color:var(--bs-blue-400)}.pill:where([data-status^="complete"]){--status-color:var(--bs-purple-400)}.pill:where([data-status^="inactive"]){--status-color:var(--bs-gray-300)}.pill:where([data-status^="error"]){--status-color:var(--bs-red-400)}.pill:where([data-status^="positive"]){--status-color:#16986d}.pill:where([data-status^="warning"]){--status-color:var(--bs-orange-warning)}.pill:where([data-type^="filter"]){--pill-background:var(--bs-bg-base);--pill-border:var(--bs-border);--pill-text:var(--bs-ink-base)}.pill:where([data-type^="filter"]):is(:hover,:focus){--pill-border:var(--bs-border)}:is(a,button).pill:where([data-type^="filter"]):is(:hover,:focus){--pill-border:var(--bs-ink-base)}.pill:where([data-type^="filter"][data-type*="add"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.5 4.5V8h1V4.5H8v-1H4.5V0h-1v3.5H0v1h3.5Z' fill='%230A0B19'/%3E%3C/svg%3E")}:where(.dark) .pill:where([data-type^="filter"][data-type*="add"]):not(:disabled,[aria-disabled="true"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.5 4.5V8h1V4.5H8v-1H4.5V0h-1v3.5H0v1h3.5Z' fill='%23ffffff'/%3E%3C/svg%3E")}.pill:where([data-type^="filter"][data-type*="remove"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%230A0B19'/%3E%3C/svg%3E%0A")}:where(.dark) .pill:where([data-type^="filter"][data-type*="remove"]):not(:disabled,[aria-disabled="true"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23ffffff'/%3E%3C/svg%3E%0A")}.pill:where([data-type^="filter"][data-type*="remove"]):hover::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23D91214'/%3E%3C/svg%3E%0A")}:where(.dark) .pill:where([data-type^="filter"][data-type*="remove"]):hover::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23F15355'/%3E%3C/svg%3E%0A")}.pill:where([data-type^="filter"][data-type*="active"]){--pill-background:var(--bs-blue-400);--pill-border:transparent;--pill-text:var(--bs-white)}.pill:where([data-type^="filter"][data-type*="active"]):is(:hover,:focus){--pill-border:transparent}:is(a,button).pill:where([data-type^="filter"][data-type*="active"]):is(:hover,:focus){--pill-background:var(--bs-blue-500);--pill-border:transparent}.pill:where([data-type^="filter"][data-type*="active"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23fff'/%3E%3C/svg%3E")}.pill:where([data-type^="filter"][data-type*="active"]):where(:disabled,[aria-disabled="true"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%230A0B19'/%3E%3C/svg%3E%0A")}.pill:where([data-type^="restricted"]){--pill-background:var(--bs-gray-400);--pill-text:var(--bs-white)}.pill:where([data-type^="restricted"]):hover{--pill-border:transparent}.pill:where([data-type^="restricted"])::before{content:url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 8 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.25 4.5H7v3.715a.34.34 0 0 1-.37.285H1V5.285A.34.34 0 0 1 1.37 5h5a.25.25 0 0 0 .25-.25V3.275A2.545 2.545 0 0 0 4 1a2.55 2.55 0 0 0-2.625 2.29L1.39 4.5a.83.83 0 0 0-.89.785V8.75A.25.25 0 0 0 .75 9h5.88a.835.835 0 0 0 .87-.785V4.75a.25.25 0 0 0-.25-.25Zm-2.225 0H2.96V3.425c0-.035 0-.845 1.03-.845a.96.96 0 0 1 1.035.8V4.5ZM4 1.5a2.045 2.045 0 0 1 2.115 1.79V4.5h-.59V3.37A1.455 1.455 0 0 0 4 2.075a1.385 1.385 0 0 0-1.53 1.35V4.5h-.58V3.31A2.045 2.045 0 0 1 4 1.5Zm-.495 4.25H1.5v.5h2.005v-.5Zm-2.005 1h1.505v.5H1.5v-.5Z' fill='%23F0F0FA'/%3E%3C/svg%3E");line-height:1.1}:where(.dark) .pill:where([data-type^="restricted"]){--pill-background:var(--bs-navy-300);--pill-text:var(--bs-white)}.pill:where([data-type^="live"]){--pill-background:var(--bs-royal-400);--pill-text:var(--bs-white);text-transform:uppercase}.pill:where([data-type^="live"]):hover{--pill-border:transparent}.pill:where([data-type^="live"])::before{background-color:var(--bs-red-400);border:3px solid var(--bs-white);border-radius:100%;content:'';height:12px;width:12px}.pill:is(:disabled,[aria-disabled="true"]){pointer-events:none;color:var(--bs-gray-400);background-color:var(--bs-gray-200)}.pill:where([data-type^="filter"]):not([data-type*="active"]):is(:disabled,[aria-disabled="true"]){--pill-border:var(--bs-gray-400)}:where(.profile-img),:where(.profile-img[data-img-size^='sm']){--profile-size:2rem;--profile-text:var(--bs-text-sm);aspect-ratio:1/1;border-radius:50%;height:var(--profile-size);overflow:hidden;position:relative;width:var(--profile-size)}:where(.profile-img img){height:100%;-o-object-fit:cover;object-fit:cover;width:100%}:where(.profile-img[data-no-img="true"]) img{display:none}:where(.profile-img)::before,:where(.profile-img)::after{border-radius:50%;border-collapse:collapse;height:100%;inset:0;position:absolute;width:100%}:where(.profile-img)::before{box-shadow:var(--bs-shadow-profilePhoto);content:''}:where(.profile-img[data-no-img="true"])::before{display:none}:where(.profile-img[data-no-img="true"])::after{border:1px solid currentColor;color:var(--bs-blue-500);content:attr(data-initials);font-size:var(--profile-text);text-transform:uppercase;display:grid;place-items:center}:where([data-img-size^='xs']){--profile-size:1.5rem;--profile-text:var(--bs-text-xs)}:where([data-img-size^='md']){--profile-size:3rem;--profile-text:var(--bs-text-md)}:where([data-img-size^='lg']){--profile-size:4rem;--profile-text:var(--bs-text-lg)}:where([data-img-size^='xl']){--profile-size:5.75rem;--profile-text:var(--bs-text-xl)}:where(.profile[data-layout]),:where(.profile[data-layout^='vertical']){display:grid;row-gap:.5rem}:where(.profile[data-layout^='horizontal']){-moz-column-gap:1rem;column-gap:1rem;grid-template-columns:auto 1fr}:where(.profile-content){color:var(--bs-ink-light);font-size:var(--bs-text-xs)}:where(.profile[data-layout]:hover .profile-content>*:first-child){--profile-ink-hover:var(--bs-blue-500);color:var(--profile-ink-hover);text-decoration:underline}.dark :where(.profile[data-layout]:hover .profile-content>*:first-child){--profile-ink-hover:var(--bs-blue-200)}table{border-collapse:collapse;border-spacing:0;overflow-x:auto;max-width:100%;width:100%}thead{color:var(--bs-ink-base);font-size:var(--bs-font-base);font-weight:600}tbody{color:var(--bs-ink-light)}th{background:var(--bs-bg-base)}th,td{border-bottom:1px solid var(--bs-border);min-width:-moz-fit-content;min-width:fit-content;padding:var(--bs-space-2);text-align:left}table[data-borders^="none"]{border:0}table[data-borders^="all"] :where(th,td){border-left:1px solid var(--bs-border)}table[data-borders^="all"] :where(th,td):last-child{border-right:1px solid var(--bs-border)}table[data-borders^="all"] th{border-top:1px solid var(--bs-border)}table:where([data-rows^="striped"]) tbody>tr:nth-child(even){background-color:var(--bs-bg-subtle)}table[data-cells^="fixed"]{table-layout:fixed}table:where([data-cells^="height"]) td{height:4.5rem;vertical-align:middle}table:where([data-sticky]){isolation:isolate}table:where([data-sticky^="top"]) td{z-index:1}table:where([data-sticky^="top"]){border-collapse:separate;overflow-y:unset;position:relative}table:where([data-sticky^="left"]){border-collapse:separate;overflow-x:unset;position:relative}table:where([data-sticky^="top"]) th{position:sticky;top:var(--bs-content-top);z-index:2}table:where([data-sticky^="left"]) :is(td:first-child,th:first-child){position:sticky;left:0;z-index:2}.box{background:var(--bg-color,var(--bs-bg-subtle));border-radius:.25rem;padding:var(--box-space,var(--bs-space-6))}.box[data-invert]{--bg-color:var(--bs-bg-invert);color:var(--bs-ink-invert)}:where(.fluid) .box{padding:var(--box-space,var(--bs-space-f-6))}.cluster{align-items:center;display:flex;flex-wrap:wrap;gap:var(--cluster-space,var(--bs-space-6));justify-content:flex-start}.cluster[data-gap="tight"]{gap:var(--cluster-space,var(--bs-space-2))}:where(.fluid) .cluster{gap:var(--cluster-space,var(--bs-space-f-6))}:where(.fluid) .cluster[data-gap="tight"]{gap:var(--cluster-space,var(--bs-space-f-2))}.flow>*+*{margin-top:var(--flow-space,1.25em)}.flow>:is(h1,h2,h3,h4,h5,h6){--flow-space:2em}.flow>hr+*{--flow-space:1.5em}.flow>:is(h1,h2,h3,h4,h5,h6)+*{--flow-space:.5em}.flow>:is(ul,ol)>li{margin-top:var(--flow-space,0.625em)}.region{padding-block:var(--region-space,var(--bs-space-6))}.region[data-space^='sm']{padding-block:var(--bs-space-3)}.region[data-space^='lg']{padding-block:var(--bs-space-12)}:where(.fluid) .region{padding-block:var(--region-space,var(--bs-space-f-6))}:where(.fluid) .region[data-space^='sm']{padding-block:var(--bs-space-f-3)}:where(.fluid) .region[data-space^='lg']{padding-block:var(--bs-space-f-12)}.wrapper{margin-inline:auto;max-width:var(--max-width,75rem);min-width:0;padding-inline:var(--wrapper-space,var(--bs-space-6));position:relative;width:100%}:where(.fluid) .wrapper{padding-inline:var(--wrapper-space,var(--bs-space-f-6))}.wrapper[data-flush]{padding-inline:0}.visually-hidden{border:0;clip:rect(0 0 0 0);height:auto;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.measure-compact{max-width:40ch}.measure-short{max-width:50ch}.measure-long{max-width:70ch}
|
|
1
|
+
:root{--bs-transparent:transparent;--bs-white:#fff;--bs-black:#0a0b19;--bs-blue-10:rgba(0,134,234,0.1);--bs-blue-100:#99cff7;--bs-blue-200:#66b6f2;--bs-blue-300:#339eee;--bs-blue-400:#0086ea;--bs-blue-500:#006dc7;--bs-red-10:rgba(238,40,42,0.1);--bs-red-100:#f8a9aa;--bs-red-200:#f57e7f;--bs-red-300:#f15355;--bs-red-400:#ee282a;--bs-red-500:#d91214;--bs-plum-10:rgba(28,0,135,0.1);--bs-plum-100:#a499cf;--bs-plum-200:#7766b7;--bs-plum-300:#49339f;--bs-plum-400:#1c0087;--bs-royal-100:#c5cceb;--bs-royal-200:#7585d1;--bs-royal-300:#5365c4;--bs-royal-400:#162fb4;--bs-violet-100:#cbc0da;--bs-violet-200:#9983b6;--bs-violet-300:#634291;--bs-violet-400:#330072;--bs-navy-100:#c6c6d1;--bs-navy-200:#8d8ea1;--bs-navy-300:#555775;--bs-navy-400:#1d1e48;--bs-navy-500:#131431;--bs-orange-10:rgba(250,70,22,0.1);--bs-orange-100:#fed1c5;--bs-orange-200:#fda58d;--bs-orange-300:#fc7755;--bs-orange-400:#fa4616;--bs-orange-warning:#ea6712;--bs-pink-100:#f6cbe0;--bs-pink-200:#eb7eaf;--bs-pink-300:#e45e9b;--bs-pink-400:#e31c79;--bs-pink-500:#d11a6f;--bs-purple-10:rgba(130,18,196,0.09);--bs-purple-100:#e0c5ef;--bs-purple-200:#bf8adf;--bs-purple-300:#a154d0;--bs-purple-400:#8212c4;--bs-gray-100:#f0f0fa;--bs-gray-200:#c9cad9;--bs-gray-300:#a3a4b7;--bs-gray-400:#4e4f5f;--bs-gray-500:#292940;--bs-gradient-dark:linear-gradient(90deg,#1c0087 0,#ee282a 35%,#fff 50%,#0086ea 65%,#1c0087 100%);--bs-gradient-light:linear-gradient(90deg,#1c0087 0,#ee282a 35%,#fff 50%,#0086ea 65%,#1c0087 100%);--bs-gradient-line:linear-gradient(90deg,#ee282a 0,#1c0087 50%,#0086ea 100%);--bs-space-0:0;--bs-space-1:.25rem;--bs-space-2:.5rem;--bs-space-3:.75rem;--bs-space-4:1rem;--bs-space-5:1.25rem;--bs-space-6:1.5rem;--bs-space-7:1.75rem;--bs-space-8:2rem;--bs-space-9:2.25rem;--bs-space-10:2.5rem;--bs-space-11:2.75rem;--bs-space-12:3rem;--bs-space-14:3.5rem;--bs-space-16:4rem;--bs-space-20:5rem;--bs-space-24:6rem;--bs-space-28:7rem;--bs-space-32:8rem;--bs-space-36:9rem;--bs-space-40:10rem;--bs-space-44:11rem;--bs-space-48:12rem;--bs-space-52:13rem;--bs-space-56:14rem;--bs-space-60:15rem;--bs-space-64:16rem;--bs-space-72:18rem;--bs-space-80:20rem;--bs-space-96:24rem;--bs-space-px:1px;--bs-space-0-half:.125rem;--bs-space-1-half:.375rem;--bs-space-2-half:.625rem;--bs-space-3-half:.875rem;--bs-space-f-1:clamp(0.25rem,calc(0.13rem + 0.5vw), 0.5rem);--bs-space-f-2:clamp(0.5rem,calc(0.38rem + 0.5vw), 0.75rem);--bs-space-f-3:clamp(0.75rem,calc(0.63rem + 0.5vw), 1rem);--bs-space-f-4:clamp(1rem,calc(0.75rem + 1vw), 1.5rem);--bs-space-f-6:clamp(1.5rem,calc(1.25rem + 1vw), 2rem);--bs-space-f-8:clamp(2rem,calc(1.5rem + 2vw), 3rem);--bs-space-f-12:clamp(4rem,calc(3rem + 4vw), 6rem);--bs-space-f-16:clamp(4rem,calc(3rem + 4vw), 6rem);--bs-space-f-24:clamp(6rem,calc(5rem + 4vw), 8rem);--bs-space-f-4to8:clamp(1rem,calc(0.5rem + 2vw), 2rem);--bs-space-f-6to12:clamp(1.5rem,calc(0.75rem + 3vw), 3rem);--bs-space-f-12to24:clamp(3rem,calc(1.5rem + 6vw), 6rem);--bs-text-xs:.75rem;--bs-text-sm:.875rem;--bs-text-base:1rem;--bs-text-md:1.125rem;--bs-text-lg:1.25rem;--bs-text-xl:1.5rem;--bs-text-2xl:2rem;--bs-text-3xl:2.25rem;--bs-text-4xl:3rem;--bs-text-f-xs:clamp(0.69rem,calc(0.84rem + -0.19vw), 0.79rem);--bs-text-f-sm:clamp(0.83rem,calc(0.92rem + -0.11vw), 0.89rem);--bs-text-f-base:clamp(1rem,calc(1rem + 0vw), 1rem);--bs-text-f-md:clamp(1rem,calc(0.94rem + 0.25vw), 1.125rem);--bs-text-f-lg:clamp(1.125rem,calc(1.06rem + 0.25vw), 1.25rem);--bs-text-f-xl:clamp(1.25rem,calc(1.13rem + 0.5vw), 1.5rem);--bs-text-f-2xl:clamp(1.5rem,calc(1.25rem + 1vw), 2rem);--bs-text-f-3xl:clamp(2rem,calc(1.88rem + 0.5vw), 2.25rem);--bs-text-f-4xl:clamp(2.25rem,calc(1.88rem + 1.5vw), 3rem);--bs-leading-sm:115%;--bs-leading-base:150%;--bs-shadow:-4px 4px 12px rgba(0,0,0,0.06),-8px 8px 16px rgba(28,0,135,0.2);--bs-shadow-contentLow:-4px 4px 12px rgba(0,0,0,0.06),-8px 8px 16px rgba(28,0,135,0.2);--bs-shadow-contentLowCenter:0 0 12px rgba(0,0,0,0.06),0 0 16px rgba(28,0,135,0.2);--bs-shadow-contentMedium:-8px 8px 24px rgba(0,0,0,0.06),-16px 16px 32px rgba(28,0,135,0.2);--bs-shadow-contentHigh:0 16px 48px rgba(0,0,0,0.06),0 32px 64px rgba(28,0,135,0.2);--bs-shadow-drawerLeft:-12px 12px 24px rgba(0,0,0,0.06),-16px 16px 32px rgba(28,0,135,0.2);--bs-shadow-drawerRight:-12px 12px 24px rgba(0,0,0,0.06),16px 16px 32px rgba(28,0,135,0.2);--bs-shadow-profilePhoto:inset 0 0 .5em rgba(28,0,135,0.25)}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{margin:0}ul[role='list'],ol[role='list']{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}:where(input,textarea,select){font:inherit}button{font-family:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}:root,:host{--bs-bg-base:var(--bs-white);--bs-bg-subtle:var(--bs-gray-100);--bs-bg-invert:var(--bs-navy-500);--bs-bg-invert-subtle:var(--bs-navy-400);--bs-ink-base:var(--bs-black);--bs-ink-medium:var(--bs-gray-500);--bs-ink-light:var(--bs-gray-400);--bs-ink-accent:var(--bs-plum-400);--bs-ink-invert:var(--bs-white);--bs-border:var(--bs-gray-200);--bs-content-top:4rem;--bs-font-normal:400;--bs-font-bold:600}.dark,.dark :host{--bs-bg-base:var(--bs-navy-500);--bs-bg-subtle:#2f2f51;--bs-bg-invert:var(--bs-white);--bs-bg-invert-subtle:var(--bs-gray-100);--bs-ink-base:var(--bs-white);--bs-ink-medium:var(--bs-gray-100);--bs-ink-light:var(--bs-gray-200);--bs-ink-accent:var(--bs-plum-100);--bs-ink-invert:var(--bs-black);--bs-border:var(--bs-gray-400)}body,:host{background-color:var(--bs-bg-base);color:var(--bs-ink-light)}:target{scroll-margin-top:var(--bs-content-top)}::-moz-selection{background-color:var(--bs-royal-400);color:var(--bs-white)}::selection{background-color:var(--bs-royal-400);color:var(--bs-white)}[hidden]{display:none}hr{border:0;height:1px;background:var(--bs-border)}body{font-weight:400;font-family:'Roobert',sans-serif;font-size:var(--bs-text-base)}[data-variant^="heading-xl"]{font-size:var(--bs-text-4xl);font-weight:400;line-height:var(--bs-leading-sm)}h1,[data-variant^="heading-1"]{font-size:var(--bs-text-3xl);font-weight:400;line-height:var(--bs-leading-sm)}h2,[data-variant^="heading-2"]{font-size:var(--bs-text-2xl);font-weight:600;line-height:var(--bs-leading-sm)}h3,[data-variant^="heading-3"]{font-size:var(--bs-text-xl);font-weight:600;line-height:var(--bs-leading-sm)}h4,[data-variant^="heading-4"]{font-size:var(--bs-text-lg);font-weight:600}h5,[data-variant^="heading-5"]{font-size:var(--bs-text-md);font-weight:600}h6,[data-variant^="heading-6"]{font-size:var(--bs-text-base);font-weight:600}.prose{font-size:var(--bs-text-md);max-width:70ch}.prose :where(h1,h2,h3,h4,h5,h6):not([data-color]){color:var(--bs-ink-base)}[data-variant^="default"]{font-size:var(--bs-text-base)}.bs-meta,[data-variant^="meta"]{font-size:var(--bs-text-xs);font-weight:600}:where(.prose blockquote){border-left:4px solid var(--bs-plum-200);color:var(--bs-plum-200);font-style:italic;font-weight:400;padding-left:var(--bs-space-4)}.prose:where([data-width="wide"]){max-width:90%}.prose:where([data-width="wide"])>:is(p,h1,h2,h3,h4,h5,h6,blockquote,ul,ol){max-width:48rem}:where([data-font-size^='4xl']){font-size:var(--bs-text-4xl);line-height:var(--bs-leading-sm)}:where([data-font-size^='3xl']){font-size:var(--bs-text-3xl);line-height:var(--bs-leading-sm)}:where([data-font-size^='2xl']){font-size:var(--bs-text-2xl);line-height:var(--bs-leading-sm)}:where([data-font-size^='xl']){font-size:var(--bs-text-xl);line-height:var(--bs-leading-sm)}:where([data-font-size^='lg']){font-size:var(--bs-text-lg)}:where([data-font-size^='md']){font-size:var(--bs-text-md)}:where([data-font-size^='base']){font-size:var(--bs-text-base)}:where([data-font-size^='sm']){font-size:var(--bs-text-sm)}:where([data-font-size^='xs']){font-size:var(--bs-text-xs)}:where([data-color^='base']){color:var(--bs-ink-base)}:where([data-color^='medium']){color:var(--bs-ink-medium)}:where([data-color^='light']){color:var(--bs-ink-light)}:where([data-color^='accent']){color:var(--bs-ink-accent)}:where([data-weight^='normal'],[data-weight^='400']){font-weight:400}:where([data-weight^='bold'],[data-weight^='600']){font-weight:600}body:where(.fluid){font-size:var(--bs-text-f-md)}:where(.fluid) h1,:where(.fluid) [data-variant^='heading-1']{font-size:var(--bs-text-f-3xl)}:where(.fluid) h2,:where(.fluid) [data-variant^='heading-2']{font-size:var(--bs-text-f-2xl)}:where(.fluid) h3,:where(.fluid) [data-variant^='heading-3']{font-size:var(--bs-text-f-xl)}:where(.fluid) h4,:where(.fluid) [data-variant^='heading-4']{font-size:var(--bs-text-f-lg)}:where(.fluid) h5,:where(.fluid) [data-variant^='heading-5']{font-size:var(--bs-text-f-md)}:where(.fluid) h6,:where(.fluid) [data-variant^='heading-6']{font-size:var(--bs-text-f-sm)}:where(.fluid).prose,:where(.fluid) .prose,:where(.fluid) [data-variant^='default']{font-size:var(--bs-text-f-md)}:where(.fluid) .bs-meta,:where(.fluid) [data-variant^='meta']{font-size:var(--bs-text-f-xs)}:where(.fluid) [data-font-size^='4xl']{font-size:var(--bs-text-f-4xl)}:where(.fluid) [data-font-size^='3xl']{font-size:var(--bs-text-f-3xl)}:where(.fluid) [data-font-size^='2xl']{font-size:var(--bs-text-f-2xl)}:where(.fluid) [data-font-size^='xl']{font-size:var(--bs-text-f-xl);line-height:var(--bs-leading-sm)}:where(.fluid) [data-font-size^='lg']{font-size:var(--bs-text-f-lg)}:where(.fluid) [data-font-size^='md']{font-size:var(--bs-text-f-md)}:where(.fluid) [data-font-size^='base']{font-size:var(--bs-text-f-base)}:where(.fluid) [data-font-size^='sm']{font-size:var(--bs-text-f-sm)}:where(.fluid) [data-font-size^='xs']{font-size:var(--bs-text-f-xs)}:where(.prose) a{border-radius:.25rem;-webkit-box-decoration-break:clone;box-decoration-break:clone;color:var(--bs-purple-400);text-decoration:underline;text-underline-offset:2px;transition:all .15s ease-in-out;outline-color:var(--bs-blue-400)}:where(.prose) a:where(:not(.button)):hover,:where(.prose) a:where(:not(.button)):focus,:where(.prose) a:where(:not(.button)):focus-visible{color:var(--bs-plum-400);text-decoration-color:var(--bs-purple-400)}:where(.prose) a:focus-visible{outline-offset:var(--bs-space-1);outline-style:solid;outline-width:2px}:where(.prose) a:focus:where(:not(:focus-visible)){outline:0}.dark :where(.prose) a:not(.button,.pill){color:var(--bs-purple-200);outline-color:var(--bs-blue-300)}.dark :where(.prose) a:where(:not(.button)):hover,.dark :where(.prose) a:where(:not(.button)):focus,.dark :where(.prose) a:where(:not(.button)):focus-visible{color:var(--bs-pink-300);text-decoration-color:var(--bs-purple-200)}.dark :where(.prose) a:focus-visible{outline-offset:var(--bs-space-1)}.dark :where(.prose) a:focus:where(:not(:focus-visible)){outline:0}.box-shadow{box-shadow:var(--bs-shadow)}.box-shadow:where([data-variant="center"]){box-shadow:var(--bs-shadow-contentLowCenter)}.box-shadow:where([data-variant="medium"]){box-shadow:var(--bs-shadow-contentMedium)}.box-shadow:where([data-variant="high"]){box-shadow:var(--bs-shadow-contentHigh)}.box-shadow:where([data-variant="left-panel"]){box-shadow:var(--bs-shadow-drawerLeft)}.box-shadow:where([data-variant="right-panel"]){box-shadow:var(--bs-shadow-drawerRight)}.box-shadow:where([data-variant="profile"]){box-shadow:var(--bs-shadow-profilePhoto)}.badge[data-position^='left']::before,.badge:where(:not([data-position^='left']))::after{align-items:center;background:var(--bs-red-500);border-radius:.5rem;content:'';display:inline-flex;font-size:.8125rem;font-variant-numeric:tabular-nums;font-weight:600;height:6px;justify-content:center;line-height:1;position:relative;vertical-align:top;width:6px}.pill .badge::before,.pill .badge::after{font-size:.8125em}.badge[data-count]:where([data-position^='left'])::before,.badge[data-count]:where(:not([data-position^='left']))::after{color:white;content:attr(data-count);min-height:1rem;min-width:1rem;padding:0 4px;top:-0.0625rem;vertical-align:unset;width:auto}.badge[data-count]::before{margin-right:.25rem}.badge[data-count]::after{margin-left:.25rem}.badge[data-count='0']::before,.badge[data-count='0']::after{display:none}.badge[data-badge-color^='blue']::before,.badge[data-badge-color^='blue']::after{background:var(--bs-blue-500)}.badge[data-badge-color^='white']::before,.badge[data-badge-color^='white']::after{background:white;color:var(--badge-text,var(--bs-black))}:where(button){background-color:inherit;border-color:transparent;color:inherit;font-size:var(--bs-text-base);position:relative;padding:var(--bs-space-0);text-decoration:none}.button{--btn-main:var(--bs-blue-400);--btn-secondary:var(--bs-blue-300);--btn-highlight:var(--bs-blue-100);align-items:center;background-color:var(--btn-main);border:0;border-radius:.25rem;color:var(--bs-white);cursor:pointer;display:inline-flex;font-size:var(--bs-text-md);font-weight:600;line-height:1.5;outline:2px solid transparent;padding:var(--bs-space-1) var(--bs-space-4) calc(var(--bs-space-1) * 1.5);position:relative;text-decoration:none;transition:all 100ms ease-in-out;vertical-align:middle}.button:hover{background-color:var(--btn-secondary)}.button:active{background-color:var(--btn-secondary);transform:scale(0.97);transform-origin:center;box-shadow:inset 0 0 4px 1px var(--btn-main)}.button::before{border-color:transparent;border-radius:.5rem;border-style:solid;border-width:.125rem;content:'';height:calc(100% + 0.5rem);inset:-0.25rem;position:absolute;transition:border-color .125s ease-in-out;width:calc(100% + 0.5rem)}.button:focus::before{border-color:var(--btn-main)}.button:focus-visible::before{border-color:var(--btn-main);box-shadow:none}.button:focus:not(:focus-visible)::before{border-color:transparent;box-shadow:none}.button:where([data-ghost]){--btn-light:var(--bs-blue-10);--btn-secondary:var(--bs-blue-10);background-color:transparent;box-shadow:inset 0 0 0 1px var(--btn-main);color:var(--btn-main)}.button:where([data-ghost])::before{border-radius:.4375rem}.button:where([data-ghost]):hover,.button:where([data-ghost]):focus{background-color:var(--btn-light)}.button:where([data-ghost]):active{box-shadow:inset 0 0 0 1px var(--btn-main),inset 0 0 4px 1px var(--btn-highlight)}.button:where([data-variant^='secondary']){--btn-main:var(--bs-plum-400);--btn-secondary:var(--bs-plum-300);--btn-light:var(--bs-plum-10);--btn-highlight:var(--bs-plum-100)}.dark .button:where([data-variant^='secondary']){--btn-main:var(--bs-plum-200);--btn-secondary:var(--bs-plum-300);--btn-light:var(--bs-navy-400);--btn-highlight:var(--bs-plum-400)}.button:where([data-variant^='positive']){--btn-main:var(--bs-purple-400);--btn-secondary:var(--bs-purple-300);--btn-light:var(--bs-purple-10);--btn-highlight:var(--bs-purple-100)}.button:where([data-variant^='warning']){--btn-main:var(--bs-orange-warning);--btn-secondary:var(--bs-orange-300);--btn-light:var(--bs-orange-10);--btn-highlight:var(--bs-orange-100)}.button:where([data-variant^='negative']){--btn-main:var(--bs-red-400);--btn-secondary:var(--bs-red-300);--btn-light:var(--bs-red-10);--btn-highlight:var(--bs-red-100)}.button:where([data-text]){background-color:transparent;color:var(--bs-blue-500);cursor:pointer;font-size:var(--bs-text-md);font-weight:400;line-height:150%}.button:where([data-text]):hover{background-color:transparent;text-decoration:underline}.button:where([data-text]):active{box-shadow:none}.button:where([data-size^='sm']){font-size:var(--bs-text-sm)}.button:where([data-text][data-size^='sm']){font-size:var(--bs-text-base)}:where(button:disabled),.button:where([aria-disabled='true']){pointer-events:none}.button:where(:disabled),.button:where([aria-disabled='true']){color:var(--bs-gray-400);background-color:var(--bs-gray-200)}.button:where([data-ghost]):disabled,.button:where([data-ghost])[aria-disabled='true']{box-shadow:inset 0 0 0 1px var(--bs-gray-400)}.button:where([data-text]):disabled,.button:where([data-text][aria-disabled='true']){background-color:transparent}.button :where(svg:not([height])){height:var(--bs-text-base)}.button:where([data-size^='sm']) :where(svg:not([height])){height:var(--bs-text-xs)}a.button{align-items:center;display:inline-flex;outline:0;vertical-align:middle}:where(label,legend){color:var(--bs-ink-base);display:inline-block;font-size:var(--bs-text-sm);font-weight:600;line-height:var(--bs-leading-base);width:100%}:where(.required){color:var(--bs-red-400)}:where([data-disabled],[data-disabled] .required,[data-disabled] label){color:var(--bs-gray-400)}:where(.required){color:var(--bs-red-400)}:where([data-disabled],[data-disabled] .required){color:var(--bs-gray-400)}:where(label+input,label>input):not([type^='checkbox'],[type^='radio']),:where(label+textarea,label>textarea),:where(label+select,label>select){margin-top:.25rem}:where(input):not([type^='checkbox'],[type^='radio'],[type^='file'],[type^='range']),:where(textarea,select){-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--input-bg,var(--bs-bg-base));border:1px solid var(--input-border,var(--bs-violet-300));border-radius:.25rem;color:var(--bs-ink-base);font-size:var(--bs-text-base);font-weight:400;line-height:var(--bs-leading-base);min-height:40px;padding:.5rem .75rem;width:100%}:where(input,textarea,select)::-moz-placeholder{color:var(--bs-violet-200);opacity:1}:where(input,textarea,select)::placeholder{color:var(--bs-violet-200);opacity:1}:where(input,textarea,select):focus{box-shadow:0 0 0 2px var(--offset-color,var(--bs-bg-base)),0 0 0 4px var(--outline-color,var(--bs-blue-400));outline:2px solid transparent}:where(.box) :where(input,textarea,select):focus{--offset-color:var(--bs-bg-subtle)}:where(.box[data-invert]) :where(input,textarea,select):focus{--offset-color:var(--bs-bg-invert)}:where(input,textarea,select)[required]:focus,:where(input,textarea,select).error{--outline-color:var(--bs-red-200)}:where(input,textarea,select):disabled{background-color:var(--bs-gray-200);border-color:var(--bs-gray-400);color:var(--bs-gray-400)}:where(select:disabled){opacity:1}:where(input,textarea,select):disabled::-moz-placeholder,:where(input,textarea,select)[disabled]::-moz-placeholder{color:var(--bs-gray-400);opacity:1}:where(input,textarea,select):disabled::placeholder,:where(input,textarea,select)[disabled]::placeholder{color:var(--bs-gray-400);opacity:1}:where(textarea+.character-count){color:var(--bs-ink-base);font-size:var(--bs-text-xs);font-weight:400;text-align:right}:where(textarea[disabled]+.character-count){color:var(--bs-gray-400)}:where(select){background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%230A0B19' d='M8.048 13.375a.745.745 0 0 1-.526-.217L0 5.686l1.053-1.061 6.995 6.95 6.897-6.85 1.053 1.06-7.423 7.373a.745.745 0 0 1-.527.217Z'/%3E%3C/svg%3E");background-position:right .75rem center;background-repeat:no-repeat;background-size:1em 1em}.dark :where(select){background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M8.048 13.375a.745.745 0 0 1-.526-.217L0 5.686l1.053-1.061 6.995 6.95 6.897-6.85 1.053 1.06-7.423 7.373a.745.745 0 0 1-.527.217Z'/%3E%3C/svg%3E")}:where(.checkbox,.radio){display:flex;align-items:center;font-size:var(--bs-text-base);font-weight:400;gap:.5em;line-height:115%}:where(.checkbox,.radio) label{font-size:var(--bs-text-base);font-weight:400;line-height:115%;width:auto}:where(input[type^='checkbox'],input[type^='radio']){--box-shadow:var(--bs-ink-base);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bg-base);box-shadow:inset 0 0 0 .125rem var(--box-shadow);display:grid;height:1rem;margin:0;place-content:center;position:relative;width:1rem}:where(input[type^='checkbox'],input[type^='radio']):focus{box-shadow:inset 0 0 0 .125rem var(--box-shadow),0 0 0 2px var(--offset-color,var(--bs-bg-base)),0 0 0 4px var(--outline-color,var(--bs-blue-400))}:where(input[type^='checkbox'],input[type^='radio'])[data-error]{--box-shadow:var(--bs-red-400)}:where(input[type^='checkbox']){border-radius:.125rem}:where(input[type^='radio']){border-radius:50%}:where(.checkbox,.radio)[data-size='sm'],:where(.checkbox,.radio)[data-size='sm'] label{font-size:var(--bs-text-sm);line-height:100%}:where(.checkbox,.radio)[data-size='sm'] input{width:var(--bs-text-xs);height:var(--bs-text-xs)}:where(input[type='checkbox'])::before{--filled-size:1rem;--check-fill-color:var(--bs-blue-400);content:'';border-radius:.125rem;box-shadow:inset var(--filled-size) var(--filled-size) var(--check-fill-color);height:var(--filled-size);visibility:hidden;width:var(--filled-size)}:where(input[type^='checkbox'])::after{border:solid var(--bs-white);border-width:0 .125rem .125rem 0;content:'';height:.75em;left:50%;position:absolute;top:50%;transform-origin:center;transform:translate(-50%,-60%) rotate(45deg);visibility:hidden;width:.375em}:where(input[type='radio'])::before{--filled-size:1rem;--radio-fill-color:var(--bs-blue-400);background-color:var(--radio-fill-color);border-radius:50%;box-sizing:content-box;content:'';height:var(--filled-size);visibility:hidden;width:var(--filled-size)}:where(input[type='radio'])::after{--inner-size:.375rem;--inner-fill-color:var(--bs-white);background-color:var(--inner-fill-color);border-radius:50%;box-sizing:content-box;content:'';height:var(--inner-size);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);visibility:hidden;width:var(--inner-size)}:where(input[type='checkbox']:checked,input[type='radio']:checked)::before,:where(input[type='checkbox']:checked,input[type='radio']:checked)::after{visibility:visible}:where(.checkbox,.radio)[data-size='sm'] input::before{--filled-size:var(--bs-text-xs)}:where(.checkbox[data-size='sm'] input[type='checkbox'])::after{height:.5625;width:.3125}:where(.radio[data-size='sm'] input[type='radio'])::after{--inner-size:.25rem}:where(input[type='checkbox'],input[type='radio']):disabled{--box-shadow:var(--bs-gray-400);background-color:transparent}:where(input[type='checkbox']):checked:disabled:before{--check-fill-color:var(--bs-gray-400)}:where(input[type='radio']):checked:disabled:before{--radio-fill-color:var(--bs-gray-400)}:where(input)[data-error]{border-color:var(--bs-red-400)}:where(fieldset){border:0;margin-left:0;margin-right:0;padding:0}:where(fieldset legend){margin-bottom:.25rem;padding:0}:where(.hints){color:var(--bs-ink-light);font-size:var(--bs-text-xs);padding:.5rem .75rem 0 .75rem;margin:0;list-style:none}:where(.hints[data-error]){color:var(--bs-red-400)}.pill{--pill-background:var(--bs-bg-subtle);--pill-border:transparent;--pill-text:var(--bs-royal-400);align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--pill-background);border:1px solid var(--pill-border);border-radius:4px;color:var(--pill-text);display:inline-flex;font-size:var(--bs-text-xs);gap:4px;line-height:1.33;padding:4px 6px;text-decoration:none;vertical-align:middle}:where(.dark) .pill{--pill-text:var(--bs-royal-100)}.pill>svg{height:1rem}:is(a,button).pill{color:var(--pill-text);cursor:pointer;transition:all .15s ease-in-out}:is(a,button).pill:is(:hover,:focus){--pill-border:var(--bs-royal-400);color:var(--pill-text);outline:transparent}:where(.dark) :is(a,button).pill:is(:hover,:focus){--pill-border:var(--bs-royal-200)}:where(.box,[class*="bg-"]:not([class~="bg-white"])) .pill{--pill-background:var(--bs-bg-base)}:where(.box[data-invert]) .pill{--pill-background:var(--bs-bg-invert-subtle);--pill-text:var(--bs-gray-100)}:where(.box[data-invert]) :is(a,button).pill:is(:hover,:focus){--pill-border:var(--bs-gray-100)}:where(.dark .box[data-invert]) .pill{--pill-text:var(--bs-royal-400)}:where(.dark .box[data-invert]) :is(a,button).pill:is(:hover,:focus){--pill-border:var(--bs-royal-400)}.pill:where([data-status]){--status-color:var(--bs-blue-400)}.pill:where([data-status])::before{background-color:var(--status-color);border-radius:100%;content:'';height:12px;width:12px}.pill:where([data-status^="active"]){--status-color:var(--bs-blue-400)}.pill:where([data-status^="complete"]){--status-color:var(--bs-purple-400)}.pill:where([data-status^="inactive"]){--status-color:var(--bs-gray-300)}.pill:where([data-status^="error"]){--status-color:var(--bs-red-400)}.pill:where([data-status^="positive"]){--status-color:#16986d}.pill:where([data-status^="warning"]){--status-color:var(--bs-orange-warning)}.pill:where([data-type^="filter"]){--pill-background:var(--bs-bg-base);--pill-border:var(--bs-border);--pill-text:var(--bs-ink-base)}.pill:where([data-type^="filter"]):is(:hover,:focus){--pill-border:var(--bs-border)}:is(a,button).pill:where([data-type^="filter"]):is(:hover,:focus){--pill-border:var(--bs-ink-base)}.pill:where([data-type^="filter"][data-type*="add"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.5 4.5V8h1V4.5H8v-1H4.5V0h-1v3.5H0v1h3.5Z' fill='%230A0B19'/%3E%3C/svg%3E")}:where(.dark) .pill:where([data-type^="filter"][data-type*="add"]):not(:disabled,[aria-disabled="true"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.5 4.5V8h1V4.5H8v-1H4.5V0h-1v3.5H0v1h3.5Z' fill='%23ffffff'/%3E%3C/svg%3E")}.pill:where([data-type^="filter"][data-type*="remove"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%230A0B19'/%3E%3C/svg%3E%0A")}:where(.dark) .pill:where([data-type^="filter"][data-type*="remove"]):not(:disabled,[aria-disabled="true"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23ffffff'/%3E%3C/svg%3E%0A")}.pill:where([data-type^="filter"][data-type*="remove"]):hover::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23D91214'/%3E%3C/svg%3E%0A")}:where(.dark) .pill:where([data-type^="filter"][data-type*="remove"]):hover::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23F15355'/%3E%3C/svg%3E%0A")}.pill:where([data-type^="filter"][data-type*="active"]){--pill-background:var(--bs-blue-400);--pill-border:transparent;--pill-text:var(--bs-white)}.pill:where([data-type^="filter"][data-type*="active"]):is(:hover,:focus){--pill-border:transparent}:is(a,button).pill:where([data-type^="filter"][data-type*="active"]):is(:hover,:focus){--pill-background:var(--bs-blue-500);--pill-border:transparent}.pill:where([data-type^="filter"][data-type*="active"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%23fff'/%3E%3C/svg%3E")}.pill:where([data-type^="filter"][data-type*="active"]):where(:disabled,[aria-disabled="true"])::after{content:url("data:image/svg+xml,%3Csvg width='8' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .703 7.297 0 4 3.297.703 0 0 .703 3.297 4 0 7.297.703 8 4 4.703 7.297 8 8 7.297 4.703 4 8 .703Z' fill='%230A0B19'/%3E%3C/svg%3E%0A")}.pill:where([data-type^="restricted"]){--pill-background:var(--bs-gray-400);--pill-text:var(--bs-white)}.pill:where([data-type^="restricted"]):hover{--pill-border:transparent}.pill:where([data-type^="restricted"])::before{content:url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 8 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.25 4.5H7v3.715a.34.34 0 0 1-.37.285H1V5.285A.34.34 0 0 1 1.37 5h5a.25.25 0 0 0 .25-.25V3.275A2.545 2.545 0 0 0 4 1a2.55 2.55 0 0 0-2.625 2.29L1.39 4.5a.83.83 0 0 0-.89.785V8.75A.25.25 0 0 0 .75 9h5.88a.835.835 0 0 0 .87-.785V4.75a.25.25 0 0 0-.25-.25Zm-2.225 0H2.96V3.425c0-.035 0-.845 1.03-.845a.96.96 0 0 1 1.035.8V4.5ZM4 1.5a2.045 2.045 0 0 1 2.115 1.79V4.5h-.59V3.37A1.455 1.455 0 0 0 4 2.075a1.385 1.385 0 0 0-1.53 1.35V4.5h-.58V3.31A2.045 2.045 0 0 1 4 1.5Zm-.495 4.25H1.5v.5h2.005v-.5Zm-2.005 1h1.505v.5H1.5v-.5Z' fill='%23F0F0FA'/%3E%3C/svg%3E");line-height:1.1}:where(.dark) .pill:where([data-type^="restricted"]){--pill-background:var(--bs-navy-300);--pill-text:var(--bs-white)}.pill:where([data-type^="live"]){--pill-background:var(--bs-royal-400);--pill-text:var(--bs-white);text-transform:uppercase}.pill:where([data-type^="live"]):hover{--pill-border:transparent}.pill:where([data-type^="live"])::before{background-color:var(--bs-red-400);border:3px solid var(--bs-white);border-radius:100%;content:'';height:12px;width:12px}.pill:is(:disabled,[aria-disabled="true"]){pointer-events:none;color:var(--bs-gray-400);background-color:var(--bs-gray-200)}.pill:where([data-type^="filter"]):not([data-type*="active"]):is(:disabled,[aria-disabled="true"]){--pill-border:var(--bs-gray-400)}:where(.profile-img),:where(.profile-img[data-img-size^='sm']){--profile-size:2rem;--profile-text:var(--bs-text-sm);aspect-ratio:1/1;border-radius:50%;height:var(--profile-size);overflow:hidden;position:relative;width:var(--profile-size)}:where(.profile-img img){height:100%;-o-object-fit:cover;object-fit:cover;width:100%}:where(.profile-img[data-no-img="true"]) img{display:none}:where(.profile-img)::before,:where(.profile-img)::after{border-radius:50%;border-collapse:collapse;height:100%;inset:0;position:absolute;width:100%}:where(.profile-img)::before{box-shadow:var(--bs-shadow-profilePhoto);content:''}:where(.profile-img[data-no-img="true"])::before{display:none}:where(.profile-img[data-no-img="true"])::after{border:1px solid currentColor;color:var(--bs-blue-500);content:attr(data-initials);font-size:var(--profile-text);text-transform:uppercase;display:grid;place-items:center}:where([data-img-size^='xs']){--profile-size:1.5rem;--profile-text:var(--bs-text-xs)}:where([data-img-size^='md']){--profile-size:3rem;--profile-text:var(--bs-text-md)}:where([data-img-size^='lg']){--profile-size:4rem;--profile-text:var(--bs-text-lg)}:where([data-img-size^='xl']){--profile-size:5.75rem;--profile-text:var(--bs-text-xl)}:where(.profile[data-layout]),:where(.profile[data-layout^='vertical']){display:grid;row-gap:.5rem}:where(.profile[data-layout^='horizontal']){-moz-column-gap:1rem;column-gap:1rem;grid-template-columns:auto 1fr}:where(.profile-content){color:var(--bs-ink-light);font-size:var(--bs-text-xs)}:where(.profile[data-layout]:hover .profile-content>*:first-child){--profile-ink-hover:var(--bs-blue-500);color:var(--profile-ink-hover);text-decoration:underline}.dark :where(.profile[data-layout]:hover .profile-content>*:first-child){--profile-ink-hover:var(--bs-blue-200)}table{border-collapse:collapse;border-spacing:0;overflow-x:auto;max-width:100%;width:100%}thead{color:var(--bs-ink-base);font-size:var(--bs-font-base);font-weight:600}tbody{color:var(--bs-ink-light)}th{background:var(--bs-bg-base)}th,td{border-bottom:1px solid var(--bs-border);min-width:-moz-fit-content;min-width:fit-content;padding:var(--bs-space-2);text-align:left}table[data-borders^="none"]{border:0}table[data-borders^="all"] :where(th,td){border-left:1px solid var(--bs-border)}table[data-borders^="all"] :where(th,td):last-child{border-right:1px solid var(--bs-border)}table[data-borders^="all"] th{border-top:1px solid var(--bs-border)}table:where([data-rows^="striped"]) tbody>tr:nth-child(even){background-color:var(--bs-bg-subtle)}table[data-cells^="fixed"]{table-layout:fixed}table:where([data-cells^="height"]) td{height:4.5rem;vertical-align:middle}table:where([data-sticky]){isolation:isolate}table:where([data-sticky^="top"]) td{z-index:1}table:where([data-sticky^="top"]){border-collapse:separate;overflow-y:unset;position:relative}table:where([data-sticky^="left"]){border-collapse:separate;overflow-x:unset;position:relative}table:where([data-sticky^="top"]) th{position:sticky;top:var(--bs-content-top);z-index:2}table:where([data-sticky^="left"]) :is(td:first-child,th:first-child){position:sticky;left:0;z-index:2}.box{background:var(--bg-color,var(--bs-bg-subtle));border-radius:.25rem;padding:var(--box-space,var(--bs-space-6))}.box[data-invert]{--bg-color:var(--bs-bg-invert);color:var(--bs-ink-invert)}:where(.fluid) .box{padding:var(--box-space,var(--bs-space-f-6))}.cluster{align-items:center;display:flex;flex-wrap:wrap;gap:var(--cluster-space,var(--bs-space-6));justify-content:flex-start}.cluster[data-gap="tight"]{gap:var(--cluster-space,var(--bs-space-2))}:where(.fluid) .cluster{gap:var(--cluster-space,var(--bs-space-f-6))}:where(.fluid) .cluster[data-gap="tight"]{gap:var(--cluster-space,var(--bs-space-f-2))}.flow>*+*{margin-top:var(--flow-space,1.25em)}.flow>:is(h1,h2,h3,h4,h5,h6){--flow-space:2em}.flow>hr+*{--flow-space:1.5em}.flow>:is(h1,h2,h3,h4,h5,h6)+*{--flow-space:.5em}.flow>:is(ul,ol)>li{margin-top:var(--flow-space,0.625em)}.region{padding-block:var(--region-space,var(--bs-space-6))}.region[data-space^='sm']{padding-block:var(--bs-space-3)}.region[data-space^='lg']{padding-block:var(--bs-space-12)}:where(.fluid) .region{padding-block:var(--region-space,var(--bs-space-f-6))}:where(.fluid) .region[data-space^='sm']{padding-block:var(--bs-space-f-3)}:where(.fluid) .region[data-space^='lg']{padding-block:var(--bs-space-f-12)}.wrapper{margin-inline:auto;max-width:var(--max-width,75rem);min-width:0;padding-inline:var(--wrapper-space,var(--bs-space-6));position:relative;width:100%}:where(.fluid) .wrapper{padding-inline:var(--wrapper-space,var(--bs-space-f-6))}.wrapper[data-flush]{padding-inline:0}.visually-hidden{border:0;clip:rect(0 0 0 0);height:auto;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.measure-compact{max-width:40ch}.measure-short{max-width:50ch}.measure-long{max-width:70ch}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wwtdev/bsds-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A new approach to creating a design system at WWT.",
|
|
5
5
|
"main": "./dist",
|
|
6
6
|
"files": [
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"build:preset": "cp src/wwt-bsds-preset.js dist/wwt-bsds-preset.js",
|
|
32
32
|
"build:wccss": "postcss src/styles/wwt-bsds-wc-base.css -o dist/wwt-bsds-wc-base.css && node utils/copyFiles src/styles/components dist/components && node utils/sassifyDir",
|
|
33
33
|
"build": "node utils/css-props-generator.js && npm run build:css && npm run build:preset && npm run build:wccss",
|
|
34
|
-
"watch": "npm-watch",
|
|
34
|
+
"watch": "npm-watch",
|
|
35
35
|
"publish-wwt": "publish-wwt-package --monorepo",
|
|
36
36
|
"publish-npm": "npm publish --@wwtdev:registry=https://registry.npmjs.org --access=public"
|
|
37
37
|
},
|