@oliasoft-open-source/react-ui-library 4.0.0-beta-6 → 4.0.0-beta-8

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/global.css CHANGED
@@ -535,7 +535,6 @@ a {
535
535
  --size: 32px;
536
536
  --size-sm: 24px;
537
537
  --size-xs: 16px;
538
- --size-checkbox: var(--size-xs);
539
538
  --spacing-2xl: 28px;
540
539
  --spacing-xl: 24px;
541
540
  --spacing-lg: 20px;
@@ -662,7 +661,7 @@ html[data-theme='dark'] {
662
661
  }
663
662
 
664
663
  .field {
665
- margin-bottom: 14px;
664
+ margin-bottom: var(--spacing-sm);
666
665
  color: var(--color-text);
667
666
  }
668
667
 
@@ -689,7 +688,7 @@ html[data-theme='dark'] {
689
688
 
690
689
  .formRow .button,
691
690
  .form-row .button {
692
- margin-bottom: 14px;
691
+ margin-bottom: var(--spacing-sm);
693
692
  }
694
693
 
695
694
  html {
@@ -737,6 +736,17 @@ ol {
737
736
  a {
738
737
  text-decoration: none;
739
738
  }
739
+ ._chevron_1u6ki_1 {
740
+ margin-right: var(--spacing-xs);
741
+ display: flex;
742
+ font-size: var(--font-size);
743
+ transition: transform 0.3s;
744
+ color: var(--color-text-muted);
745
+ pointer-events: none;
746
+ }
747
+ ._chevron_1u6ki_1._expanded_1u6ki_9 {
748
+ transform: rotate(90deg);
749
+ }
740
750
  ._wrapper_18jt2_1 {
741
751
  color: inherit;
742
752
  fill: inherit;
@@ -763,17 +773,6 @@ a {
763
773
  color: var(--color-text-primary-active) !important;
764
774
  fill: var(--color-text-primary-active) !important;
765
775
  }
766
- ._chevron_9fk1o_1 {
767
- margin-right: 8px;
768
- display: flex;
769
- font-size: var(--font-size);
770
- transition: transform 0.3s;
771
- color: var(--color-text-muted);
772
- pointer-events: none;
773
- }
774
- ._chevron_9fk1o_1._expanded_9fk1o_9 {
775
- transform: rotate(90deg);
776
- }
777
776
  ._accordion_1xanb_1 {
778
777
  position: relative;
779
778
  color: var(--color-text);
@@ -820,7 +819,8 @@ a {
820
819
  border-bottom-left-radius: 0;
821
820
  border-bottom-right-radius: 0;
822
821
  }
823
- ._checkbox_1fv4t_1 {
822
+ ._checkbox_1c926_1 {
823
+ --size-checkbox: var(--size-xs);
824
824
  margin: calc((var(--size) - var(--size-checkbox)) / 2) 0;
825
825
  position: relative;
826
826
  display: flex;
@@ -835,14 +835,15 @@ a {
835
835
  min-width: var(--size-checkbox);
836
836
  outline: 0px;
837
837
  }
838
- ._checkbox_1fv4t_1._noLabel_1fv4t_16 {
838
+ ._checkbox_1c926_1._noLabel_1c926_17 {
839
839
  width: var(--size-checkbox);
840
840
  }
841
- ._checkbox_1fv4t_1._small_1fv4t_19 {
841
+ ._checkbox_1c926_1._small_1c926_20 {
842
+ --size-checkbox: calc(var(--size-xs) - 4px);
842
843
  margin: calc((var(--size-sm) - var(--size-checkbox)) / 2) 0;
843
844
  font-size: var(--font-size-sm);
844
845
  }
845
- ._checkbox_1fv4t_1 input {
846
+ ._checkbox_1c926_1 input {
846
847
  cursor: pointer;
847
848
  position: absolute;
848
849
  top: 0px;
@@ -851,7 +852,7 @@ a {
851
852
  outline: 0px;
852
853
  z-index: -1;
853
854
  }
854
- ._checkbox_1fv4t_1 label {
855
+ ._checkbox_1c926_1 label {
855
856
  cursor: pointer;
856
857
  user-select: none;
857
858
  color: var(--color-text);
@@ -860,65 +861,69 @@ a {
860
861
  padding-left: calc(var(--size-checkbox) + var(--spacing-xs));
861
862
  outline: 0px;
862
863
  }
863
- ._checkbox_1fv4t_1 label ._checkmark_1fv4t_41 {
864
+ ._checkbox_1c926_1 label ._checkmark_1c926_43 {
864
865
  position: absolute;
865
866
  top: 0px;
866
867
  left: 0px;
867
868
  width: var(--size-checkbox);
868
869
  height: var(--size-checkbox);
870
+ font-size: var(--size-checkbox);
871
+ display: inline-flex;
872
+ align-items: center;
873
+ justify-content: center;
869
874
  background: var(--color-background-input);
870
875
  border-radius: var(--border-radius-sm);
871
876
  transition: border 0.1s ease 0s, opacity 0.1s ease 0s, transform 0.1s ease 0s, box-shadow 0.1s ease 0s;
872
877
  border: 1px solid var(--color-border-checkbox);
873
878
  color: transparent;
874
879
  }
875
- ._checkbox_1fv4t_1 label ._checkmark_1fv4t_41:hover {
880
+ ._checkbox_1c926_1 label ._checkmark_1c926_43:hover {
876
881
  border-color: var(--color-border-hover);
877
882
  }
878
- ._checkbox_1fv4t_1 input:checked ~ label ._checkmark_1fv4t_41 {
883
+ ._checkbox_1c926_1 input:checked ~ label ._checkmark_1c926_43 {
879
884
  background: var(--color-background-primary);
880
885
  border-color: transparent;
881
886
  color: white;
882
887
  }
883
- ._checkbox_1fv4t_1._disabled_1fv4t_61 {
888
+ ._checkbox_1c926_1._disabled_1c926_67 {
884
889
  cursor: default;
885
890
  pointer-events: none;
886
891
  }
887
- ._checkbox_1fv4t_1._disabled_1fv4t_61 label {
892
+ ._checkbox_1c926_1._disabled_1c926_67 label {
888
893
  color: var(--color-text-muted);
889
894
  }
890
- ._checkbox_1fv4t_1._disabled_1fv4t_61 ._checkmark_1fv4t_41 {
895
+ ._checkbox_1c926_1._disabled_1c926_67 ._checkmark_1c926_43 {
891
896
  background: var(--color-background-disabled) !important;
892
897
  border-color: var(--color-border-checkbox) !important;
893
898
  }
894
- ._checkbox_1fv4t_1._disabled_1fv4t_61 input:checked ~ label ._checkmark_1fv4t_41 {
899
+ ._checkbox_1c926_1._disabled_1c926_67 input:checked ~ label ._checkmark_1c926_43 {
895
900
  color: var(--color-text-faint);
896
901
  }
897
- ._noMargin_1fv4t_75 {
902
+ ._noMargin_1c926_81 {
898
903
  margin: 0;
899
904
  }
900
- ._isInTable_1fv4t_78 {
905
+ ._isInTable_1c926_84 {
901
906
  margin: 0;
902
907
  }
903
- ._tooltip_bwonh_1 {
908
+ ._tooltip_wli9z_1 {
904
909
  background: var(--color-text);
905
910
  fill: var(--color-text);
906
911
  z-index: var(--zindex-tooltip);
907
912
  color: var(--color-background);
908
- border-radius: var(--border-radius);
913
+ border-radius: var(--border-radius-sm);
909
914
  }
910
- ._tooltip_bwonh_1 * {
915
+ ._tooltip_wli9z_1 * {
911
916
  color: var(--color-background);
912
917
  }
913
- ._tooltip_bwonh_1 > svg,
914
- ._tooltip_bwonh_1 > svg > * {
918
+ ._tooltip_wli9z_1 > svg,
919
+ ._tooltip_wli9z_1 > svg > * {
915
920
  fill: inherit !important;
916
921
  }
917
- ._tooltip_bwonh_1._error_bwonh_15 {
922
+ ._tooltip_wli9z_1._error_wli9z_15 {
918
923
  background: var(--color-error-500);
919
924
  fill: var(--color-error-500);
920
925
  }
921
- ._tooltip_bwonh_1._warning_bwonh_19 {
926
+ ._tooltip_wli9z_1._warning_wli9z_19 {
922
927
  background: var(--color-warning-500);
923
928
  fill: var(--color-warning-500);
924
929
  }
@@ -940,35 +945,35 @@ a {
940
945
  ._clickable_1uk4t_9:active {
941
946
  color: var(--color-text-primary-active);
942
947
  }
943
- ._bordered_rmqrx_1 {
948
+ ._bordered_109k5_1 {
944
949
  border: 1px solid var(--color-border);
945
950
  border-radius: 0 0 var(--border-radius) var(--border-radius);
946
951
  border-top: none;
947
952
  background-color: var(--color-background-raised);
948
953
  }
949
- ._checkboxWrapper_rmqrx_7 {
950
- padding: calc(var(--padding-card-y) - 8px) var(--padding-card-x);
954
+ ._checkboxWrapper_109k5_7 {
955
+ padding: var(--spacing-sm) var(--padding-card-x);
951
956
  }
952
- ._checkboxWrapper_rmqrx_7:last-child {
957
+ ._checkboxWrapper_109k5_7:last-child {
953
958
  border-radius: 0 0 inherit inherit;
954
959
  }
955
- ._padding_rmqrx_13 {
960
+ ._padding_109k5_13 {
956
961
  padding: var(--padding-card);
957
962
  }
958
- ._contentWrapper_rmqrx_16 {
963
+ ._contentWrapper_109k5_16 {
959
964
  border-radius: inherit;
960
965
  }
961
- ._wrapper_ymmd2_1 {
966
+ ._wrapper_1kbgw_1 {
962
967
  display: inline-flex;
963
968
  max-width: 100%;
964
969
  }
965
- ._layer_ymmd2_5 ._wrapper_ymmd2_1 {
970
+ ._layer_1kbgw_5 ._wrapper_1kbgw_1 {
966
971
  width: 100%;
967
972
  }
968
- ._layerContainer_ymmd2_8 {
973
+ ._layerContainer_1kbgw_8 {
969
974
  z-index: var(--zindex-dropdown);
970
975
  }
971
- ._layer_ymmd2_5 {
976
+ ._layer_1kbgw_5 {
972
977
  border: 1px solid var(--color-border);
973
978
  border-radius: var(--border-radius);
974
979
  overflow: hidden;
@@ -980,98 +985,98 @@ a {
980
985
  position: relative;
981
986
  overflow-y: auto;
982
987
  }
983
- ._layer_ymmd2_5._nested_ymmd2_23 {
988
+ ._layer_1kbgw_5._nested_1kbgw_23 {
984
989
  margin: -1px 2px;
985
990
  }
986
- ._layer_ymmd2_5 ul {
991
+ ._layer_1kbgw_5 ul {
987
992
  margin: 0;
988
993
  padding: 0;
989
994
  list-style-type: none;
990
995
  }
991
- ._layer_ymmd2_5 ul li {
996
+ ._layer_1kbgw_5 ul li {
992
997
  list-style: none;
993
998
  display: block;
994
999
  }
995
- ._fileInput_ymmd2_35 {
1000
+ ._fileInput_1kbgw_35 {
996
1001
  width: 100%;
997
1002
  height: 100%;
998
1003
  opacity: 0;
999
1004
  position: absolute;
1000
1005
  }
1001
- ._trigger_ymmd2_41 {
1006
+ ._trigger_1kbgw_41 {
1002
1007
  display: inline-flex;
1003
1008
  align-items: center;
1004
1009
  cursor: pointer;
1005
1010
  max-width: 100%;
1006
1011
  }
1007
- ._layer_ymmd2_5 ._trigger_ymmd2_41 {
1012
+ ._layer_1kbgw_5 ._trigger_1kbgw_41 {
1008
1013
  width: 100%;
1009
1014
  }
1010
- ._middleAlignedInline_ymmd2_50 {
1015
+ ._middleAlignedInline_1kbgw_50 {
1011
1016
  display: flex;
1012
1017
  align-items: center;
1013
1018
  overflow: hidden;
1014
1019
  width: 100%;
1015
1020
  }
1016
- ._heading_ymmd2_56 {
1021
+ ._heading_1kbgw_56 {
1017
1022
  color: var(--color-text-muted);
1018
1023
  letter-spacing: 0.1em;
1019
1024
  text-transform: uppercase;
1020
1025
  font-size: var(--font-size-sm);
1021
1026
  }
1022
- ._heading_ymmd2_56 ._headingIcon_ymmd2_62 {
1027
+ ._heading_1kbgw_56 ._headingIcon_1kbgw_62 {
1023
1028
  float: right;
1024
1029
  }
1025
- ._heading_ymmd2_56 ._headingIcon_ymmd2_62 svg {
1030
+ ._heading_1kbgw_56 ._headingIcon_1kbgw_62 svg {
1026
1031
  color: var(--color-text-faint);
1027
1032
  }
1028
- ._heading_ymmd2_56 ._headingIcon_ymmd2_62:hover {
1033
+ ._heading_1kbgw_56 ._headingIcon_1kbgw_62:hover {
1029
1034
  cursor: pointer;
1030
1035
  }
1031
- ._heading_ymmd2_56 ._headingIcon_ymmd2_62:hover svg {
1036
+ ._heading_1kbgw_56 ._headingIcon_1kbgw_62:hover svg {
1032
1037
  color: var(--color-text-primary-hover);
1033
1038
  }
1034
- ._option_ymmd2_74 {
1039
+ ._option_1kbgw_74 {
1035
1040
  color: inherit;
1036
1041
  display: block;
1037
1042
  }
1038
- ._heading_ymmd2_56,
1039
- ._option_ymmd2_74,
1040
- ._layer_ymmd2_5 ._trigger_ymmd2_41 {
1043
+ ._heading_1kbgw_56,
1044
+ ._option_1kbgw_74,
1045
+ ._layer_1kbgw_5 ._trigger_1kbgw_41 {
1041
1046
  padding: var(--padding-input);
1042
1047
  }
1043
- ._option_ymmd2_74,
1044
- ._layer_ymmd2_5 ._trigger_ymmd2_41 {
1048
+ ._option_1kbgw_74,
1049
+ ._layer_1kbgw_5 ._trigger_1kbgw_41 {
1045
1050
  line-height: var(--line-height);
1046
1051
  display: flex;
1047
1052
  align-items: flex-start;
1048
1053
  }
1049
- ._option_ymmd2_74:hover,
1050
- ._layer_ymmd2_5 ._trigger_ymmd2_41:hover,
1051
- ._option_ymmd2_74._active_ymmd2_91,
1052
- ._layer_ymmd2_5 ._trigger_ymmd2_41._active_ymmd2_91 {
1054
+ ._option_1kbgw_74:hover,
1055
+ ._layer_1kbgw_5 ._trigger_1kbgw_41:hover,
1056
+ ._option_1kbgw_74._active_1kbgw_91,
1057
+ ._layer_1kbgw_5 ._trigger_1kbgw_41._active_1kbgw_91 {
1053
1058
  background-color: var(--color-background-listitem-hover);
1054
1059
  cursor: pointer;
1055
1060
  }
1056
- ._option_ymmd2_74._selected_ymmd2_96 {
1061
+ ._option_1kbgw_74._selected_1kbgw_96 {
1057
1062
  background-color: var(--color-background-listitem-active);
1058
1063
  font-weight: bold;
1059
1064
  }
1060
- ._layer_ymmd2_5 ._trigger_ymmd2_41 {
1065
+ ._layer_1kbgw_5 ._trigger_1kbgw_41 {
1061
1066
  align-items: center;
1062
1067
  }
1063
- ._optionContent_ymmd2_103 {
1068
+ ._optionContent_1kbgw_103 {
1064
1069
  flex-wrap: wrap;
1065
1070
  margin-right: auto;
1066
1071
  position: relative;
1067
1072
  }
1068
- ._inline_ymmd2_108 ._optionContent_ymmd2_103 {
1073
+ ._inline_1kbgw_108 ._optionContent_1kbgw_103 {
1069
1074
  display: flex;
1070
1075
  justify-content: space-between;
1071
1076
  flex-grow: 1;
1072
1077
  }
1073
- ._icon_ymmd2_113,
1074
- ._check_ymmd2_114 {
1078
+ ._icon_1kbgw_113,
1079
+ ._check_1kbgw_114 {
1075
1080
  display: flex;
1076
1081
  flex-shrink: 1;
1077
1082
  width: var(--size-xs);
@@ -1079,84 +1084,79 @@ a {
1079
1084
  justify-content: center;
1080
1085
  align-items: center;
1081
1086
  }
1082
- ._icon_ymmd2_113 {
1083
- margin-right: 8px;
1087
+ ._icon_1kbgw_113 {
1088
+ margin-right: var(--spacing-xs);
1084
1089
  color: var(--color-text-primary);
1085
1090
  }
1086
- ._icon_ymmd2_113:empty {
1091
+ ._icon_1kbgw_113:empty {
1087
1092
  display: none;
1088
1093
  }
1089
- ._icon_ymmd2_113 img {
1094
+ ._icon_1kbgw_113 img {
1090
1095
  max-height: 16px;
1091
1096
  max-width: 16px;
1092
1097
  width: auto;
1093
1098
  height: auto;
1094
1099
  }
1095
- ._check_ymmd2_114 {
1096
- font-size: var(--font-size-sm);
1097
- color: #a5a7a9;
1098
- margin-left: 10px;
1099
- }
1100
- ._text_ymmd2_140 {
1100
+ ._text_1kbgw_135 {
1101
1101
  display: inline-flex;
1102
1102
  align-items: center;
1103
1103
  cursor: pointer;
1104
1104
  }
1105
- ._label_ymmd2_145 {
1105
+ ._label_1kbgw_140 {
1106
1106
  margin-right: auto;
1107
1107
  }
1108
- ._label_ymmd2_145,
1109
- ._heading_ymmd2_56 {
1108
+ ._label_1kbgw_140,
1109
+ ._heading_1kbgw_56 {
1110
1110
  max-width: 100%;
1111
1111
  display: block;
1112
1112
  overflow: hidden;
1113
1113
  text-overflow: ellipsis;
1114
1114
  white-space: nowrap;
1115
1115
  }
1116
- ._description_ymmd2_156 {
1116
+ ._description_1kbgw_151 {
1117
1117
  color: #999;
1118
1118
  display: block;
1119
1119
  }
1120
- ._arrow_ymmd2_160 {
1121
- margin-left: 10px;
1122
- opacity: 0.4;
1120
+ ._arrow_1kbgw_155 {
1121
+ margin-left: var(--spacing-xs);
1122
+ display: flex;
1123
1123
  }
1124
- ._divider_ymmd2_164 {
1124
+ ._divider_1kbgw_159 {
1125
1125
  border: 0;
1126
1126
  border-top: 1px solid var(--color-border);
1127
1127
  }
1128
- ._deprecatedSemanticIcon_ymmd2_168 {
1128
+ ._deprecatedSemanticIcon_1kbgw_163 {
1129
1129
  color: var(--color-text-primary) !important;
1130
1130
  margin: -5px 0 0 !important;
1131
1131
  }
1132
- ._disabled_ymmd2_172 {
1132
+ ._disabled_1kbgw_167 {
1133
1133
  color: var(--color-text-faint);
1134
1134
  pointer-events: none;
1135
1135
  cursor: not-allowed !important;
1136
1136
  }
1137
- ._buttonLabel_ymmd2_177 {
1137
+ ._buttonLabel_1kbgw_172 {
1138
1138
  overflow: hidden;
1139
1139
  text-overflow: ellipsis;
1140
1140
  display: block;
1141
1141
  margin-right: auto;
1142
1142
  line-height: 1.2;
1143
1143
  }
1144
- ._buttonCaret_ymmd2_184 {
1144
+ ._buttonCaret_1kbgw_179 {
1145
1145
  margin-left: 5px;
1146
1146
  }
1147
- ._component_ymmd2_187 {
1147
+ ._component_1kbgw_182 {
1148
1148
  display: inline-flex;
1149
1149
  align-items: center;
1150
1150
  justify-content: center;
1151
1151
  cursor: pointer;
1152
1152
  }
1153
- ._right_ymmd2_193 {
1153
+ ._right_1kbgw_188 {
1154
1154
  margin-left: auto;
1155
1155
  display: flex;
1156
1156
  align-items: center;
1157
1157
  }
1158
- ._actions_ymmd2_198 {
1159
- margin-left: 8px;
1158
+ ._actions_1kbgw_193 {
1159
+ margin-left: var(--spacing-xs);
1160
1160
  display: flex;
1161
1161
  align-items: center;
1162
1162
  margin-top: -2px;
@@ -1208,77 +1208,77 @@ a {
1208
1208
  transform-origin: 100% 0%;
1209
1209
  z-index: 3;
1210
1210
  }
1211
- ._inputInTable_1ufmj_1 {
1211
+ ._inputInTable_p1n9d_1 {
1212
1212
  background-color: transparent;
1213
1213
  border-radius: inherit !important;
1214
1214
  height: var(--size);
1215
1215
  min-height: 100%;
1216
1216
  }
1217
- ._inputInTable_1ufmj_1:not(:hover) {
1217
+ ._inputInTable_p1n9d_1:not(:hover) {
1218
1218
  border-color: transparent;
1219
1219
  }
1220
- ._inputHover_1ufmj_10 {
1220
+ ._inputHover_p1n9d_10 {
1221
1221
  position: relative;
1222
1222
  border-color: var(--color-border-hover);
1223
1223
  z-index: 2;
1224
1224
  }
1225
- ._inputFocus_1ufmj_15 {
1225
+ ._inputFocus_p1n9d_15 {
1226
1226
  position: relative;
1227
1227
  outline: none !important;
1228
1228
  border-color: var(--color-border-focus) !important;
1229
1229
  box-shadow: var(--shadow-focus);
1230
1230
  z-index: 3;
1231
1231
  }
1232
- ._inputError_1ufmj_22,
1233
- ._inputWarning_1ufmj_23 {
1232
+ ._inputError_p1n9d_22,
1233
+ ._inputWarning_p1n9d_23 {
1234
1234
  position: relative;
1235
1235
  }
1236
- ._inputError_1ufmj_22 {
1236
+ ._inputError_p1n9d_22 {
1237
1237
  z-index: 2;
1238
1238
  border-color: var(--color-border-error);
1239
1239
  color: var(--color-text-error) !important;
1240
1240
  background-color: var(--color-background-error);
1241
1241
  }
1242
- ._inputError_1ufmj_22:hover {
1242
+ ._inputError_p1n9d_22:hover {
1243
1243
  border-color: var(--color-border-error-hover) !important;
1244
1244
  }
1245
- ._inputError_1ufmj_22:focus {
1245
+ ._inputError_p1n9d_22:focus {
1246
1246
  position: relative;
1247
1247
  outline: none !important;
1248
1248
  border-color: var(--color-border-focus) !important;
1249
1249
  box-shadow: var(--shadow-focus);
1250
1250
  z-index: 3;
1251
1251
  }
1252
- ._inputWarning_1ufmj_23 {
1252
+ ._inputWarning_p1n9d_23 {
1253
1253
  z-index: 1;
1254
1254
  border-color: var(--color-border-warning);
1255
1255
  color: var(--color-text-warning) !important;
1256
1256
  background-color: var(--color-background-warning);
1257
1257
  }
1258
- ._inputWarning_1ufmj_23:hover {
1258
+ ._inputWarning_p1n9d_23:hover {
1259
1259
  border-color: var(--color-border-warning-hover) !important;
1260
1260
  }
1261
- ._inputWarning_1ufmj_23:focus {
1261
+ ._inputWarning_p1n9d_23:focus {
1262
1262
  position: relative;
1263
1263
  outline: none !important;
1264
1264
  border-color: var(--color-border-focus) !important;
1265
1265
  box-shadow: var(--shadow-focus);
1266
1266
  z-index: 3;
1267
1267
  }
1268
- ._inputDisabled_1ufmj_58 {
1268
+ ._inputDisabled_p1n9d_58 {
1269
1269
  pointer-events: none;
1270
1270
  background-color: var(--color-background-disabled);
1271
1271
  color: var(--color-text-muted);
1272
1272
  box-shadow: none;
1273
1273
  }
1274
- ._hideScrollbars_1ufmj_64 {
1274
+ ._hideScrollbars_p1n9d_64 {
1275
1275
  /* Firefox */
1276
1276
  scrollbar-width: none;
1277
1277
  /* IE 10+ */
1278
1278
  -ms-overflow-style: none;
1279
1279
  /* Chrome, Safari and Opera */
1280
1280
  }
1281
- ._hideScrollbars_1ufmj_64::-webkit-scrollbar {
1281
+ ._hideScrollbars_p1n9d_64::-webkit-scrollbar {
1282
1282
  display: none;
1283
1283
  }
1284
1284
  :root {
@@ -1304,7 +1304,7 @@ html[data-theme='dark'] {
1304
1304
  --color-border-button: var(--color-border);
1305
1305
  --color-border-button-hover: var(--color-border);
1306
1306
  }
1307
- ._button_1ufmj_97 {
1307
+ ._button_p1n9d_97 {
1308
1308
  cursor: pointer;
1309
1309
  display: inline-flex;
1310
1310
  align-items: center;
@@ -1330,79 +1330,79 @@ html[data-theme='dark'] {
1330
1330
  min-height: var(--size);
1331
1331
  box-shadow: var(--shadow-button);
1332
1332
  }
1333
- ._button_1ufmj_97:hover {
1333
+ ._button_p1n9d_97:hover {
1334
1334
  background: var(--color-background-button-default-hover);
1335
1335
  border-color: var(--color-border-button-hover);
1336
1336
  }
1337
- ._button_1ufmj_97:focus {
1337
+ ._button_p1n9d_97:focus {
1338
1338
  box-shadow: var(--shadow-focus) !important;
1339
1339
  }
1340
- ._button_1ufmj_97:active {
1340
+ ._button_p1n9d_97:active {
1341
1341
  background: var(--color-background-button-default-active);
1342
1342
  box-shadow: none;
1343
1343
  }
1344
- ._button_1ufmj_97._active_1ufmj_134:not(._green_1ufmj_134):not(._red_1ufmj_134):not(._orange_1ufmj_134) {
1344
+ ._button_p1n9d_97._active_p1n9d_134:not(._green_p1n9d_134):not(._red_p1n9d_134):not(._orange_p1n9d_134) {
1345
1345
  border-color: var(--color-background-button-primary);
1346
1346
  color: var(--color-text-primary);
1347
1347
  position: relative;
1348
1348
  z-index: 2;
1349
1349
  }
1350
- ._button_1ufmj_97:hover,
1351
- ._button_1ufmj_97:focus,
1352
- ._button_1ufmj_97:active {
1350
+ ._button_p1n9d_97:hover,
1351
+ ._button_p1n9d_97:focus,
1352
+ ._button_p1n9d_97:active {
1353
1353
  position: relative;
1354
1354
  z-index: 1;
1355
1355
  }
1356
- ._button_1ufmj_97 ._icon_1ufmj_146 {
1356
+ ._button_p1n9d_97 ._icon_p1n9d_146 {
1357
1357
  margin: -2px;
1358
- margin-right: 8px;
1358
+ margin-right: var(--spacing-xs);
1359
1359
  font-size: 1.25em;
1360
1360
  }
1361
- ._iconOnly_1ufmj_151 {
1361
+ ._iconOnly_p1n9d_151 {
1362
1362
  width: var(--size);
1363
1363
  display: inline-flex;
1364
1364
  align-items: center;
1365
1365
  justify-content: center;
1366
1366
  }
1367
- ._iconOnly_1ufmj_151 ._icon_1ufmj_146 {
1367
+ ._iconOnly_p1n9d_151 ._icon_p1n9d_146 {
1368
1368
  margin: 0;
1369
1369
  line-height: 0;
1370
1370
  }
1371
- ._basic_1ufmj_161 {
1371
+ ._basic_p1n9d_161 {
1372
1372
  color: var(--color-text-primary);
1373
1373
  background: transparent;
1374
1374
  box-shadow: none !important;
1375
1375
  border: none !important;
1376
1376
  }
1377
- ._basic_1ufmj_161._muted_1ufmj_167 {
1377
+ ._basic_p1n9d_161._muted_p1n9d_167 {
1378
1378
  color: var(--color-text-muted);
1379
1379
  }
1380
- ._basic_1ufmj_161:hover {
1380
+ ._basic_p1n9d_161:hover {
1381
1381
  color: var(--color-text-primary-hover);
1382
1382
  background: rgba(0, 0, 0, 0.05);
1383
1383
  }
1384
- ._basic_1ufmj_161:active,
1385
- ._basic_1ufmj_161._active_1ufmj_134 {
1384
+ ._basic_p1n9d_161:active,
1385
+ ._basic_p1n9d_161._active_p1n9d_134 {
1386
1386
  color: var(--color-text-primary-active);
1387
1387
  background: rgba(0, 0, 0, 0.1);
1388
1388
  }
1389
- ._disabled_1ufmj_179 {
1389
+ ._disabled_p1n9d_179 {
1390
1390
  cursor: default;
1391
1391
  pointer-events: none !important;
1392
1392
  color: var(--color-text-faint) !important;
1393
1393
  box-shadow: none !important;
1394
1394
  }
1395
- ._disabled_1ufmj_179:not(._active_1ufmj_134):not(._basic_1ufmj_161) {
1395
+ ._disabled_p1n9d_179:not(._active_p1n9d_134):not(._basic_p1n9d_161) {
1396
1396
  background: var(--color-background-disabled) !important;
1397
1397
  border: 1px solid var(--color-border) !important;
1398
1398
  }
1399
- ._small_1ufmj_189 {
1399
+ ._small_p1n9d_189 {
1400
1400
  font-size: var(--font-size-sm);
1401
1401
  min-height: var(--size-sm);
1402
1402
  padding: var(--padding-input-sm);
1403
1403
  }
1404
- ._pill_1ufmj_194,
1405
- ._round_1ufmj_195 {
1404
+ ._pill_p1n9d_194,
1405
+ ._round_p1n9d_195 {
1406
1406
  text-transform: uppercase;
1407
1407
  letter-spacing: 0.1em;
1408
1408
  font-weight: bold;
@@ -1410,218 +1410,218 @@ html[data-theme='dark'] {
1410
1410
  display: inline-flex;
1411
1411
  align-items: center;
1412
1412
  }
1413
- ._round_1ufmj_195 {
1413
+ ._round_p1n9d_195 {
1414
1414
  padding: 0;
1415
1415
  width: var(--size);
1416
1416
  line-height: 1;
1417
1417
  }
1418
- ._round_1ufmj_195._small_1ufmj_189 {
1418
+ ._round_p1n9d_195._small_p1n9d_189 {
1419
1419
  width: var(--size-sm);
1420
1420
  }
1421
- ._orange_1ufmj_134:not(._basic_1ufmj_161) {
1421
+ ._orange_p1n9d_134:not(._basic_p1n9d_161) {
1422
1422
  background-color: var(--color-background-button-primary);
1423
1423
  }
1424
- ._orange_1ufmj_134:not(._basic_1ufmj_161):hover {
1424
+ ._orange_p1n9d_134:not(._basic_p1n9d_161):hover {
1425
1425
  background-color: var(--color-background-button-primary-hover);
1426
1426
  }
1427
- ._orange_1ufmj_134:not(._basic_1ufmj_161):active,
1428
- ._orange_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134 {
1427
+ ._orange_p1n9d_134:not(._basic_p1n9d_161):active,
1428
+ ._orange_p1n9d_134:not(._basic_p1n9d_161)._active_p1n9d_134 {
1429
1429
  background-color: var(--color-background-button-primary-active);
1430
1430
  }
1431
- ._red_1ufmj_134:not(._basic_1ufmj_161) {
1431
+ ._red_p1n9d_134:not(._basic_p1n9d_161) {
1432
1432
  background-color: var(--color-background-button-error);
1433
1433
  }
1434
- ._red_1ufmj_134:not(._basic_1ufmj_161):hover {
1434
+ ._red_p1n9d_134:not(._basic_p1n9d_161):hover {
1435
1435
  background-color: var(--color-background-button-error-hover);
1436
1436
  }
1437
- ._red_1ufmj_134:not(._basic_1ufmj_161):active,
1438
- ._red_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134 {
1437
+ ._red_p1n9d_134:not(._basic_p1n9d_161):active,
1438
+ ._red_p1n9d_134:not(._basic_p1n9d_161)._active_p1n9d_134 {
1439
1439
  background-color: var(--color-background-button-error-active);
1440
1440
  }
1441
- ._red_1ufmj_134._basic_1ufmj_161 {
1441
+ ._red_p1n9d_134._basic_p1n9d_161 {
1442
1442
  color: var(--color-text-error);
1443
1443
  }
1444
- ._green_1ufmj_134:not(._basic_1ufmj_161) {
1444
+ ._green_p1n9d_134:not(._basic_p1n9d_161) {
1445
1445
  background-color: var(--color-background-button-success);
1446
1446
  }
1447
- ._green_1ufmj_134:not(._basic_1ufmj_161):hover {
1447
+ ._green_p1n9d_134:not(._basic_p1n9d_161):hover {
1448
1448
  background-color: var(--color-background-button-success-hover);
1449
1449
  }
1450
- ._green_1ufmj_134:not(._basic_1ufmj_161):active,
1451
- ._green_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134 {
1450
+ ._green_p1n9d_134:not(._basic_p1n9d_161):active,
1451
+ ._green_p1n9d_134:not(._basic_p1n9d_161)._active_p1n9d_134 {
1452
1452
  background-color: var(--color-background-button-success-active);
1453
1453
  }
1454
- ._green_1ufmj_134._basic_1ufmj_161 {
1454
+ ._green_p1n9d_134._basic_p1n9d_161 {
1455
1455
  color: var(--color-text-success);
1456
1456
  }
1457
- ._orange_1ufmj_134:not(._basic_1ufmj_161),
1458
- ._red_1ufmj_134:not(._basic_1ufmj_161),
1459
- ._green_1ufmj_134:not(._basic_1ufmj_161) {
1457
+ ._orange_p1n9d_134:not(._basic_p1n9d_161),
1458
+ ._red_p1n9d_134:not(._basic_p1n9d_161),
1459
+ ._green_p1n9d_134:not(._basic_p1n9d_161) {
1460
1460
  color: #fff;
1461
1461
  }
1462
- ._orange_1ufmj_134:not(._basic_1ufmj_161):hover,
1463
- ._red_1ufmj_134:not(._basic_1ufmj_161):hover,
1464
- ._green_1ufmj_134:not(._basic_1ufmj_161):hover {
1462
+ ._orange_p1n9d_134:not(._basic_p1n9d_161):hover,
1463
+ ._red_p1n9d_134:not(._basic_p1n9d_161):hover,
1464
+ ._green_p1n9d_134:not(._basic_p1n9d_161):hover {
1465
1465
  color: #fff;
1466
1466
  }
1467
- ._orange_1ufmj_134:not(._basic_1ufmj_161):active,
1468
- ._red_1ufmj_134:not(._basic_1ufmj_161):active,
1469
- ._green_1ufmj_134:not(._basic_1ufmj_161):active,
1470
- ._orange_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134,
1471
- ._red_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134,
1472
- ._green_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134 {
1467
+ ._orange_p1n9d_134:not(._basic_p1n9d_161):active,
1468
+ ._red_p1n9d_134:not(._basic_p1n9d_161):active,
1469
+ ._green_p1n9d_134:not(._basic_p1n9d_161):active,
1470
+ ._orange_p1n9d_134:not(._basic_p1n9d_161)._active_p1n9d_134,
1471
+ ._red_p1n9d_134:not(._basic_p1n9d_161)._active_p1n9d_134,
1472
+ ._green_p1n9d_134:not(._basic_p1n9d_161)._active_p1n9d_134 {
1473
1473
  color: #fff;
1474
1474
  }
1475
- ._error_1ufmj_265 {
1475
+ ._error_p1n9d_265 {
1476
1476
  position: relative;
1477
1477
  z-index: 2;
1478
1478
  border-color: var(--color-border-error);
1479
1479
  color: var(--color-text-error) !important;
1480
1480
  background-color: var(--color-background-error);
1481
1481
  }
1482
- ._error_1ufmj_265:hover {
1482
+ ._error_p1n9d_265:hover {
1483
1483
  border-color: var(--color-border-error-hover) !important;
1484
1484
  }
1485
- ._error_1ufmj_265:focus {
1485
+ ._error_p1n9d_265:focus {
1486
1486
  position: relative;
1487
1487
  outline: none !important;
1488
1488
  border-color: var(--color-border-focus) !important;
1489
1489
  box-shadow: var(--shadow-focus);
1490
1490
  z-index: 3;
1491
1491
  }
1492
- ._warning_1ufmj_282 {
1492
+ ._warning_p1n9d_282 {
1493
1493
  position: relative;
1494
1494
  z-index: 1;
1495
1495
  border-color: var(--color-border-warning);
1496
1496
  color: var(--color-text-warning) !important;
1497
1497
  background-color: var(--color-background-warning);
1498
1498
  }
1499
- ._warning_1ufmj_282:hover {
1499
+ ._warning_p1n9d_282:hover {
1500
1500
  border-color: var(--color-border-warning-hover) !important;
1501
1501
  }
1502
- ._warning_1ufmj_282:focus {
1502
+ ._warning_p1n9d_282:focus {
1503
1503
  position: relative;
1504
1504
  outline: none !important;
1505
1505
  border-color: var(--color-border-focus) !important;
1506
1506
  box-shadow: var(--shadow-focus);
1507
1507
  z-index: 3;
1508
1508
  }
1509
- ._inverted_1ufmj_299 {
1509
+ ._inverted_p1n9d_299 {
1510
1510
  background-color: transparent;
1511
1511
  border-color: var(--color-text);
1512
1512
  box-shadow: none;
1513
1513
  }
1514
- ._inverted_1ufmj_299:hover,
1515
- ._inverted_1ufmj_299:active {
1514
+ ._inverted_p1n9d_299:hover,
1515
+ ._inverted_p1n9d_299:active {
1516
1516
  box-shadow: none;
1517
1517
  }
1518
- ._inverted_1ufmj_299._orange_1ufmj_134 {
1518
+ ._inverted_p1n9d_299._orange_p1n9d_134 {
1519
1519
  color: var(--color-background-button-primary);
1520
1520
  border-color: var(--color-background-button-primary);
1521
1521
  }
1522
- ._inverted_1ufmj_299._red_1ufmj_134 {
1522
+ ._inverted_p1n9d_299._red_p1n9d_134 {
1523
1523
  color: var(--color-background-button-error);
1524
1524
  border-color: var(--color-background-button-error);
1525
1525
  }
1526
- ._inverted_1ufmj_299._green_1ufmj_134 {
1526
+ ._inverted_p1n9d_299._green_p1n9d_134 {
1527
1527
  color: var(--color-background-button-success);
1528
1528
  border-color: var(--color-background-button-success);
1529
1529
  }
1530
- ._inverted_1ufmj_299._orange_1ufmj_134:hover,
1531
- ._inverted_1ufmj_299._red_1ufmj_134:hover,
1532
- ._inverted_1ufmj_299._green_1ufmj_134:hover,
1533
- ._inverted_1ufmj_299._orange_1ufmj_134:active,
1534
- ._inverted_1ufmj_299._red_1ufmj_134:active,
1535
- ._inverted_1ufmj_299._green_1ufmj_134:active {
1530
+ ._inverted_p1n9d_299._orange_p1n9d_134:hover,
1531
+ ._inverted_p1n9d_299._red_p1n9d_134:hover,
1532
+ ._inverted_p1n9d_299._green_p1n9d_134:hover,
1533
+ ._inverted_p1n9d_299._orange_p1n9d_134:active,
1534
+ ._inverted_p1n9d_299._red_p1n9d_134:active,
1535
+ ._inverted_p1n9d_299._green_p1n9d_134:active {
1536
1536
  color: white;
1537
1537
  box-shadow: none;
1538
1538
  }
1539
- ._groupOrderFirst_1ufmj_329,
1540
- ._groupOrderMiddle_1ufmj_330,
1541
- ._groupOrderLast_1ufmj_331 {
1539
+ ._groupOrderFirst_p1n9d_329,
1540
+ ._groupOrderMiddle_p1n9d_330,
1541
+ ._groupOrderLast_p1n9d_331 {
1542
1542
  margin-right: 0;
1543
1543
  }
1544
- ._groupOrderFirst_1ufmj_329,
1545
- ._groupOrderMiddle_1ufmj_330 {
1544
+ ._groupOrderFirst_p1n9d_329,
1545
+ ._groupOrderMiddle_p1n9d_330 {
1546
1546
  border-top-right-radius: 0 !important;
1547
1547
  border-bottom-right-radius: 0 !important;
1548
1548
  }
1549
- ._groupOrderLast_1ufmj_331,
1550
- ._groupOrderMiddle_1ufmj_330 {
1549
+ ._groupOrderLast_p1n9d_331,
1550
+ ._groupOrderMiddle_p1n9d_330 {
1551
1551
  border-top-left-radius: 0 !important;
1552
1552
  border-bottom-left-radius: 0 !important;
1553
1553
  }
1554
- ._spinner_qco2g_1 {
1554
+ ._spinner_199j8_1 {
1555
1555
  display: inline-block;
1556
1556
  position: relative;
1557
1557
  width: 40px;
1558
1558
  height: 40px;
1559
1559
  }
1560
- ._spinner_qco2g_1._small_qco2g_7 {
1560
+ ._spinner_199j8_1._small_199j8_7 {
1561
1561
  width: 14px;
1562
1562
  height: 14px;
1563
1563
  }
1564
- ._spinner_qco2g_1._tiny_qco2g_11 {
1564
+ ._spinner_199j8_1._tiny_199j8_11 {
1565
1565
  width: 10px;
1566
1566
  height: 10px;
1567
1567
  }
1568
- ._spinner_qco2g_1 div {
1568
+ ._spinner_199j8_1 div {
1569
1569
  box-sizing: border-box;
1570
1570
  display: block;
1571
1571
  position: absolute;
1572
1572
  width: 40px;
1573
1573
  height: 40px;
1574
- border: 6px solid #fff;
1574
+ border: 2px solid #fff;
1575
1575
  border-radius: 50%;
1576
- animation: _spinner_qco2g_1 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
1576
+ animation: _spinner_199j8_1 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
1577
1577
  border-color: #fff transparent transparent transparent;
1578
1578
  }
1579
- ._spinner_qco2g_1._small_qco2g_7 div {
1579
+ ._spinner_199j8_1._small_199j8_7 div {
1580
1580
  width: 14px;
1581
1581
  height: 14px;
1582
- border: 3px solid #fff;
1582
+ border: 2px solid #fff;
1583
1583
  border-color: #fff transparent transparent transparent;
1584
1584
  }
1585
- ._spinner_qco2g_1._tiny_qco2g_11 div {
1585
+ ._spinner_199j8_1._tiny_199j8_11 div {
1586
1586
  width: 10px;
1587
1587
  height: 10px;
1588
1588
  border: 2px solid #fff;
1589
1589
  border-color: #fff transparent transparent transparent;
1590
1590
  }
1591
- ._spinner_qco2g_1._colored_qco2g_38 div {
1592
- border: 6px solid var(--color-background-primary);
1591
+ ._spinner_199j8_1._colored_199j8_38 div {
1592
+ border: 2px solid var(--color-background-primary);
1593
1593
  border-color: var(--color-background-primary) transparent transparent transparent;
1594
1594
  }
1595
- ._spinner_qco2g_1._small_qco2g_7._colored_qco2g_38 div {
1596
- border: 3px solid var(--color-background-primary);
1595
+ ._spinner_199j8_1._small_199j8_7._colored_199j8_38 div {
1596
+ border: 2px solid var(--color-background-primary);
1597
1597
  border-color: var(--color-background-primary) transparent transparent transparent;
1598
1598
  }
1599
- ._spinner_qco2g_1._tiny_qco2g_11._colored_qco2g_38 div {
1599
+ ._spinner_199j8_1._tiny_199j8_11._colored_199j8_38 div {
1600
1600
  border: 2px solid var(--color-background-primary);
1601
1601
  border-color: var(--color-background-primary) transparent transparent transparent;
1602
1602
  }
1603
- ._spinner_qco2g_1._dark_qco2g_50 div {
1604
- border: 6px solid var(--color-text-muted);
1603
+ ._spinner_199j8_1._dark_199j8_50 div {
1604
+ border: 2px solid var(--color-text-muted);
1605
1605
  border-color: var(--color-text-muted) transparent transparent transparent;
1606
1606
  }
1607
- ._spinner_qco2g_1._small_qco2g_7._dark_qco2g_50 div {
1608
- border: 3px solid var(--color-text-muted);
1607
+ ._spinner_199j8_1._small_199j8_7._dark_199j8_50 div {
1608
+ border: 2px solid var(--color-text-muted);
1609
1609
  border-color: var(--color-text-muted) transparent transparent transparent;
1610
1610
  }
1611
- ._spinner_qco2g_1._tiny_qco2g_11._dark_qco2g_50 div {
1611
+ ._spinner_199j8_1._tiny_199j8_11._dark_199j8_50 div {
1612
1612
  border: 2px solid var(--color-text-muted);
1613
1613
  border-color: var(--color-text-muted) transparent transparent transparent;
1614
1614
  }
1615
- ._spinner_qco2g_1 div:nth-child(1) {
1615
+ ._spinner_199j8_1 div:nth-child(1) {
1616
1616
  animation-delay: -0.45s;
1617
1617
  }
1618
- ._spinner_qco2g_1 div:nth-child(2) {
1618
+ ._spinner_199j8_1 div:nth-child(2) {
1619
1619
  animation-delay: -0.3s;
1620
1620
  }
1621
- ._spinner_qco2g_1 div:nth-child(3) {
1621
+ ._spinner_199j8_1 div:nth-child(3) {
1622
1622
  animation-delay: -0.15s;
1623
1623
  }
1624
- @keyframes _spinner_qco2g_1 {
1624
+ @keyframes _spinner_199j8_1 {
1625
1625
  0% {
1626
1626
  transform: rotate(0deg);
1627
1627
  }
@@ -1629,17 +1629,17 @@ html[data-theme='dark'] {
1629
1629
  transform: rotate(360deg);
1630
1630
  }
1631
1631
  }
1632
- ._actions_acped_1 {
1632
+ ._actions_p0xkh_1 {
1633
1633
  margin-left: auto;
1634
1634
  display: flex;
1635
1635
  flex-wrap: nowrap;
1636
1636
  justify-content: flex-end;
1637
1637
  align-items: center;
1638
1638
  }
1639
- ._actions_acped_1 > *:not(:last-child) {
1640
- margin-right: 3px;
1639
+ ._actions_p0xkh_1 > *:not(:last-child) {
1640
+ margin-right: var(--spacing-2xs);
1641
1641
  }
1642
- ._actionComponentContainer_acped_11 {
1642
+ ._actionComponentContainer_p0xkh_11 {
1643
1643
  width: 24px;
1644
1644
  height: 24px;
1645
1645
  display: inline-flex;
@@ -1652,46 +1652,46 @@ html[data-theme='dark'] {
1652
1652
  transition: color 0.2s;
1653
1653
  line-height: 0;
1654
1654
  }
1655
- ._actionComponentContainer_acped_11 i {
1655
+ ._actionComponentContainer_p0xkh_11 i {
1656
1656
  margin: 0;
1657
1657
  line-height: 1 !important;
1658
1658
  }
1659
- ._actionComponentContainer_acped_11:hover,
1660
- ._actionComponentContainer_acped_11:focus {
1659
+ ._actionComponentContainer_p0xkh_11:hover,
1660
+ ._actionComponentContainer_p0xkh_11:focus {
1661
1661
  color: var(--color-text-primary-hover);
1662
1662
  }
1663
- ._actionComponentContainer_acped_11:active,
1664
- ._actionComponentContainer_acped_11._active_acped_33 {
1663
+ ._actionComponentContainer_p0xkh_11:active,
1664
+ ._actionComponentContainer_p0xkh_11._active_p0xkh_33 {
1665
1665
  color: var(--color-text-primary-active);
1666
1666
  }
1667
- ._breadcrumb_eju7k_1 {
1667
+ ._breadcrumb_1yvg5_1 {
1668
1668
  font-size: var(--font-size-xl);
1669
1669
  }
1670
- ._breadcrumb_eju7k_1._small_eju7k_4 {
1670
+ ._breadcrumb_1yvg5_1._small_1yvg5_4 {
1671
1671
  font-size: var(--font-size);
1672
1672
  }
1673
- ._breadcrumb_eju7k_1 ._labelContainer_eju7k_7 {
1673
+ ._breadcrumb_1yvg5_1 ._labelContainer_1yvg5_7 {
1674
1674
  color: var(--color-text-primary);
1675
1675
  cursor: pointer;
1676
1676
  }
1677
- ._breadcrumb_eju7k_1 ._labelContainer_eju7k_7:hover {
1677
+ ._breadcrumb_1yvg5_1 ._labelContainer_1yvg5_7:hover {
1678
1678
  color: var(--color-text-primary-hover);
1679
1679
  }
1680
- ._breadcrumb_eju7k_1 ._labelContainer_eju7k_7:active {
1680
+ ._breadcrumb_1yvg5_1 ._labelContainer_1yvg5_7:active {
1681
1681
  color: var(--color-text-primary-active);
1682
1682
  }
1683
- ._breadcrumb_eju7k_1 ._labelContainer_eju7k_7._active_eju7k_17 {
1683
+ ._breadcrumb_1yvg5_1 ._labelContainer_1yvg5_7._active_1yvg5_17 {
1684
1684
  color: inherit;
1685
1685
  cursor: default;
1686
1686
  pointer-events: none;
1687
1687
  }
1688
- ._breadcrumb_eju7k_1 ._labelContainer_eju7k_7._disabled_eju7k_22 {
1688
+ ._breadcrumb_1yvg5_1 ._labelContainer_1yvg5_7._disabled_1yvg5_22 {
1689
1689
  color: var(--color-text-faint);
1690
1690
  cursor: default;
1691
1691
  pointer-events: none;
1692
1692
  }
1693
- ._breadcrumb_eju7k_1 ._separator_eju7k_27 {
1694
- margin: 0 10px;
1693
+ ._breadcrumb_1yvg5_1 ._separator_1yvg5_27 {
1694
+ margin: 0 var(--spacing-xs);
1695
1695
  color: var(--color-border);
1696
1696
  }
1697
1697
  ._label_1m8h2_1 {
@@ -1807,7 +1807,7 @@ html[data-theme='dark'] {
1807
1807
  ._link_11ofj_25:active {
1808
1808
  color: var(--color-text-primary-active);
1809
1809
  }
1810
- ._heading_19ope_1 {
1810
+ ._heading_16sf2_1 {
1811
1811
  color: var(--color-text);
1812
1812
  font-weight: bold;
1813
1813
  display: flex;
@@ -1815,24 +1815,24 @@ html[data-theme='dark'] {
1815
1815
  user-select: none;
1816
1816
  padding: 0;
1817
1817
  }
1818
- ._heading_19ope_1._top_19ope_9 {
1818
+ ._heading_16sf2_1._top_16sf2_9 {
1819
1819
  font-size: var(--font-size-xl);
1820
1820
  margin-bottom: var(--spacing);
1821
1821
  line-height: var(--size-sm);
1822
1822
  }
1823
- ._heading_19ope_1:not(._top_19ope_9) {
1823
+ ._heading_16sf2_1:not(._top_16sf2_9) {
1824
1824
  font-size: var(--font-size-sm);
1825
1825
  line-height: var(--line-height);
1826
1826
  color: var(--color-text-muted);
1827
1827
  text-transform: uppercase;
1828
1828
  letter-spacing: 0.1em;
1829
1829
  }
1830
- ._icons_19ope_21 {
1830
+ ._icons_16sf2_21 {
1831
1831
  display: inline-flex;
1832
1832
  font-size: 1.25em;
1833
1833
  }
1834
- ._icons_19ope_21 > * {
1835
- margin-left: 8px;
1834
+ ._icons_16sf2_21 > * {
1835
+ margin-left: var(--spacing-xs);
1836
1836
  }
1837
1837
  ._dialog_15xxd_1 {
1838
1838
  border-radius: var(--border-radius);
@@ -1890,77 +1890,77 @@ html[data-theme='dark'] {
1890
1890
  ._footer_15xxd_47 button:not(:last-child) {
1891
1891
  margin-right: var(--spacing);
1892
1892
  }
1893
- ._inputInTable_1m30t_1 {
1893
+ ._inputInTable_5lftx_1 {
1894
1894
  background-color: transparent;
1895
1895
  border-radius: inherit !important;
1896
1896
  height: var(--size);
1897
1897
  min-height: 100%;
1898
1898
  }
1899
- ._inputInTable_1m30t_1:not(:hover) {
1899
+ ._inputInTable_5lftx_1:not(:hover) {
1900
1900
  border-color: transparent;
1901
1901
  }
1902
- ._inputHover_1m30t_10 {
1902
+ ._inputHover_5lftx_10 {
1903
1903
  position: relative;
1904
1904
  border-color: var(--color-border-hover);
1905
1905
  z-index: 2;
1906
1906
  }
1907
- ._inputFocus_1m30t_15 {
1907
+ ._inputFocus_5lftx_15 {
1908
1908
  position: relative;
1909
1909
  outline: none !important;
1910
1910
  border-color: var(--color-border-focus) !important;
1911
1911
  box-shadow: var(--shadow-focus);
1912
1912
  z-index: 3;
1913
1913
  }
1914
- ._inputError_1m30t_22,
1915
- ._inputWarning_1m30t_23 {
1914
+ ._inputError_5lftx_22,
1915
+ ._inputWarning_5lftx_23 {
1916
1916
  position: relative;
1917
1917
  }
1918
- ._inputError_1m30t_22 {
1918
+ ._inputError_5lftx_22 {
1919
1919
  z-index: 2;
1920
1920
  border-color: var(--color-border-error);
1921
1921
  color: var(--color-text-error) !important;
1922
1922
  background-color: var(--color-background-error);
1923
1923
  }
1924
- ._inputError_1m30t_22:hover {
1924
+ ._inputError_5lftx_22:hover {
1925
1925
  border-color: var(--color-border-error-hover) !important;
1926
1926
  }
1927
- ._inputError_1m30t_22:focus {
1927
+ ._inputError_5lftx_22:focus {
1928
1928
  position: relative;
1929
1929
  outline: none !important;
1930
1930
  border-color: var(--color-border-focus) !important;
1931
1931
  box-shadow: var(--shadow-focus);
1932
1932
  z-index: 3;
1933
1933
  }
1934
- ._inputWarning_1m30t_23 {
1934
+ ._inputWarning_5lftx_23 {
1935
1935
  z-index: 1;
1936
1936
  border-color: var(--color-border-warning);
1937
1937
  color: var(--color-text-warning) !important;
1938
1938
  background-color: var(--color-background-warning);
1939
1939
  }
1940
- ._inputWarning_1m30t_23:hover {
1940
+ ._inputWarning_5lftx_23:hover {
1941
1941
  border-color: var(--color-border-warning-hover) !important;
1942
1942
  }
1943
- ._inputWarning_1m30t_23:focus {
1943
+ ._inputWarning_5lftx_23:focus {
1944
1944
  position: relative;
1945
1945
  outline: none !important;
1946
1946
  border-color: var(--color-border-focus) !important;
1947
1947
  box-shadow: var(--shadow-focus);
1948
1948
  z-index: 3;
1949
1949
  }
1950
- ._inputDisabled_1m30t_58 {
1950
+ ._inputDisabled_5lftx_58 {
1951
1951
  pointer-events: none;
1952
1952
  background-color: var(--color-background-disabled);
1953
1953
  color: var(--color-text-muted);
1954
1954
  box-shadow: none;
1955
1955
  }
1956
- ._hideScrollbars_1m30t_64 {
1956
+ ._hideScrollbars_5lftx_64 {
1957
1957
  /* Firefox */
1958
1958
  scrollbar-width: none;
1959
1959
  /* IE 10+ */
1960
1960
  -ms-overflow-style: none;
1961
1961
  /* Chrome, Safari and Opera */
1962
1962
  }
1963
- ._hideScrollbars_1m30t_64::-webkit-scrollbar {
1963
+ ._hideScrollbars_5lftx_64::-webkit-scrollbar {
1964
1964
  display: none;
1965
1965
  }
1966
1966
  :root {
@@ -1977,37 +1977,37 @@ html[data-theme='dark'] {
1977
1977
  --color-border-drawer-tab: var(--color-primary-750);
1978
1978
  --color-background-drawer-handle-hover: rgba(255, 255, 255, 0.1);
1979
1979
  }
1980
- ._inline_1m30t_88 {
1980
+ ._inline_5lftx_88 {
1981
1981
  position: relative;
1982
1982
  }
1983
- ._inline_1m30t_88._left_1m30t_91 {
1983
+ ._inline_5lftx_88._left_5lftx_91 {
1984
1984
  order: -1;
1985
1985
  }
1986
- ._inline_1m30t_88._right_1m30t_94 {
1986
+ ._inline_5lftx_88._right_5lftx_94 {
1987
1987
  order: 9999;
1988
1988
  }
1989
- ._fixed_1m30t_97 {
1989
+ ._fixed_5lftx_97 {
1990
1990
  position: fixed;
1991
1991
  top: 0;
1992
1992
  bottom: 0;
1993
1993
  z-index: var(--zindex-drawer);
1994
1994
  }
1995
- ._fixed_1m30t_97._left_1m30t_91 {
1995
+ ._fixed_5lftx_97._left_5lftx_91 {
1996
1996
  left: 0;
1997
1997
  }
1998
- ._fixed_1m30t_97._right_1m30t_94 {
1998
+ ._fixed_5lftx_97._right_5lftx_94 {
1999
1999
  right: 0;
2000
2000
  }
2001
- ._left_1m30t_91 ._border_1m30t_109 {
2001
+ ._left_5lftx_91 ._border_5lftx_109 {
2002
2002
  border-right: 1px solid var(--color-border);
2003
2003
  }
2004
- ._right_1m30t_94 ._border_1m30t_109 {
2004
+ ._right_5lftx_94 ._border_5lftx_109 {
2005
2005
  border-left: 1px solid var(--color-border);
2006
2006
  }
2007
- ._shadow_1m30t_115 {
2007
+ ._shadow_5lftx_115 {
2008
2008
  box-shadow: var(--shadow-layer);
2009
2009
  }
2010
- ._drawerContent_1m30t_118 {
2010
+ ._drawerContent_5lftx_118 {
2011
2011
  overflow-x: hidden;
2012
2012
  overflow-y: auto;
2013
2013
  max-height: 100%;
@@ -2019,40 +2019,40 @@ html[data-theme='dark'] {
2019
2019
  -ms-overflow-style: none;
2020
2020
  /* Chrome, Safari and Opera */
2021
2021
  }
2022
- ._isResizing_1m30t_130 ._drawerContent_1m30t_118 {
2022
+ ._isResizing_5lftx_130 ._drawerContent_5lftx_118 {
2023
2023
  transition: none;
2024
2024
  }
2025
2025
  @media print {
2026
- ._drawerContent_1m30t_118 {
2026
+ ._drawerContent_5lftx_118 {
2027
2027
  background: transparent !important;
2028
2028
  }
2029
2029
  }
2030
- ._drawerContent_1m30t_118::-webkit-scrollbar {
2030
+ ._drawerContent_5lftx_118::-webkit-scrollbar {
2031
2031
  display: none;
2032
2032
  }
2033
- ._toggleButton_1m30t_141 {
2033
+ ._toggleButton_5lftx_141 {
2034
2034
  transition: transform 0.4s;
2035
2035
  display: inline-block;
2036
2036
  transform: rotate(180deg);
2037
2037
  position: absolute;
2038
2038
  z-index: calc(var(--zindex-drawer) + 3);
2039
2039
  }
2040
- ._left_1m30t_91 ._toggleButton_1m30t_141 {
2040
+ ._left_5lftx_91 ._toggleButton_5lftx_141 {
2041
2041
  right: calc(var(--size) / -2);
2042
2042
  }
2043
- ._right_1m30t_94 ._toggleButton_1m30t_141 {
2043
+ ._right_5lftx_94 ._toggleButton_5lftx_141 {
2044
2044
  left: calc(var(--size) / -2);
2045
2045
  }
2046
- ._toggleButton_1m30t_141._top_1m30t_154 {
2046
+ ._toggleButton_5lftx_141._top_5lftx_154 {
2047
2047
  top: var(--padding-y);
2048
2048
  }
2049
- ._toggleButton_1m30t_141._bottom_1m30t_157 {
2049
+ ._toggleButton_5lftx_141._bottom_5lftx_157 {
2050
2050
  bottom: var(--padding-y);
2051
2051
  }
2052
- ._toggleButton_1m30t_141._toggleButtonOpen_1m30t_160 {
2052
+ ._toggleButton_5lftx_141._toggleButtonOpen_5lftx_160 {
2053
2053
  transform: rotate(0deg);
2054
2054
  }
2055
- ._tabs_1m30t_163 {
2055
+ ._tabs_5lftx_163 {
2056
2056
  position: absolute;
2057
2057
  top: 0;
2058
2058
  bottom: 0;
@@ -2061,15 +2061,15 @@ html[data-theme='dark'] {
2061
2061
  z-index: calc(var(--zindex-drawer) + 1);
2062
2062
  border-left: 1px solid var(--color-border);
2063
2063
  border-right: 1px solid var(--color-border);
2064
- font-size: var(--size-sm);
2065
2064
  }
2066
- ._left_1m30t_91 ._tabs_1m30t_163 {
2065
+ ._left_5lftx_91 ._tabs_5lftx_163 {
2067
2066
  right: 0;
2068
2067
  }
2069
- ._right_1m30t_94 ._tabs_1m30t_163 {
2068
+ ._right_5lftx_94 ._tabs_5lftx_163 {
2070
2069
  left: 0;
2071
2070
  }
2072
- ._tabs_1m30t_163 ._tab_1m30t_163 {
2071
+ ._tabs_5lftx_163 ._tab_5lftx_163 {
2072
+ font-size: var(--size-sm);
2073
2073
  height: 38px;
2074
2074
  width: 38px;
2075
2075
  display: flex;
@@ -2080,43 +2080,43 @@ html[data-theme='dark'] {
2080
2080
  transition: color 0.3s, background-color 0.3s;
2081
2081
  border: 1px solid var(--color-border-drawer-tab);
2082
2082
  }
2083
- ._left_1m30t_91 ._tabs_1m30t_163 ._tab_1m30t_163 {
2083
+ ._left_5lftx_91 ._tabs_5lftx_163 ._tab_5lftx_163 {
2084
2084
  border-top-left-radius: 0;
2085
2085
  border-bottom-left-radius: 0;
2086
2086
  }
2087
- ._left_1m30t_91 ._tabs_1m30t_163 ._tab_1m30t_163._active_1m30t_195 {
2087
+ ._left_5lftx_91 ._tabs_5lftx_163 ._tab_5lftx_163._active_5lftx_195 {
2088
2088
  border-left-color: transparent;
2089
2089
  }
2090
- ._right_1m30t_94 ._tabs_1m30t_163 ._tab_1m30t_163 {
2090
+ ._right_5lftx_94 ._tabs_5lftx_163 ._tab_5lftx_163 {
2091
2091
  border-top-right-radius: 0;
2092
2092
  border-bottom-right-radius: 0;
2093
2093
  }
2094
- ._right_1m30t_94 ._tabs_1m30t_163 ._tab_1m30t_163._active_1m30t_195 {
2094
+ ._right_5lftx_94 ._tabs_5lftx_163 ._tab_5lftx_163._active_5lftx_195 {
2095
2095
  border-right-color: transparent;
2096
2096
  }
2097
- ._tabs_1m30t_163 ._tab_1m30t_163:not(._active_1m30t_195) {
2097
+ ._tabs_5lftx_163 ._tab_5lftx_163:not(._active_5lftx_195) {
2098
2098
  color: var(--color-text-primary);
2099
2099
  background-color: var(--color-background-drawer-tab) !important;
2100
2100
  }
2101
- ._tabs_1m30t_163 ._tab_1m30t_163:not(._active_1m30t_195):hover {
2101
+ ._tabs_5lftx_163 ._tab_5lftx_163:not(._active_5lftx_195):hover {
2102
2102
  color: var(--color-text);
2103
2103
  background-color: var(--color-background-drawer-tab-hover) !important;
2104
2104
  }
2105
- ._tabs_1m30t_163 ._tab_1m30t_163._active_1m30t_195 {
2105
+ ._tabs_5lftx_163 ._tab_5lftx_163._active_5lftx_195 {
2106
2106
  color: var(--color-text);
2107
2107
  border-color: var(--color-border);
2108
2108
  }
2109
- ._left_1m30t_91 ._tabsContent_1m30t_217 {
2109
+ ._left_5lftx_91 ._tabsContent_5lftx_217 {
2110
2110
  padding-right: 36px;
2111
2111
  }
2112
- ._right_1m30t_94 ._tabsContent_1m30t_217 {
2112
+ ._right_5lftx_94 ._tabsContent_5lftx_217 {
2113
2113
  padding-left: 36px;
2114
2114
  }
2115
- ._resizeHandle_1m30t_223 {
2115
+ ._resizeHandle_5lftx_223 {
2116
2116
  position: absolute;
2117
2117
  top: 0;
2118
2118
  bottom: 0;
2119
- width: 10px;
2119
+ width: 12px;
2120
2120
  z-index: calc(var(--zindex-drawer) + 2);
2121
2121
  cursor: ew-resize;
2122
2122
  display: flex;
@@ -2125,21 +2125,21 @@ html[data-theme='dark'] {
2125
2125
  font-size: var(--font-size-sm);
2126
2126
  transition: all 0.2s;
2127
2127
  }
2128
- ._resizeHandle_1m30t_223:hover {
2128
+ ._resizeHandle_5lftx_223:hover {
2129
2129
  background: var(--color-background-drawer-handle-hover);
2130
2130
  color: var(--color-text-primary);
2131
2131
  }
2132
- ._resizeHandle_1m30t_223:active {
2132
+ ._resizeHandle_5lftx_223:active {
2133
2133
  background: var(--color-text-primary);
2134
2134
  color: white;
2135
2135
  }
2136
- ._left_1m30t_91 ._resizeHandle_1m30t_223 {
2136
+ ._left_5lftx_91 ._resizeHandle_5lftx_223 {
2137
2137
  right: 0;
2138
2138
  }
2139
- ._right_1m30t_94 ._resizeHandle_1m30t_223 {
2139
+ ._right_5lftx_94 ._resizeHandle_5lftx_223 {
2140
2140
  left: 0;
2141
2141
  }
2142
- ._empty_cs57m_1 {
2142
+ ._empty_1erlc_1 {
2143
2143
  position: relative;
2144
2144
  border-radius: inherit;
2145
2145
  display: inline-flex;
@@ -2147,11 +2147,11 @@ html[data-theme='dark'] {
2147
2147
  align-items: center;
2148
2148
  justify-content: center;
2149
2149
  text-align: center;
2150
- gap: 10px;
2150
+ gap: var(--spacing-sm);
2151
2151
  }
2152
- ._empty_cs57m_1 ._text_cs57m_11 {
2152
+ ._empty_1erlc_1 ._text_1erlc_11 {
2153
2153
  max-width: 40ch;
2154
- margin-bottom: 3px;
2154
+ gap: var(--spacing-2xs);
2155
2155
  }
2156
2156
  ._inputGroup_biuoa_1 {
2157
2157
  display: flex;
@@ -2342,56 +2342,56 @@ html[data-theme='dark'] {
2342
2342
  ._fileInput_1elar_1 {
2343
2343
  display: none !important;
2344
2344
  }
2345
- ._label_191gc_1 {
2345
+ ._label_ll0e3_1 {
2346
2346
  display: flex;
2347
2347
  align-items: center;
2348
2348
  }
2349
- ._label_191gc_1._labelLeft_191gc_5 {
2349
+ ._label_ll0e3_1._labelLeft_ll0e3_5 {
2350
2350
  margin-bottom: 0;
2351
2351
  flex-shrink: 0;
2352
- padding-right: 10px;
2352
+ padding-right: var(--spacing-sm);
2353
2353
  }
2354
- ._label_191gc_1._labelLeft_191gc_5 > label {
2354
+ ._label_ll0e3_1._labelLeft_ll0e3_5 > label {
2355
2355
  margin-bottom: 0;
2356
2356
  }
2357
- ._label_191gc_1 ._icons_191gc_13 {
2357
+ ._label_ll0e3_1 ._icons_ll0e3_13 {
2358
2358
  display: inline-flex;
2359
2359
  font-size: 1.25em;
2360
2360
  }
2361
- ._label_191gc_1 ._icons_191gc_13 > * {
2361
+ ._label_ll0e3_1 ._icons_ll0e3_13 > * {
2362
2362
  margin-left: var(--spacing-2xs);
2363
2363
  }
2364
- ._label_191gc_1 > label {
2364
+ ._label_ll0e3_1 > label {
2365
2365
  display: flex;
2366
2366
  align-items: center;
2367
2367
  font-weight: bold;
2368
2368
  font-size: var(--font-size-sm);
2369
2369
  margin-bottom: var(--spacing-2xs);
2370
2370
  }
2371
- ._field_1j8sr_1 {
2372
- margin-bottom: 14px;
2371
+ ._field_abuqh_1 {
2372
+ margin-bottom: var(--spacing-sm);
2373
2373
  color: var(--color-text);
2374
2374
  }
2375
- ._field_1j8sr_1._labelLeft_1j8sr_5 {
2375
+ ._field_abuqh_1._labelLeft_abuqh_5 {
2376
2376
  display: flex;
2377
2377
  align-items: center;
2378
2378
  }
2379
- ._field_1j8sr_1._labelLeft_1j8sr_5 ._fieldInput_1j8sr_9 {
2379
+ ._field_abuqh_1._labelLeft_abuqh_5 ._fieldInput_abuqh_9 {
2380
2380
  flex-grow: 1;
2381
2381
  }
2382
- ._formRow_1j8sr_12,
2383
- ._form-row_1j8sr_13 {
2382
+ ._formRow_abuqh_12,
2383
+ ._form-row_abuqh_13 {
2384
2384
  display: flex;
2385
2385
  flex-wrap: wrap;
2386
2386
  align-items: flex-end;
2387
2387
  }
2388
- ._formRow_1j8sr_12 > *:not(:last-child),
2389
- ._form-row_1j8sr_13 > *:not(:last-child) {
2388
+ ._formRow_abuqh_12 > *:not(:last-child),
2389
+ ._form-row_abuqh_13 > *:not(:last-child) {
2390
2390
  margin-right: var(--spacing);
2391
2391
  }
2392
- ._formRow_1j8sr_12 ._button_1j8sr_22,
2393
- ._form-row_1j8sr_13 ._button_1j8sr_22 {
2394
- margin-bottom: 14px;
2392
+ ._formRow_abuqh_12 ._button_abuqh_22,
2393
+ ._form-row_abuqh_13 ._button_abuqh_22 {
2394
+ margin-bottom: var(--spacing-sm);
2395
2395
  }
2396
2396
  ._formRow_1m3f8_1 {
2397
2397
  display: flex;
@@ -2426,120 +2426,120 @@ html[data-theme='dark'] {
2426
2426
  border-top-left-radius: 0 !important;
2427
2427
  border-bottom-left-radius: 0 !important;
2428
2428
  }
2429
- ._inputInTable_1woim_1 {
2429
+ ._inputInTable_15szv_1 {
2430
2430
  background-color: transparent;
2431
2431
  border-radius: inherit !important;
2432
2432
  height: var(--size);
2433
2433
  min-height: 100%;
2434
2434
  }
2435
- ._inputInTable_1woim_1:not(:hover) {
2435
+ ._inputInTable_15szv_1:not(:hover) {
2436
2436
  border-color: transparent;
2437
2437
  }
2438
- ._inputHover_1woim_10 {
2438
+ ._inputHover_15szv_10 {
2439
2439
  position: relative;
2440
2440
  border-color: var(--color-border-hover);
2441
2441
  z-index: 2;
2442
2442
  }
2443
- ._inputFocus_1woim_15 {
2443
+ ._inputFocus_15szv_15 {
2444
2444
  position: relative;
2445
2445
  outline: none !important;
2446
2446
  border-color: var(--color-border-focus) !important;
2447
2447
  box-shadow: var(--shadow-focus);
2448
2448
  z-index: 3;
2449
2449
  }
2450
- ._inputError_1woim_22,
2451
- ._inputWarning_1woim_23 {
2450
+ ._inputError_15szv_22,
2451
+ ._inputWarning_15szv_23 {
2452
2452
  position: relative;
2453
2453
  }
2454
- ._inputError_1woim_22 {
2454
+ ._inputError_15szv_22 {
2455
2455
  z-index: 2;
2456
2456
  border-color: var(--color-border-error);
2457
2457
  color: var(--color-text-error) !important;
2458
2458
  background-color: var(--color-background-error);
2459
2459
  }
2460
- ._inputError_1woim_22:hover {
2460
+ ._inputError_15szv_22:hover {
2461
2461
  border-color: var(--color-border-error-hover) !important;
2462
2462
  }
2463
- ._inputError_1woim_22:focus {
2463
+ ._inputError_15szv_22:focus {
2464
2464
  position: relative;
2465
2465
  outline: none !important;
2466
2466
  border-color: var(--color-border-focus) !important;
2467
2467
  box-shadow: var(--shadow-focus);
2468
2468
  z-index: 3;
2469
2469
  }
2470
- ._inputWarning_1woim_23 {
2470
+ ._inputWarning_15szv_23 {
2471
2471
  z-index: 1;
2472
2472
  border-color: var(--color-border-warning);
2473
2473
  color: var(--color-text-warning) !important;
2474
2474
  background-color: var(--color-background-warning);
2475
2475
  }
2476
- ._inputWarning_1woim_23:hover {
2476
+ ._inputWarning_15szv_23:hover {
2477
2477
  border-color: var(--color-border-warning-hover) !important;
2478
2478
  }
2479
- ._inputWarning_1woim_23:focus {
2479
+ ._inputWarning_15szv_23:focus {
2480
2480
  position: relative;
2481
2481
  outline: none !important;
2482
2482
  border-color: var(--color-border-focus) !important;
2483
2483
  box-shadow: var(--shadow-focus);
2484
2484
  z-index: 3;
2485
2485
  }
2486
- ._inputDisabled_1woim_58 {
2486
+ ._inputDisabled_15szv_58 {
2487
2487
  pointer-events: none;
2488
2488
  background-color: var(--color-background-disabled);
2489
2489
  color: var(--color-text-muted);
2490
2490
  box-shadow: none;
2491
2491
  }
2492
- ._hideScrollbars_1woim_64 {
2492
+ ._hideScrollbars_15szv_64 {
2493
2493
  /* Firefox */
2494
2494
  scrollbar-width: none;
2495
2495
  /* IE 10+ */
2496
2496
  -ms-overflow-style: none;
2497
2497
  /* Chrome, Safari and Opera */
2498
2498
  }
2499
- ._hideScrollbars_1woim_64::-webkit-scrollbar {
2499
+ ._hideScrollbars_15szv_64::-webkit-scrollbar {
2500
2500
  display: none;
2501
2501
  }
2502
- ._header_1woim_74 ._headerTitle_1woim_74,
2503
- ._heading_1woim_75 ._itemHeader_1woim_75 {
2502
+ ._header_15szv_74 ._headerTitle_15szv_74,
2503
+ ._heading_15szv_75 ._itemHeader_15szv_75 {
2504
2504
  transition: opacity 0.3s;
2505
2505
  }
2506
- ._narrow_1woim_78 ._header_1woim_74 ._headerTitle_1woim_74,
2507
- ._narrow_1woim_78 ._heading_1woim_75 ._itemHeader_1woim_75 {
2506
+ ._narrow_15szv_78 ._header_15szv_74 ._headerTitle_15szv_74,
2507
+ ._narrow_15szv_78 ._heading_15szv_75 ._itemHeader_15szv_75 {
2508
2508
  opacity: 0;
2509
2509
  }
2510
- ._stickyHeader_1woim_82 {
2510
+ ._stickyHeader_15szv_82 {
2511
2511
  position: sticky;
2512
2512
  top: 0;
2513
2513
  background-color: var(--color-background);
2514
2514
  z-index: 10;
2515
2515
  }
2516
- ._itemHeader_1woim_75 {
2516
+ ._itemHeader_15szv_75 {
2517
2517
  padding: var(--spacing-sm) var(--padding-x);
2518
2518
  display: flex;
2519
2519
  align-items: flex-start;
2520
2520
  }
2521
- ._itemHeader_1woim_75 ._title_1woim_93 {
2521
+ ._itemHeader_15szv_75 ._title_15szv_93 {
2522
2522
  margin: 0;
2523
2523
  padding: 0;
2524
2524
  flex-grow: 1;
2525
2525
  min-width: 0;
2526
2526
  }
2527
- ._itemHeader_1woim_75 ._name_1woim_99 {
2527
+ ._itemHeader_15szv_75 ._name_15szv_99 {
2528
2528
  font-weight: 400;
2529
2529
  }
2530
- ._itemHeader_1woim_75 ._iconTooltipMargin_1woim_102 {
2531
- margin-left: 10px;
2530
+ ._itemHeader_15szv_75 ._iconTooltipMargin_15szv_102 {
2531
+ margin-left: var(--spacing-xs);
2532
2532
  }
2533
- ._itemHeader_1woim_75 ._bold_1woim_105 {
2533
+ ._itemHeader_15szv_75 ._bold_15szv_105 {
2534
2534
  font-weight: bold;
2535
2535
  }
2536
- ._header_1woim_74 {
2536
+ ._header_15szv_74 {
2537
2537
  padding: var(--padding);
2538
2538
  display: flex;
2539
2539
  align-items: center;
2540
2540
  border-bottom: 1px solid var(--color-border);
2541
2541
  }
2542
- ._toggleNarrow_1woim_114 {
2542
+ ._toggleNarrow_15szv_114 {
2543
2543
  margin-right: 16px;
2544
2544
  margin-left: -5px;
2545
2545
  color: #c8c8c8;
@@ -2548,51 +2548,48 @@ html[data-theme='dark'] {
2548
2548
  width: 22px;
2549
2549
  justify-content: center;
2550
2550
  }
2551
- ._toggleNarrow_1woim_114:hover {
2551
+ ._toggleNarrow_15szv_114:hover {
2552
2552
  color: var(--color-text-primary-hover);
2553
2553
  }
2554
- ._toggleNarrow_1woim_114:active {
2554
+ ._toggleNarrow_15szv_114:active {
2555
2555
  color: var(--color-text-primary-active);
2556
2556
  }
2557
- ._narrow_1woim_78 ._toggleNarrow_1woim_114 {
2557
+ ._narrow_15szv_78 ._toggleNarrow_15szv_114 {
2558
2558
  transform: scaleX(-1);
2559
2559
  }
2560
- ._drag_1woim_132 {
2560
+ ._drag_15szv_132 {
2561
2561
  color: var(--color-text-faint);
2562
2562
  display: flex;
2563
2563
  align-items: center;
2564
2564
  justify-content: center;
2565
- margin-right: 10px;
2565
+ margin-right: var(--spacing-xs);
2566
2566
  margin-left: -6px;
2567
2567
  cursor: move;
2568
2568
  height: 19px;
2569
2569
  width: 19px;
2570
2570
  }
2571
- ._drag_1woim_132 path {
2572
- stroke: var(--color-text-faint);
2573
- }
2574
- ._drag_1woim_132:hover path {
2575
- stroke: var(--color-text-primary-hover);
2571
+ ._drag_15szv_132:hover {
2572
+ color: var(--color-text-primary-hover);
2576
2573
  }
2577
- ._drag_1woim_132:active path {
2578
- stroke: var(--color-text-primary-active);
2574
+ ._drag_15szv_132:active {
2575
+ color: var(--color-text-primary-active);
2579
2576
  }
2580
- ._list_1woim_152 {
2577
+ ._list_15szv_149 {
2581
2578
  flex-shrink: 0;
2582
2579
  background: var(--color-background);
2583
2580
  }
2584
- ._list_1woim_152._bordered_1woim_156:first-child,
2585
- ._list_1woim_152._bordered_1woim_156:first-child > :first-child {
2581
+ ._list_15szv_149._bordered_15szv_153:first-child,
2582
+ ._list_15szv_149._bordered_15szv_153:first-child > :first-child {
2586
2583
  border-top-left-radius: inherit;
2587
2584
  border-top-right-radius: inherit;
2588
2585
  }
2589
- ._list_1woim_152._bordered_1woim_156:last-child,
2590
- ._list_1woim_152._bordered_1woim_156:last-child > :last-child {
2586
+ ._list_15szv_149._bordered_15szv_153:last-child,
2587
+ ._list_15szv_149._bordered_15szv_153:last-child > :last-child {
2591
2588
  border-bottom-left-radius: inherit;
2592
2589
  border-bottom-right-radius: inherit;
2593
2590
  border-bottom: 0;
2594
2591
  }
2595
- ._item_1woim_75 {
2592
+ ._item_15szv_75 {
2596
2593
  color: inherit;
2597
2594
  display: block;
2598
2595
  transition: background-color 0.2s;
@@ -2603,7 +2600,7 @@ html[data-theme='dark'] {
2603
2600
  overflow-wrap: break-word;
2604
2601
  hyphens: auto;
2605
2602
  }
2606
- ._item_1woim_75:not(._heading_1woim_75):after {
2603
+ ._item_15szv_75:not(._heading_15szv_75):after {
2607
2604
  content: '';
2608
2605
  position: absolute;
2609
2606
  left: 0;
@@ -2614,73 +2611,73 @@ html[data-theme='dark'] {
2614
2611
  border-bottom-left-radius: inherit;
2615
2612
  transition: background 0.3s;
2616
2613
  }
2617
- ._item_1woim_75._action_1woim_189 {
2614
+ ._item_15szv_75._action_15szv_186 {
2618
2615
  cursor: pointer;
2619
2616
  }
2620
- ._item_1woim_75._action_1woim_189:not(._active_1woim_192):hover {
2617
+ ._item_15szv_75._action_15szv_186:not(._active_15szv_189):hover {
2621
2618
  background: var(--color-background-listitem-hover);
2622
2619
  }
2623
- ._item_1woim_75._action_1woim_189:not(._active_1woim_192):hover:after {
2620
+ ._item_15szv_75._action_15szv_186:not(._active_15szv_189):hover:after {
2624
2621
  background: rgba(0, 0, 0, 0.1);
2625
2622
  }
2626
- ._item_1woim_75._active_1woim_192 {
2623
+ ._item_15szv_75._active_15szv_189 {
2627
2624
  cursor: default;
2628
2625
  position: relative;
2629
2626
  z-index: 1;
2630
2627
  background: var(--color-background-listitem-active);
2631
2628
  }
2632
- ._item_1woim_75._active_1woim_192:after {
2629
+ ._item_15szv_75._active_15szv_189:after {
2633
2630
  background: var(--color-background-primary) !important;
2634
2631
  }
2635
- ._item_1woim_75._disabled_1woim_207 {
2632
+ ._item_15szv_75._disabled_15szv_204 {
2636
2633
  color: var(--color-text-faint);
2637
2634
  pointer-events: none;
2638
2635
  }
2639
- ._item_1woim_75._heading_1woim_75 {
2636
+ ._item_15szv_75._heading_15szv_75 {
2640
2637
  color: var(--color-text-muted);
2641
2638
  background-color: transparent;
2642
2639
  }
2643
- ._item_1woim_75._heading_1woim_75._action_1woim_189:hover {
2640
+ ._item_15szv_75._heading_15szv_75._action_15szv_186:hover {
2644
2641
  color: var(--color-text-primary-hover);
2645
2642
  }
2646
- ._item_1woim_75 ._label_1woim_218 {
2643
+ ._item_15szv_75 ._label_15szv_215 {
2647
2644
  margin-right: 15px;
2648
2645
  margin-left: -5px;
2649
2646
  margin-top: -2px;
2650
2647
  margin-bottom: -2px;
2651
2648
  flex-shrink: 0;
2652
2649
  }
2653
- ._item_1woim_75 ._details_1woim_225,
2654
- ._item_1woim_75 ._metadata_1woim_226 {
2650
+ ._item_15szv_75 ._details_15szv_222,
2651
+ ._item_15szv_75 ._metadata_15szv_223 {
2655
2652
  display: block;
2656
2653
  width: 100%;
2657
2654
  font-weight: normal;
2658
- margin-top: 3px;
2659
2655
  }
2660
- ._item_1woim_75 ._metadata_1woim_226 {
2656
+ ._item_15szv_75 ._metadata_15szv_223 {
2661
2657
  color: var(--color-text-muted);
2662
2658
  }
2663
- ._item_1woim_75 ._itemContent_1woim_235 {
2659
+ ._item_15szv_75 ._itemContent_15szv_231 {
2664
2660
  padding: 0 var(--padding-x) var(--spacing-sm);
2665
2661
  cursor: auto;
2666
2662
  }
2667
- ._item_1woim_75 ._itemContent_1woim_235:empty {
2663
+ ._item_15szv_75 ._itemContent_15szv_231:empty {
2668
2664
  padding: inherit;
2669
2665
  }
2670
- ._indentIcon_1woim_242 {
2666
+ ._indentIcon_15szv_238 {
2667
+ color: var(--color-text-faint);
2671
2668
  width: 20px;
2672
2669
  flex-shrink: 0;
2673
2670
  }
2674
- ._expandIcon_1woim_246 {
2671
+ ._expandIcon_15szv_243 {
2675
2672
  width: 20px;
2676
2673
  flex-shrink: 0;
2677
2674
  position: relative;
2678
2675
  margin-top: 1px;
2679
2676
  }
2680
- ._expandIcon_1woim_246._expanded_1woim_252 svg {
2677
+ ._expandIcon_15szv_243._expanded_15szv_249 svg {
2681
2678
  transform: rotate(90deg);
2682
2679
  }
2683
- ._right_1woim_255 {
2680
+ ._right_15szv_252 {
2684
2681
  margin-left: auto;
2685
2682
  display: flex;
2686
2683
  align-items: center;
@@ -2688,47 +2685,47 @@ html[data-theme='dark'] {
2688
2685
  margin-bottom: -2px;
2689
2686
  margin-right: -8px;
2690
2687
  }
2691
- ._actions_1woim_263 {
2692
- margin-left: 8px;
2688
+ ._actions_15szv_260 {
2689
+ margin-left: var(--spacing-xs);
2693
2690
  display: flex;
2694
2691
  align-items: center;
2695
2692
  }
2696
- ._scrollableList_1woim_268 {
2693
+ ._scrollableList_15szv_265 {
2697
2694
  height: 100%;
2698
2695
  overflow-y: auto;
2699
2696
  scroll-behavior: smooth;
2700
2697
  }
2701
- ._hideScrollbar_1woim_64 {
2698
+ ._hideScrollbar_15szv_64 {
2702
2699
  /* Firefox */
2703
2700
  scrollbar-width: none;
2704
2701
  /* IE 10+ */
2705
2702
  -ms-overflow-style: none;
2706
2703
  /* Chrome, Safari and Opera */
2707
2704
  }
2708
- ._hideScrollbar_1woim_64::-webkit-scrollbar {
2705
+ ._hideScrollbar_15szv_64::-webkit-scrollbar {
2709
2706
  display: none;
2710
2707
  }
2711
- ._loader_16v7q_1 {
2708
+ ._loader_cvm5e_1 {
2712
2709
  width: 100%;
2713
2710
  height: 100%;
2714
2711
  position: relative;
2715
2712
  border-radius: inherit;
2716
2713
  }
2717
- ._loader_16v7q_1._fullViewPortSize_16v7q_7 {
2714
+ ._loader_cvm5e_1._fullViewPortSize_cvm5e_7 {
2718
2715
  position: absolute;
2719
2716
  top: 0;
2720
2717
  left: 0;
2721
2718
  width: 100vw;
2722
2719
  height: 100vh;
2723
2720
  }
2724
- ._loader_16v7q_1._cover_16v7q_14 {
2721
+ ._loader_cvm5e_1._cover_cvm5e_14 {
2725
2722
  position: absolute;
2726
2723
  top: 0;
2727
2724
  left: 0;
2728
2725
  bottom: 0;
2729
2726
  right: 0;
2730
2727
  }
2731
- ._dimmer_16v7q_21 {
2728
+ ._dimmer_cvm5e_21 {
2732
2729
  position: absolute;
2733
2730
  top: 0;
2734
2731
  left: 0;
@@ -2751,89 +2748,89 @@ html[data-theme='dark'] {
2751
2748
  display: flex;
2752
2749
  opacity: 0.95;
2753
2750
  }
2754
- ._content_16v7q_44 {
2751
+ ._content_cvm5e_44 {
2755
2752
  display: flex;
2756
2753
  flex-direction: column;
2757
2754
  align-items: center;
2758
2755
  }
2759
- ._text_16v7q_49 {
2756
+ ._text_cvm5e_49 {
2760
2757
  margin-top: 12px;
2761
2758
  opacity: 0.6;
2762
2759
  }
2763
- ._details_16v7q_53 {
2764
- margin-top: 8px;
2760
+ ._details_cvm5e_53 {
2761
+ margin-top: var(--spacing-xs);
2765
2762
  }
2766
- ._inputInTable_17xnf_1 {
2763
+ ._inputInTable_12x0j_1 {
2767
2764
  background-color: transparent;
2768
2765
  border-radius: inherit !important;
2769
2766
  height: var(--size);
2770
2767
  min-height: 100%;
2771
2768
  }
2772
- ._inputInTable_17xnf_1:not(:hover) {
2769
+ ._inputInTable_12x0j_1:not(:hover) {
2773
2770
  border-color: transparent;
2774
2771
  }
2775
- ._inputHover_17xnf_10 {
2772
+ ._inputHover_12x0j_10 {
2776
2773
  position: relative;
2777
2774
  border-color: var(--color-border-hover);
2778
2775
  z-index: 2;
2779
2776
  }
2780
- ._inputFocus_17xnf_15 {
2777
+ ._inputFocus_12x0j_15 {
2781
2778
  position: relative;
2782
2779
  outline: none !important;
2783
2780
  border-color: var(--color-border-focus) !important;
2784
2781
  box-shadow: var(--shadow-focus);
2785
2782
  z-index: 3;
2786
2783
  }
2787
- ._inputError_17xnf_22,
2788
- ._inputWarning_17xnf_23 {
2784
+ ._inputError_12x0j_22,
2785
+ ._inputWarning_12x0j_23 {
2789
2786
  position: relative;
2790
2787
  }
2791
- ._inputError_17xnf_22 {
2788
+ ._inputError_12x0j_22 {
2792
2789
  z-index: 2;
2793
2790
  border-color: var(--color-border-error);
2794
2791
  color: var(--color-text-error) !important;
2795
2792
  background-color: var(--color-background-error);
2796
2793
  }
2797
- ._inputError_17xnf_22:hover {
2794
+ ._inputError_12x0j_22:hover {
2798
2795
  border-color: var(--color-border-error-hover) !important;
2799
2796
  }
2800
- ._inputError_17xnf_22:focus {
2797
+ ._inputError_12x0j_22:focus {
2801
2798
  position: relative;
2802
2799
  outline: none !important;
2803
2800
  border-color: var(--color-border-focus) !important;
2804
2801
  box-shadow: var(--shadow-focus);
2805
2802
  z-index: 3;
2806
2803
  }
2807
- ._inputWarning_17xnf_23 {
2804
+ ._inputWarning_12x0j_23 {
2808
2805
  z-index: 1;
2809
2806
  border-color: var(--color-border-warning);
2810
2807
  color: var(--color-text-warning) !important;
2811
2808
  background-color: var(--color-background-warning);
2812
2809
  }
2813
- ._inputWarning_17xnf_23:hover {
2810
+ ._inputWarning_12x0j_23:hover {
2814
2811
  border-color: var(--color-border-warning-hover) !important;
2815
2812
  }
2816
- ._inputWarning_17xnf_23:focus {
2813
+ ._inputWarning_12x0j_23:focus {
2817
2814
  position: relative;
2818
2815
  outline: none !important;
2819
2816
  border-color: var(--color-border-focus) !important;
2820
2817
  box-shadow: var(--shadow-focus);
2821
2818
  z-index: 3;
2822
2819
  }
2823
- ._inputDisabled_17xnf_58 {
2820
+ ._inputDisabled_12x0j_58 {
2824
2821
  pointer-events: none;
2825
2822
  background-color: var(--color-background-disabled);
2826
2823
  color: var(--color-text-muted);
2827
2824
  box-shadow: none;
2828
2825
  }
2829
- ._hideScrollbars_17xnf_64 {
2826
+ ._hideScrollbars_12x0j_64 {
2830
2827
  /* Firefox */
2831
2828
  scrollbar-width: none;
2832
2829
  /* IE 10+ */
2833
2830
  -ms-overflow-style: none;
2834
2831
  /* Chrome, Safari and Opera */
2835
2832
  }
2836
- ._hideScrollbars_17xnf_64::-webkit-scrollbar {
2833
+ ._hideScrollbars_12x0j_64::-webkit-scrollbar {
2837
2834
  display: none;
2838
2835
  }
2839
2836
  :root {
@@ -2842,7 +2839,7 @@ html[data-theme='dark'] {
2842
2839
  html[data-theme='dark'] {
2843
2840
  --color-border-message: transparent;
2844
2841
  }
2845
- ._container_17xnf_80 {
2842
+ ._container_12x0j_80 {
2846
2843
  padding: var(--padding-card);
2847
2844
  border-radius: var(--border-radius);
2848
2845
  display: inline-flex;
@@ -2857,40 +2854,40 @@ html[data-theme='dark'] {
2857
2854
  -ms-overflow-style: none;
2858
2855
  /* Chrome, Safari and Opera */
2859
2856
  }
2860
- ._container_17xnf_80::-webkit-scrollbar {
2857
+ ._container_12x0j_80::-webkit-scrollbar {
2861
2858
  display: none;
2862
2859
  }
2863
- ._container_17xnf_80._block_17xnf_98 {
2860
+ ._container_12x0j_80._block_12x0j_98 {
2864
2861
  display: flex;
2865
2862
  }
2866
- ._container_17xnf_80._info_17xnf_101 {
2863
+ ._container_12x0j_80._info_12x0j_101 {
2867
2864
  color: var(--color-text-info);
2868
2865
  background-color: var(--color-background-info);
2869
2866
  }
2870
- ._container_17xnf_80._success_17xnf_105 {
2867
+ ._container_12x0j_80._success_12x0j_105 {
2871
2868
  color: var(--color-text-success);
2872
2869
  background-color: var(--color-background-success);
2873
2870
  }
2874
- ._container_17xnf_80._warning_17xnf_109 {
2871
+ ._container_12x0j_80._warning_12x0j_109 {
2875
2872
  color: var(--color-text-warning);
2876
2873
  background-color: var(--color-background-warning);
2877
2874
  }
2878
- ._container_17xnf_80._error_17xnf_113 {
2875
+ ._container_12x0j_80._error_12x0j_113 {
2879
2876
  color: var(--color-text-error);
2880
2877
  background-color: var(--color-background-error);
2881
2878
  }
2882
- ._content_17xnf_117 {
2879
+ ._content_12x0j_117 {
2883
2880
  flex: 1;
2884
2881
  min-width: 0;
2885
2882
  }
2886
- ._heading_17xnf_121 {
2883
+ ._heading_12x0j_121 {
2887
2884
  font-weight: bold;
2888
2885
  letter-spacing: 0.1em;
2889
2886
  text-transform: uppercase;
2890
2887
  font-size: var(--font-size-sm);
2891
2888
  line-height: var(--line-height);
2892
2889
  }
2893
- ._icon_17xnf_128 {
2890
+ ._icon_12x0j_128 {
2894
2891
  display: flex;
2895
2892
  justify-content: center;
2896
2893
  align-items: center;
@@ -2898,38 +2895,39 @@ html[data-theme='dark'] {
2898
2895
  margin-right: 12px;
2899
2896
  margin-top: -2px;
2900
2897
  }
2901
- ._dismiss_17xnf_136 {
2898
+ ._dismiss_12x0j_136 {
2902
2899
  margin-left: 12px;
2903
2900
  color: var(--color-text);
2904
2901
  }
2905
- ._dismiss_17xnf_136._absolute_17xnf_140 {
2902
+ ._dismiss_12x0j_136._absolute_12x0j_140 {
2906
2903
  position: absolute;
2907
- top: 10px;
2908
- right: 14px;
2904
+ top: var(--spacing-xs);
2905
+ right: var(--spacing-sm);
2909
2906
  }
2910
- ._dismiss_17xnf_136 {
2907
+ ._dismiss_12x0j_136 {
2911
2908
  margin-top: -2px;
2912
2909
  margin-right: -6px;
2913
2910
  }
2914
- ._legendToggle_17xnf_149 {
2911
+ ._legendToggle_12x0j_149 {
2915
2912
  opacity: 0.6;
2916
2913
  }
2917
- ._legendToggle_17xnf_149:hover {
2914
+ ._legendToggle_12x0j_149:hover {
2918
2915
  opacity: 0.8;
2919
2916
  cursor: pointer;
2920
2917
  }
2921
- ._legendToggle_17xnf_149:active {
2918
+ ._legendToggle_12x0j_149:active {
2922
2919
  opacity: 1;
2923
2920
  }
2924
- ._detailsText_17xnf_159 {
2921
+ ._detailsText_12x0j_159 {
2925
2922
  margin-top: var(--spacing);
2926
2923
  word-break: break-word;
2927
2924
  }
2928
- ._footer_17xnf_163 {
2925
+ ._footer_12x0j_163 {
2929
2926
  display: flex;
2930
2927
  flex-wrap: wrap;
2931
- gap: 8px;
2932
- margin-top: 8px;
2928
+ gap: var(--spacing-sm);
2929
+ margin-top: var(--spacing-xs);
2930
+ margin-bottom: var(--spacing-2xs);
2933
2931
  }
2934
2932
  ._wrapper_ijw69_1 {
2935
2933
  z-index: var(--zindex-modal);
@@ -3230,10 +3228,10 @@ html[data-theme='dark'] {
3230
3228
  border-top-left-radius: 0 !important;
3231
3229
  border-bottom-left-radius: 0 !important;
3232
3230
  }
3233
- ._layerContainer_siwvj_1 {
3231
+ ._layerContainer_1p0ji_1 {
3234
3232
  z-index: var(--zindex-dropdown);
3235
3233
  }
3236
- ._layer_siwvj_1 {
3234
+ ._layer_1p0ji_1 {
3237
3235
  border: 1px solid var(--color-border);
3238
3236
  border-radius: var(--border-radius);
3239
3237
  overflow: hidden;
@@ -3243,31 +3241,31 @@ html[data-theme='dark'] {
3243
3241
  position: relative;
3244
3242
  font-size: var(--font-size);
3245
3243
  }
3246
- ._layer_siwvj_1 ul {
3244
+ ._layer_1p0ji_1 ul {
3247
3245
  margin: 0;
3248
3246
  padding: 0;
3249
3247
  list-style-type: none;
3250
3248
  }
3251
- ._layer_siwvj_1 ul li {
3249
+ ._layer_1p0ji_1 ul li {
3252
3250
  list-style: none;
3253
3251
  display: block;
3254
3252
  }
3255
- ._layer_siwvj_1._small_siwvj_23 {
3253
+ ._layer_1p0ji_1._small_1p0ji_23 {
3256
3254
  font-size: var(--font-size-sm);
3257
3255
  }
3258
- ._heading_siwvj_26,
3259
- ._option_siwvj_27,
3260
- ._message_siwvj_28 {
3256
+ ._heading_1p0ji_26,
3257
+ ._option_1p0ji_27,
3258
+ ._message_1p0ji_28 {
3261
3259
  padding: var(--padding-input);
3262
3260
  padding-right: 0;
3263
3261
  }
3264
- ._small_siwvj_23 ._heading_siwvj_26,
3265
- ._small_siwvj_23 ._option_siwvj_27,
3266
- ._small_siwvj_23 ._message_siwvj_28 {
3262
+ ._small_1p0ji_23 ._heading_1p0ji_26,
3263
+ ._small_1p0ji_23 ._option_1p0ji_27,
3264
+ ._small_1p0ji_23 ._message_1p0ji_28 {
3267
3265
  padding: var(--padding-input-sm);
3268
3266
  padding-right: 0;
3269
3267
  }
3270
- ._heading_siwvj_26 {
3268
+ ._heading_1p0ji_26 {
3271
3269
  color: var(--color-text-muted);
3272
3270
  letter-spacing: 0.1em;
3273
3271
  text-transform: uppercase;
@@ -3278,13 +3276,13 @@ html[data-theme='dark'] {
3278
3276
  text-overflow: ellipsis;
3279
3277
  white-space: nowrap;
3280
3278
  }
3281
- ._small_siwvj_23 ._heading_siwvj_26 {
3279
+ ._small_1p0ji_23 ._heading_1p0ji_26 {
3282
3280
  font-size: var(--font-size-xs);
3283
3281
  }
3284
- ._message_siwvj_28 {
3282
+ ._message_1p0ji_28 {
3285
3283
  color: var(--color-text-faint);
3286
3284
  }
3287
- ._option_siwvj_27 {
3285
+ ._option_1p0ji_27 {
3288
3286
  line-height: var(--line-height);
3289
3287
  display: flex;
3290
3288
  align-items: center;
@@ -3293,20 +3291,20 @@ html[data-theme='dark'] {
3293
3291
  height: 100%;
3294
3292
  cursor: pointer;
3295
3293
  }
3296
- ._option_siwvj_27._focused_siwvj_64,
3297
- ._option_siwvj_27:hover {
3294
+ ._option_1p0ji_27._focused_1p0ji_64,
3295
+ ._option_1p0ji_27:hover {
3298
3296
  background-color: var(--color-background-listitem-hover);
3299
3297
  }
3300
- ._option_siwvj_27._selected_siwvj_68 {
3298
+ ._option_1p0ji_27._selected_1p0ji_68 {
3301
3299
  background-color: var(--color-background-listitem-active);
3302
3300
  }
3303
- ._option_siwvj_27._disabled_siwvj_71 {
3301
+ ._option_1p0ji_27._disabled_1p0ji_71 {
3304
3302
  opacity: 0.2;
3305
3303
  cursor: inherit;
3306
3304
  }
3307
- ._option_siwvj_27 ._check_siwvj_75 {
3305
+ ._option_1p0ji_27 ._check_1p0ji_75 {
3308
3306
  color: var(--color-text-primary);
3309
- font-size: var(--font-size-xs);
3307
+ font-size: var(--font-size);
3310
3308
  width: var(--size);
3311
3309
  height: var(--size);
3312
3310
  display: flex;
@@ -3314,112 +3312,112 @@ html[data-theme='dark'] {
3314
3312
  align-items: center;
3315
3313
  flex-shrink: 0;
3316
3314
  }
3317
- ._small_siwvj_23 ._option_siwvj_27 ._check_siwvj_75 {
3315
+ ._small_1p0ji_23 ._option_1p0ji_27 ._check_1p0ji_75 {
3318
3316
  width: var(--size-sm);
3319
3317
  height: var(--size-sm);
3320
3318
  }
3321
- ._option_siwvj_27 ._check_siwvj_75 svg {
3319
+ ._option_1p0ji_27 ._check_1p0ji_75 svg {
3322
3320
  display: block;
3323
3321
  }
3324
- ._option_siwvj_27 ._optionContent_siwvj_92 {
3322
+ ._option_1p0ji_27 ._optionContent_1p0ji_92 {
3325
3323
  flex-wrap: wrap;
3326
3324
  margin-right: auto;
3327
3325
  overflow: hidden;
3328
3326
  }
3329
- ._option_siwvj_27 ._optionContent_siwvj_92 ._label_siwvj_97 {
3327
+ ._option_1p0ji_27 ._optionContent_1p0ji_92 ._label_1p0ji_97 {
3330
3328
  max-width: 100%;
3331
3329
  display: block;
3332
3330
  overflow: hidden;
3333
3331
  text-overflow: ellipsis;
3334
3332
  white-space: nowrap;
3335
3333
  }
3336
- ._option_siwvj_27 ._optionContent_siwvj_92 ._icon_siwvj_104 {
3337
- margin-left: 8px;
3334
+ ._option_1p0ji_27 ._optionContent_1p0ji_92 ._icon_1p0ji_104 {
3335
+ margin-left: var(--spacing-xs);
3338
3336
  line-height: 0;
3339
3337
  }
3340
- ._details_siwvj_108 {
3338
+ ._details_1p0ji_108 {
3341
3339
  float: right;
3342
3340
  display: inline;
3343
3341
  white-space: nowrap;
3344
3342
  }
3345
- ._inputInTable_knwss_1 {
3343
+ ._inputInTable_1nafn_1 {
3346
3344
  background-color: transparent;
3347
3345
  border-radius: inherit !important;
3348
3346
  height: var(--size);
3349
3347
  min-height: 100%;
3350
3348
  }
3351
- ._inputInTable_knwss_1:not(:hover) {
3349
+ ._inputInTable_1nafn_1:not(:hover) {
3352
3350
  border-color: transparent;
3353
3351
  }
3354
- ._inputHover_knwss_10 {
3352
+ ._inputHover_1nafn_10 {
3355
3353
  position: relative;
3356
3354
  border-color: var(--color-border-hover);
3357
3355
  z-index: 2;
3358
3356
  }
3359
- ._inputFocus_knwss_15 {
3357
+ ._inputFocus_1nafn_15 {
3360
3358
  position: relative;
3361
3359
  outline: none !important;
3362
3360
  border-color: var(--color-border-focus) !important;
3363
3361
  box-shadow: var(--shadow-focus);
3364
3362
  z-index: 3;
3365
3363
  }
3366
- ._inputError_knwss_22,
3367
- ._inputWarning_knwss_23 {
3364
+ ._inputError_1nafn_22,
3365
+ ._inputWarning_1nafn_23 {
3368
3366
  position: relative;
3369
3367
  }
3370
- ._inputError_knwss_22 {
3368
+ ._inputError_1nafn_22 {
3371
3369
  z-index: 2;
3372
3370
  border-color: var(--color-border-error);
3373
3371
  color: var(--color-text-error) !important;
3374
3372
  background-color: var(--color-background-error);
3375
3373
  }
3376
- ._inputError_knwss_22:hover {
3374
+ ._inputError_1nafn_22:hover {
3377
3375
  border-color: var(--color-border-error-hover) !important;
3378
3376
  }
3379
- ._inputError_knwss_22:focus {
3377
+ ._inputError_1nafn_22:focus {
3380
3378
  position: relative;
3381
3379
  outline: none !important;
3382
3380
  border-color: var(--color-border-focus) !important;
3383
3381
  box-shadow: var(--shadow-focus);
3384
3382
  z-index: 3;
3385
3383
  }
3386
- ._inputWarning_knwss_23 {
3384
+ ._inputWarning_1nafn_23 {
3387
3385
  z-index: 1;
3388
3386
  border-color: var(--color-border-warning);
3389
3387
  color: var(--color-text-warning) !important;
3390
3388
  background-color: var(--color-background-warning);
3391
3389
  }
3392
- ._inputWarning_knwss_23:hover {
3390
+ ._inputWarning_1nafn_23:hover {
3393
3391
  border-color: var(--color-border-warning-hover) !important;
3394
3392
  }
3395
- ._inputWarning_knwss_23:focus {
3393
+ ._inputWarning_1nafn_23:focus {
3396
3394
  position: relative;
3397
3395
  outline: none !important;
3398
3396
  border-color: var(--color-border-focus) !important;
3399
3397
  box-shadow: var(--shadow-focus);
3400
3398
  z-index: 3;
3401
3399
  }
3402
- ._inputDisabled_knwss_58 {
3400
+ ._inputDisabled_1nafn_58 {
3403
3401
  pointer-events: none;
3404
3402
  background-color: var(--color-background-disabled);
3405
3403
  color: var(--color-text-muted);
3406
3404
  box-shadow: none;
3407
3405
  }
3408
- ._hideScrollbars_knwss_64 {
3406
+ ._hideScrollbars_1nafn_64 {
3409
3407
  /* Firefox */
3410
3408
  scrollbar-width: none;
3411
3409
  /* IE 10+ */
3412
3410
  -ms-overflow-style: none;
3413
3411
  /* Chrome, Safari and Opera */
3414
3412
  }
3415
- ._hideScrollbars_knwss_64::-webkit-scrollbar {
3413
+ ._hideScrollbars_1nafn_64::-webkit-scrollbar {
3416
3414
  display: none;
3417
3415
  }
3418
3416
  :root {
3419
3417
  --size-select-icon: calc(var(--size) / 2);
3420
3418
  --size-select-icon-sm: calc(var(--size-sm) / 2);
3421
3419
  }
3422
- ._trigger_knwss_78 {
3420
+ ._trigger_1nafn_78 {
3423
3421
  font-weight: normal;
3424
3422
  display: flex;
3425
3423
  align-items: center;
@@ -3431,85 +3429,85 @@ html[data-theme='dark'] {
3431
3429
  padding-left: var(--padding-input-x);
3432
3430
  box-shadow: var(--shadow-button);
3433
3431
  }
3434
- ._trigger_knwss_78 input {
3432
+ ._trigger_1nafn_78 input {
3435
3433
  border: none !important;
3436
3434
  background: transparent !important;
3437
3435
  }
3438
- ._trigger_knwss_78._isInTable_knwss_94 {
3436
+ ._trigger_1nafn_78._isInTable_1nafn_94 {
3439
3437
  background-color: transparent;
3440
3438
  border-radius: inherit !important;
3441
3439
  height: var(--size);
3442
3440
  min-height: 100%;
3443
3441
  }
3444
- ._trigger_knwss_78._isInTable_knwss_94:not(:hover) {
3442
+ ._trigger_1nafn_78._isInTable_1nafn_94:not(:hover) {
3445
3443
  border-color: transparent;
3446
3444
  }
3447
- ._trigger_knwss_78._isInTable_knwss_94 ._input_knwss_1 {
3445
+ ._trigger_1nafn_78._isInTable_1nafn_94 ._input_1nafn_1 {
3448
3446
  background: transparent !important;
3449
3447
  }
3450
- ._trigger_knwss_78:hover {
3448
+ ._trigger_1nafn_78:hover {
3451
3449
  position: relative;
3452
3450
  border-color: var(--color-border-hover);
3453
3451
  z-index: 2;
3454
3452
  cursor: pointer;
3455
3453
  }
3456
- ._trigger_knwss_78._isOpen_knwss_112,
3457
- ._trigger_knwss_78:focus {
3454
+ ._trigger_1nafn_78._isOpen_1nafn_112,
3455
+ ._trigger_1nafn_78:focus {
3458
3456
  position: relative;
3459
3457
  outline: none !important;
3460
3458
  border-color: var(--color-border-focus) !important;
3461
3459
  box-shadow: var(--shadow-focus);
3462
3460
  z-index: 3;
3463
3461
  }
3464
- ._trigger_knwss_78._error_knwss_120 {
3462
+ ._trigger_1nafn_78._error_1nafn_120 {
3465
3463
  position: relative;
3466
3464
  z-index: 2;
3467
3465
  border-color: var(--color-border-error);
3468
3466
  color: var(--color-text-error) !important;
3469
3467
  background-color: var(--color-background-error);
3470
3468
  }
3471
- ._trigger_knwss_78._error_knwss_120:hover {
3469
+ ._trigger_1nafn_78._error_1nafn_120:hover {
3472
3470
  border-color: var(--color-border-error-hover) !important;
3473
3471
  }
3474
- ._trigger_knwss_78._error_knwss_120:focus {
3472
+ ._trigger_1nafn_78._error_1nafn_120:focus {
3475
3473
  position: relative;
3476
3474
  outline: none !important;
3477
3475
  border-color: var(--color-border-focus) !important;
3478
3476
  box-shadow: var(--shadow-focus);
3479
3477
  z-index: 3;
3480
3478
  }
3481
- ._trigger_knwss_78._warning_knwss_137 {
3479
+ ._trigger_1nafn_78._warning_1nafn_137 {
3482
3480
  position: relative;
3483
3481
  z-index: 1;
3484
3482
  border-color: var(--color-border-warning);
3485
3483
  color: var(--color-text-warning) !important;
3486
3484
  background-color: var(--color-background-warning);
3487
3485
  }
3488
- ._trigger_knwss_78._warning_knwss_137:hover {
3486
+ ._trigger_1nafn_78._warning_1nafn_137:hover {
3489
3487
  border-color: var(--color-border-warning-hover) !important;
3490
3488
  }
3491
- ._trigger_knwss_78._warning_knwss_137:focus {
3489
+ ._trigger_1nafn_78._warning_1nafn_137:focus {
3492
3490
  position: relative;
3493
3491
  outline: none !important;
3494
3492
  border-color: var(--color-border-focus) !important;
3495
3493
  box-shadow: var(--shadow-focus);
3496
3494
  z-index: 3;
3497
3495
  }
3498
- ._trigger_knwss_78._disabled_knwss_154 {
3496
+ ._trigger_1nafn_78._disabled_1nafn_154 {
3499
3497
  pointer-events: none;
3500
3498
  background-color: var(--color-background-disabled);
3501
3499
  color: var(--color-text-muted);
3502
3500
  box-shadow: none;
3503
3501
  }
3504
- ._icons_knwss_160 {
3502
+ ._icons_1nafn_160 {
3505
3503
  display: flex;
3506
3504
  flex-wrap: nowrap;
3507
3505
  flex-shrink: 0;
3508
3506
  position: relative;
3509
3507
  z-index: 2;
3510
3508
  }
3511
- ._icons_knwss_160 ._clearAll_knwss_167,
3512
- ._icons_knwss_160 ._iconOpen_knwss_168 {
3509
+ ._icons_1nafn_160 ._clearAll_1nafn_167,
3510
+ ._icons_1nafn_160 ._iconOpen_1nafn_168 {
3513
3511
  font-size: var(--size-select-icon);
3514
3512
  width: var(--size);
3515
3513
  height: var(--size);
@@ -3518,16 +3516,16 @@ html[data-theme='dark'] {
3518
3516
  align-items: center;
3519
3517
  color: var(--color-text);
3520
3518
  }
3521
- ._small_knwss_177 ._icons_knwss_160 ._clearAll_knwss_167,
3522
- ._small_knwss_177 ._icons_knwss_160 ._iconOpen_knwss_168 {
3519
+ ._small_1nafn_177 ._icons_1nafn_160 ._clearAll_1nafn_167,
3520
+ ._small_1nafn_177 ._icons_1nafn_160 ._iconOpen_1nafn_168 {
3523
3521
  font-size: var(--size-select-icon-sm);
3524
3522
  width: var(--size-sm);
3525
3523
  height: var(--size-sm);
3526
3524
  }
3527
- ._icons_knwss_160 ._clearAll_knwss_167:hover {
3525
+ ._icons_1nafn_160 ._clearAll_1nafn_167:hover {
3528
3526
  color: var(--color-text-primary);
3529
3527
  }
3530
- ._triggerInputContainer_knwss_186 {
3528
+ ._triggerInputContainer_1nafn_186 {
3531
3529
  display: flex;
3532
3530
  align-items: center;
3533
3531
  position: relative;
@@ -3536,31 +3534,31 @@ html[data-theme='dark'] {
3536
3534
  min-width: 0;
3537
3535
  margin-right: 4px;
3538
3536
  }
3539
- ._right_knwss_195 ._triggerInputContainer_knwss_186 {
3537
+ ._right_1nafn_195 ._triggerInputContainer_1nafn_186 {
3540
3538
  justify-content: flex-end;
3541
3539
  text-align: right;
3542
3540
  }
3543
- ._right_knwss_195 ._triggerInputContainer_knwss_186 input {
3541
+ ._right_1nafn_195 ._triggerInputContainer_1nafn_186 input {
3544
3542
  padding-right: 0;
3545
3543
  padding-left: 0;
3546
3544
  text-align: right;
3547
3545
  width: 0;
3548
3546
  }
3549
- ._right_knwss_195 ._triggerInputContainer_knwss_186 input:focus {
3547
+ ._right_1nafn_195 ._triggerInputContainer_1nafn_186 input:focus {
3550
3548
  width: auto;
3551
3549
  }
3552
- ._multiOptions_knwss_208 {
3550
+ ._multiOptions_1nafn_208 {
3553
3551
  display: flex;
3554
3552
  overflow: hidden;
3555
3553
  margin-left: -8px;
3556
3554
  }
3557
- ._small_knwss_177 ._multiOptions_knwss_208 {
3555
+ ._small_1nafn_177 ._multiOptions_1nafn_208 {
3558
3556
  margin-left: -5px;
3559
3557
  }
3560
- ._multiOptions_knwss_208:empty {
3558
+ ._multiOptions_1nafn_208:empty {
3561
3559
  display: none !important;
3562
3560
  }
3563
- ._multiOptions_knwss_208 ._multiOption_knwss_208 {
3561
+ ._multiOptions_1nafn_208 ._multiOption_1nafn_208 {
3564
3562
  user-select: none;
3565
3563
  pointer-events: none;
3566
3564
  display: inline-flex;
@@ -3577,30 +3575,30 @@ html[data-theme='dark'] {
3577
3575
  flex-shrink: 0;
3578
3576
  margin-right: 2px;
3579
3577
  }
3580
- ._small_knwss_177 ._multiOptions_knwss_208 ._multiOption_knwss_208 {
3578
+ ._small_1nafn_177 ._multiOptions_1nafn_208 ._multiOption_1nafn_208 {
3581
3579
  height: var(--size-xs);
3582
3580
  padding: 0 3px;
3583
3581
  }
3584
- ._multiOptions_knwss_208 ._multiOption_knwss_208 ._label_knwss_240 {
3582
+ ._multiOptions_1nafn_208 ._multiOption_1nafn_208 ._label_1nafn_240 {
3585
3583
  white-space: nowrap;
3586
3584
  }
3587
- ._multiOptions_knwss_208 ._multiOption_knwss_208 ._closeMultiOption_knwss_243 {
3585
+ ._multiOptions_1nafn_208 ._multiOption_1nafn_208 ._closeMultiOption_1nafn_243 {
3588
3586
  flex-shrink: 0;
3589
3587
  display: flex;
3590
3588
  align-items: center;
3591
3589
  justify-content: center;
3592
3590
  height: 100%;
3593
- width: 24px;
3591
+ width: var(--size-sm);
3594
3592
  opacity: 0.25;
3595
3593
  aspect-ratio: 1;
3596
3594
  }
3597
- ._multiOptions_knwss_208 ._multiOption_knwss_208 ._closeMultiOption_knwss_243:hover,
3598
- ._multiOptions_knwss_208 ._multiOption_knwss_208 ._closeMultiOption_knwss_243._focus_knwss_254 {
3595
+ ._multiOptions_1nafn_208 ._multiOption_1nafn_208 ._closeMultiOption_1nafn_243:hover,
3596
+ ._multiOptions_1nafn_208 ._multiOption_1nafn_208 ._closeMultiOption_1nafn_243._focus_1nafn_254 {
3599
3597
  opacity: 1;
3600
3598
  outline: 0;
3601
3599
  }
3602
- ._selectedSingleValue_knwss_258,
3603
- ._placeHolder_knwss_259 {
3600
+ ._selectedSingleValue_1nafn_258,
3601
+ ._placeHolder_1nafn_259 {
3604
3602
  line-height: calc(var(--size) - 2px);
3605
3603
  right: 0;
3606
3604
  left: 0;
@@ -3610,10 +3608,10 @@ html[data-theme='dark'] {
3610
3608
  display: block;
3611
3609
  position: absolute;
3612
3610
  }
3613
- ._placeHolder_knwss_259 {
3611
+ ._placeHolder_1nafn_259 {
3614
3612
  color: var(--color-text-placeholder);
3615
3613
  }
3616
- ._input_knwss_1 {
3614
+ ._input_1nafn_1 {
3617
3615
  font-family: var(--font-family);
3618
3616
  background-color: transparent;
3619
3617
  border: none;
@@ -3621,43 +3619,43 @@ html[data-theme='dark'] {
3621
3619
  padding: 0;
3622
3620
  width: 0;
3623
3621
  }
3624
- ._input_knwss_1._error_knwss_120 {
3622
+ ._input_1nafn_1._error_1nafn_120 {
3625
3623
  color: var(--color-text-error) !important;
3626
3624
  }
3627
- ._input_knwss_1:focus {
3625
+ ._input_1nafn_1:focus {
3628
3626
  outline: none;
3629
3627
  width: auto;
3630
3628
  }
3631
- ._small_knwss_177 {
3629
+ ._small_1nafn_177 {
3632
3630
  height: var(--size-sm);
3633
3631
  font-size: var(--font-size-sm);
3634
3632
  padding-left: var(--padding-input-sm-x);
3635
3633
  }
3636
- ._small_knwss_177 ._selectedSingleValue_knwss_258,
3637
- ._small_knwss_177 ._placeHolder_knwss_259,
3638
- ._small_knwss_177 ._input_knwss_1 {
3634
+ ._small_1nafn_177 ._selectedSingleValue_1nafn_258,
3635
+ ._small_1nafn_177 ._placeHolder_1nafn_259,
3636
+ ._small_1nafn_177 ._input_1nafn_1 {
3639
3637
  height: calc(var(--size-sm) - 2px);
3640
3638
  line-height: calc(var(--size-sm) - 2px);
3641
3639
  }
3642
- ._groupOrderFirst_knwss_298,
3643
- ._groupOrderMiddle_knwss_299 {
3640
+ ._groupOrderFirst_1nafn_298,
3641
+ ._groupOrderMiddle_1nafn_299 {
3644
3642
  border-top-right-radius: 0 !important;
3645
3643
  border-bottom-right-radius: 0 !important;
3646
3644
  }
3647
- ._groupOrderLast_knwss_303,
3648
- ._groupOrderMiddle_knwss_299 {
3645
+ ._groupOrderLast_1nafn_303,
3646
+ ._groupOrderMiddle_1nafn_299 {
3649
3647
  border-top-left-radius: 0 !important;
3650
3648
  border-bottom-left-radius: 0 !important;
3651
3649
  }
3652
- ._detailedLabel_knwss_308 {
3650
+ ._detailedLabel_1nafn_308 {
3653
3651
  width: 100%;
3654
3652
  }
3655
- ._detailedLabel_knwss_308 :first-child {
3653
+ ._detailedLabel_1nafn_308 :first-child {
3656
3654
  float: left;
3657
3655
  position: absolute;
3658
3656
  padding-right: 5px;
3659
3657
  }
3660
- ._detailedLabel_knwss_308 :last-child {
3658
+ ._detailedLabel_1nafn_308 :last-child {
3661
3659
  float: right;
3662
3660
  }
3663
3661
  ._paginationContainer_1tmz4_1 {
@@ -3745,18 +3743,19 @@ html[data-theme='dark'] {
3745
3743
  font-weight: bold;
3746
3744
  z-index: 1;
3747
3745
  }
3748
- ._wrapper_1s098_1._inline_1s098_1 {
3746
+ ._wrapper_6mndi_1._inline_6mndi_1 {
3749
3747
  display: flex;
3750
3748
  align-items: center;
3751
3749
  }
3752
- ._wrapper_1s098_1._inline_1s098_1 ._radio_1s098_5:not(:last-child) {
3750
+ ._wrapper_6mndi_1._inline_6mndi_1 ._radio_6mndi_5:not(:last-child) {
3753
3751
  margin-right: var(--spacing);
3754
3752
  }
3755
- ._wrapper_1s098_1 ._labelMargin_1s098_8 {
3753
+ ._wrapper_6mndi_1 ._labelMargin_6mndi_8 {
3756
3754
  margin-right: 10px;
3757
3755
  }
3758
- ._radio_1s098_5 {
3759
- margin: calc((var(--size) - var(--size-checkbox)) / 2) 0;
3756
+ ._radio_6mndi_5 {
3757
+ --size-radio: var(--size-xs);
3758
+ margin: calc((var(--size) - var(--size-radio)) / 2) 0;
3760
3759
  position: relative;
3761
3760
  display: flex;
3762
3761
  align-items: center;
@@ -3764,91 +3763,92 @@ html[data-theme='dark'] {
3764
3763
  backface-visibility: hidden;
3765
3764
  vertical-align: baseline;
3766
3765
  font-style: normal;
3767
- min-height: var(--size-checkbox);
3766
+ min-height: var(--size-radio);
3768
3767
  font-size: var(--font-size);
3769
- line-height: var(--size-checkbox);
3770
- min-width: var(--size-checkbox);
3768
+ line-height: var(--size-radio);
3769
+ min-width: var(--size-radio);
3771
3770
  outline: 0px;
3772
3771
  }
3773
- ._radio_1s098_5._small_1s098_26 {
3774
- margin: calc((var(--size-sm) - var(--size-checkbox)) / 2) 0;
3772
+ ._radio_6mndi_5._small_6mndi_27 {
3773
+ --size-radio: calc(var(--size-xs) - 4px);
3774
+ margin: calc((var(--size-sm) - var(--size-radio)) / 2) 0;
3775
3775
  font-size: var(--font-size-sm);
3776
3776
  }
3777
- ._radio_1s098_5._noMargin_1s098_30 {
3777
+ ._radio_6mndi_5._noMargin_6mndi_32 {
3778
3778
  margin-top: 0;
3779
3779
  margin-bottom: 0;
3780
3780
  }
3781
- ._radio_1s098_5 input {
3781
+ ._radio_6mndi_5 input {
3782
3782
  cursor: pointer;
3783
3783
  position: absolute;
3784
3784
  top: 0;
3785
3785
  left: 0;
3786
3786
  opacity: 0 !important;
3787
3787
  outline: 0;
3788
- width: var(--size-checkbox);
3789
- height: var(--size-checkbox);
3788
+ width: var(--size-radio);
3789
+ height: var(--size-radio);
3790
3790
  z-index: -1;
3791
3791
  }
3792
- ._radio_1s098_5 label {
3792
+ ._radio_6mndi_5 label {
3793
3793
  cursor: pointer;
3794
3794
  position: relative;
3795
3795
  display: block;
3796
- padding-left: calc(var(--size-checkbox) + var(--spacing-xs));
3796
+ padding-left: calc(var(--size-radio) + var(--spacing-xs));
3797
3797
  outline: 0;
3798
3798
  color: var(--color-text);
3799
3799
  transition: color 0.1s ease;
3800
3800
  }
3801
- ._radio_1s098_5 label:before,
3802
- ._radio_1s098_5 label:after {
3801
+ ._radio_6mndi_5 label:before,
3802
+ ._radio_6mndi_5 label:after {
3803
3803
  content: '';
3804
3804
  position: absolute;
3805
3805
  top: 0;
3806
3806
  left: 0;
3807
- width: var(--size-checkbox);
3808
- height: var(--size-checkbox);
3809
- line-height: var(--size-checkbox);
3807
+ width: var(--size-radio);
3808
+ height: var(--size-radio);
3809
+ line-height: var(--size-radio);
3810
3810
  border-radius: 50%;
3811
3811
  transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
3812
3812
  }
3813
- ._radio_1s098_5 label:before {
3813
+ ._radio_6mndi_5 label:before {
3814
3814
  background: var(--color-background-input);
3815
3815
  border: 1px solid var(--color-border-checkbox);
3816
3816
  transform: none;
3817
3817
  }
3818
- ._radio_1s098_5 label:hover:before {
3818
+ ._radio_6mndi_5 label:hover:before {
3819
3819
  border-color: var(--color-border-hover);
3820
3820
  }
3821
- ._radio_1s098_5 label:after {
3821
+ ._radio_6mndi_5 label:after {
3822
3822
  border: none;
3823
3823
  transform: scale(0.46666667);
3824
3824
  background-color: white;
3825
3825
  box-shadow: var(--shadow-button);
3826
3826
  opacity: 0;
3827
3827
  }
3828
- ._radio_1s098_5 input:checked ~ label:before {
3828
+ ._radio_6mndi_5 input:checked ~ label:before {
3829
3829
  background-color: var(--color-background-primary);
3830
3830
  border-color: transparent;
3831
3831
  }
3832
- ._radio_1s098_5 input:checked ~ label:after {
3832
+ ._radio_6mndi_5 input:checked ~ label:after {
3833
3833
  opacity: 1;
3834
3834
  }
3835
- ._radio_1s098_5._disabled_1s098_88 {
3835
+ ._radio_6mndi_5._disabled_6mndi_90 {
3836
3836
  cursor: default;
3837
3837
  pointer-events: none;
3838
3838
  }
3839
- ._radio_1s098_5._disabled_1s098_88 label {
3839
+ ._radio_6mndi_5._disabled_6mndi_90 label {
3840
3840
  color: var(--color-text-muted);
3841
3841
  }
3842
- ._radio_1s098_5._disabled_1s098_88 label:before {
3842
+ ._radio_6mndi_5._disabled_6mndi_90 label:before {
3843
3843
  background-color: var(--color-background-disabled) !important;
3844
3844
  }
3845
- ._radio_1s098_5._disabled_1s098_88 input:checked ~ label:before {
3845
+ ._radio_6mndi_5._disabled_6mndi_90 input:checked ~ label:before {
3846
3846
  border-color: var(--color-border-checkbox);
3847
3847
  }
3848
- ._radio_1s098_5._disabled_1s098_88 input:checked ~ label:after {
3848
+ ._radio_6mndi_5._disabled_6mndi_90 input:checked ~ label:after {
3849
3849
  background-color: var(--color-border-checkbox);
3850
3850
  }
3851
- ._isInTable_1s098_104 {
3851
+ ._isInTable_6mndi_106 {
3852
3852
  margin: 0;
3853
3853
  position: relative;
3854
3854
  top: 1px;
@@ -8365,15 +8365,15 @@ button:active .remirror-menu-pane-shortcut,
8365
8365
  margin: 0;
8366
8366
  /* margin-bottom: var(--rmr-space-2); */
8367
8367
  }
8368
- ._richTextToolbar_1owpg_1 {
8369
- padding: 0 8px;
8368
+ ._richTextToolbar_vvcb9_1 {
8369
+ padding: 0 var(--spacing-xs);
8370
8370
  display: flex;
8371
- gap: 4px;
8371
+ gap: var(--spacing-2xs);
8372
8372
  }
8373
- ._richTextToolbarContainer_1owpg_6 {
8373
+ ._richTextToolbarContainer_vvcb9_6 {
8374
8374
  display: flex;
8375
8375
  justify-content: space-between;
8376
- padding: 8px 0;
8376
+ padding: var(--spacing-xs) 0;
8377
8377
  align-items: flex-end;
8378
8378
  }
8379
8379
  ._inputInTable_qsvki_1 {
@@ -9228,122 +9228,122 @@ tbody tr {
9228
9228
  justify-content: space-between;
9229
9229
  border-top: 1px solid var(--color-border-table);
9230
9230
  }
9231
- ._inputInTable_1av87_1 {
9231
+ ._inputInTable_meez6_1 {
9232
9232
  background-color: transparent;
9233
9233
  border-radius: inherit !important;
9234
9234
  height: var(--size);
9235
9235
  min-height: 100%;
9236
9236
  }
9237
- ._inputInTable_1av87_1:not(:hover) {
9237
+ ._inputInTable_meez6_1:not(:hover) {
9238
9238
  border-color: transparent;
9239
9239
  }
9240
- ._inputHover_1av87_10 {
9240
+ ._inputHover_meez6_10 {
9241
9241
  position: relative;
9242
9242
  border-color: var(--color-border-hover);
9243
9243
  z-index: 2;
9244
9244
  }
9245
- ._inputFocus_1av87_15 {
9245
+ ._inputFocus_meez6_15 {
9246
9246
  position: relative;
9247
9247
  outline: none !important;
9248
9248
  border-color: var(--color-border-focus) !important;
9249
9249
  box-shadow: var(--shadow-focus);
9250
9250
  z-index: 3;
9251
9251
  }
9252
- ._inputError_1av87_22,
9253
- ._inputWarning_1av87_23 {
9252
+ ._inputError_meez6_22,
9253
+ ._inputWarning_meez6_23 {
9254
9254
  position: relative;
9255
9255
  }
9256
- ._inputError_1av87_22 {
9256
+ ._inputError_meez6_22 {
9257
9257
  z-index: 2;
9258
9258
  border-color: var(--color-border-error);
9259
9259
  color: var(--color-text-error) !important;
9260
9260
  background-color: var(--color-background-error);
9261
9261
  }
9262
- ._inputError_1av87_22:hover {
9262
+ ._inputError_meez6_22:hover {
9263
9263
  border-color: var(--color-border-error-hover) !important;
9264
9264
  }
9265
- ._inputError_1av87_22:focus {
9265
+ ._inputError_meez6_22:focus {
9266
9266
  position: relative;
9267
9267
  outline: none !important;
9268
9268
  border-color: var(--color-border-focus) !important;
9269
9269
  box-shadow: var(--shadow-focus);
9270
9270
  z-index: 3;
9271
9271
  }
9272
- ._inputWarning_1av87_23 {
9272
+ ._inputWarning_meez6_23 {
9273
9273
  z-index: 1;
9274
9274
  border-color: var(--color-border-warning);
9275
9275
  color: var(--color-text-warning) !important;
9276
9276
  background-color: var(--color-background-warning);
9277
9277
  }
9278
- ._inputWarning_1av87_23:hover {
9278
+ ._inputWarning_meez6_23:hover {
9279
9279
  border-color: var(--color-border-warning-hover) !important;
9280
9280
  }
9281
- ._inputWarning_1av87_23:focus {
9281
+ ._inputWarning_meez6_23:focus {
9282
9282
  position: relative;
9283
9283
  outline: none !important;
9284
9284
  border-color: var(--color-border-focus) !important;
9285
9285
  box-shadow: var(--shadow-focus);
9286
9286
  z-index: 3;
9287
9287
  }
9288
- ._inputDisabled_1av87_58 {
9288
+ ._inputDisabled_meez6_58 {
9289
9289
  pointer-events: none;
9290
9290
  background-color: var(--color-background-disabled);
9291
9291
  color: var(--color-text-muted);
9292
9292
  box-shadow: none;
9293
9293
  }
9294
- ._hideScrollbars_1av87_64 {
9294
+ ._hideScrollbars_meez6_64 {
9295
9295
  /* Firefox */
9296
9296
  scrollbar-width: none;
9297
9297
  /* IE 10+ */
9298
9298
  -ms-overflow-style: none;
9299
9299
  /* Chrome, Safari and Opera */
9300
9300
  }
9301
- ._hideScrollbars_1av87_64::-webkit-scrollbar {
9301
+ ._hideScrollbars_meez6_64::-webkit-scrollbar {
9302
9302
  display: none;
9303
9303
  }
9304
- ._cell_1av87_74 a {
9304
+ ._cell_meez6_74 a {
9305
9305
  cursor: pointer;
9306
9306
  color: var(--color-text-primary);
9307
9307
  }
9308
- ._cell_1av87_74 a:hover {
9308
+ ._cell_meez6_74 a:hover {
9309
9309
  color: var(--color-text-primary-hover);
9310
9310
  }
9311
- ._cell_1av87_74 a:active {
9311
+ ._cell_meez6_74 a:active {
9312
9312
  color: var(--color-text-primary-active);
9313
9313
  }
9314
- ._cell_1av87_74 a._disabledLink_1av87_84 {
9314
+ ._cell_meez6_74 a._disabledLink_meez6_84 {
9315
9315
  color: var(--color-text-faint) !important;
9316
9316
  cursor: default !important;
9317
9317
  }
9318
- ._inputWrapper_1av87_88 {
9318
+ ._inputWrapper_meez6_88 {
9319
9319
  height: 100%;
9320
9320
  border-radius: inherit;
9321
9321
  }
9322
- ._inputWrapper_1av87_88 > span,
9323
- ._inputWrapper_1av87_88 > span > span,
9324
- ._inputWrapper_1av87_88 > span > span > div {
9322
+ ._inputWrapper_meez6_88 > span,
9323
+ ._inputWrapper_meez6_88 > span > span,
9324
+ ._inputWrapper_meez6_88 > span > span > div {
9325
9325
  height: 100%;
9326
9326
  border-radius: inherit;
9327
9327
  }
9328
- ._inputWrapper_1av87_88 > div,
9329
- ._inputWrapper_1av87_88 > div > span {
9328
+ ._inputWrapper_meez6_88 > div,
9329
+ ._inputWrapper_meez6_88 > div > span {
9330
9330
  height: 100%;
9331
9331
  border-radius: inherit;
9332
9332
  }
9333
- ._breakWord_1av87_103 {
9333
+ ._breakWord_meez6_103 {
9334
9334
  word-break: break-word;
9335
9335
  }
9336
- ._inputCell_1av87_106 {
9336
+ ._inputCell_meez6_106 {
9337
9337
  padding: 0 !important;
9338
9338
  }
9339
- ._sliderCell_1av87_109 {
9339
+ ._sliderCell_meez6_109 {
9340
9340
  padding-top: 0 !important;
9341
9341
  padding-bottom: 0 !important;
9342
9342
  }
9343
- ._staticCell_1av87_113 {
9343
+ ._staticCell_meez6_113 {
9344
9344
  padding: 0 !important;
9345
9345
  }
9346
- ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
9346
+ ._staticCell_meez6_113 ._staticCellContent_meez6_116 {
9347
9347
  min-height: 100%;
9348
9348
  padding: var(--padding-input);
9349
9349
  line-height: 17px;
@@ -9352,56 +9352,56 @@ tbody tr {
9352
9352
  display: flex;
9353
9353
  align-items: center;
9354
9354
  }
9355
- tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
9355
+ tbody ._staticCell_meez6_113 ._staticCellContent_meez6_116 {
9356
9356
  background-color: var(--color-background-disabled);
9357
9357
  color: var(--color-text-muted);
9358
9358
  }
9359
- ._staticCell_1av87_113 ._staticCellContent_1av87_116._error_1av87_129,
9360
- ._staticCell_1av87_113 ._staticCellContent_1av87_116._warning_1av87_130 {
9359
+ ._staticCell_meez6_113 ._staticCellContent_meez6_116._error_meez6_129,
9360
+ ._staticCell_meez6_113 ._staticCellContent_meez6_116._warning_meez6_130 {
9361
9361
  border: 1px solid transparent;
9362
9362
  }
9363
- ._staticCell_1av87_113 ._staticCellContent_1av87_116._error_1av87_129 {
9363
+ ._staticCell_meez6_113 ._staticCellContent_meez6_116._error_meez6_129 {
9364
9364
  background-color: var(--color-background-error);
9365
9365
  }
9366
- ._staticCell_1av87_113 ._staticCellContent_1av87_116._warning_1av87_130 {
9366
+ ._staticCell_meez6_113 ._staticCellContent_meez6_116._warning_meez6_130 {
9367
9367
  background-color: var(--color-background-warning);
9368
9368
  }
9369
- ._staticCell_1av87_113 ._staticCellContent_1av87_116._unit_1av87_139 {
9369
+ ._staticCell_meez6_113 ._staticCellContent_meez6_116._unit_meez6_139 {
9370
9370
  font-weight: normal;
9371
9371
  }
9372
- ._sortingCell_1av87_142 ._staticCellContent_1av87_116 {
9372
+ ._sortingCell_meez6_142 ._staticCellContent_meez6_116 {
9373
9373
  position: relative;
9374
9374
  padding-right: 45px !important;
9375
9375
  cursor: pointer !important;
9376
9376
  }
9377
- ._sortingCell_1av87_142 ._staticCellContent_1av87_116:hover {
9377
+ ._sortingCell_meez6_142 ._staticCellContent_meez6_116:hover {
9378
9378
  background-color: rgba(0, 0, 0, 0.05) !important;
9379
9379
  }
9380
- ._sortingCell_1av87_142 ._sortingCellIcon_1av87_150 {
9380
+ ._sortingCell_meez6_142 ._sortingCellIcon_meez6_150 {
9381
9381
  font-size: 1.25em;
9382
9382
  position: absolute;
9383
9383
  right: calc(var(--padding-input-x) - 4px);
9384
9384
  top: 50%;
9385
9385
  transform: translateY(-50%);
9386
9386
  }
9387
- ._icon_1av87_157 {
9387
+ ._icon_meez6_157 {
9388
9388
  display: inline-flex;
9389
- margin-left: 8px;
9389
+ margin-left: var(--spacing-xs);
9390
9390
  }
9391
- ._checkBoxCell_1av87_161 {
9391
+ ._checkBoxCell_meez6_161 {
9392
9392
  padding-block: 0 !important;
9393
9393
  width: var(--size);
9394
9394
  }
9395
- ._iconCell_1av87_165 {
9395
+ ._iconCell_meez6_165 {
9396
9396
  width: var(--size);
9397
9397
  text-align: center;
9398
9398
  padding: 0 !important;
9399
9399
  }
9400
- ._iconCell_1av87_165 ._iconWrapper_1av87_170 {
9400
+ ._iconCell_meez6_165 ._iconWrapper_meez6_170 {
9401
9401
  display: flex;
9402
9402
  justify-content: center;
9403
9403
  }
9404
- ._actionsCell_1av87_174 {
9404
+ ._actionsCell_meez6_174 {
9405
9405
  width: var(--size-sm);
9406
9406
  padding: 0 calc((var(--size) - var(--size-sm)) / 2) !important;
9407
9407
  position: sticky;
@@ -9409,25 +9409,25 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
9409
9409
  background: inherit;
9410
9410
  z-index: 4;
9411
9411
  }
9412
- ._rightAligned_1av87_182 {
9412
+ ._rightAligned_meez6_182 {
9413
9413
  text-align: right !important;
9414
9414
  }
9415
- ._rightAligned_1av87_182 ._staticCellContent_1av87_116 {
9415
+ ._rightAligned_meez6_182 ._staticCellContent_meez6_116 {
9416
9416
  justify-content: flex-end;
9417
9417
  }
9418
- ._centerAligned_1av87_188 {
9418
+ ._centerAligned_meez6_188 {
9419
9419
  text-align: center !important;
9420
9420
  }
9421
- ._centerAligned_1av87_188 ._staticCellContent_1av87_116 {
9421
+ ._centerAligned_meez6_188 ._staticCellContent_meez6_116 {
9422
9422
  justify-content: center;
9423
9423
  }
9424
- ._leftAligned_1av87_194 {
9424
+ ._leftAligned_meez6_194 {
9425
9425
  text-align: left !important;
9426
9426
  }
9427
- ._popover_1av87_197 {
9427
+ ._popover_meez6_197 {
9428
9428
  padding: var(--padding-input);
9429
9429
  }
9430
- ._disabledPointerEvents_1av87_200 {
9430
+ ._disabledPointerEvents_meez6_200 {
9431
9431
  pointer-events: none;
9432
9432
  }
9433
9433
  ._clickableRow_1sqxy_1 {
@@ -10393,7 +10393,8 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10393
10393
  --color-background-toggle: rgba(255, 255, 255, 0.2);
10394
10394
  --color-background-toggle-hover: rgba(255, 255, 255, 0.3);
10395
10395
  }
10396
- ._toggle_i5is1_9 {
10396
+ ._toggle_2zca0_9 {
10397
+ --size-toggle: var(--size-xs);
10397
10398
  position: relative;
10398
10399
  display: inline-flex;
10399
10400
  align-items: center;
@@ -10402,19 +10403,20 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10402
10403
  outline: 0;
10403
10404
  vertical-align: baseline;
10404
10405
  font-style: normal;
10405
- min-height: var(--size-checkbox);
10406
+ min-height: var(--size-toggle);
10406
10407
  font-size: inherit;
10407
- line-height: var(--size-checkbox);
10408
- min-width: var(--size-checkbox);
10409
- margin: calc((var(--size) - var(--size-checkbox)) / 2) 0;
10408
+ line-height: var(--size-toggle);
10409
+ min-width: var(--size-toggle);
10410
+ margin: calc((var(--size) - var(--size-toggle)) / 2) 0;
10410
10411
  }
10411
- ._toggle_i5is1_9._small_i5is1_24 {
10412
- margin: calc((var(--size-sm) - var(--size-checkbox)) / 2) 0;
10412
+ ._toggle_2zca0_9._small_2zca0_25 {
10413
+ --size-toggle: calc(var(--size-xs) - 4px);
10414
+ margin: calc((var(--size-sm) - var(--size-toggle)) / 2) 0;
10413
10415
  font-size: var(--font-size-sm);
10414
10416
  }
10415
- ._toggle_i5is1_9 input {
10416
- width: calc(var(--size-checkbox) * 2);
10417
- height: var(--size-checkbox);
10417
+ ._toggle_2zca0_9 input {
10418
+ width: calc(var(--size-toggle) * 2);
10419
+ height: var(--size-toggle);
10418
10420
  cursor: pointer;
10419
10421
  position: absolute;
10420
10422
  top: 0;
@@ -10429,36 +10431,36 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10429
10431
  line-height: 1.15;
10430
10432
  margin: 0;
10431
10433
  }
10432
- ._toggle_i5is1_9 label {
10433
- min-height: var(--size-checkbox);
10434
- padding-left: calc((var(--size-checkbox) * 2) + var(--spacing-xs));
10434
+ ._toggle_2zca0_9 label {
10435
+ min-height: var(--size-toggle);
10436
+ padding-left: calc((var(--size-toggle) * 2) + var(--spacing-xs));
10435
10437
  transition: color 0.1s ease;
10436
10438
  cursor: auto;
10437
10439
  position: relative;
10438
10440
  display: block;
10439
10441
  outline: 0;
10440
10442
  }
10441
- ._toggle_i5is1_9 label:before,
10442
- ._toggle_i5is1_9 label:after {
10443
+ ._toggle_2zca0_9 label:before,
10444
+ ._toggle_2zca0_9 label:after {
10443
10445
  display: block;
10444
10446
  position: absolute;
10445
10447
  content: '';
10446
10448
  }
10447
- ._toggle_i5is1_9 label:before {
10448
- height: var(--size-checkbox);
10449
- border-radius: calc(var(--size-checkbox) / 2);
10449
+ ._toggle_2zca0_9 label:before {
10450
+ height: var(--size-toggle);
10451
+ border-radius: calc(var(--size-toggle) / 2);
10450
10452
  z-index: 1;
10451
10453
  transform: none;
10452
10454
  background: var(--color-background-toggle);
10453
10455
  box-shadow: none;
10454
- width: calc(var(--size-checkbox) * 2);
10456
+ width: calc(var(--size-toggle) * 2);
10455
10457
  left: 0;
10456
10458
  top: 0;
10457
10459
  transition: background 0.3s ease, border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
10458
10460
  }
10459
- ._toggle_i5is1_9 label:after {
10460
- height: calc(var(--size-checkbox) - 4px);
10461
- width: calc(var(--size-checkbox) - 4px);
10461
+ ._toggle_2zca0_9 label:after {
10462
+ height: calc(var(--size-toggle) - 4px);
10463
+ width: calc(var(--size-toggle) - 4px);
10462
10464
  border-radius: 50%;
10463
10465
  left: 2px;
10464
10466
  top: 2px;
@@ -10468,31 +10470,31 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10468
10470
  z-index: 2;
10469
10471
  transition: background 0.3s ease, left 0.3s ease;
10470
10472
  }
10471
- ._toggle_i5is1_9 input:hover ~ label:before {
10473
+ ._toggle_2zca0_9 input:hover ~ label:before {
10472
10474
  background: var(--color-background-toggle-hover);
10473
10475
  }
10474
- ._toggle_i5is1_9 input:checked ~ label:before {
10476
+ ._toggle_2zca0_9 input:checked ~ label:before {
10475
10477
  border-color: rgba(34, 36, 38, 0.35);
10476
10478
  background-color: var(--color-background-button-primary);
10477
10479
  }
10478
- ._toggle_i5is1_9 input:checked ~ label:after {
10479
- left: calc(var(--size-checkbox) + 2px);
10480
+ ._toggle_2zca0_9 input:checked ~ label:after {
10481
+ left: calc(var(--size-toggle) + 2px);
10480
10482
  }
10481
- ._toggle_i5is1_9 input:checked:hover ~ label:before {
10483
+ ._toggle_2zca0_9 input:checked:hover ~ label:before {
10482
10484
  background-color: var(--color-background-button-primary-hover);
10483
10485
  }
10484
- ._toggle_i5is1_9._disabled_i5is1_97 {
10486
+ ._toggle_2zca0_9._disabled_2zca0_99 {
10485
10487
  cursor: default;
10486
10488
  pointer-events: none;
10487
10489
  color: var(--color-text-muted);
10488
10490
  }
10489
- ._toggle_i5is1_9._disabled_i5is1_97 label:before {
10491
+ ._toggle_2zca0_9._disabled_2zca0_99 label:before {
10490
10492
  background-color: var(--color-background-disabled);
10491
10493
  }
10492
- ._toggle_i5is1_9._disabled_i5is1_97 input:checked ~ label:before {
10494
+ ._toggle_2zca0_9._disabled_2zca0_99 input:checked ~ label:before {
10493
10495
  background-color: var(--color-text-faint);
10494
10496
  }
10495
- ._noMargin_i5is1_108 {
10497
+ ._noMargin_2zca0_110 {
10496
10498
  margin: 0;
10497
10499
  }
10498
10500
  :root {
@@ -10501,7 +10503,7 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10501
10503
  [data-theme='dark'] {
10502
10504
  --color-link-border-hover: var(--color-neutral-600);
10503
10505
  }
10504
- ._topbar_17khh_7 {
10506
+ ._topbar_1gz82_7 {
10505
10507
  top: 0;
10506
10508
  left: 0;
10507
10509
  z-index: var(--zindex-topbar);
@@ -10510,38 +10512,39 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10510
10512
  background: var(--color-background-raised);
10511
10513
  display: flex;
10512
10514
  }
10513
- ._topbar_17khh_7._fixed_17khh_16 {
10515
+ ._topbar_1gz82_7._fixed_1gz82_16 {
10514
10516
  position: fixed;
10515
10517
  }
10516
10518
  @media print {
10517
- ._topbar_17khh_7 {
10519
+ ._topbar_1gz82_7 {
10518
10520
  display: none !important;
10519
10521
  }
10520
10522
  }
10521
- ._icon_17khh_24 {
10523
+ ._appSwitcher_1gz82_24 {
10522
10524
  color: white;
10523
10525
  display: flex;
10524
10526
  align-items: center;
10525
10527
  justify-content: center;
10526
10528
  cursor: pointer;
10527
10529
  background-color: var(--color-neutral-700);
10530
+ aspect-ratio: 1;
10528
10531
  }
10529
- ._icon_17khh_24:hover {
10532
+ ._appSwitcher_1gz82_24:hover {
10530
10533
  background-color: var(--color-neutral-750);
10531
10534
  }
10532
- ._icon_17khh_24:active {
10535
+ ._appSwitcher_1gz82_24:active {
10533
10536
  background-color: var(--color-neutral-800);
10534
10537
  }
10535
- [data-theme='dark'] ._icon_17khh_24 {
10538
+ [data-theme='dark'] ._appSwitcher_1gz82_24 {
10536
10539
  background-color: var(--color-neutral-900);
10537
10540
  }
10538
- [data-theme='dark'] ._icon_17khh_24:hover {
10541
+ [data-theme='dark'] ._appSwitcher_1gz82_24:hover {
10539
10542
  background-color: var(--color-neutral-950);
10540
10543
  }
10541
- [data-theme='dark'] ._icon_17khh_24:active {
10544
+ [data-theme='dark'] ._appSwitcher_1gz82_24:active {
10542
10545
  background-color: var(--color-neutral-1000);
10543
10546
  }
10544
- ._title_17khh_47 {
10547
+ ._title_1gz82_48 {
10545
10548
  display: flex;
10546
10549
  align-items: center;
10547
10550
  justify-content: center;
@@ -10549,55 +10552,55 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10549
10552
  padding: 0;
10550
10553
  position: relative;
10551
10554
  }
10552
- ._title_17khh_47 img,
10553
- ._title_17khh_47 svg {
10555
+ ._title_1gz82_48 img,
10556
+ ._title_1gz82_48 svg {
10554
10557
  max-height: 28px;
10555
10558
  max-width: 300px;
10556
10559
  height: auto;
10557
10560
  width: auto;
10558
10561
  color: var(--color-text);
10559
10562
  }
10560
- ._title_17khh_47 ._logo_17khh_63 {
10563
+ ._title_1gz82_48 ._logo_1gz82_64 {
10561
10564
  display: flex;
10562
10565
  }
10563
- ._title_17khh_47 ._label_17khh_66 {
10566
+ ._title_1gz82_48 ._label_1gz82_67 {
10564
10567
  color: var(--color-text);
10565
10568
  white-space: nowrap;
10566
10569
  font-weight: bold;
10567
10570
  }
10568
- ._brand_17khh_71 {
10571
+ ._brand_1gz82_72 {
10569
10572
  padding: 0;
10570
10573
  position: relative;
10571
10574
  flex-shrink: 0;
10572
10575
  }
10573
- ._version_17khh_76 {
10576
+ ._version_1gz82_77 {
10574
10577
  line-height: 1;
10575
10578
  position: absolute;
10576
10579
  right: 0;
10577
10580
  bottom: 100%;
10578
10581
  font-size: var(--font-size-xs);
10579
10582
  }
10580
- ._left_17khh_83,
10581
- ._right_17khh_84 {
10583
+ ._left_1gz82_84,
10584
+ ._right_1gz82_85 {
10582
10585
  display: flex;
10583
10586
  min-width: 0;
10584
10587
  }
10585
- ._left_17khh_83 {
10586
- gap: var(--spacing);
10587
- padding-left: var(--spacing-xs);
10588
+ ._left_1gz82_84 {
10589
+ gap: var(--spacing-lg);
10590
+ padding-left: var(--spacing-lg);
10588
10591
  }
10589
- ._right_17khh_84 {
10592
+ ._right_1gz82_85 {
10590
10593
  margin-left: auto;
10591
10594
  flex-shrink: 0;
10592
10595
  padding-right: var(--spacing-xs);
10593
10596
  gap: var(--spacing-xs);
10594
10597
  }
10595
- ._item_17khh_98,
10596
- ._link_17khh_99 {
10598
+ ._item_1gz82_99,
10599
+ ._link_1gz82_100 {
10597
10600
  align-items: center;
10598
10601
  display: flex;
10599
10602
  }
10600
- ._item_17khh_98 {
10603
+ ._item_1gz82_99 {
10601
10604
  position: relative;
10602
10605
  transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease;
10603
10606
  user-select: none;
@@ -10605,18 +10608,18 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10605
10608
  min-width: 0;
10606
10609
  max-width: 50vw;
10607
10610
  }
10608
- ._item_17khh_98._button_17khh_111,
10609
- ._item_17khh_98._menu_17khh_112 {
10611
+ ._item_1gz82_99._button_1gz82_112,
10612
+ ._item_1gz82_99._menu_1gz82_113 {
10610
10613
  flex-shrink: 0;
10611
10614
  }
10612
- ._label_17khh_66 {
10615
+ ._label_1gz82_67 {
10613
10616
  text-overflow: ellipsis;
10614
10617
  white-space: nowrap;
10615
10618
  overflow: hidden;
10616
10619
  display: block;
10617
10620
  max-width: 100%;
10618
10621
  }
10619
- ._link_17khh_99 {
10622
+ ._link_1gz82_100 {
10620
10623
  text-decoration: none;
10621
10624
  color: var(--color-text-primary);
10622
10625
  cursor: pointer;
@@ -10624,24 +10627,24 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10624
10627
  font-weight: bold;
10625
10628
  height: 100%;
10626
10629
  }
10627
- ._link_17khh_99 svg {
10630
+ ._link_1gz82_100 svg {
10628
10631
  margin-right: 5px;
10629
10632
  flex-shrink: 0;
10630
10633
  }
10631
- ._link_17khh_99:hover {
10634
+ ._link_1gz82_100:hover {
10632
10635
  color: var(--color-text-primary-hover);
10633
10636
  }
10634
- ._link_17khh_99:active {
10637
+ ._link_1gz82_100:active {
10635
10638
  color: var(--color-text-primary-active);
10636
10639
  }
10637
- ._link_17khh_99._active_17khh_140 {
10640
+ ._link_1gz82_100._active_1gz82_141 {
10638
10641
  color: var(--color-text);
10639
10642
  }
10640
- ._link_17khh_99:hover,
10641
- ._link_17khh_99._active_17khh_140 {
10643
+ ._link_1gz82_100:hover,
10644
+ ._link_1gz82_100._active_1gz82_141 {
10642
10645
  background-color: transparent;
10643
10646
  }
10644
- ._link_17khh_99:after {
10647
+ ._link_1gz82_100:after {
10645
10648
  content: '';
10646
10649
  position: absolute;
10647
10650
  left: 0;
@@ -10649,17 +10652,17 @@ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
10649
10652
  bottom: 0;
10650
10653
  border-bottom: 2px solid transparent;
10651
10654
  }
10652
- ._link_17khh_99:hover:after {
10655
+ ._link_1gz82_100:hover:after {
10653
10656
  border-color: var(--color-link-border-hover);
10654
10657
  }
10655
- ._link_17khh_99._active_17khh_140:after {
10658
+ ._link_1gz82_100._active_1gz82_141:after {
10656
10659
  border-color: var(--color-background-primary);
10657
10660
  }
10658
- ._link_17khh_99[disabled] {
10661
+ ._link_1gz82_100[disabled] {
10659
10662
  pointer-events: none;
10660
10663
  color: var(--color-text-faint);
10661
10664
  }
10662
- ._alert_17khh_165 {
10665
+ ._alert_1gz82_166 {
10663
10666
  background-color: var(--color-background-primary);
10664
10667
  color: white;
10665
10668
  text-align: center;