@wwtdev/bsds-css 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/wwt-bsds-wc-base.css +5 -0
- package/dist/wwt-bsds.css +275 -91
- package/dist/wwt-bsds.min.css +1 -1
- package/package.json +3 -3
|
@@ -655,6 +655,11 @@ body:where(.fluid) {
|
|
|
655
655
|
justify-content: flex-start;
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
+
:where(.cluster[data-variant^="brick"]) > * {
|
|
659
|
+
align-self: stretch;
|
|
660
|
+
flex-grow: 1;
|
|
661
|
+
}
|
|
662
|
+
|
|
658
663
|
.cluster[data-gap="tight"] {
|
|
659
664
|
gap: var(--cluster-space, var(--bs-space-2));
|
|
660
665
|
}
|
package/dist/wwt-bsds.css
CHANGED
|
@@ -632,8 +632,8 @@ body:where(.fluid) {
|
|
|
632
632
|
box-shadow: var(--bs-shadow-profilePhoto);
|
|
633
633
|
}
|
|
634
634
|
|
|
635
|
-
.badge[data-position^='left']::before,
|
|
636
|
-
.badge:where(:not([data-position^='left']))::after {
|
|
635
|
+
.bs-badge[data-position^='left']::before,
|
|
636
|
+
.bs-badge:where(:not([data-position^='left']))::after {
|
|
637
637
|
align-items: center;
|
|
638
638
|
background: var(--bs-red-500);
|
|
639
639
|
border-radius: 0.5rem;
|
|
@@ -650,13 +650,13 @@ body:where(.fluid) {
|
|
|
650
650
|
width: 6px;
|
|
651
651
|
}
|
|
652
652
|
|
|
653
|
-
.bs-pill .badge::before,
|
|
654
|
-
.bs-pill .badge::after {
|
|
653
|
+
.bs-pill .bs-badge::before,
|
|
654
|
+
.bs-pill .bs-badge::after {
|
|
655
655
|
font-size: 0.8125em;
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
-
.badge[data-count]:where([data-position^='left'])::before,
|
|
659
|
-
.badge[data-count]:where(:not([data-position^='left']))::after {
|
|
658
|
+
.bs-badge[data-count]:where([data-position^='left'])::before,
|
|
659
|
+
.bs-badge[data-count]:where(:not([data-position^='left']))::after {
|
|
660
660
|
color: white;
|
|
661
661
|
content: attr(data-count);
|
|
662
662
|
min-height: 1rem;
|
|
@@ -667,26 +667,31 @@ body:where(.fluid) {
|
|
|
667
667
|
width: auto;
|
|
668
668
|
}
|
|
669
669
|
|
|
670
|
-
.badge[data-count]::before {
|
|
670
|
+
.bs-badge[data-count]::before {
|
|
671
671
|
margin-right: 0.25rem;
|
|
672
672
|
}
|
|
673
673
|
|
|
674
|
-
.badge[data-count]::after {
|
|
674
|
+
.bs-badge[data-count]::after {
|
|
675
675
|
margin-left: 0.25rem;
|
|
676
676
|
}
|
|
677
677
|
|
|
678
|
-
.badge[data-count='0']::before,
|
|
679
|
-
.badge[data-count='0']::after {
|
|
678
|
+
.bs-badge[data-count='0']::before,
|
|
679
|
+
.bs-badge[data-count='0']::after {
|
|
680
680
|
display: none;
|
|
681
681
|
}
|
|
682
682
|
|
|
683
|
-
.badge[data-
|
|
684
|
-
.badge[data-
|
|
683
|
+
.bs-badge[data-show-zero]:where(:not([data-show-zero="false"]))::before,
|
|
684
|
+
.bs-badge[data-show-zero]:where(:not([data-show-zero="false"]))::after {
|
|
685
|
+
display: inline-flex;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.bs-badge[data-badge-color^='blue']::before,
|
|
689
|
+
.bs-badge[data-badge-color^='blue']::after {
|
|
685
690
|
background: var(--bs-blue-500);
|
|
686
691
|
}
|
|
687
692
|
|
|
688
|
-
.badge[data-badge-color^='white']::before,
|
|
689
|
-
.badge[data-badge-color^='white']::after {
|
|
693
|
+
.bs-badge[data-badge-color^='white']::before,
|
|
694
|
+
.bs-badge[data-badge-color^='white']::after {
|
|
690
695
|
background: white;
|
|
691
696
|
color: var(--badge-text, var(--bs-black));
|
|
692
697
|
}
|
|
@@ -701,7 +706,7 @@ body:where(.fluid) {
|
|
|
701
706
|
text-decoration: none;
|
|
702
707
|
}
|
|
703
708
|
|
|
704
|
-
.button {
|
|
709
|
+
.bs-button {
|
|
705
710
|
--btn-main: var(--bs-blue-400);
|
|
706
711
|
--btn-secondary: var(--bs-blue-300);
|
|
707
712
|
--btn-highlight: var(--bs-blue-100);
|
|
@@ -723,11 +728,11 @@ body:where(.fluid) {
|
|
|
723
728
|
vertical-align: middle;
|
|
724
729
|
}
|
|
725
730
|
|
|
726
|
-
.button:hover {
|
|
731
|
+
.bs-button:hover {
|
|
727
732
|
background-color: var(--btn-secondary);
|
|
728
733
|
}
|
|
729
734
|
|
|
730
|
-
.button:active {
|
|
735
|
+
.bs-button:active {
|
|
731
736
|
background-color: var(--btn-secondary);
|
|
732
737
|
transform: scale(0.97);
|
|
733
738
|
transform-origin: center;
|
|
@@ -736,7 +741,7 @@ body:where(.fluid) {
|
|
|
736
741
|
|
|
737
742
|
/* Button Focus Styles */
|
|
738
743
|
|
|
739
|
-
.button::before {
|
|
744
|
+
.bs-button::before {
|
|
740
745
|
border-color: transparent;
|
|
741
746
|
border-radius: 0.5rem;
|
|
742
747
|
border-style: solid;
|
|
@@ -749,23 +754,23 @@ body:where(.fluid) {
|
|
|
749
754
|
width: calc(100% + 0.5rem);
|
|
750
755
|
}
|
|
751
756
|
|
|
752
|
-
.button:focus::before {
|
|
757
|
+
.bs-button:focus::before {
|
|
753
758
|
border-color: var(--btn-main);
|
|
754
759
|
}
|
|
755
760
|
|
|
756
|
-
.button:focus-visible::before {
|
|
761
|
+
.bs-button:focus-visible::before {
|
|
757
762
|
border-color: var(--btn-main);
|
|
758
763
|
box-shadow: none;
|
|
759
764
|
}
|
|
760
765
|
|
|
761
|
-
.button:focus:not(:focus-visible)::before {
|
|
766
|
+
.bs-button:focus:not(:focus-visible)::before {
|
|
762
767
|
border-color: transparent;
|
|
763
768
|
box-shadow: none;
|
|
764
769
|
}
|
|
765
770
|
|
|
766
771
|
/* Ghost Buttons */
|
|
767
772
|
|
|
768
|
-
.button:where([data-ghost]) {
|
|
773
|
+
.bs-button:where([data-ghost]) {
|
|
769
774
|
--btn-light: var(--bs-blue-10);
|
|
770
775
|
--btn-secondary: var(--bs-blue-10);
|
|
771
776
|
background-color: transparent;
|
|
@@ -773,16 +778,16 @@ body:where(.fluid) {
|
|
|
773
778
|
color: var(--btn-main);
|
|
774
779
|
}
|
|
775
780
|
|
|
776
|
-
.button:where([data-ghost])::before {
|
|
781
|
+
.bs-button:where([data-ghost])::before {
|
|
777
782
|
border-radius: 0.4375rem;
|
|
778
783
|
}
|
|
779
784
|
|
|
780
|
-
.button:where([data-ghost]):hover,
|
|
781
|
-
.button:where([data-ghost]):focus {
|
|
785
|
+
.bs-button:where([data-ghost]):hover,
|
|
786
|
+
.bs-button:where([data-ghost]):focus {
|
|
782
787
|
background-color: var(--btn-light);
|
|
783
788
|
}
|
|
784
789
|
|
|
785
|
-
.button:where([data-ghost]):active {
|
|
790
|
+
.bs-button:where([data-ghost]):active {
|
|
786
791
|
box-shadow:
|
|
787
792
|
inset 0 0 0 1px var(--btn-main),
|
|
788
793
|
inset 0px 0px 4px 1px var(--btn-highlight);
|
|
@@ -790,35 +795,35 @@ body:where(.fluid) {
|
|
|
790
795
|
|
|
791
796
|
/* Button type */
|
|
792
797
|
|
|
793
|
-
.button:where([data-variant^='secondary']) {
|
|
798
|
+
.bs-button:where([data-variant^='secondary']) {
|
|
794
799
|
--btn-main: var(--bs-plum-400);
|
|
795
800
|
--btn-secondary: var(--bs-plum-300);
|
|
796
801
|
--btn-light: var(--bs-plum-10);
|
|
797
802
|
--btn-highlight: var(--bs-plum-100);
|
|
798
803
|
}
|
|
799
804
|
|
|
800
|
-
.dark .button:where([data-variant^='secondary']) {
|
|
805
|
+
.dark .bs-button:where([data-variant^='secondary']) {
|
|
801
806
|
--btn-main: var(--bs-plum-200);
|
|
802
807
|
--btn-secondary: var(--bs-plum-300);
|
|
803
808
|
--btn-light: var(--bs-navy-400);
|
|
804
809
|
--btn-highlight: var(--bs-plum-400);
|
|
805
810
|
}
|
|
806
811
|
|
|
807
|
-
.button:where([data-variant^='positive']) {
|
|
812
|
+
.bs-button:where([data-variant^='positive']) {
|
|
808
813
|
--btn-main: var(--bs-purple-400);
|
|
809
814
|
--btn-secondary: var(--bs-purple-300);
|
|
810
815
|
--btn-light: var(--bs-purple-10);
|
|
811
816
|
--btn-highlight: var(--bs-purple-100);
|
|
812
817
|
}
|
|
813
818
|
|
|
814
|
-
.button:where([data-variant^='warning']) {
|
|
819
|
+
.bs-button:where([data-variant^='warning']) {
|
|
815
820
|
--btn-main: var(--bs-orange-warning);
|
|
816
821
|
--btn-secondary: var(--bs-orange-300);
|
|
817
822
|
--btn-light: var(--bs-orange-10);
|
|
818
823
|
--btn-highlight: var(--bs-orange-100);
|
|
819
824
|
}
|
|
820
825
|
|
|
821
|
-
.button:where([data-variant^='negative']) {
|
|
826
|
+
.bs-button:where([data-variant^='negative']) {
|
|
822
827
|
--btn-main: var(--bs-red-400);
|
|
823
828
|
--btn-secondary: var(--bs-red-300);
|
|
824
829
|
--btn-light: var(--bs-red-10);
|
|
@@ -827,7 +832,7 @@ body:where(.fluid) {
|
|
|
827
832
|
|
|
828
833
|
/* Text Button */
|
|
829
834
|
|
|
830
|
-
.button:where([data-text]) {
|
|
835
|
+
.bs-button:where([data-text]) {
|
|
831
836
|
background-color: transparent;
|
|
832
837
|
color: var(--bs-blue-500);
|
|
833
838
|
cursor: pointer;
|
|
@@ -836,61 +841,61 @@ body:where(.fluid) {
|
|
|
836
841
|
line-height: 150%;
|
|
837
842
|
}
|
|
838
843
|
|
|
839
|
-
.button:where([data-text]):hover {
|
|
844
|
+
.bs-button:where([data-text]):hover {
|
|
840
845
|
background-color: transparent;
|
|
841
846
|
text-decoration: underline;
|
|
842
847
|
}
|
|
843
848
|
|
|
844
|
-
.button:where([data-text]):active {
|
|
849
|
+
.bs-button:where([data-text]):active {
|
|
845
850
|
box-shadow: none;
|
|
846
851
|
}
|
|
847
852
|
|
|
848
853
|
/* Button Size */
|
|
849
854
|
|
|
850
|
-
.button:where([data-size^='sm']) {
|
|
855
|
+
.bs-button:where([data-size^='sm']) {
|
|
851
856
|
font-size: var(--bs-text-sm);
|
|
852
857
|
}
|
|
853
858
|
|
|
854
|
-
.button:where([data-text][data-size^='sm']) {
|
|
859
|
+
.bs-button:where([data-text][data-size^='sm']) {
|
|
855
860
|
font-size: var(--bs-text-base);
|
|
856
861
|
}
|
|
857
862
|
|
|
858
863
|
/* Disabled Styling */
|
|
859
864
|
|
|
860
865
|
:where(button:disabled),
|
|
861
|
-
.button:where([aria-disabled='true']) /* for links as buttons */ {
|
|
866
|
+
.bs-button:where([aria-disabled='true']) /* for links as buttons */ {
|
|
862
867
|
pointer-events: none;
|
|
863
868
|
}
|
|
864
869
|
|
|
865
|
-
.button:where(:disabled),
|
|
866
|
-
.button:where([aria-disabled='true']) {
|
|
870
|
+
.bs-button:where(:disabled),
|
|
871
|
+
.bs-button:where([aria-disabled='true']) {
|
|
867
872
|
color: var(--bs-gray-400);
|
|
868
873
|
background-color: var(--bs-gray-200);
|
|
869
874
|
}
|
|
870
875
|
|
|
871
|
-
.button:where([data-ghost]):disabled,
|
|
872
|
-
.button:where([data-ghost])[aria-disabled='true'] {
|
|
876
|
+
.bs-button:where([data-ghost]):disabled,
|
|
877
|
+
.bs-button:where([data-ghost])[aria-disabled='true'] {
|
|
873
878
|
box-shadow: inset 0 0 0 1px var(--bs-gray-400);
|
|
874
879
|
}
|
|
875
880
|
|
|
876
|
-
.button:where([data-text]):disabled,
|
|
877
|
-
.button:where([data-text][aria-disabled='true']) {
|
|
881
|
+
.bs-button:where([data-text]):disabled,
|
|
882
|
+
.bs-button:where([data-text][aria-disabled='true']) {
|
|
878
883
|
background-color: transparent;
|
|
879
884
|
}
|
|
880
885
|
|
|
881
886
|
/* Icon Height */
|
|
882
887
|
|
|
883
|
-
.button :where(svg:not([height])) {
|
|
888
|
+
.bs-button :where(svg:not([height])) {
|
|
884
889
|
height: var(--bs-text-base);
|
|
885
890
|
}
|
|
886
891
|
|
|
887
|
-
.button:where([data-size^='sm']) :where(svg:not([height])) {
|
|
892
|
+
.bs-button:where([data-size^='sm']) :where(svg:not([height])) {
|
|
888
893
|
height: var(--bs-text-xs);
|
|
889
894
|
}
|
|
890
895
|
|
|
891
896
|
/* links as buttons */
|
|
892
897
|
|
|
893
|
-
a.button {
|
|
898
|
+
a.bs-button {
|
|
894
899
|
align-items: center;
|
|
895
900
|
display: inline-flex;
|
|
896
901
|
outline: none;
|
|
@@ -898,7 +903,9 @@ a.button {
|
|
|
898
903
|
}
|
|
899
904
|
|
|
900
905
|
:where(label, legend) {
|
|
901
|
-
color: var(--bs-ink-base);
|
|
906
|
+
--label-color: var(--bs-ink-base);
|
|
907
|
+
|
|
908
|
+
color: var(--label-color);
|
|
902
909
|
display: inline-block;
|
|
903
910
|
font-size: var(--bs-text-sm);
|
|
904
911
|
font-weight: 600;
|
|
@@ -906,19 +913,19 @@ a.button {
|
|
|
906
913
|
width: 100%;
|
|
907
914
|
}
|
|
908
915
|
|
|
909
|
-
:where(
|
|
916
|
+
:where([data-required]) {
|
|
910
917
|
color: var(--bs-red-400);
|
|
911
918
|
}
|
|
912
919
|
|
|
913
|
-
:where([data-disabled], [data-disabled]
|
|
914
|
-
color: var(--bs-ink-light);
|
|
920
|
+
:where(label[data-disabled], [data-disabled] [data-required], [data-disabled] label) {
|
|
921
|
+
--label-color: var(--bs-ink-light);
|
|
915
922
|
}
|
|
916
923
|
|
|
917
|
-
:where(
|
|
924
|
+
:where([data-required]) {
|
|
918
925
|
color: var(--bs-red-400);
|
|
919
926
|
}
|
|
920
927
|
|
|
921
|
-
:where([data-disabled], [data-disabled]
|
|
928
|
+
:where([data-disabled], [data-disabled] [data-required]) {
|
|
922
929
|
color: var(--bs-gray-400);
|
|
923
930
|
}
|
|
924
931
|
|
|
@@ -928,8 +935,8 @@ a.button {
|
|
|
928
935
|
margin-top: 0.25rem;
|
|
929
936
|
}
|
|
930
937
|
|
|
931
|
-
|
|
932
|
-
|
|
938
|
+
input:not([type^='checkbox'], [type^='radio'], [type^='file'], [type^='range']),
|
|
939
|
+
textarea, select {
|
|
933
940
|
-webkit-appearance: none;
|
|
934
941
|
-moz-appearance: none;
|
|
935
942
|
appearance: none;
|
|
@@ -947,12 +954,12 @@ a.button {
|
|
|
947
954
|
|
|
948
955
|
/* Generally applicable (all input types) */
|
|
949
956
|
|
|
950
|
-
|
|
957
|
+
select::-moz-placeholder {
|
|
951
958
|
color: var(--bs-violet-200);
|
|
952
959
|
opacity: 1;
|
|
953
960
|
}
|
|
954
961
|
|
|
955
|
-
|
|
962
|
+
input, textarea, select::placeholder {
|
|
956
963
|
color: var(--bs-violet-200);
|
|
957
964
|
opacity: 1;
|
|
958
965
|
}
|
|
@@ -982,6 +989,17 @@ a.button {
|
|
|
982
989
|
color: var(--bs-gray-400);
|
|
983
990
|
}
|
|
984
991
|
|
|
992
|
+
/*
|
|
993
|
+
Removes the built-in 'margin' on bottom of textarea
|
|
994
|
+
see https://bugs.chromium.org/p/chromium/issues/detail?id=89530
|
|
995
|
+
:has not fully supported yet but will work for most
|
|
996
|
+
*/
|
|
997
|
+
|
|
998
|
+
:has(> textarea:only-child) {
|
|
999
|
+
display: block;
|
|
1000
|
+
line-height: 0;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
985
1003
|
/* chrome user agent styling was applying opacity: 0.7 */
|
|
986
1004
|
|
|
987
1005
|
:where(select:disabled) {
|
|
@@ -999,22 +1017,9 @@ a.button {
|
|
|
999
1017
|
opacity: 1;
|
|
1000
1018
|
}
|
|
1001
1019
|
|
|
1002
|
-
/* Character Counter for Textarea */
|
|
1003
|
-
|
|
1004
|
-
:where(textarea + .character-count) {
|
|
1005
|
-
color: var(--bs-ink-base);
|
|
1006
|
-
font-size: var(--bs-text-xs);
|
|
1007
|
-
font-weight: 400;
|
|
1008
|
-
text-align: right;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
:where(textarea[disabled] + .character-count) {
|
|
1012
|
-
color: var(--bs-ink-light);
|
|
1013
|
-
}
|
|
1014
|
-
|
|
1015
1020
|
/* Select */
|
|
1016
1021
|
|
|
1017
|
-
|
|
1022
|
+
select {
|
|
1018
1023
|
/* URL Encoded SVG dropdown caret so there is something there */
|
|
1019
1024
|
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");
|
|
1020
1025
|
background-position: right 0.75rem center;
|
|
@@ -1022,14 +1027,19 @@ a.button {
|
|
|
1022
1027
|
background-size: 1em 1em;
|
|
1023
1028
|
}
|
|
1024
1029
|
|
|
1025
|
-
.dark
|
|
1030
|
+
.dark select {
|
|
1026
1031
|
/* URL Encoded SVG dropdown caret so there is something there */
|
|
1027
1032
|
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");
|
|
1028
1033
|
}
|
|
1029
1034
|
|
|
1035
|
+
.dark select:disabled {
|
|
1036
|
+
/* URL Encoded SVG dropdown caret so there is something there */
|
|
1037
|
+
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");
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1030
1040
|
/* Errors and Messages */
|
|
1031
1041
|
|
|
1032
|
-
:where(
|
|
1042
|
+
input:where([data-error]) {
|
|
1033
1043
|
border-color: var(--bs-red-400);
|
|
1034
1044
|
}
|
|
1035
1045
|
|
|
@@ -1047,6 +1057,39 @@ a.button {
|
|
|
1047
1057
|
padding: 0;
|
|
1048
1058
|
}
|
|
1049
1059
|
|
|
1060
|
+
.bs-field-details {
|
|
1061
|
+
display: flex;
|
|
1062
|
+
justify-content: space-between;
|
|
1063
|
+
align-items: center;
|
|
1064
|
+
padding: 0 0.75rem;
|
|
1065
|
+
margin-top: 0.5rem;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
:where(textarea, bs-textarea) + .bs-field-details {
|
|
1069
|
+
margin-top: 0.25rem;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.bs-field-details :where(.bs-character-count:first-child) {
|
|
1073
|
+
margin-left: auto;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
.bs-character-count {
|
|
1077
|
+
color: var(--bs-ink-base);
|
|
1078
|
+
font-size: var(--bs-text-xs);
|
|
1079
|
+
font-weight: 400;
|
|
1080
|
+
text-align: right;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
:where([disabled], [data-disabled]) + .bs-character-count,
|
|
1084
|
+
:where([disabled], [data-disabled]) .bs-character-count,
|
|
1085
|
+
.bs-character-count:where([data-disabled]) {
|
|
1086
|
+
color: var(--bs-gray-400);
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.bs-character-count:where([data-error]) {
|
|
1090
|
+
color: var(--bs-red-400);
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1050
1093
|
/* Containers and Labels for Checkbox/Radio */
|
|
1051
1094
|
|
|
1052
1095
|
.bs-boolean {
|
|
@@ -1058,7 +1101,7 @@ a.button {
|
|
|
1058
1101
|
line-height: 115%;
|
|
1059
1102
|
}
|
|
1060
1103
|
|
|
1061
|
-
.bs-boolean[data-size='sm'] input {
|
|
1104
|
+
.bs-boolean:where([data-size='sm']) input {
|
|
1062
1105
|
width: var(--bs-text-xs);
|
|
1063
1106
|
height: var(--bs-text-xs);
|
|
1064
1107
|
}
|
|
@@ -1070,8 +1113,8 @@ a.button {
|
|
|
1070
1113
|
width: auto;
|
|
1071
1114
|
}
|
|
1072
1115
|
|
|
1073
|
-
.bs-boolean[data-size='sm'],
|
|
1074
|
-
.bs-boolean[data-size='sm'] label {
|
|
1116
|
+
.bs-boolean:where([data-size='sm']),
|
|
1117
|
+
.bs-boolean:where([data-size='sm']) label {
|
|
1075
1118
|
font-size: var(--bs-text-xs);
|
|
1076
1119
|
}
|
|
1077
1120
|
|
|
@@ -1109,7 +1152,7 @@ a.button {
|
|
|
1109
1152
|
border-radius: 50%;
|
|
1110
1153
|
}
|
|
1111
1154
|
|
|
1112
|
-
:where(
|
|
1155
|
+
input:where([type='checkbox'])::before {
|
|
1113
1156
|
--filled-size: 1rem;
|
|
1114
1157
|
--check-fill-color: var(--bs-blue-400);
|
|
1115
1158
|
|
|
@@ -1121,7 +1164,7 @@ a.button {
|
|
|
1121
1164
|
width: var(--filled-size);
|
|
1122
1165
|
}
|
|
1123
1166
|
|
|
1124
|
-
:where(
|
|
1167
|
+
input:where([type^='checkbox'])::after {
|
|
1125
1168
|
border: solid var(--bs-white);
|
|
1126
1169
|
border-width: 0 0.125rem 0.125rem 0;
|
|
1127
1170
|
content: '';
|
|
@@ -1135,7 +1178,7 @@ a.button {
|
|
|
1135
1178
|
width: 0.375em;
|
|
1136
1179
|
}
|
|
1137
1180
|
|
|
1138
|
-
:where(
|
|
1181
|
+
input:where([type='radio'])::before {
|
|
1139
1182
|
--filled-size: 1rem;
|
|
1140
1183
|
--radio-fill-color: var(--bs-blue-400);
|
|
1141
1184
|
|
|
@@ -1148,7 +1191,7 @@ a.button {
|
|
|
1148
1191
|
width: var(--filled-size);
|
|
1149
1192
|
}
|
|
1150
1193
|
|
|
1151
|
-
:where(
|
|
1194
|
+
input:where([type='radio'])::after {
|
|
1152
1195
|
--inner-size: 0.375rem;
|
|
1153
1196
|
--inner-fill-color: var(--bs-white);
|
|
1154
1197
|
|
|
@@ -1165,54 +1208,190 @@ a.button {
|
|
|
1165
1208
|
width: var(--inner-size);
|
|
1166
1209
|
}
|
|
1167
1210
|
|
|
1168
|
-
:where(
|
|
1169
|
-
:where(
|
|
1211
|
+
input:where([type='checkbox']:checked, [type='radio']:checked)::before,
|
|
1212
|
+
input:where([type='checkbox']:checked, [type='radio']:checked)::after {
|
|
1170
1213
|
visibility: visible;
|
|
1171
1214
|
}
|
|
1172
1215
|
|
|
1173
|
-
.bs-boolean[data-size='sm'] input::before {
|
|
1216
|
+
.bs-boolean:where([data-size='sm']) input::before {
|
|
1174
1217
|
--filled-size: var(--bs-text-xs);
|
|
1175
1218
|
}
|
|
1176
1219
|
|
|
1177
|
-
.bs-boolean[data-size='sm'] input[type='checkbox']::after {
|
|
1220
|
+
.bs-boolean:where([data-size='sm']) input[type='checkbox']::after {
|
|
1178
1221
|
height: 0.5625rem;
|
|
1179
1222
|
width: 0.3125rem;
|
|
1180
1223
|
}
|
|
1181
1224
|
|
|
1182
|
-
.bs-boolean[data-size='sm'] input[type='radio']::after {
|
|
1225
|
+
.bs-boolean:where([data-size='sm']) input[type='radio']::after {
|
|
1183
1226
|
--inner-size: 0.25rem;
|
|
1184
1227
|
}
|
|
1185
1228
|
|
|
1186
1229
|
/* Disabled State */
|
|
1187
1230
|
|
|
1188
|
-
:where(
|
|
1231
|
+
input:where([type='checkbox'], [type='radio']):disabled {
|
|
1189
1232
|
--box-shadow: var(--bs-gray-400);
|
|
1190
1233
|
background-color: transparent;
|
|
1191
1234
|
}
|
|
1192
1235
|
|
|
1193
|
-
:where(
|
|
1236
|
+
input:where([type='checkbox']):checked:disabled::before {
|
|
1194
1237
|
--check-fill-color: var(--bs-gray-400);
|
|
1195
1238
|
}
|
|
1196
1239
|
|
|
1197
|
-
:where(
|
|
1240
|
+
input:where([type='radio']):checked:disabled::before {
|
|
1198
1241
|
--radio-fill-color: var(--bs-gray-400);
|
|
1199
1242
|
}
|
|
1200
1243
|
|
|
1201
1244
|
/* Error state */
|
|
1202
1245
|
|
|
1203
|
-
:where(
|
|
1246
|
+
input:where([type^='checkbox'], [type^='radio'])[data-error] {
|
|
1204
1247
|
--box-shadow: var(--bs-red-400);
|
|
1205
1248
|
}
|
|
1206
1249
|
|
|
1207
|
-
|
|
1250
|
+
.bs-switch {
|
|
1251
|
+
--box-shadow: var(--bs-ink-base);
|
|
1252
|
+
--ball-background: var(--bs-white);
|
|
1253
|
+
--ball-diameter: 1rem;
|
|
1254
|
+
--inner-text-width: 1rem;
|
|
1255
|
+
--inner-text-padding: 0.5rem;
|
|
1256
|
+
--offset: 0.25rem;
|
|
1257
|
+
--switch-background: var(--bs-gray-400);
|
|
1258
|
+
|
|
1259
|
+
border: none;
|
|
1260
|
+
border-radius: 100vw;
|
|
1261
|
+
cursor: pointer;
|
|
1262
|
+
height: calc(var(--ball-diameter) + var(--offset) * 2);
|
|
1263
|
+
position: relative;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.bs-switch:where([data-size="sm"]) {
|
|
1267
|
+
--ball-diameter: var(--bs-text-xs);
|
|
1268
|
+
--inner-text-width: .75rem;
|
|
1269
|
+
--inner-text-padding: 0.375rem;
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
:where(.dark) .bs-switch:where(:not([data-disabled])) {
|
|
1273
|
+
--switch-background: var(--bs-blue-400);
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
.bs-switch input,
|
|
1277
|
+
.bs-switch:where([data-size="sm"]) input {
|
|
1278
|
+
cursor: pointer;
|
|
1279
|
+
height: 100%;
|
|
1280
|
+
opacity: 0;
|
|
1281
|
+
position: absolute;
|
|
1282
|
+
width: 100%;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
.bs-switch span {
|
|
1286
|
+
align-items: center;
|
|
1287
|
+
background-color: var(--switch-background);
|
|
1288
|
+
border-radius: 100vw;
|
|
1289
|
+
display: inline-flex;
|
|
1290
|
+
height: 100%;
|
|
1291
|
+
padding: 0 var(--inner-text-padding);
|
|
1292
|
+
pointer-events: none;
|
|
1293
|
+
position: relative;
|
|
1294
|
+
transition: 250ms;
|
|
1295
|
+
width: calc(var(--ball-diameter) * 2 + var(--offset) * 2);
|
|
1296
|
+
height: calc(var(--ball-diameter) + var(--offset) * 2);
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
/* Toggle "ball" */
|
|
1300
|
+
|
|
1301
|
+
.bs-switch span::before {
|
|
1302
|
+
background-color: var(--ball-background);
|
|
1303
|
+
border-radius: 50%;
|
|
1304
|
+
box-sizing: border-box;
|
|
1305
|
+
content: '';
|
|
1306
|
+
height: var(--ball-diameter);
|
|
1307
|
+
left: var(--offset);
|
|
1308
|
+
position: absolute;
|
|
1309
|
+
top: 50%;
|
|
1310
|
+
transform: translate(0, -50%);
|
|
1311
|
+
transition: inherit;
|
|
1312
|
+
width: var(--ball-diameter);
|
|
1313
|
+
z-index: 2;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.bs-switch input:where(:checked) ~ span::before,
|
|
1317
|
+
.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span::before {
|
|
1318
|
+
transform: translate(var(--ball-diameter), -50%);
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.bs-switch input:where(:checked) ~ span:where([data-inner-on-label][data-inner-off-label])::before,
|
|
1322
|
+
.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span:where([data-inner-on-label][data-inner-off-label])::before {
|
|
1323
|
+
transform: translate(calc(var(--ball-diameter) + var(--inner-text-width)), -50%);
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
/* Inner "on/off" text */
|
|
1327
|
+
|
|
1328
|
+
.bs-switch span:where([data-inner-on-label][data-inner-off-label]) {
|
|
1329
|
+
color: white;
|
|
1330
|
+
width: calc(var(--ball-diameter) * 2 + var(--offset) * 2 + var(--inner-text-width));
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.bs-switch span::after {
|
|
1334
|
+
align-items: center;
|
|
1335
|
+
color: var(--ball-background);
|
|
1336
|
+
display: flex;
|
|
1337
|
+
height: 100%;
|
|
1338
|
+
justify-content: flex-start;
|
|
1339
|
+
left: 0;
|
|
1340
|
+
padding: var(--inner-text-padding);
|
|
1341
|
+
position: absolute;
|
|
1342
|
+
text-transform: capitalize;
|
|
1343
|
+
top: 0;
|
|
1344
|
+
width: 100%;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
.bs-switch input:where(:not(:checked)) ~ span:where([data-inner-on-label][data-inner-off-label])::after,
|
|
1348
|
+
.bs-switch:where([aria-pressed="false"]) span:where([data-inner-on-label][data-inner-off-label])::after {
|
|
1349
|
+
content: attr(data-inner-off-label);
|
|
1350
|
+
justify-content: flex-end;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.bs-switch input:where(:checked) ~ span:where([data-inner-on-label][data-inner-off-label])::after,
|
|
1354
|
+
.bs-switch:where([aria-pressed]):where(:not([aria-pressed="false"])) span:where([data-inner-on-label][data-inner-off-label])::after {
|
|
1355
|
+
content: attr(data-inner-on-label);
|
|
1356
|
+
justify-content: flex-start;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
/* Focus state */
|
|
1360
|
+
|
|
1361
|
+
.bs-switch:where(:focus-within) span {
|
|
1362
|
+
box-shadow: 0 0 0 2px var(--offset-color, var(--bs-bg-base)),
|
|
1363
|
+
0 0 0 4px var(--outline-color, var(--bs-blue-400));
|
|
1364
|
+
outline: 2px solid transparent;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
:where(.box) .bs-switch:where(:focus-within) span {
|
|
1368
|
+
--offset-color: var(--bs-bg-subtle);
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
:where(.box[data-invert]) .bs-switch:where(:focus-within) span {
|
|
1372
|
+
--offset-color: var(--bs-bg-invert);
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
/* Disabled state */
|
|
1376
|
+
|
|
1377
|
+
.bs-switch:where([data-disabled]) {
|
|
1378
|
+
--ball-background: var(--bs-gray-400);
|
|
1379
|
+
--switch-background: var(--bs-gray-200);
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.bs-switch input:where(:disabled) {
|
|
1383
|
+
cursor: default;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.bs-hint {
|
|
1208
1387
|
color: var(--bs-ink-light);
|
|
1209
1388
|
font-size: var(--bs-text-xs);
|
|
1210
|
-
padding: 0
|
|
1389
|
+
padding: 0;
|
|
1211
1390
|
margin: 0;
|
|
1212
1391
|
list-style: none;
|
|
1213
1392
|
}
|
|
1214
1393
|
|
|
1215
|
-
:where(
|
|
1394
|
+
.bs-hint:where([data-error]) {
|
|
1216
1395
|
color: var(--bs-red-400);
|
|
1217
1396
|
}
|
|
1218
1397
|
|
|
@@ -1719,6 +1898,11 @@ table:where([data-sticky^="left"]) :is(td:first-child, th:first-child) {
|
|
|
1719
1898
|
justify-content: flex-start;
|
|
1720
1899
|
}
|
|
1721
1900
|
|
|
1901
|
+
:where(.cluster[data-variant^="brick"]) > * {
|
|
1902
|
+
align-self: stretch;
|
|
1903
|
+
flex-grow: 1;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1722
1906
|
.cluster[data-gap="tight"] {
|
|
1723
1907
|
gap: var(--cluster-space, var(--bs-space-2));
|
|
1724
1908
|
}
|
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,.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)}.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}.bs-pill .badge::before,.bs-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-ink-light)}: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)[data-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-ink-light)}: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(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}.bs-boolean{display:flex;align-items:center;font-size:var(--bs-text-base);font-weight:400;gap:.5em;line-height:115%}.bs-boolean[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[data-size='sm'],.bs-boolean[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%}: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}.bs-boolean[data-size='sm'] input::before{--filled-size:var(--bs-text-xs)}.bs-boolean[data-size='sm'] input[type='checkbox']::after{height:.5625rem;width:.3125rem}.bs-boolean[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[type^='checkbox'],input[type^='radio'])[data-error]{--box-shadow:var(--bs-red-400)}: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)}.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-variant^="restricted"],[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^="restricted"]){--pill-background:var(--bs-gray-400);--pill-text:var(--bs-white);--pill-gap:var(--bs-space-1)}.bs-pill:where([data-variant^="restricted"]):hover{--pill-border:transparent}.bs-pill:where([data-variant^="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) .bs-pill:where([data-variant^="restricted"]){--pill-background:var(--bs-navy-300);--pill-text:var(--bs-white)}.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)}.profile-img,.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)}.profile-img :where(img){height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.profile-img:where([data-no-img]) img{display:none}.profile-img::before,.profile-img::after{border-radius:50%;border-collapse:collapse;height:100%;inset:0;position:absolute;width:100%}.profile-img::before{box-shadow:var(--bs-shadow-profilePhoto);content:''}.profile-img:where([data-no-img])::before{display:none}.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}.profile-img:where([data-img-size^='xs']){--profile-size:1.5rem;--profile-text:var(--bs-text-xs)}.profile-img:where([data-img-size^='md']){--profile-size:3rem;--profile-text:var(--bs-text-md)}.profile-img:where([data-img-size^='lg']){--profile-size:4rem;--profile-text:var(--bs-text-lg)}.profile-img:where([data-img-size^='xl']){--profile-size:5.75rem;--profile-text:var(--bs-text-xl)}:where(.profile-details){color:var(--bs-ink-light);font-size:var(--bs-text-sm)}:where(.profile-details>*){display:block}:where(.profile-details>*:first-child){--profile-name-color:var(--bs-ink-base);color:var(--profile-name-color)}: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;align-items:center}a.profile[data-layout]{text-decoration:none}a.profile[data-layout] .profile-details>*:first-child{--profile-name-color:var(--bs-blue-500)}a.profile[data-layout]:hover .profile-details>*:first-child{text-decoration:underline}.dark a.profile[data-layout] .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}.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,.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;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%}select::-moz-placeholder{color:var(--bs-violet-200);opacity:1}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)[data-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)}:has(>textarea:only-child){display:block;line-height:0}: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}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")}input:where([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}.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-variant^="restricted"],[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^="restricted"]){--pill-background:var(--bs-gray-400);--pill-text:var(--bs-white);--pill-gap:var(--bs-space-1)}.bs-pill:where([data-variant^="restricted"]):hover{--pill-border:transparent}.bs-pill:where([data-variant^="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) .bs-pill:where([data-variant^="restricted"]){--pill-background:var(--bs-navy-300);--pill-text:var(--bs-white)}.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)}.profile-img,.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)}.profile-img :where(img){height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.profile-img:where([data-no-img]) img{display:none}.profile-img::before,.profile-img::after{border-radius:50%;border-collapse:collapse;height:100%;inset:0;position:absolute;width:100%}.profile-img::before{box-shadow:var(--bs-shadow-profilePhoto);content:''}.profile-img:where([data-no-img])::before{display:none}.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}.profile-img:where([data-img-size^='xs']){--profile-size:1.5rem;--profile-text:var(--bs-text-xs)}.profile-img:where([data-img-size^='md']){--profile-size:3rem;--profile-text:var(--bs-text-md)}.profile-img:where([data-img-size^='lg']){--profile-size:4rem;--profile-text:var(--bs-text-lg)}.profile-img:where([data-img-size^='xl']){--profile-size:5.75rem;--profile-text:var(--bs-text-xl)}:where(.profile-details){color:var(--bs-ink-light);font-size:var(--bs-text-sm)}:where(.profile-details>*){display:block}:where(.profile-details>*:first-child){--profile-name-color:var(--bs-ink-base);color:var(--profile-name-color)}: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;align-items:center}a.profile[data-layout]{text-decoration:none}a.profile[data-layout] .profile-details>*:first-child{--profile-name-color:var(--bs-blue-500)}a.profile[data-layout]:hover .profile-details>*:first-child{text-decoration:underline}.dark a.profile[data-layout] .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}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wwtdev/bsds-css",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "A new approach to creating a design system at WWT.",
|
|
5
5
|
"main": "./dist",
|
|
6
6
|
"files": [
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build:css": "postcss src/styles/wwt-bsds.css -o dist/wwt-bsds.css && uglifycss dist/wwt-bsds.css > dist/wwt-bsds.min.css",
|
|
31
|
-
"build:preset": "
|
|
31
|
+
"build:preset": "node utils/copyFiles 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
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
|
},
|
|
38
|
-
"license": "
|
|
38
|
+
"license": "UNLICENSED",
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"autoprefixer": "^10.4.5",
|
|
41
41
|
"concurrently": "^7.1.0",
|