@wwtdev/bsds-css 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/dist/components/_buttons.scss +4 -0
- package/dist/components/_form-character-count.scss +1 -0
- package/dist/components/_form-field-details.scss +2 -1
- package/dist/components/buttons.css +4 -0
- package/dist/components/form-character-count.css +1 -0
- package/dist/components/form-field-details.css +2 -1
- package/dist/wwt-bsds-preset.js +4 -1
- package/dist/wwt-bsds-wc-base.css +2 -0
- package/dist/wwt-bsds.css +10 -1
- package/dist/wwt-bsds.min.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,14 +28,15 @@ module.exports = {
|
|
|
28
28
|
|
|
29
29
|
### 2. Tailwind CSS Directives
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
To prevent conflicts with our CSS Framework, only include the `base` and `utilities` directives.
|
|
32
|
+
|
|
33
|
+
Since our CSS has its own reset and default styles, we prevent Tailwind's `base` reset styles from loading, via a setting in our WWT Preset. The only styles that will be used from `base` are Tailwind CSS variables, which are needed in order to ensure all Tailwind classes work as expected.
|
|
32
34
|
|
|
33
35
|
```css
|
|
36
|
+
@tailwind base;
|
|
34
37
|
@tailwind utilities;
|
|
35
38
|
```
|
|
36
39
|
|
|
37
|
-
> Tailwind's base and component directives will cause conflicts with the CSS Framework.
|
|
38
|
-
|
|
39
40
|
Once you have completed the Tailwind installation steps, you can use the classes generated from the preset.
|
|
40
41
|
|
|
41
42
|
### Browser Support
|
|
@@ -135,9 +135,13 @@
|
|
|
135
135
|
line-height: 150%;
|
|
136
136
|
}
|
|
137
137
|
.bs-button:where([data-text]):hover {
|
|
138
|
+
color: var(--bs-blue-400);
|
|
138
139
|
background-color: transparent;
|
|
139
140
|
text-decoration: underline;
|
|
140
141
|
}
|
|
142
|
+
.bs-button:where([data-text]):has(svg):hover {
|
|
143
|
+
text-decoration: none;
|
|
144
|
+
}
|
|
141
145
|
.bs-button:where([data-text]):active {
|
|
142
146
|
box-shadow: none;
|
|
143
147
|
}
|
|
@@ -134,9 +134,13 @@
|
|
|
134
134
|
line-height: 150%;
|
|
135
135
|
}
|
|
136
136
|
.bs-button:where([data-text]):hover {
|
|
137
|
+
color: var(--bs-blue-400);
|
|
137
138
|
background-color: transparent;
|
|
138
139
|
text-decoration: underline;
|
|
139
140
|
}
|
|
141
|
+
.bs-button:where([data-text]):has(svg):hover {
|
|
142
|
+
text-decoration: none;
|
|
143
|
+
}
|
|
140
144
|
.bs-button:where([data-text]):active {
|
|
141
145
|
box-shadow: none;
|
|
142
146
|
}
|
package/dist/wwt-bsds-preset.js
CHANGED
|
@@ -3,13 +3,16 @@ const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
3
3
|
module.exports = {
|
|
4
4
|
darkMode: "class",
|
|
5
5
|
corePlugins: {
|
|
6
|
-
//
|
|
6
|
+
// Do use @tailwind base, otherwise some TW classes will not work, due to missing css vars
|
|
7
|
+
// Then, since blue steel has its own reset, exclude TW's reset styles from base, via setting below
|
|
7
8
|
preflight: false
|
|
8
9
|
},
|
|
9
10
|
theme: {
|
|
10
11
|
backgroundColor: ({ theme }) => theme("colors"),
|
|
11
12
|
colors: {
|
|
12
13
|
transparent: "transparent",
|
|
14
|
+
inherit: 'inherit',
|
|
15
|
+
current: 'currentColor',
|
|
13
16
|
white: "#FFFFFF",
|
|
14
17
|
black: "#0A0B19",
|
|
15
18
|
blue: {
|
package/dist/wwt-bsds.css
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
:root {
|
|
5
5
|
--bs-transparent: transparent;
|
|
6
|
+
--bs-inherit: inherit;
|
|
7
|
+
--bs-current: currentColor;
|
|
6
8
|
--bs-white: #ffffff;
|
|
7
9
|
--bs-black: #0a0b19;
|
|
8
10
|
--bs-blue-10: rgba(0, 134, 234, 0.1);
|
|
@@ -851,10 +853,15 @@ body:where(.fluid) {
|
|
|
851
853
|
}
|
|
852
854
|
|
|
853
855
|
.bs-button:where([data-text]):hover {
|
|
856
|
+
color: var(--bs-blue-400);
|
|
854
857
|
background-color: transparent;
|
|
855
858
|
text-decoration: underline;
|
|
856
859
|
}
|
|
857
860
|
|
|
861
|
+
.bs-button:where([data-text]):has(svg):hover {
|
|
862
|
+
text-decoration: none;
|
|
863
|
+
}
|
|
864
|
+
|
|
858
865
|
.bs-button:where([data-text]):active {
|
|
859
866
|
box-shadow: none;
|
|
860
867
|
}
|
|
@@ -1068,7 +1075,8 @@ select {
|
|
|
1068
1075
|
.bs-field-details {
|
|
1069
1076
|
display: flex;
|
|
1070
1077
|
justify-content: space-between;
|
|
1071
|
-
align-items:
|
|
1078
|
+
align-items: flex-start;
|
|
1079
|
+
gap: var(--bs-space-2);
|
|
1072
1080
|
padding: 0 0.75rem;
|
|
1073
1081
|
margin-top: 0.5rem;
|
|
1074
1082
|
}
|
|
@@ -1086,6 +1094,7 @@ select {
|
|
|
1086
1094
|
font-size: var(--bs-text-xs);
|
|
1087
1095
|
font-weight: 400;
|
|
1088
1096
|
text-align: right;
|
|
1097
|
+
white-space: nowrap;
|
|
1089
1098
|
}
|
|
1090
1099
|
|
|
1091
1100
|
:where([disabled], [data-disabled]) + .bs-character-count,
|
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;border-width:0;border-style:solid;border-color:currentColor}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,.bs-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)}.bs-badge[data-position^='left']::before,.bs-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}.bs-pill .bs-badge::before,.bs-pill .bs-badge::after{font-size:.8125em}.bs-badge[data-count]:where([data-position^='left'])::before,.bs-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}.bs-badge[data-count]::before{margin-right:.25rem}.bs-badge[data-count]::after{margin-left:.25rem}.bs-badge[data-count='0']::before,.bs-badge[data-count='0']::after{display:none}.bs-badge[data-show-zero]:where(:not([data-show-zero="false"]))::before,.bs-badge[data-show-zero]:where(:not([data-show-zero="false"]))::after{display:inline-flex}.bs-badge[data-badge-color^='blue']::before,.bs-badge[data-badge-color^='blue']::after{background:var(--bs-blue-500)}.bs-badge[data-badge-color^='white']::before,.bs-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}.bs-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;justify-content:center;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}.bs-button:hover{background-color:var(--btn-secondary)}.bs-button:active{background-color:var(--btn-secondary);transform:scale(0.97);transform-origin:center;box-shadow:inset 0 0 4px 1px var(--btn-main)}.bs-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)}.bs-button:focus::before{border-color:var(--btn-main)}.bs-button:focus-visible::before{border-color:var(--btn-main);box-shadow:none}.bs-button:focus:not(:focus-visible)::before{border-color:transparent;box-shadow:none}.bs-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)}.bs-button:where([data-ghost])::before{border-radius:.4375rem}.bs-button:where([data-ghost]):hover,.bs-button:where([data-ghost]):focus{background-color:var(--btn-light)}.bs-button:where([data-ghost]):active{box-shadow:inset 0 0 0 1px var(--btn-main),inset 0 0 4px 1px var(--btn-highlight)}.bs-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 .bs-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)}.bs-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)}.bs-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)}.bs-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)}.bs-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%}.bs-button:where([data-text]):hover{background-color:transparent;text-decoration:underline}.bs-button:where([data-text]):active{box-shadow:none}.bs-button:where([data-size^='sm']){font-size:var(--bs-text-sm)}.bs-button:where([data-text][data-size^='sm']){font-size:var(--bs-text-base)}:where(button:disabled),.bs-button:where([aria-disabled='true']){pointer-events:none}.bs-button:where(:disabled),.bs-button:where([aria-disabled='true']){color:var(--bs-gray-400);background-color:var(--bs-gray-200)}.bs-button:where([data-ghost]):disabled,.bs-button:where([data-ghost])[aria-disabled='true']{box-shadow:inset 0 0 0 1px var(--bs-gray-400)}.bs-button:where([data-text]):disabled,.bs-button:where([data-text][aria-disabled='true']){background-color:transparent}.bs-button :where(svg:not([height])){height:var(--bs-text-base)}.bs-button:where([data-size^='sm']) :where(svg:not([height])){height:var(--bs-text-xs)}a.bs-button{align-items:center;display:inline-flex;outline:0;vertical-align:middle}:where(label,legend){--label-color:var(--bs-ink-base);color:var(--label-color);display:inline-block;font-size:var(--bs-text-sm);font-weight:600;line-height:var(--bs-leading-base);width:100%}:where([data-required]){color:var(--bs-red-400)}:where(label[data-disabled],[data-disabled] [data-required],[data-disabled] label){--label-color:var(--bs-ink-light)}:where([data-required]){color:var(--bs-red-400)}:where([data-disabled],[data-disabled] [data-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}input:not([type^='checkbox'],[type^='radio'],[type^='file'],[type^='range']),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%}:is(input,textarea,select)::-moz-placeholder{color:var(--bs-violet-200);opacity:1}:is(input,textarea,select)::placeholder{color:var(--bs-violet-200);opacity:1}:is(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) :is(input,textarea,select):focus{--offset-color:var(--bs-bg-subtle)}:where(.box[data-invert]) :is(input,textarea,select):focus{--offset-color:var(--bs-bg-invert)}:is(input,textarea,select):where([data-error]){--outline-color:var(--bs-red-200)}:is(input,textarea,select):disabled{background-color:var(--bs-gray-200);border-color:var(--bs-gray-400);color:var(--bs-gray-400)}:has(>textarea:only-child){display:block;line-height:0}:where(select:disabled){opacity:1}:is(input,textarea,select):disabled::-moz-placeholder,:is(input,textarea,select)[disabled]::-moz-placeholder{color:var(--bs-gray-400);opacity:1}:is(input,textarea,select):disabled::placeholder,:is(input,textarea,select)[disabled]::placeholder{color:var(--bs-gray-400);opacity:1}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 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")}.dark select:disabled{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='%23555775' 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")}:is(input,select,textarea):where([data-error]){--input-border:var(--bs-red-400)}:where(fieldset){border:0;margin-left:0;margin-right:0;padding:0}:where(fieldset legend){margin-bottom:.25rem;padding:0}.bs-field-details{display:flex;justify-content:space-between;align-items:center;padding:0 .75rem;margin-top:.5rem}:where(textarea,bs-textarea)+.bs-field-details{margin-top:.25rem}.bs-field-details :where(.bs-character-count:first-child){margin-left:auto}.bs-character-count{color:var(--bs-ink-base);font-size:var(--bs-text-xs);font-weight:400;text-align:right}:where([disabled],[data-disabled])+.bs-character-count,:where([disabled],[data-disabled]) .bs-character-count,.bs-character-count:where([data-disabled]){color:var(--bs-gray-400)}.bs-character-count:where([data-error]){color:var(--bs-red-400)}.bs-boolean{display:flex;align-items:center;font-size:var(--bs-text-base);font-weight:400;gap:.5em;line-height:115%}.bs-boolean:where([data-size='sm']) input{width:var(--bs-text-xs);height:var(--bs-text-xs)}.bs-boolean label{font-size:var(--bs-text-base);font-weight:400;line-height:1.5;width:auto}.bs-boolean:where([data-size='sm']),.bs-boolean:where([data-size='sm']) label{font-size:var(--bs-text-xs)}: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']){border-radius:.125rem}:where(input[type^='radio']){border-radius:50%}input:where([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)}input:where([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}input:where([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)}input:where([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)}input:where([type='checkbox']:checked,[type='radio']:checked)::before,input:where([type='checkbox']:checked,[type='radio']:checked)::after{visibility:visible}.bs-boolean:where([data-size='sm']) input::before{--filled-size:var(--bs-text-xs)}.bs-boolean:where([data-size='sm']) input[type='checkbox']::after{height:.5625rem;width:.3125rem}.bs-boolean:where([data-size='sm']) input[type='radio']::after{--inner-size:.25rem}input:where([type='checkbox'],[type='radio']):disabled{--box-shadow:var(--bs-gray-400);background-color:transparent}input:where([type='checkbox']):checked:disabled::before{--check-fill-color:var(--bs-gray-400)}input:where([type='radio']):checked:disabled::before{--radio-fill-color:var(--bs-gray-400)}input:where([type^='checkbox'],[type^='radio'])[data-error]{--box-shadow:var(--bs-red-400)}.bs-switch{--box-shadow:var(--bs-ink-base);--ball-background:var(--bs-white);--ball-diameter:1rem;--inner-text-width:1rem;--inner-text-padding:.5rem;--offset:.25rem;--switch-background:var(--bs-gray-400);border:0;border-radius:100vw;cursor:pointer;height:calc(var(--ball-diameter) + var(--offset) * 2);position:relative}.bs-switch:where([data-size="sm"]){--ball-diameter:var(--bs-text-xs);--inner-text-width:.75rem;--inner-text-padding:.375rem}:where(.dark) .bs-switch:where(:not([data-disabled])){--switch-background:var(--bs-blue-400)}.bs-switch input,.bs-switch:where([data-size="sm"]) input{cursor:pointer;height:100%;opacity:0;position:absolute;width:100%}.bs-switch span{align-items:center;background-color:var(--switch-background);border-radius:100vw;display:inline-flex;height:100%;padding:0 var(--inner-text-padding);pointer-events:none;position:relative;transition:250ms;width:calc(var(--ball-diameter) * 2 + var(--offset) * 2);height:calc(var(--ball-diameter) + var(--offset) * 2)}.bs-switch span::before{background-color:var(--ball-background);border-radius:50%;box-sizing:border-box;content:'';height:var(--ball-diameter);left:var(--offset);position:absolute;top:50%;transform:translate(0,-50%);transition:inherit;width:var(--ball-diameter);z-index:2}.bs-switch input:where(:checked) ~ span::before,.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span::before{transform:translate(var(--ball-diameter),-50%)}.bs-switch input:where(:checked) ~ span:where([data-inner-on-label][data-inner-off-label])::before,.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span:where([data-inner-on-label][data-inner-off-label])::before{transform:translate(calc(var(--ball-diameter) + var(--inner-text-width)), -50%)}.bs-switch span:where([data-inner-on-label][data-inner-off-label]){color:white;width:calc(var(--ball-diameter) * 2 + var(--offset) * 2 + var(--inner-text-width))}.bs-switch span::after{align-items:center;color:var(--ball-background);display:flex;height:100%;justify-content:flex-start;left:0;padding:var(--inner-text-padding);position:absolute;text-transform:capitalize;top:0;width:100%}.bs-switch input:where(:not(:checked)) ~ span:where([data-inner-on-label][data-inner-off-label])::after,.bs-switch:where([aria-pressed="false"]) span:where([data-inner-on-label][data-inner-off-label])::after{content:attr(data-inner-off-label);justify-content:flex-end}.bs-switch input:where(:checked) ~ span:where([data-inner-on-label][data-inner-off-label])::after,.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span:where([data-inner-on-label][data-inner-off-label])::after{content:attr(data-inner-on-label);justify-content:flex-start}.bs-switch:where(:focus-within) span{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) .bs-switch:where(:focus-within) span{--offset-color:var(--bs-bg-subtle)}:where(.box[data-invert]) .bs-switch:where(:focus-within) span{--offset-color:var(--bs-bg-invert)}.bs-switch:where([data-disabled]){--ball-background:var(--bs-gray-400);--switch-background:var(--bs-gray-200)}.bs-switch input:where(:disabled){cursor:default}.bs-hint{color:var(--bs-ink-light);font-size:var(--bs-text-xs);padding:0;margin:0;list-style:none}.bs-hint:where([data-error]){color:var(--bs-red-400)}.bs-pill{--pill-background:var(--bs-bg-subtle);--pill-border:transparent;--pill-text:var(--bs-royal-400);--pill-gap:var(--bs-space-2);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:var(--pill-gap);line-height:1.33;padding:4px 6px;text-decoration:none;vertical-align:middle}:where(.dark) .bs-pill{--pill-text:var(--bs-royal-100)}:where(.bs-pill>svg){height:1rem}:is(a,button).bs-pill{color:var(--pill-text);cursor:pointer;transition:all .15s ease-in-out}:is(a,button).bs-pill:is(:hover,:focus){--pill-border:var(--bs-royal-400);color:var(--pill-text);outline:transparent}:where(.dark) :is(a,button).bs-pill:is(:hover,:focus){--pill-border:var(--bs-royal-200)}:where(.box,[class*="bg-"]:not([class~="bg-white"])) .bs-pill:where(:not([data-variant^="live"],[data-active])){--pill-background:var(--bs-bg-base)}:where(.box[data-invert]) .bs-pill{--pill-background:var(--bs-bg-invert-subtle);--pill-text:var(--bs-gray-100)}:where(.box[data-invert]) :is(a,button).bs-pill:is(:hover,:focus){--pill-border:var(--bs-gray-100)}:where(.dark .box[data-invert]) .bs-pill{--pill-text:var(--bs-royal-400)}:where(.dark .box[data-invert]) :is(a,button).bs-pill:is(:hover,:focus){--pill-border:var(--bs-royal-400)}.bs-pill:where([data-status]){--status-color:var(--bs-blue-400)}.bs-pill:where([data-status])::before{background-color:var(--status-color);border-radius:100%;content:'';height:12px;width:12px}.bs-pill:where([data-status^="active"]){--status-color:var(--bs-blue-400)}.bs-pill:where([data-status^="complete"]){--status-color:var(--bs-purple-400)}.bs-pill:where([data-status^="inactive"]){--status-color:var(--bs-gray-300)}.bs-pill:where([data-status^="error"]){--status-color:var(--bs-red-400)}.bs-pill:where([data-status^="positive"]){--status-color:#16986d}.bs-pill:where([data-status^="warning"]){--status-color:var(--bs-orange-warning)}.bs-pill:where([data-variant^="filter"]){--pill-background:var(--bs-bg-base);--pill-border:var(--bs-border);--pill-text:var(--bs-ink-base)}.bs-pill:where([data-variant^="filter"]):is(:hover,:focus){--pill-border:var(--bs-border)}:is(a,button).bs-pill:where([data-variant^="filter"]):is(:hover,:focus){--pill-border:var(--bs-ink-base)}.bs-pill:where([data-variant^="filter"][data-variant*="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) .bs-pill:where([data-variant^="filter"][data-variant*="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")}.bs-pill:where([data-variant^="filter"][data-variant*="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) .bs-pill:where([data-variant^="filter"][data-variant*="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")}.bs-pill:where([data-variant^="filter"][data-variant*="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) .bs-pill:where([data-variant^="filter"][data-variant*="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")}.bs-pill:where([data-variant^="filter"][data-active]){--pill-background:var(--bs-blue-400);--pill-border:transparent;--pill-text:var(--bs-white)}.bs-pill:where([data-variant^="filter"][data-active]):is(:hover,:focus){--pill-border:transparent}:is(a,button).bs-pill:where([data-variant^="filter"][data-active]):is(:hover,:focus){--pill-background:var(--bs-blue-500);--pill-border:transparent}.bs-pill:where([data-variant^="filter"][data-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")}.bs-pill:where([data-variant^="filter"][data-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")}.bs-pill:where([data-variant^="live"]){--pill-background:var(--bs-royal-400);--pill-text:var(--bs-white);--pill-gap:var(--bs-space-1);text-transform:uppercase}.bs-pill:where([data-variant^="live"]):hover{--pill-border:transparent}.bs-pill:where([data-variant^="live"])::before{background-color:var(--bs-red-400);border:3px solid var(--bs-white);border-radius:100%;content:'';height:12px;width:12px}.bs-pill:is(:disabled,[aria-disabled="true"]){pointer-events:none;color:var(--bs-gray-400);background-color:var(--bs-gray-200)}.bs-pill:where([data-variant^="filter"]):not([data-active]):is(:disabled,[aria-disabled="true"]){--pill-border:var(--bs-gray-400)}.bs-profile-img,.bs-profile-img:where([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)}.bs-profile-img :where(img){height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.bs-profile-img:where([data-no-img]) img{display:none}.bs-profile-img::before,.bs-profile-img::after{border-radius:50%;border-collapse:collapse;height:100%;inset:0;position:absolute;width:100%}.bs-profile-img::before{box-shadow:var(--bs-shadow-profilePhoto);content:''}.bs-profile-img:where([data-no-img])::before{display:none}.bs-profile-img:where([data-no-img])::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}.bs-profile-img:where([data-img-size^='xs']){--profile-size:1.5rem;--profile-text:var(--bs-text-xs)}.bs-profile-img:where([data-img-size^='md']){--profile-size:3rem;--profile-text:var(--bs-text-md)}.bs-profile-img:where([data-img-size^='lg']){--profile-size:4rem;--profile-text:var(--bs-text-lg)}.bs-profile-img:where([data-img-size^='xl']){--profile-size:5.75rem;--profile-text:var(--bs-text-xl)}.bs-profile-details{color:var(--bs-ink-light);font-size:var(--bs-text-sm)}.bs-profile-details>:where(*){display:block}.bs-profile-details>:where(*:first-child){--profile-name-color:var(--bs-ink-base);color:var(--profile-name-color)}.bs-profile:where([data-layout]),.bs-profile:where([data-layout^='vertical']){display:grid;row-gap:.5rem}.bs-profile:where([data-layout^='horizontal']){-moz-column-gap:1rem;column-gap:1rem;grid-template-columns:auto 1fr;align-items:center}a.bs-profile:where([data-layout]){text-decoration:none}a.bs-profile:where([data-layout]) .bs-profile-details>*:first-child{--profile-name-color:var(--bs-blue-500)}a.bs-profile:where([data-layout]):hover .bs-profile-details>*:first-child{text-decoration:underline}.dark a.bs-profile:where([data-layout]) .bs-profile-details>*:first-child{--profile-name-color: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}:where(.cluster[data-variant^="brick"])>*{align-self:stretch;flex-grow:1}.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-inherit:inherit;--bs-current:currentColor;--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;border-width:0;border-style:solid;border-color:currentColor}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,.bs-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)}.bs-badge[data-position^='left']::before,.bs-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}.bs-pill .bs-badge::before,.bs-pill .bs-badge::after{font-size:.8125em}.bs-badge[data-count]:where([data-position^='left'])::before,.bs-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}.bs-badge[data-count]::before{margin-right:.25rem}.bs-badge[data-count]::after{margin-left:.25rem}.bs-badge[data-count='0']::before,.bs-badge[data-count='0']::after{display:none}.bs-badge[data-show-zero]:where(:not([data-show-zero="false"]))::before,.bs-badge[data-show-zero]:where(:not([data-show-zero="false"]))::after{display:inline-flex}.bs-badge[data-badge-color^='blue']::before,.bs-badge[data-badge-color^='blue']::after{background:var(--bs-blue-500)}.bs-badge[data-badge-color^='white']::before,.bs-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}.bs-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;justify-content:center;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}.bs-button:hover{background-color:var(--btn-secondary)}.bs-button:active{background-color:var(--btn-secondary);transform:scale(0.97);transform-origin:center;box-shadow:inset 0 0 4px 1px var(--btn-main)}.bs-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)}.bs-button:focus::before{border-color:var(--btn-main)}.bs-button:focus-visible::before{border-color:var(--btn-main);box-shadow:none}.bs-button:focus:not(:focus-visible)::before{border-color:transparent;box-shadow:none}.bs-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)}.bs-button:where([data-ghost])::before{border-radius:.4375rem}.bs-button:where([data-ghost]):hover,.bs-button:where([data-ghost]):focus{background-color:var(--btn-light)}.bs-button:where([data-ghost]):active{box-shadow:inset 0 0 0 1px var(--btn-main),inset 0 0 4px 1px var(--btn-highlight)}.bs-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 .bs-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)}.bs-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)}.bs-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)}.bs-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)}.bs-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%}.bs-button:where([data-text]):hover{color:var(--bs-blue-400);background-color:transparent;text-decoration:underline}.bs-button:where([data-text]):has(svg):hover{text-decoration:none}.bs-button:where([data-text]):active{box-shadow:none}.bs-button:where([data-size^='sm']){font-size:var(--bs-text-sm)}.bs-button:where([data-text][data-size^='sm']){font-size:var(--bs-text-base)}:where(button:disabled),.bs-button:where([aria-disabled='true']){pointer-events:none}.bs-button:where(:disabled),.bs-button:where([aria-disabled='true']){color:var(--bs-gray-400);background-color:var(--bs-gray-200)}.bs-button:where([data-ghost]):disabled,.bs-button:where([data-ghost])[aria-disabled='true']{box-shadow:inset 0 0 0 1px var(--bs-gray-400)}.bs-button:where([data-text]):disabled,.bs-button:where([data-text][aria-disabled='true']){background-color:transparent}.bs-button :where(svg:not([height])){height:var(--bs-text-base)}.bs-button:where([data-size^='sm']) :where(svg:not([height])){height:var(--bs-text-xs)}a.bs-button{align-items:center;display:inline-flex;outline:0;vertical-align:middle}:where(label,legend){--label-color:var(--bs-ink-base);color:var(--label-color);display:inline-block;font-size:var(--bs-text-sm);font-weight:600;line-height:var(--bs-leading-base);width:100%}:where([data-required]){color:var(--bs-red-400)}:where(label[data-disabled],[data-disabled] [data-required],[data-disabled] label){--label-color:var(--bs-ink-light)}:where([data-required]){color:var(--bs-red-400)}:where([data-disabled],[data-disabled] [data-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}input:not([type^='checkbox'],[type^='radio'],[type^='file'],[type^='range']),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%}:is(input,textarea,select)::-moz-placeholder{color:var(--bs-violet-200);opacity:1}:is(input,textarea,select)::placeholder{color:var(--bs-violet-200);opacity:1}:is(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) :is(input,textarea,select):focus{--offset-color:var(--bs-bg-subtle)}:where(.box[data-invert]) :is(input,textarea,select):focus{--offset-color:var(--bs-bg-invert)}:is(input,textarea,select):where([data-error]){--outline-color:var(--bs-red-200)}:is(input,textarea,select):disabled{background-color:var(--bs-gray-200);border-color:var(--bs-gray-400);color:var(--bs-gray-400)}:has(>textarea:only-child){display:block;line-height:0}:where(select:disabled){opacity:1}:is(input,textarea,select):disabled::-moz-placeholder,:is(input,textarea,select)[disabled]::-moz-placeholder{color:var(--bs-gray-400);opacity:1}:is(input,textarea,select):disabled::placeholder,:is(input,textarea,select)[disabled]::placeholder{color:var(--bs-gray-400);opacity:1}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 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")}.dark select:disabled{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='%23555775' 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")}:is(input,select,textarea):where([data-error]){--input-border:var(--bs-red-400)}:where(fieldset){border:0;margin-left:0;margin-right:0;padding:0}:where(fieldset legend){margin-bottom:.25rem;padding:0}.bs-field-details{display:flex;justify-content:space-between;align-items:flex-start;gap:var(--bs-space-2);padding:0 .75rem;margin-top:.5rem}:where(textarea,bs-textarea)+.bs-field-details{margin-top:.25rem}.bs-field-details :where(.bs-character-count:first-child){margin-left:auto}.bs-character-count{color:var(--bs-ink-base);font-size:var(--bs-text-xs);font-weight:400;text-align:right;white-space:nowrap}:where([disabled],[data-disabled])+.bs-character-count,:where([disabled],[data-disabled]) .bs-character-count,.bs-character-count:where([data-disabled]){color:var(--bs-gray-400)}.bs-character-count:where([data-error]){color:var(--bs-red-400)}.bs-boolean{display:flex;align-items:center;font-size:var(--bs-text-base);font-weight:400;gap:.5em;line-height:115%}.bs-boolean:where([data-size='sm']) input{width:var(--bs-text-xs);height:var(--bs-text-xs)}.bs-boolean label{font-size:var(--bs-text-base);font-weight:400;line-height:1.5;width:auto}.bs-boolean:where([data-size='sm']),.bs-boolean:where([data-size='sm']) label{font-size:var(--bs-text-xs)}: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']){border-radius:.125rem}:where(input[type^='radio']){border-radius:50%}input:where([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)}input:where([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}input:where([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)}input:where([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)}input:where([type='checkbox']:checked,[type='radio']:checked)::before,input:where([type='checkbox']:checked,[type='radio']:checked)::after{visibility:visible}.bs-boolean:where([data-size='sm']) input::before{--filled-size:var(--bs-text-xs)}.bs-boolean:where([data-size='sm']) input[type='checkbox']::after{height:.5625rem;width:.3125rem}.bs-boolean:where([data-size='sm']) input[type='radio']::after{--inner-size:.25rem}input:where([type='checkbox'],[type='radio']):disabled{--box-shadow:var(--bs-gray-400);background-color:transparent}input:where([type='checkbox']):checked:disabled::before{--check-fill-color:var(--bs-gray-400)}input:where([type='radio']):checked:disabled::before{--radio-fill-color:var(--bs-gray-400)}input:where([type^='checkbox'],[type^='radio'])[data-error]{--box-shadow:var(--bs-red-400)}.bs-switch{--box-shadow:var(--bs-ink-base);--ball-background:var(--bs-white);--ball-diameter:1rem;--inner-text-width:1rem;--inner-text-padding:.5rem;--offset:.25rem;--switch-background:var(--bs-gray-400);border:0;border-radius:100vw;cursor:pointer;height:calc(var(--ball-diameter) + var(--offset) * 2);position:relative}.bs-switch:where([data-size="sm"]){--ball-diameter:var(--bs-text-xs);--inner-text-width:.75rem;--inner-text-padding:.375rem}:where(.dark) .bs-switch:where(:not([data-disabled])){--switch-background:var(--bs-blue-400)}.bs-switch input,.bs-switch:where([data-size="sm"]) input{cursor:pointer;height:100%;opacity:0;position:absolute;width:100%}.bs-switch span{align-items:center;background-color:var(--switch-background);border-radius:100vw;display:inline-flex;height:100%;padding:0 var(--inner-text-padding);pointer-events:none;position:relative;transition:250ms;width:calc(var(--ball-diameter) * 2 + var(--offset) * 2);height:calc(var(--ball-diameter) + var(--offset) * 2)}.bs-switch span::before{background-color:var(--ball-background);border-radius:50%;box-sizing:border-box;content:'';height:var(--ball-diameter);left:var(--offset);position:absolute;top:50%;transform:translate(0,-50%);transition:inherit;width:var(--ball-diameter);z-index:2}.bs-switch input:where(:checked) ~ span::before,.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span::before{transform:translate(var(--ball-diameter),-50%)}.bs-switch input:where(:checked) ~ span:where([data-inner-on-label][data-inner-off-label])::before,.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span:where([data-inner-on-label][data-inner-off-label])::before{transform:translate(calc(var(--ball-diameter) + var(--inner-text-width)), -50%)}.bs-switch span:where([data-inner-on-label][data-inner-off-label]){color:white;width:calc(var(--ball-diameter) * 2 + var(--offset) * 2 + var(--inner-text-width))}.bs-switch span::after{align-items:center;color:var(--ball-background);display:flex;height:100%;justify-content:flex-start;left:0;padding:var(--inner-text-padding);position:absolute;text-transform:capitalize;top:0;width:100%}.bs-switch input:where(:not(:checked)) ~ span:where([data-inner-on-label][data-inner-off-label])::after,.bs-switch:where([aria-pressed="false"]) span:where([data-inner-on-label][data-inner-off-label])::after{content:attr(data-inner-off-label);justify-content:flex-end}.bs-switch input:where(:checked) ~ span:where([data-inner-on-label][data-inner-off-label])::after,.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span:where([data-inner-on-label][data-inner-off-label])::after{content:attr(data-inner-on-label);justify-content:flex-start}.bs-switch:where(:focus-within) span{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) .bs-switch:where(:focus-within) span{--offset-color:var(--bs-bg-subtle)}:where(.box[data-invert]) .bs-switch:where(:focus-within) span{--offset-color:var(--bs-bg-invert)}.bs-switch:where([data-disabled]){--ball-background:var(--bs-gray-400);--switch-background:var(--bs-gray-200)}.bs-switch input:where(:disabled){cursor:default}.bs-hint{color:var(--bs-ink-light);font-size:var(--bs-text-xs);padding:0;margin:0;list-style:none}.bs-hint:where([data-error]){color:var(--bs-red-400)}.bs-pill{--pill-background:var(--bs-bg-subtle);--pill-border:transparent;--pill-text:var(--bs-royal-400);--pill-gap:var(--bs-space-2);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:var(--pill-gap);line-height:1.33;padding:4px 6px;text-decoration:none;vertical-align:middle}:where(.dark) .bs-pill{--pill-text:var(--bs-royal-100)}:where(.bs-pill>svg){height:1rem}:is(a,button).bs-pill{color:var(--pill-text);cursor:pointer;transition:all .15s ease-in-out}:is(a,button).bs-pill:is(:hover,:focus){--pill-border:var(--bs-royal-400);color:var(--pill-text);outline:transparent}:where(.dark) :is(a,button).bs-pill:is(:hover,:focus){--pill-border:var(--bs-royal-200)}:where(.box,[class*="bg-"]:not([class~="bg-white"])) .bs-pill:where(:not([data-variant^="live"],[data-active])){--pill-background:var(--bs-bg-base)}:where(.box[data-invert]) .bs-pill{--pill-background:var(--bs-bg-invert-subtle);--pill-text:var(--bs-gray-100)}:where(.box[data-invert]) :is(a,button).bs-pill:is(:hover,:focus){--pill-border:var(--bs-gray-100)}:where(.dark .box[data-invert]) .bs-pill{--pill-text:var(--bs-royal-400)}:where(.dark .box[data-invert]) :is(a,button).bs-pill:is(:hover,:focus){--pill-border:var(--bs-royal-400)}.bs-pill:where([data-status]){--status-color:var(--bs-blue-400)}.bs-pill:where([data-status])::before{background-color:var(--status-color);border-radius:100%;content:'';height:12px;width:12px}.bs-pill:where([data-status^="active"]){--status-color:var(--bs-blue-400)}.bs-pill:where([data-status^="complete"]){--status-color:var(--bs-purple-400)}.bs-pill:where([data-status^="inactive"]){--status-color:var(--bs-gray-300)}.bs-pill:where([data-status^="error"]){--status-color:var(--bs-red-400)}.bs-pill:where([data-status^="positive"]){--status-color:#16986d}.bs-pill:where([data-status^="warning"]){--status-color:var(--bs-orange-warning)}.bs-pill:where([data-variant^="filter"]){--pill-background:var(--bs-bg-base);--pill-border:var(--bs-border);--pill-text:var(--bs-ink-base)}.bs-pill:where([data-variant^="filter"]):is(:hover,:focus){--pill-border:var(--bs-border)}:is(a,button).bs-pill:where([data-variant^="filter"]):is(:hover,:focus){--pill-border:var(--bs-ink-base)}.bs-pill:where([data-variant^="filter"][data-variant*="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) .bs-pill:where([data-variant^="filter"][data-variant*="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")}.bs-pill:where([data-variant^="filter"][data-variant*="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) .bs-pill:where([data-variant^="filter"][data-variant*="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")}.bs-pill:where([data-variant^="filter"][data-variant*="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) .bs-pill:where([data-variant^="filter"][data-variant*="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")}.bs-pill:where([data-variant^="filter"][data-active]){--pill-background:var(--bs-blue-400);--pill-border:transparent;--pill-text:var(--bs-white)}.bs-pill:where([data-variant^="filter"][data-active]):is(:hover,:focus){--pill-border:transparent}:is(a,button).bs-pill:where([data-variant^="filter"][data-active]):is(:hover,:focus){--pill-background:var(--bs-blue-500);--pill-border:transparent}.bs-pill:where([data-variant^="filter"][data-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")}.bs-pill:where([data-variant^="filter"][data-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")}.bs-pill:where([data-variant^="live"]){--pill-background:var(--bs-royal-400);--pill-text:var(--bs-white);--pill-gap:var(--bs-space-1);text-transform:uppercase}.bs-pill:where([data-variant^="live"]):hover{--pill-border:transparent}.bs-pill:where([data-variant^="live"])::before{background-color:var(--bs-red-400);border:3px solid var(--bs-white);border-radius:100%;content:'';height:12px;width:12px}.bs-pill:is(:disabled,[aria-disabled="true"]){pointer-events:none;color:var(--bs-gray-400);background-color:var(--bs-gray-200)}.bs-pill:where([data-variant^="filter"]):not([data-active]):is(:disabled,[aria-disabled="true"]){--pill-border:var(--bs-gray-400)}.bs-profile-img,.bs-profile-img:where([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)}.bs-profile-img :where(img){height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.bs-profile-img:where([data-no-img]) img{display:none}.bs-profile-img::before,.bs-profile-img::after{border-radius:50%;border-collapse:collapse;height:100%;inset:0;position:absolute;width:100%}.bs-profile-img::before{box-shadow:var(--bs-shadow-profilePhoto);content:''}.bs-profile-img:where([data-no-img])::before{display:none}.bs-profile-img:where([data-no-img])::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}.bs-profile-img:where([data-img-size^='xs']){--profile-size:1.5rem;--profile-text:var(--bs-text-xs)}.bs-profile-img:where([data-img-size^='md']){--profile-size:3rem;--profile-text:var(--bs-text-md)}.bs-profile-img:where([data-img-size^='lg']){--profile-size:4rem;--profile-text:var(--bs-text-lg)}.bs-profile-img:where([data-img-size^='xl']){--profile-size:5.75rem;--profile-text:var(--bs-text-xl)}.bs-profile-details{color:var(--bs-ink-light);font-size:var(--bs-text-sm)}.bs-profile-details>:where(*){display:block}.bs-profile-details>:where(*:first-child){--profile-name-color:var(--bs-ink-base);color:var(--profile-name-color)}.bs-profile:where([data-layout]),.bs-profile:where([data-layout^='vertical']){display:grid;row-gap:.5rem}.bs-profile:where([data-layout^='horizontal']){-moz-column-gap:1rem;column-gap:1rem;grid-template-columns:auto 1fr;align-items:center}a.bs-profile:where([data-layout]){text-decoration:none}a.bs-profile:where([data-layout]) .bs-profile-details>*:first-child{--profile-name-color:var(--bs-blue-500)}a.bs-profile:where([data-layout]):hover .bs-profile-details>*:first-child{text-decoration:underline}.dark a.bs-profile:where([data-layout]) .bs-profile-details>*:first-child{--profile-name-color: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}:where(.cluster[data-variant^="brick"])>*{align-self:stretch;flex-grow:1}.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}
|