@oliasoft-open-source/react-ui-library 4.0.0-beta-5 → 4.0.0-beta-7

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;
@@ -737,6 +736,17 @@ ol {
737
736
  a {
738
737
  text-decoration: none;
739
738
  }
739
+ ._chevron_9fk1o_1 {
740
+ margin-right: 8px;
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_9fk1o_1._expanded_9fk1o_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,44 +861,48 @@ 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
908
  ._tooltip_bwonh_1 {
@@ -1208,76 +1213,77 @@ a {
1208
1213
  transform-origin: 100% 0%;
1209
1214
  z-index: 3;
1210
1215
  }
1211
- ._inputInTable_wrbu4_1 {
1216
+ ._inputInTable_1ufmj_1 {
1212
1217
  background-color: transparent;
1213
1218
  border-radius: inherit !important;
1214
1219
  height: var(--size);
1215
1220
  min-height: 100%;
1216
1221
  }
1217
- ._inputInTable_wrbu4_1:not(:hover) {
1222
+ ._inputInTable_1ufmj_1:not(:hover) {
1218
1223
  border-color: transparent;
1219
1224
  }
1220
- ._inputHover_wrbu4_10 {
1225
+ ._inputHover_1ufmj_10 {
1221
1226
  position: relative;
1222
1227
  border-color: var(--color-border-hover);
1223
1228
  z-index: 2;
1224
1229
  }
1225
- ._inputFocus_wrbu4_15 {
1230
+ ._inputFocus_1ufmj_15 {
1226
1231
  position: relative;
1227
1232
  outline: none !important;
1228
1233
  border-color: var(--color-border-focus) !important;
1229
1234
  box-shadow: var(--shadow-focus);
1230
1235
  z-index: 3;
1231
1236
  }
1232
- ._inputError_wrbu4_22,
1233
- ._inputWarning_wrbu4_23 {
1237
+ ._inputError_1ufmj_22,
1238
+ ._inputWarning_1ufmj_23 {
1234
1239
  position: relative;
1235
1240
  }
1236
- ._inputError_wrbu4_22 {
1241
+ ._inputError_1ufmj_22 {
1237
1242
  z-index: 2;
1238
1243
  border-color: var(--color-border-error);
1239
1244
  color: var(--color-text-error) !important;
1240
1245
  background-color: var(--color-background-error);
1241
1246
  }
1242
- ._inputError_wrbu4_22:hover {
1247
+ ._inputError_1ufmj_22:hover {
1243
1248
  border-color: var(--color-border-error-hover) !important;
1244
1249
  }
1245
- ._inputError_wrbu4_22:focus {
1250
+ ._inputError_1ufmj_22:focus {
1246
1251
  position: relative;
1247
1252
  outline: none !important;
1248
1253
  border-color: var(--color-border-focus) !important;
1249
1254
  box-shadow: var(--shadow-focus);
1250
1255
  z-index: 3;
1251
1256
  }
1252
- ._inputWarning_wrbu4_23 {
1257
+ ._inputWarning_1ufmj_23 {
1253
1258
  z-index: 1;
1254
1259
  border-color: var(--color-border-warning);
1255
1260
  color: var(--color-text-warning) !important;
1256
1261
  background-color: var(--color-background-warning);
1257
1262
  }
1258
- ._inputWarning_wrbu4_23:hover {
1263
+ ._inputWarning_1ufmj_23:hover {
1259
1264
  border-color: var(--color-border-warning-hover) !important;
1260
1265
  }
1261
- ._inputWarning_wrbu4_23:focus {
1266
+ ._inputWarning_1ufmj_23:focus {
1262
1267
  position: relative;
1263
1268
  outline: none !important;
1264
1269
  border-color: var(--color-border-focus) !important;
1265
1270
  box-shadow: var(--shadow-focus);
1266
1271
  z-index: 3;
1267
1272
  }
1268
- ._inputDisabled_wrbu4_58 {
1273
+ ._inputDisabled_1ufmj_58 {
1269
1274
  pointer-events: none;
1270
1275
  background-color: var(--color-background-disabled);
1271
1276
  color: var(--color-text-muted);
1277
+ box-shadow: none;
1272
1278
  }
1273
- ._hideScrollbars_wrbu4_63 {
1279
+ ._hideScrollbars_1ufmj_64 {
1274
1280
  /* Firefox */
1275
1281
  scrollbar-width: none;
1276
1282
  /* IE 10+ */
1277
1283
  -ms-overflow-style: none;
1278
1284
  /* Chrome, Safari and Opera */
1279
1285
  }
1280
- ._hideScrollbars_wrbu4_63::-webkit-scrollbar {
1286
+ ._hideScrollbars_1ufmj_64::-webkit-scrollbar {
1281
1287
  display: none;
1282
1288
  }
1283
1289
  :root {
@@ -1303,7 +1309,7 @@ html[data-theme='dark'] {
1303
1309
  --color-border-button: var(--color-border);
1304
1310
  --color-border-button-hover: var(--color-border);
1305
1311
  }
1306
- ._button_wrbu4_96 {
1312
+ ._button_1ufmj_97 {
1307
1313
  cursor: pointer;
1308
1314
  display: inline-flex;
1309
1315
  align-items: center;
@@ -1329,79 +1335,79 @@ html[data-theme='dark'] {
1329
1335
  min-height: var(--size);
1330
1336
  box-shadow: var(--shadow-button);
1331
1337
  }
1332
- ._button_wrbu4_96:hover {
1338
+ ._button_1ufmj_97:hover {
1333
1339
  background: var(--color-background-button-default-hover);
1334
1340
  border-color: var(--color-border-button-hover);
1335
1341
  }
1336
- ._button_wrbu4_96:focus {
1342
+ ._button_1ufmj_97:focus {
1337
1343
  box-shadow: var(--shadow-focus) !important;
1338
1344
  }
1339
- ._button_wrbu4_96:active {
1345
+ ._button_1ufmj_97:active {
1340
1346
  background: var(--color-background-button-default-active);
1341
1347
  box-shadow: none;
1342
1348
  }
1343
- ._button_wrbu4_96._active_wrbu4_133:not(._green_wrbu4_133):not(._red_wrbu4_133):not(._orange_wrbu4_133) {
1349
+ ._button_1ufmj_97._active_1ufmj_134:not(._green_1ufmj_134):not(._red_1ufmj_134):not(._orange_1ufmj_134) {
1344
1350
  border-color: var(--color-background-button-primary);
1345
1351
  color: var(--color-text-primary);
1346
1352
  position: relative;
1347
1353
  z-index: 2;
1348
1354
  }
1349
- ._button_wrbu4_96:hover,
1350
- ._button_wrbu4_96:focus,
1351
- ._button_wrbu4_96:active {
1355
+ ._button_1ufmj_97:hover,
1356
+ ._button_1ufmj_97:focus,
1357
+ ._button_1ufmj_97:active {
1352
1358
  position: relative;
1353
1359
  z-index: 1;
1354
1360
  }
1355
- ._button_wrbu4_96 ._icon_wrbu4_145 {
1361
+ ._button_1ufmj_97 ._icon_1ufmj_146 {
1356
1362
  margin: -2px;
1357
1363
  margin-right: 8px;
1358
1364
  font-size: 1.25em;
1359
1365
  }
1360
- ._iconOnly_wrbu4_150 {
1366
+ ._iconOnly_1ufmj_151 {
1361
1367
  width: var(--size);
1362
1368
  display: inline-flex;
1363
1369
  align-items: center;
1364
1370
  justify-content: center;
1365
1371
  }
1366
- ._iconOnly_wrbu4_150 ._icon_wrbu4_145 {
1372
+ ._iconOnly_1ufmj_151 ._icon_1ufmj_146 {
1367
1373
  margin: 0;
1368
1374
  line-height: 0;
1369
1375
  }
1370
- ._basic_wrbu4_160 {
1376
+ ._basic_1ufmj_161 {
1371
1377
  color: var(--color-text-primary);
1372
1378
  background: transparent;
1373
1379
  box-shadow: none !important;
1374
1380
  border: none !important;
1375
1381
  }
1376
- ._basic_wrbu4_160._muted_wrbu4_166 {
1382
+ ._basic_1ufmj_161._muted_1ufmj_167 {
1377
1383
  color: var(--color-text-muted);
1378
1384
  }
1379
- ._basic_wrbu4_160:hover {
1385
+ ._basic_1ufmj_161:hover {
1380
1386
  color: var(--color-text-primary-hover);
1381
1387
  background: rgba(0, 0, 0, 0.05);
1382
1388
  }
1383
- ._basic_wrbu4_160:active,
1384
- ._basic_wrbu4_160._active_wrbu4_133 {
1389
+ ._basic_1ufmj_161:active,
1390
+ ._basic_1ufmj_161._active_1ufmj_134 {
1385
1391
  color: var(--color-text-primary-active);
1386
1392
  background: rgba(0, 0, 0, 0.1);
1387
1393
  }
1388
- ._disabled_wrbu4_178 {
1394
+ ._disabled_1ufmj_179 {
1389
1395
  cursor: default;
1390
1396
  pointer-events: none !important;
1391
1397
  color: var(--color-text-faint) !important;
1392
1398
  box-shadow: none !important;
1393
1399
  }
1394
- ._disabled_wrbu4_178:not(._active_wrbu4_133):not(._basic_wrbu4_160) {
1400
+ ._disabled_1ufmj_179:not(._active_1ufmj_134):not(._basic_1ufmj_161) {
1395
1401
  background: var(--color-background-disabled) !important;
1396
1402
  border: 1px solid var(--color-border) !important;
1397
1403
  }
1398
- ._small_wrbu4_188 {
1404
+ ._small_1ufmj_189 {
1399
1405
  font-size: var(--font-size-sm);
1400
1406
  min-height: var(--size-sm);
1401
1407
  padding: var(--padding-input-sm);
1402
1408
  }
1403
- ._pill_wrbu4_193,
1404
- ._round_wrbu4_194 {
1409
+ ._pill_1ufmj_194,
1410
+ ._round_1ufmj_195 {
1405
1411
  text-transform: uppercase;
1406
1412
  letter-spacing: 0.1em;
1407
1413
  font-weight: bold;
@@ -1409,144 +1415,144 @@ html[data-theme='dark'] {
1409
1415
  display: inline-flex;
1410
1416
  align-items: center;
1411
1417
  }
1412
- ._round_wrbu4_194 {
1418
+ ._round_1ufmj_195 {
1413
1419
  padding: 0;
1414
1420
  width: var(--size);
1415
1421
  line-height: 1;
1416
1422
  }
1417
- ._round_wrbu4_194._small_wrbu4_188 {
1423
+ ._round_1ufmj_195._small_1ufmj_189 {
1418
1424
  width: var(--size-sm);
1419
1425
  }
1420
- ._orange_wrbu4_133:not(._basic_wrbu4_160) {
1426
+ ._orange_1ufmj_134:not(._basic_1ufmj_161) {
1421
1427
  background-color: var(--color-background-button-primary);
1422
1428
  }
1423
- ._orange_wrbu4_133:not(._basic_wrbu4_160):hover {
1429
+ ._orange_1ufmj_134:not(._basic_1ufmj_161):hover {
1424
1430
  background-color: var(--color-background-button-primary-hover);
1425
1431
  }
1426
- ._orange_wrbu4_133:not(._basic_wrbu4_160):active,
1427
- ._orange_wrbu4_133:not(._basic_wrbu4_160)._active_wrbu4_133 {
1432
+ ._orange_1ufmj_134:not(._basic_1ufmj_161):active,
1433
+ ._orange_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134 {
1428
1434
  background-color: var(--color-background-button-primary-active);
1429
1435
  }
1430
- ._red_wrbu4_133:not(._basic_wrbu4_160) {
1436
+ ._red_1ufmj_134:not(._basic_1ufmj_161) {
1431
1437
  background-color: var(--color-background-button-error);
1432
1438
  }
1433
- ._red_wrbu4_133:not(._basic_wrbu4_160):hover {
1439
+ ._red_1ufmj_134:not(._basic_1ufmj_161):hover {
1434
1440
  background-color: var(--color-background-button-error-hover);
1435
1441
  }
1436
- ._red_wrbu4_133:not(._basic_wrbu4_160):active,
1437
- ._red_wrbu4_133:not(._basic_wrbu4_160)._active_wrbu4_133 {
1442
+ ._red_1ufmj_134:not(._basic_1ufmj_161):active,
1443
+ ._red_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134 {
1438
1444
  background-color: var(--color-background-button-error-active);
1439
1445
  }
1440
- ._red_wrbu4_133._basic_wrbu4_160 {
1446
+ ._red_1ufmj_134._basic_1ufmj_161 {
1441
1447
  color: var(--color-text-error);
1442
1448
  }
1443
- ._green_wrbu4_133:not(._basic_wrbu4_160) {
1449
+ ._green_1ufmj_134:not(._basic_1ufmj_161) {
1444
1450
  background-color: var(--color-background-button-success);
1445
1451
  }
1446
- ._green_wrbu4_133:not(._basic_wrbu4_160):hover {
1452
+ ._green_1ufmj_134:not(._basic_1ufmj_161):hover {
1447
1453
  background-color: var(--color-background-button-success-hover);
1448
1454
  }
1449
- ._green_wrbu4_133:not(._basic_wrbu4_160):active,
1450
- ._green_wrbu4_133:not(._basic_wrbu4_160)._active_wrbu4_133 {
1455
+ ._green_1ufmj_134:not(._basic_1ufmj_161):active,
1456
+ ._green_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134 {
1451
1457
  background-color: var(--color-background-button-success-active);
1452
1458
  }
1453
- ._green_wrbu4_133._basic_wrbu4_160 {
1459
+ ._green_1ufmj_134._basic_1ufmj_161 {
1454
1460
  color: var(--color-text-success);
1455
1461
  }
1456
- ._orange_wrbu4_133:not(._basic_wrbu4_160),
1457
- ._red_wrbu4_133:not(._basic_wrbu4_160),
1458
- ._green_wrbu4_133:not(._basic_wrbu4_160) {
1462
+ ._orange_1ufmj_134:not(._basic_1ufmj_161),
1463
+ ._red_1ufmj_134:not(._basic_1ufmj_161),
1464
+ ._green_1ufmj_134:not(._basic_1ufmj_161) {
1459
1465
  color: #fff;
1460
1466
  }
1461
- ._orange_wrbu4_133:not(._basic_wrbu4_160):hover,
1462
- ._red_wrbu4_133:not(._basic_wrbu4_160):hover,
1463
- ._green_wrbu4_133:not(._basic_wrbu4_160):hover {
1467
+ ._orange_1ufmj_134:not(._basic_1ufmj_161):hover,
1468
+ ._red_1ufmj_134:not(._basic_1ufmj_161):hover,
1469
+ ._green_1ufmj_134:not(._basic_1ufmj_161):hover {
1464
1470
  color: #fff;
1465
1471
  }
1466
- ._orange_wrbu4_133:not(._basic_wrbu4_160):active,
1467
- ._red_wrbu4_133:not(._basic_wrbu4_160):active,
1468
- ._green_wrbu4_133:not(._basic_wrbu4_160):active,
1469
- ._orange_wrbu4_133:not(._basic_wrbu4_160)._active_wrbu4_133,
1470
- ._red_wrbu4_133:not(._basic_wrbu4_160)._active_wrbu4_133,
1471
- ._green_wrbu4_133:not(._basic_wrbu4_160)._active_wrbu4_133 {
1472
+ ._orange_1ufmj_134:not(._basic_1ufmj_161):active,
1473
+ ._red_1ufmj_134:not(._basic_1ufmj_161):active,
1474
+ ._green_1ufmj_134:not(._basic_1ufmj_161):active,
1475
+ ._orange_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134,
1476
+ ._red_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134,
1477
+ ._green_1ufmj_134:not(._basic_1ufmj_161)._active_1ufmj_134 {
1472
1478
  color: #fff;
1473
1479
  }
1474
- ._error_wrbu4_264 {
1480
+ ._error_1ufmj_265 {
1475
1481
  position: relative;
1476
1482
  z-index: 2;
1477
1483
  border-color: var(--color-border-error);
1478
1484
  color: var(--color-text-error) !important;
1479
1485
  background-color: var(--color-background-error);
1480
1486
  }
1481
- ._error_wrbu4_264:hover {
1487
+ ._error_1ufmj_265:hover {
1482
1488
  border-color: var(--color-border-error-hover) !important;
1483
1489
  }
1484
- ._error_wrbu4_264:focus {
1490
+ ._error_1ufmj_265:focus {
1485
1491
  position: relative;
1486
1492
  outline: none !important;
1487
1493
  border-color: var(--color-border-focus) !important;
1488
1494
  box-shadow: var(--shadow-focus);
1489
1495
  z-index: 3;
1490
1496
  }
1491
- ._warning_wrbu4_281 {
1497
+ ._warning_1ufmj_282 {
1492
1498
  position: relative;
1493
1499
  z-index: 1;
1494
1500
  border-color: var(--color-border-warning);
1495
1501
  color: var(--color-text-warning) !important;
1496
1502
  background-color: var(--color-background-warning);
1497
1503
  }
1498
- ._warning_wrbu4_281:hover {
1504
+ ._warning_1ufmj_282:hover {
1499
1505
  border-color: var(--color-border-warning-hover) !important;
1500
1506
  }
1501
- ._warning_wrbu4_281:focus {
1507
+ ._warning_1ufmj_282:focus {
1502
1508
  position: relative;
1503
1509
  outline: none !important;
1504
1510
  border-color: var(--color-border-focus) !important;
1505
1511
  box-shadow: var(--shadow-focus);
1506
1512
  z-index: 3;
1507
1513
  }
1508
- ._inverted_wrbu4_298 {
1514
+ ._inverted_1ufmj_299 {
1509
1515
  background-color: transparent;
1510
1516
  border-color: var(--color-text);
1511
1517
  box-shadow: none;
1512
1518
  }
1513
- ._inverted_wrbu4_298:hover,
1514
- ._inverted_wrbu4_298:active {
1519
+ ._inverted_1ufmj_299:hover,
1520
+ ._inverted_1ufmj_299:active {
1515
1521
  box-shadow: none;
1516
1522
  }
1517
- ._inverted_wrbu4_298._orange_wrbu4_133 {
1523
+ ._inverted_1ufmj_299._orange_1ufmj_134 {
1518
1524
  color: var(--color-background-button-primary);
1519
1525
  border-color: var(--color-background-button-primary);
1520
1526
  }
1521
- ._inverted_wrbu4_298._red_wrbu4_133 {
1527
+ ._inverted_1ufmj_299._red_1ufmj_134 {
1522
1528
  color: var(--color-background-button-error);
1523
1529
  border-color: var(--color-background-button-error);
1524
1530
  }
1525
- ._inverted_wrbu4_298._green_wrbu4_133 {
1531
+ ._inverted_1ufmj_299._green_1ufmj_134 {
1526
1532
  color: var(--color-background-button-success);
1527
1533
  border-color: var(--color-background-button-success);
1528
1534
  }
1529
- ._inverted_wrbu4_298._orange_wrbu4_133:hover,
1530
- ._inverted_wrbu4_298._red_wrbu4_133:hover,
1531
- ._inverted_wrbu4_298._green_wrbu4_133:hover,
1532
- ._inverted_wrbu4_298._orange_wrbu4_133:active,
1533
- ._inverted_wrbu4_298._red_wrbu4_133:active,
1534
- ._inverted_wrbu4_298._green_wrbu4_133:active {
1535
+ ._inverted_1ufmj_299._orange_1ufmj_134:hover,
1536
+ ._inverted_1ufmj_299._red_1ufmj_134:hover,
1537
+ ._inverted_1ufmj_299._green_1ufmj_134:hover,
1538
+ ._inverted_1ufmj_299._orange_1ufmj_134:active,
1539
+ ._inverted_1ufmj_299._red_1ufmj_134:active,
1540
+ ._inverted_1ufmj_299._green_1ufmj_134:active {
1535
1541
  color: white;
1536
1542
  box-shadow: none;
1537
1543
  }
1538
- ._groupOrderFirst_wrbu4_328,
1539
- ._groupOrderMiddle_wrbu4_329,
1540
- ._groupOrderLast_wrbu4_330 {
1544
+ ._groupOrderFirst_1ufmj_329,
1545
+ ._groupOrderMiddle_1ufmj_330,
1546
+ ._groupOrderLast_1ufmj_331 {
1541
1547
  margin-right: 0;
1542
1548
  }
1543
- ._groupOrderFirst_wrbu4_328,
1544
- ._groupOrderMiddle_wrbu4_329 {
1549
+ ._groupOrderFirst_1ufmj_329,
1550
+ ._groupOrderMiddle_1ufmj_330 {
1545
1551
  border-top-right-radius: 0 !important;
1546
1552
  border-bottom-right-radius: 0 !important;
1547
1553
  }
1548
- ._groupOrderLast_wrbu4_330,
1549
- ._groupOrderMiddle_wrbu4_329 {
1554
+ ._groupOrderLast_1ufmj_331,
1555
+ ._groupOrderMiddle_1ufmj_330 {
1550
1556
  border-top-left-radius: 0 !important;
1551
1557
  border-bottom-left-radius: 0 !important;
1552
1558
  }
@@ -1889,76 +1895,77 @@ html[data-theme='dark'] {
1889
1895
  ._footer_15xxd_47 button:not(:last-child) {
1890
1896
  margin-right: var(--spacing);
1891
1897
  }
1892
- ._inputInTable_1rtzu_1 {
1898
+ ._inputInTable_nxzx8_1 {
1893
1899
  background-color: transparent;
1894
1900
  border-radius: inherit !important;
1895
1901
  height: var(--size);
1896
1902
  min-height: 100%;
1897
1903
  }
1898
- ._inputInTable_1rtzu_1:not(:hover) {
1904
+ ._inputInTable_nxzx8_1:not(:hover) {
1899
1905
  border-color: transparent;
1900
1906
  }
1901
- ._inputHover_1rtzu_10 {
1907
+ ._inputHover_nxzx8_10 {
1902
1908
  position: relative;
1903
1909
  border-color: var(--color-border-hover);
1904
1910
  z-index: 2;
1905
1911
  }
1906
- ._inputFocus_1rtzu_15 {
1912
+ ._inputFocus_nxzx8_15 {
1907
1913
  position: relative;
1908
1914
  outline: none !important;
1909
1915
  border-color: var(--color-border-focus) !important;
1910
1916
  box-shadow: var(--shadow-focus);
1911
1917
  z-index: 3;
1912
1918
  }
1913
- ._inputError_1rtzu_22,
1914
- ._inputWarning_1rtzu_23 {
1919
+ ._inputError_nxzx8_22,
1920
+ ._inputWarning_nxzx8_23 {
1915
1921
  position: relative;
1916
1922
  }
1917
- ._inputError_1rtzu_22 {
1923
+ ._inputError_nxzx8_22 {
1918
1924
  z-index: 2;
1919
1925
  border-color: var(--color-border-error);
1920
1926
  color: var(--color-text-error) !important;
1921
1927
  background-color: var(--color-background-error);
1922
1928
  }
1923
- ._inputError_1rtzu_22:hover {
1929
+ ._inputError_nxzx8_22:hover {
1924
1930
  border-color: var(--color-border-error-hover) !important;
1925
1931
  }
1926
- ._inputError_1rtzu_22:focus {
1932
+ ._inputError_nxzx8_22:focus {
1927
1933
  position: relative;
1928
1934
  outline: none !important;
1929
1935
  border-color: var(--color-border-focus) !important;
1930
1936
  box-shadow: var(--shadow-focus);
1931
1937
  z-index: 3;
1932
1938
  }
1933
- ._inputWarning_1rtzu_23 {
1939
+ ._inputWarning_nxzx8_23 {
1934
1940
  z-index: 1;
1935
1941
  border-color: var(--color-border-warning);
1936
1942
  color: var(--color-text-warning) !important;
1937
1943
  background-color: var(--color-background-warning);
1938
1944
  }
1939
- ._inputWarning_1rtzu_23:hover {
1945
+ ._inputWarning_nxzx8_23:hover {
1940
1946
  border-color: var(--color-border-warning-hover) !important;
1941
1947
  }
1942
- ._inputWarning_1rtzu_23:focus {
1948
+ ._inputWarning_nxzx8_23:focus {
1943
1949
  position: relative;
1944
1950
  outline: none !important;
1945
1951
  border-color: var(--color-border-focus) !important;
1946
1952
  box-shadow: var(--shadow-focus);
1947
1953
  z-index: 3;
1948
1954
  }
1949
- ._inputDisabled_1rtzu_58 {
1955
+ ._inputDisabled_nxzx8_58 {
1950
1956
  pointer-events: none;
1951
1957
  background-color: var(--color-background-disabled);
1952
1958
  color: var(--color-text-muted);
1959
+ box-shadow: none;
1953
1960
  }
1954
- ._hideScrollbars_1rtzu_63 {
1961
+ ._hideScrollbars_nxzx8_64 {
1955
1962
  /* Firefox */
1956
1963
  scrollbar-width: none;
1957
1964
  /* IE 10+ */
1958
1965
  -ms-overflow-style: none;
1959
1966
  /* Chrome, Safari and Opera */
1960
1967
  }
1961
- ._hideScrollbars_1rtzu_63::-webkit-scrollbar {
1968
+ ._hideScrollbars_nxzx8_64::-webkit-scrollbar {
1962
1969
  display: none;
1963
1970
  }
1964
1971
  :root {
@@ -1975,37 +1982,37 @@ html[data-theme='dark'] {
1975
1982
  --color-border-drawer-tab: var(--color-primary-750);
1976
1983
  --color-background-drawer-handle-hover: rgba(255, 255, 255, 0.1);
1977
1984
  }
1978
- ._inline_1rtzu_87 {
1985
+ ._inline_nxzx8_88 {
1979
1986
  position: relative;
1980
1987
  }
1981
- ._inline_1rtzu_87._left_1rtzu_90 {
1988
+ ._inline_nxzx8_88._left_nxzx8_91 {
1982
1989
  order: -1;
1983
1990
  }
1984
- ._inline_1rtzu_87._right_1rtzu_93 {
1991
+ ._inline_nxzx8_88._right_nxzx8_94 {
1985
1992
  order: 9999;
1986
1993
  }
1987
- ._fixed_1rtzu_96 {
1994
+ ._fixed_nxzx8_97 {
1988
1995
  position: fixed;
1989
1996
  top: 0;
1990
1997
  bottom: 0;
1991
1998
  z-index: var(--zindex-drawer);
1992
1999
  }
1993
- ._fixed_1rtzu_96._left_1rtzu_90 {
2000
+ ._fixed_nxzx8_97._left_nxzx8_91 {
1994
2001
  left: 0;
1995
2002
  }
1996
- ._fixed_1rtzu_96._right_1rtzu_93 {
2003
+ ._fixed_nxzx8_97._right_nxzx8_94 {
1997
2004
  right: 0;
1998
2005
  }
1999
- ._left_1rtzu_90 ._border_1rtzu_108 {
2006
+ ._left_nxzx8_91 ._border_nxzx8_109 {
2000
2007
  border-right: 1px solid var(--color-border);
2001
2008
  }
2002
- ._right_1rtzu_93 ._border_1rtzu_108 {
2009
+ ._right_nxzx8_94 ._border_nxzx8_109 {
2003
2010
  border-left: 1px solid var(--color-border);
2004
2011
  }
2005
- ._shadow_1rtzu_114 {
2012
+ ._shadow_nxzx8_115 {
2006
2013
  box-shadow: var(--shadow-layer);
2007
2014
  }
2008
- ._drawerContent_1rtzu_117 {
2015
+ ._drawerContent_nxzx8_118 {
2009
2016
  overflow-x: hidden;
2010
2017
  overflow-y: auto;
2011
2018
  max-height: 100%;
@@ -2017,40 +2024,40 @@ html[data-theme='dark'] {
2017
2024
  -ms-overflow-style: none;
2018
2025
  /* Chrome, Safari and Opera */
2019
2026
  }
2020
- ._isResizing_1rtzu_129 ._drawerContent_1rtzu_117 {
2027
+ ._isResizing_nxzx8_130 ._drawerContent_nxzx8_118 {
2021
2028
  transition: none;
2022
2029
  }
2023
2030
  @media print {
2024
- ._drawerContent_1rtzu_117 {
2031
+ ._drawerContent_nxzx8_118 {
2025
2032
  background: transparent !important;
2026
2033
  }
2027
2034
  }
2028
- ._drawerContent_1rtzu_117::-webkit-scrollbar {
2035
+ ._drawerContent_nxzx8_118::-webkit-scrollbar {
2029
2036
  display: none;
2030
2037
  }
2031
- ._toggleButton_1rtzu_140 {
2038
+ ._toggleButton_nxzx8_141 {
2032
2039
  transition: transform 0.4s;
2033
2040
  display: inline-block;
2034
2041
  transform: rotate(180deg);
2035
2042
  position: absolute;
2036
2043
  z-index: calc(var(--zindex-drawer) + 3);
2037
2044
  }
2038
- ._left_1rtzu_90 ._toggleButton_1rtzu_140 {
2045
+ ._left_nxzx8_91 ._toggleButton_nxzx8_141 {
2039
2046
  right: calc(var(--size) / -2);
2040
2047
  }
2041
- ._right_1rtzu_93 ._toggleButton_1rtzu_140 {
2048
+ ._right_nxzx8_94 ._toggleButton_nxzx8_141 {
2042
2049
  left: calc(var(--size) / -2);
2043
2050
  }
2044
- ._toggleButton_1rtzu_140._top_1rtzu_153 {
2051
+ ._toggleButton_nxzx8_141._top_nxzx8_154 {
2045
2052
  top: var(--padding-y);
2046
2053
  }
2047
- ._toggleButton_1rtzu_140._bottom_1rtzu_156 {
2054
+ ._toggleButton_nxzx8_141._bottom_nxzx8_157 {
2048
2055
  bottom: var(--padding-y);
2049
2056
  }
2050
- ._toggleButton_1rtzu_140._toggleButtonOpen_1rtzu_159 {
2057
+ ._toggleButton_nxzx8_141._toggleButtonOpen_nxzx8_160 {
2051
2058
  transform: rotate(0deg);
2052
2059
  }
2053
- ._tabs_1rtzu_162 {
2060
+ ._tabs_nxzx8_163 {
2054
2061
  position: absolute;
2055
2062
  top: 0;
2056
2063
  bottom: 0;
@@ -2061,13 +2068,14 @@ html[data-theme='dark'] {
2061
2068
  border-right: 1px solid var(--color-border);
2062
2069
  font-size: var(--size-sm);
2063
2070
  }
2064
- ._left_1rtzu_90 ._tabs_1rtzu_162 {
2071
+ ._left_nxzx8_91 ._tabs_nxzx8_163 {
2065
2072
  right: 0;
2066
2073
  }
2067
- ._right_1rtzu_93 ._tabs_1rtzu_162 {
2074
+ ._right_nxzx8_94 ._tabs_nxzx8_163 {
2068
2075
  left: 0;
2069
2076
  }
2070
- ._tabs_1rtzu_162 ._tab_1rtzu_162 {
2077
+ ._tabs_nxzx8_163 ._tab_nxzx8_163 {
2078
+ font-size: 18px;
2071
2079
  height: 38px;
2072
2080
  width: 38px;
2073
2081
  display: flex;
@@ -2078,39 +2086,39 @@ html[data-theme='dark'] {
2078
2086
  transition: color 0.3s, background-color 0.3s;
2079
2087
  border: 1px solid var(--color-border-drawer-tab);
2080
2088
  }
2081
- ._left_1rtzu_90 ._tabs_1rtzu_162 ._tab_1rtzu_162 {
2089
+ ._left_nxzx8_91 ._tabs_nxzx8_163 ._tab_nxzx8_163 {
2082
2090
  border-top-left-radius: 0;
2083
2091
  border-bottom-left-radius: 0;
2084
2092
  }
2085
- ._left_1rtzu_90 ._tabs_1rtzu_162 ._tab_1rtzu_162._active_1rtzu_194 {
2093
+ ._left_nxzx8_91 ._tabs_nxzx8_163 ._tab_nxzx8_163._active_nxzx8_196 {
2086
2094
  border-left-color: transparent;
2087
2095
  }
2088
- ._right_1rtzu_93 ._tabs_1rtzu_162 ._tab_1rtzu_162 {
2096
+ ._right_nxzx8_94 ._tabs_nxzx8_163 ._tab_nxzx8_163 {
2089
2097
  border-top-right-radius: 0;
2090
2098
  border-bottom-right-radius: 0;
2091
2099
  }
2092
- ._right_1rtzu_93 ._tabs_1rtzu_162 ._tab_1rtzu_162._active_1rtzu_194 {
2100
+ ._right_nxzx8_94 ._tabs_nxzx8_163 ._tab_nxzx8_163._active_nxzx8_196 {
2093
2101
  border-right-color: transparent;
2094
2102
  }
2095
- ._tabs_1rtzu_162 ._tab_1rtzu_162:not(._active_1rtzu_194) {
2103
+ ._tabs_nxzx8_163 ._tab_nxzx8_163:not(._active_nxzx8_196) {
2096
2104
  color: var(--color-text-primary);
2097
2105
  background-color: var(--color-background-drawer-tab) !important;
2098
2106
  }
2099
- ._tabs_1rtzu_162 ._tab_1rtzu_162:not(._active_1rtzu_194):hover {
2107
+ ._tabs_nxzx8_163 ._tab_nxzx8_163:not(._active_nxzx8_196):hover {
2100
2108
  color: var(--color-text);
2101
2109
  background-color: var(--color-background-drawer-tab-hover) !important;
2102
2110
  }
2103
- ._tabs_1rtzu_162 ._tab_1rtzu_162._active_1rtzu_194 {
2111
+ ._tabs_nxzx8_163 ._tab_nxzx8_163._active_nxzx8_196 {
2104
2112
  color: var(--color-text);
2105
2113
  border-color: var(--color-border);
2106
2114
  }
2107
- ._left_1rtzu_90 ._tabsContent_1rtzu_216 {
2115
+ ._left_nxzx8_91 ._tabsContent_nxzx8_218 {
2108
2116
  padding-right: 36px;
2109
2117
  }
2110
- ._right_1rtzu_93 ._tabsContent_1rtzu_216 {
2118
+ ._right_nxzx8_94 ._tabsContent_nxzx8_218 {
2111
2119
  padding-left: 36px;
2112
2120
  }
2113
- ._resizeHandle_1rtzu_222 {
2121
+ ._resizeHandle_nxzx8_224 {
2114
2122
  position: absolute;
2115
2123
  top: 0;
2116
2124
  bottom: 0;
@@ -2123,18 +2131,18 @@ html[data-theme='dark'] {
2123
2131
  font-size: var(--font-size-sm);
2124
2132
  transition: all 0.2s;
2125
2133
  }
2126
- ._resizeHandle_1rtzu_222:hover {
2134
+ ._resizeHandle_nxzx8_224:hover {
2127
2135
  background: var(--color-background-drawer-handle-hover);
2128
2136
  color: var(--color-text-primary);
2129
2137
  }
2130
- ._resizeHandle_1rtzu_222:active {
2138
+ ._resizeHandle_nxzx8_224:active {
2131
2139
  background: var(--color-text-primary);
2132
2140
  color: white;
2133
2141
  }
2134
- ._left_1rtzu_90 ._resizeHandle_1rtzu_222 {
2142
+ ._left_nxzx8_91 ._resizeHandle_nxzx8_224 {
2135
2143
  right: 0;
2136
2144
  }
2137
- ._right_1rtzu_93 ._resizeHandle_1rtzu_222 {
2145
+ ._right_nxzx8_94 ._resizeHandle_nxzx8_224 {
2138
2146
  left: 0;
2139
2147
  }
2140
2148
  ._empty_cs57m_1 {
@@ -2158,79 +2166,80 @@ html[data-theme='dark'] {
2158
2166
  ._inputGroup_biuoa_1 > *:not(:last-child) {
2159
2167
  margin-right: -1px;
2160
2168
  }
2161
- ._inputInTable_dn9qx_1 {
2169
+ ._inputInTable_1ioaf_1 {
2162
2170
  background-color: transparent;
2163
2171
  border-radius: inherit !important;
2164
2172
  height: var(--size);
2165
2173
  min-height: 100%;
2166
2174
  }
2167
- ._inputInTable_dn9qx_1:not(:hover) {
2175
+ ._inputInTable_1ioaf_1:not(:hover) {
2168
2176
  border-color: transparent;
2169
2177
  }
2170
- ._inputHover_dn9qx_10 {
2178
+ ._inputHover_1ioaf_10 {
2171
2179
  position: relative;
2172
2180
  border-color: var(--color-border-hover);
2173
2181
  z-index: 2;
2174
2182
  }
2175
- ._inputFocus_dn9qx_15 {
2183
+ ._inputFocus_1ioaf_15 {
2176
2184
  position: relative;
2177
2185
  outline: none !important;
2178
2186
  border-color: var(--color-border-focus) !important;
2179
2187
  box-shadow: var(--shadow-focus);
2180
2188
  z-index: 3;
2181
2189
  }
2182
- ._inputError_dn9qx_22,
2183
- ._inputWarning_dn9qx_23 {
2190
+ ._inputError_1ioaf_22,
2191
+ ._inputWarning_1ioaf_23 {
2184
2192
  position: relative;
2185
2193
  }
2186
- ._inputError_dn9qx_22 {
2194
+ ._inputError_1ioaf_22 {
2187
2195
  z-index: 2;
2188
2196
  border-color: var(--color-border-error);
2189
2197
  color: var(--color-text-error) !important;
2190
2198
  background-color: var(--color-background-error);
2191
2199
  }
2192
- ._inputError_dn9qx_22:hover {
2200
+ ._inputError_1ioaf_22:hover {
2193
2201
  border-color: var(--color-border-error-hover) !important;
2194
2202
  }
2195
- ._inputError_dn9qx_22:focus {
2203
+ ._inputError_1ioaf_22:focus {
2196
2204
  position: relative;
2197
2205
  outline: none !important;
2198
2206
  border-color: var(--color-border-focus) !important;
2199
2207
  box-shadow: var(--shadow-focus);
2200
2208
  z-index: 3;
2201
2209
  }
2202
- ._inputWarning_dn9qx_23 {
2210
+ ._inputWarning_1ioaf_23 {
2203
2211
  z-index: 1;
2204
2212
  border-color: var(--color-border-warning);
2205
2213
  color: var(--color-text-warning) !important;
2206
2214
  background-color: var(--color-background-warning);
2207
2215
  }
2208
- ._inputWarning_dn9qx_23:hover {
2216
+ ._inputWarning_1ioaf_23:hover {
2209
2217
  border-color: var(--color-border-warning-hover) !important;
2210
2218
  }
2211
- ._inputWarning_dn9qx_23:focus {
2219
+ ._inputWarning_1ioaf_23:focus {
2212
2220
  position: relative;
2213
2221
  outline: none !important;
2214
2222
  border-color: var(--color-border-focus) !important;
2215
2223
  box-shadow: var(--shadow-focus);
2216
2224
  z-index: 3;
2217
2225
  }
2218
- ._inputDisabled_dn9qx_58 {
2226
+ ._inputDisabled_1ioaf_58 {
2219
2227
  pointer-events: none;
2220
2228
  background-color: var(--color-background-disabled);
2221
2229
  color: var(--color-text-muted);
2230
+ box-shadow: none;
2222
2231
  }
2223
- ._hideScrollbars_dn9qx_63 {
2232
+ ._hideScrollbars_1ioaf_64 {
2224
2233
  /* Firefox */
2225
2234
  scrollbar-width: none;
2226
2235
  /* IE 10+ */
2227
2236
  -ms-overflow-style: none;
2228
2237
  /* Chrome, Safari and Opera */
2229
2238
  }
2230
- ._hideScrollbars_dn9qx_63::-webkit-scrollbar {
2239
+ ._hideScrollbars_1ioaf_64::-webkit-scrollbar {
2231
2240
  display: none;
2232
2241
  }
2233
- ._input_dn9qx_1 {
2242
+ ._input_1ioaf_1 {
2234
2243
  margin: 0;
2235
2244
  outline: 0;
2236
2245
  text-align: left;
@@ -2248,90 +2257,91 @@ html[data-theme='dark'] {
2248
2257
  font-style: normal;
2249
2258
  position: relative;
2250
2259
  }
2251
- ._input_dn9qx_1::placeholder {
2260
+ ._input_1ioaf_1::placeholder {
2252
2261
  color: var(--color-text-placeholder);
2253
2262
  }
2254
- ._input_dn9qx_1._isInTable_dn9qx_94 {
2263
+ ._input_1ioaf_1._isInTable_1ioaf_95 {
2255
2264
  background-color: transparent;
2256
2265
  border-radius: inherit !important;
2257
2266
  height: var(--size);
2258
2267
  min-height: 100%;
2259
2268
  }
2260
- ._input_dn9qx_1._isInTable_dn9qx_94:not(:hover) {
2269
+ ._input_1ioaf_1._isInTable_1ioaf_95:not(:hover) {
2261
2270
  border-color: transparent;
2262
2271
  }
2263
- ._input_dn9qx_1:hover {
2272
+ ._input_1ioaf_1:hover {
2264
2273
  position: relative;
2265
2274
  border-color: var(--color-border-hover);
2266
2275
  z-index: 2;
2267
2276
  }
2268
- ._input_dn9qx_1:focus {
2277
+ ._input_1ioaf_1:focus {
2269
2278
  position: relative;
2270
2279
  outline: none !important;
2271
2280
  border-color: var(--color-border-focus) !important;
2272
2281
  box-shadow: var(--shadow-focus);
2273
2282
  z-index: 3;
2274
2283
  }
2275
- ._input_dn9qx_1._small_dn9qx_115 {
2284
+ ._input_1ioaf_1._small_1ioaf_116 {
2276
2285
  font-size: var(--font-size-sm);
2277
2286
  height: var(--size-sm);
2278
2287
  padding: var(--padding-input-sm);
2279
2288
  line-height: var(--size-sm);
2280
2289
  }
2281
- ._input_dn9qx_1._error_dn9qx_121 {
2290
+ ._input_1ioaf_1._error_1ioaf_122 {
2282
2291
  position: relative;
2283
2292
  z-index: 2;
2284
2293
  border-color: var(--color-border-error);
2285
2294
  color: var(--color-text-error) !important;
2286
2295
  background-color: var(--color-background-error);
2287
2296
  }
2288
- ._input_dn9qx_1._error_dn9qx_121:hover {
2297
+ ._input_1ioaf_1._error_1ioaf_122:hover {
2289
2298
  border-color: var(--color-border-error-hover) !important;
2290
2299
  }
2291
- ._input_dn9qx_1._error_dn9qx_121:focus {
2300
+ ._input_1ioaf_1._error_1ioaf_122:focus {
2292
2301
  position: relative;
2293
2302
  outline: none !important;
2294
2303
  border-color: var(--color-border-focus) !important;
2295
2304
  box-shadow: var(--shadow-focus);
2296
2305
  z-index: 3;
2297
2306
  }
2298
- ._input_dn9qx_1._warning_dn9qx_138 {
2307
+ ._input_1ioaf_1._warning_1ioaf_139 {
2299
2308
  position: relative;
2300
2309
  z-index: 1;
2301
2310
  border-color: var(--color-border-warning);
2302
2311
  color: var(--color-text-warning) !important;
2303
2312
  background-color: var(--color-background-warning);
2304
2313
  }
2305
- ._input_dn9qx_1._warning_dn9qx_138:hover {
2314
+ ._input_1ioaf_1._warning_1ioaf_139:hover {
2306
2315
  border-color: var(--color-border-warning-hover) !important;
2307
2316
  }
2308
- ._input_dn9qx_1._warning_dn9qx_138:focus {
2317
+ ._input_1ioaf_1._warning_1ioaf_139:focus {
2309
2318
  position: relative;
2310
2319
  outline: none !important;
2311
2320
  border-color: var(--color-border-focus) !important;
2312
2321
  box-shadow: var(--shadow-focus);
2313
2322
  z-index: 3;
2314
2323
  }
2315
- ._input_dn9qx_1[disabled] {
2324
+ ._input_1ioaf_1[disabled] {
2316
2325
  pointer-events: none;
2317
2326
  background-color: var(--color-background-disabled);
2318
2327
  color: var(--color-text-muted);
2328
+ box-shadow: none;
2319
2329
  }
2320
- ._input_dn9qx_1._right_dn9qx_160 {
2330
+ ._input_1ioaf_1._right_1ioaf_162 {
2321
2331
  text-align: right;
2322
2332
  }
2323
- ._groupOrderFirst_dn9qx_163,
2324
- ._groupOrderMiddle_dn9qx_164,
2325
- ._groupOrderLast_dn9qx_165 {
2333
+ ._groupOrderFirst_1ioaf_165,
2334
+ ._groupOrderMiddle_1ioaf_166,
2335
+ ._groupOrderLast_1ioaf_167 {
2326
2336
  flex: 1;
2327
2337
  }
2328
- ._groupOrderFirst_dn9qx_163 ._input_dn9qx_1,
2329
- ._groupOrderMiddle_dn9qx_164 ._input_dn9qx_1 {
2338
+ ._groupOrderFirst_1ioaf_165 ._input_1ioaf_1,
2339
+ ._groupOrderMiddle_1ioaf_166 ._input_1ioaf_1 {
2330
2340
  border-top-right-radius: 0 !important;
2331
2341
  border-bottom-right-radius: 0 !important;
2332
2342
  }
2333
- ._groupOrderLast_dn9qx_165 ._input_dn9qx_1,
2334
- ._groupOrderMiddle_dn9qx_164 ._input_dn9qx_1 {
2343
+ ._groupOrderLast_1ioaf_167 ._input_1ioaf_1,
2344
+ ._groupOrderMiddle_1ioaf_166 ._input_1ioaf_1 {
2335
2345
  border-top-left-radius: 0 !important;
2336
2346
  border-bottom-left-radius: 0 !important;
2337
2347
  }
@@ -2422,119 +2432,120 @@ html[data-theme='dark'] {
2422
2432
  border-top-left-radius: 0 !important;
2423
2433
  border-bottom-left-radius: 0 !important;
2424
2434
  }
2425
- ._inputInTable_8naxt_1 {
2435
+ ._inputInTable_15brx_1 {
2426
2436
  background-color: transparent;
2427
2437
  border-radius: inherit !important;
2428
2438
  height: var(--size);
2429
2439
  min-height: 100%;
2430
2440
  }
2431
- ._inputInTable_8naxt_1:not(:hover) {
2441
+ ._inputInTable_15brx_1:not(:hover) {
2432
2442
  border-color: transparent;
2433
2443
  }
2434
- ._inputHover_8naxt_10 {
2444
+ ._inputHover_15brx_10 {
2435
2445
  position: relative;
2436
2446
  border-color: var(--color-border-hover);
2437
2447
  z-index: 2;
2438
2448
  }
2439
- ._inputFocus_8naxt_15 {
2449
+ ._inputFocus_15brx_15 {
2440
2450
  position: relative;
2441
2451
  outline: none !important;
2442
2452
  border-color: var(--color-border-focus) !important;
2443
2453
  box-shadow: var(--shadow-focus);
2444
2454
  z-index: 3;
2445
2455
  }
2446
- ._inputError_8naxt_22,
2447
- ._inputWarning_8naxt_23 {
2456
+ ._inputError_15brx_22,
2457
+ ._inputWarning_15brx_23 {
2448
2458
  position: relative;
2449
2459
  }
2450
- ._inputError_8naxt_22 {
2460
+ ._inputError_15brx_22 {
2451
2461
  z-index: 2;
2452
2462
  border-color: var(--color-border-error);
2453
2463
  color: var(--color-text-error) !important;
2454
2464
  background-color: var(--color-background-error);
2455
2465
  }
2456
- ._inputError_8naxt_22:hover {
2466
+ ._inputError_15brx_22:hover {
2457
2467
  border-color: var(--color-border-error-hover) !important;
2458
2468
  }
2459
- ._inputError_8naxt_22:focus {
2469
+ ._inputError_15brx_22:focus {
2460
2470
  position: relative;
2461
2471
  outline: none !important;
2462
2472
  border-color: var(--color-border-focus) !important;
2463
2473
  box-shadow: var(--shadow-focus);
2464
2474
  z-index: 3;
2465
2475
  }
2466
- ._inputWarning_8naxt_23 {
2476
+ ._inputWarning_15brx_23 {
2467
2477
  z-index: 1;
2468
2478
  border-color: var(--color-border-warning);
2469
2479
  color: var(--color-text-warning) !important;
2470
2480
  background-color: var(--color-background-warning);
2471
2481
  }
2472
- ._inputWarning_8naxt_23:hover {
2482
+ ._inputWarning_15brx_23:hover {
2473
2483
  border-color: var(--color-border-warning-hover) !important;
2474
2484
  }
2475
- ._inputWarning_8naxt_23:focus {
2485
+ ._inputWarning_15brx_23:focus {
2476
2486
  position: relative;
2477
2487
  outline: none !important;
2478
2488
  border-color: var(--color-border-focus) !important;
2479
2489
  box-shadow: var(--shadow-focus);
2480
2490
  z-index: 3;
2481
2491
  }
2482
- ._inputDisabled_8naxt_58 {
2492
+ ._inputDisabled_15brx_58 {
2483
2493
  pointer-events: none;
2484
2494
  background-color: var(--color-background-disabled);
2485
2495
  color: var(--color-text-muted);
2496
+ box-shadow: none;
2486
2497
  }
2487
- ._hideScrollbars_8naxt_63 {
2498
+ ._hideScrollbars_15brx_64 {
2488
2499
  /* Firefox */
2489
2500
  scrollbar-width: none;
2490
2501
  /* IE 10+ */
2491
2502
  -ms-overflow-style: none;
2492
2503
  /* Chrome, Safari and Opera */
2493
2504
  }
2494
- ._hideScrollbars_8naxt_63::-webkit-scrollbar {
2505
+ ._hideScrollbars_15brx_64::-webkit-scrollbar {
2495
2506
  display: none;
2496
2507
  }
2497
- ._header_8naxt_73 ._headerTitle_8naxt_73,
2498
- ._heading_8naxt_74 ._itemHeader_8naxt_74 {
2508
+ ._header_15brx_74 ._headerTitle_15brx_74,
2509
+ ._heading_15brx_75 ._itemHeader_15brx_75 {
2499
2510
  transition: opacity 0.3s;
2500
2511
  }
2501
- ._narrow_8naxt_77 ._header_8naxt_73 ._headerTitle_8naxt_73,
2502
- ._narrow_8naxt_77 ._heading_8naxt_74 ._itemHeader_8naxt_74 {
2512
+ ._narrow_15brx_78 ._header_15brx_74 ._headerTitle_15brx_74,
2513
+ ._narrow_15brx_78 ._heading_15brx_75 ._itemHeader_15brx_75 {
2503
2514
  opacity: 0;
2504
2515
  }
2505
- ._stickyHeader_8naxt_81 {
2516
+ ._stickyHeader_15brx_82 {
2506
2517
  position: sticky;
2507
2518
  top: 0;
2508
2519
  background-color: var(--color-background);
2509
2520
  z-index: 10;
2510
2521
  }
2511
- ._itemHeader_8naxt_74 {
2522
+ ._itemHeader_15brx_75 {
2512
2523
  padding: var(--spacing-sm) var(--padding-x);
2513
2524
  display: flex;
2514
2525
  align-items: flex-start;
2515
2526
  }
2516
- ._itemHeader_8naxt_74 ._title_8naxt_92 {
2527
+ ._itemHeader_15brx_75 ._title_15brx_93 {
2517
2528
  margin: 0;
2518
2529
  padding: 0;
2519
2530
  flex-grow: 1;
2520
2531
  min-width: 0;
2521
2532
  }
2522
- ._itemHeader_8naxt_74 ._name_8naxt_98 {
2533
+ ._itemHeader_15brx_75 ._name_15brx_99 {
2523
2534
  font-weight: 400;
2524
2535
  }
2525
- ._itemHeader_8naxt_74 ._iconTooltipMargin_8naxt_101 {
2536
+ ._itemHeader_15brx_75 ._iconTooltipMargin_15brx_102 {
2526
2537
  margin-left: 10px;
2527
2538
  }
2528
- ._itemHeader_8naxt_74 ._bold_8naxt_104 {
2539
+ ._itemHeader_15brx_75 ._bold_15brx_105 {
2529
2540
  font-weight: bold;
2530
2541
  }
2531
- ._header_8naxt_73 {
2542
+ ._header_15brx_74 {
2532
2543
  padding: var(--padding);
2533
2544
  display: flex;
2534
2545
  align-items: center;
2535
2546
  border-bottom: 1px solid var(--color-border);
2536
2547
  }
2537
- ._toggleNarrow_8naxt_113 {
2548
+ ._toggleNarrow_15brx_114 {
2538
2549
  margin-right: 16px;
2539
2550
  margin-left: -5px;
2540
2551
  color: #c8c8c8;
@@ -2543,16 +2554,16 @@ html[data-theme='dark'] {
2543
2554
  width: 22px;
2544
2555
  justify-content: center;
2545
2556
  }
2546
- ._toggleNarrow_8naxt_113:hover {
2557
+ ._toggleNarrow_15brx_114:hover {
2547
2558
  color: var(--color-text-primary-hover);
2548
2559
  }
2549
- ._toggleNarrow_8naxt_113:active {
2560
+ ._toggleNarrow_15brx_114:active {
2550
2561
  color: var(--color-text-primary-active);
2551
2562
  }
2552
- ._narrow_8naxt_77 ._toggleNarrow_8naxt_113 {
2563
+ ._narrow_15brx_78 ._toggleNarrow_15brx_114 {
2553
2564
  transform: scaleX(-1);
2554
2565
  }
2555
- ._drag_8naxt_131 {
2566
+ ._drag_15brx_132 {
2556
2567
  color: var(--color-text-faint);
2557
2568
  display: flex;
2558
2569
  align-items: center;
@@ -2563,31 +2574,31 @@ html[data-theme='dark'] {
2563
2574
  height: 19px;
2564
2575
  width: 19px;
2565
2576
  }
2566
- ._drag_8naxt_131 path {
2577
+ ._drag_15brx_132 path {
2567
2578
  stroke: var(--color-text-faint);
2568
2579
  }
2569
- ._drag_8naxt_131:hover path {
2580
+ ._drag_15brx_132:hover path {
2570
2581
  stroke: var(--color-text-primary-hover);
2571
2582
  }
2572
- ._drag_8naxt_131:active path {
2583
+ ._drag_15brx_132:active path {
2573
2584
  stroke: var(--color-text-primary-active);
2574
2585
  }
2575
- ._list_8naxt_151 {
2586
+ ._list_15brx_152 {
2576
2587
  flex-shrink: 0;
2577
2588
  background: var(--color-background);
2578
2589
  }
2579
- ._list_8naxt_151._bordered_8naxt_155:first-child,
2580
- ._list_8naxt_151._bordered_8naxt_155:first-child > :first-child {
2590
+ ._list_15brx_152._bordered_15brx_156:first-child,
2591
+ ._list_15brx_152._bordered_15brx_156:first-child > :first-child {
2581
2592
  border-top-left-radius: inherit;
2582
2593
  border-top-right-radius: inherit;
2583
2594
  }
2584
- ._list_8naxt_151._bordered_8naxt_155:last-child,
2585
- ._list_8naxt_151._bordered_8naxt_155:last-child > :last-child {
2595
+ ._list_15brx_152._bordered_15brx_156:last-child,
2596
+ ._list_15brx_152._bordered_15brx_156:last-child > :last-child {
2586
2597
  border-bottom-left-radius: inherit;
2587
2598
  border-bottom-right-radius: inherit;
2588
2599
  border-bottom: 0;
2589
2600
  }
2590
- ._item_8naxt_74 {
2601
+ ._item_15brx_75 {
2591
2602
  color: inherit;
2592
2603
  display: block;
2593
2604
  transition: background-color 0.2s;
@@ -2598,7 +2609,7 @@ html[data-theme='dark'] {
2598
2609
  overflow-wrap: break-word;
2599
2610
  hyphens: auto;
2600
2611
  }
2601
- ._item_8naxt_74:not(._heading_8naxt_74):after {
2612
+ ._item_15brx_75:not(._heading_15brx_75):after {
2602
2613
  content: '';
2603
2614
  position: absolute;
2604
2615
  left: 0;
@@ -2609,73 +2620,74 @@ html[data-theme='dark'] {
2609
2620
  border-bottom-left-radius: inherit;
2610
2621
  transition: background 0.3s;
2611
2622
  }
2612
- ._item_8naxt_74._action_8naxt_188 {
2623
+ ._item_15brx_75._action_15brx_189 {
2613
2624
  cursor: pointer;
2614
2625
  }
2615
- ._item_8naxt_74._action_8naxt_188:not(._active_8naxt_191):hover {
2626
+ ._item_15brx_75._action_15brx_189:not(._active_15brx_192):hover {
2616
2627
  background: var(--color-background-listitem-hover);
2617
2628
  }
2618
- ._item_8naxt_74._action_8naxt_188:not(._active_8naxt_191):hover:after {
2629
+ ._item_15brx_75._action_15brx_189:not(._active_15brx_192):hover:after {
2619
2630
  background: rgba(0, 0, 0, 0.1);
2620
2631
  }
2621
- ._item_8naxt_74._active_8naxt_191 {
2632
+ ._item_15brx_75._active_15brx_192 {
2622
2633
  cursor: default;
2623
2634
  position: relative;
2624
2635
  z-index: 1;
2625
2636
  background: var(--color-background-listitem-active);
2626
2637
  }
2627
- ._item_8naxt_74._active_8naxt_191:after {
2638
+ ._item_15brx_75._active_15brx_192:after {
2628
2639
  background: var(--color-background-primary) !important;
2629
2640
  }
2630
- ._item_8naxt_74._disabled_8naxt_206 {
2641
+ ._item_15brx_75._disabled_15brx_207 {
2631
2642
  color: var(--color-text-faint);
2632
2643
  pointer-events: none;
2633
2644
  }
2634
- ._item_8naxt_74._heading_8naxt_74 {
2645
+ ._item_15brx_75._heading_15brx_75 {
2635
2646
  color: var(--color-text-muted);
2636
2647
  background-color: transparent;
2637
2648
  }
2638
- ._item_8naxt_74._heading_8naxt_74._action_8naxt_188:hover {
2649
+ ._item_15brx_75._heading_15brx_75._action_15brx_189:hover {
2639
2650
  color: var(--color-text-primary-hover);
2640
2651
  }
2641
- ._item_8naxt_74 ._label_8naxt_217 {
2652
+ ._item_15brx_75 ._label_15brx_218 {
2642
2653
  margin-right: 15px;
2643
2654
  margin-left: -5px;
2644
2655
  margin-top: -2px;
2645
2656
  margin-bottom: -2px;
2646
2657
  flex-shrink: 0;
2647
2658
  }
2648
- ._item_8naxt_74 ._details_8naxt_224,
2649
- ._item_8naxt_74 ._metadata_8naxt_225 {
2659
+ ._item_15brx_75 ._details_15brx_225,
2660
+ ._item_15brx_75 ._metadata_15brx_226 {
2650
2661
  display: block;
2651
2662
  width: 100%;
2652
2663
  font-weight: normal;
2653
2664
  margin-top: 3px;
2654
2665
  }
2655
- ._item_8naxt_74 ._metadata_8naxt_225 {
2666
+ ._item_15brx_75 ._metadata_15brx_226 {
2656
2667
  color: var(--color-text-muted);
2657
2668
  }
2658
- ._item_8naxt_74 ._itemContent_8naxt_234 {
2669
+ ._item_15brx_75 ._itemContent_15brx_235 {
2659
2670
  padding: 0 var(--padding-x) var(--spacing-sm);
2660
2671
  cursor: auto;
2661
2672
  }
2662
- ._item_8naxt_74 ._itemContent_8naxt_234:empty {
2673
+ ._item_15brx_75 ._itemContent_15brx_235:empty {
2663
2674
  padding: inherit;
2664
2675
  }
2665
- ._indentIcon_8naxt_241 {
2676
+ ._indentIcon_15brx_242 {
2677
+ color: var(--color-text-faint);
2666
2678
  width: 20px;
2667
2679
  flex-shrink: 0;
2668
2680
  }
2669
- ._expandIcon_8naxt_245 {
2681
+ ._expandIcon_15brx_247 {
2670
2682
  width: 20px;
2671
2683
  flex-shrink: 0;
2672
2684
  position: relative;
2673
2685
  margin-top: 1px;
2674
2686
  }
2675
- ._expandIcon_8naxt_245._expanded_8naxt_251 svg {
2687
+ ._expandIcon_15brx_247._expanded_15brx_253 svg {
2676
2688
  transform: rotate(90deg);
2677
2689
  }
2678
- ._right_8naxt_254 {
2690
+ ._right_15brx_256 {
2679
2691
  margin-left: auto;
2680
2692
  display: flex;
2681
2693
  align-items: center;
@@ -2683,24 +2695,24 @@ html[data-theme='dark'] {
2683
2695
  margin-bottom: -2px;
2684
2696
  margin-right: -8px;
2685
2697
  }
2686
- ._actions_8naxt_262 {
2698
+ ._actions_15brx_264 {
2687
2699
  margin-left: 8px;
2688
2700
  display: flex;
2689
2701
  align-items: center;
2690
2702
  }
2691
- ._scrollableList_8naxt_267 {
2703
+ ._scrollableList_15brx_269 {
2692
2704
  height: 100%;
2693
2705
  overflow-y: auto;
2694
2706
  scroll-behavior: smooth;
2695
2707
  }
2696
- ._hideScrollbar_8naxt_63 {
2708
+ ._hideScrollbar_15brx_64 {
2697
2709
  /* Firefox */
2698
2710
  scrollbar-width: none;
2699
2711
  /* IE 10+ */
2700
2712
  -ms-overflow-style: none;
2701
2713
  /* Chrome, Safari and Opera */
2702
2714
  }
2703
- ._hideScrollbar_8naxt_63::-webkit-scrollbar {
2715
+ ._hideScrollbar_15brx_64::-webkit-scrollbar {
2704
2716
  display: none;
2705
2717
  }
2706
2718
  ._loader_16v7q_1 {
@@ -2758,76 +2770,77 @@ html[data-theme='dark'] {
2758
2770
  ._details_16v7q_53 {
2759
2771
  margin-top: 8px;
2760
2772
  }
2761
- ._inputInTable_kf5fv_1 {
2773
+ ._inputInTable_17xnf_1 {
2762
2774
  background-color: transparent;
2763
2775
  border-radius: inherit !important;
2764
2776
  height: var(--size);
2765
2777
  min-height: 100%;
2766
2778
  }
2767
- ._inputInTable_kf5fv_1:not(:hover) {
2779
+ ._inputInTable_17xnf_1:not(:hover) {
2768
2780
  border-color: transparent;
2769
2781
  }
2770
- ._inputHover_kf5fv_10 {
2782
+ ._inputHover_17xnf_10 {
2771
2783
  position: relative;
2772
2784
  border-color: var(--color-border-hover);
2773
2785
  z-index: 2;
2774
2786
  }
2775
- ._inputFocus_kf5fv_15 {
2787
+ ._inputFocus_17xnf_15 {
2776
2788
  position: relative;
2777
2789
  outline: none !important;
2778
2790
  border-color: var(--color-border-focus) !important;
2779
2791
  box-shadow: var(--shadow-focus);
2780
2792
  z-index: 3;
2781
2793
  }
2782
- ._inputError_kf5fv_22,
2783
- ._inputWarning_kf5fv_23 {
2794
+ ._inputError_17xnf_22,
2795
+ ._inputWarning_17xnf_23 {
2784
2796
  position: relative;
2785
2797
  }
2786
- ._inputError_kf5fv_22 {
2798
+ ._inputError_17xnf_22 {
2787
2799
  z-index: 2;
2788
2800
  border-color: var(--color-border-error);
2789
2801
  color: var(--color-text-error) !important;
2790
2802
  background-color: var(--color-background-error);
2791
2803
  }
2792
- ._inputError_kf5fv_22:hover {
2804
+ ._inputError_17xnf_22:hover {
2793
2805
  border-color: var(--color-border-error-hover) !important;
2794
2806
  }
2795
- ._inputError_kf5fv_22:focus {
2807
+ ._inputError_17xnf_22:focus {
2796
2808
  position: relative;
2797
2809
  outline: none !important;
2798
2810
  border-color: var(--color-border-focus) !important;
2799
2811
  box-shadow: var(--shadow-focus);
2800
2812
  z-index: 3;
2801
2813
  }
2802
- ._inputWarning_kf5fv_23 {
2814
+ ._inputWarning_17xnf_23 {
2803
2815
  z-index: 1;
2804
2816
  border-color: var(--color-border-warning);
2805
2817
  color: var(--color-text-warning) !important;
2806
2818
  background-color: var(--color-background-warning);
2807
2819
  }
2808
- ._inputWarning_kf5fv_23:hover {
2820
+ ._inputWarning_17xnf_23:hover {
2809
2821
  border-color: var(--color-border-warning-hover) !important;
2810
2822
  }
2811
- ._inputWarning_kf5fv_23:focus {
2823
+ ._inputWarning_17xnf_23:focus {
2812
2824
  position: relative;
2813
2825
  outline: none !important;
2814
2826
  border-color: var(--color-border-focus) !important;
2815
2827
  box-shadow: var(--shadow-focus);
2816
2828
  z-index: 3;
2817
2829
  }
2818
- ._inputDisabled_kf5fv_58 {
2830
+ ._inputDisabled_17xnf_58 {
2819
2831
  pointer-events: none;
2820
2832
  background-color: var(--color-background-disabled);
2821
2833
  color: var(--color-text-muted);
2834
+ box-shadow: none;
2822
2835
  }
2823
- ._hideScrollbars_kf5fv_63 {
2836
+ ._hideScrollbars_17xnf_64 {
2824
2837
  /* Firefox */
2825
2838
  scrollbar-width: none;
2826
2839
  /* IE 10+ */
2827
2840
  -ms-overflow-style: none;
2828
2841
  /* Chrome, Safari and Opera */
2829
2842
  }
2830
- ._hideScrollbars_kf5fv_63::-webkit-scrollbar {
2843
+ ._hideScrollbars_17xnf_64::-webkit-scrollbar {
2831
2844
  display: none;
2832
2845
  }
2833
2846
  :root {
@@ -2836,7 +2849,7 @@ html[data-theme='dark'] {
2836
2849
  html[data-theme='dark'] {
2837
2850
  --color-border-message: transparent;
2838
2851
  }
2839
- ._container_kf5fv_79 {
2852
+ ._container_17xnf_80 {
2840
2853
  padding: var(--padding-card);
2841
2854
  border-radius: var(--border-radius);
2842
2855
  display: inline-flex;
@@ -2851,40 +2864,40 @@ html[data-theme='dark'] {
2851
2864
  -ms-overflow-style: none;
2852
2865
  /* Chrome, Safari and Opera */
2853
2866
  }
2854
- ._container_kf5fv_79::-webkit-scrollbar {
2867
+ ._container_17xnf_80::-webkit-scrollbar {
2855
2868
  display: none;
2856
2869
  }
2857
- ._container_kf5fv_79._block_kf5fv_97 {
2870
+ ._container_17xnf_80._block_17xnf_98 {
2858
2871
  display: flex;
2859
2872
  }
2860
- ._container_kf5fv_79._info_kf5fv_100 {
2873
+ ._container_17xnf_80._info_17xnf_101 {
2861
2874
  color: var(--color-text-info);
2862
2875
  background-color: var(--color-background-info);
2863
2876
  }
2864
- ._container_kf5fv_79._success_kf5fv_104 {
2877
+ ._container_17xnf_80._success_17xnf_105 {
2865
2878
  color: var(--color-text-success);
2866
2879
  background-color: var(--color-background-success);
2867
2880
  }
2868
- ._container_kf5fv_79._warning_kf5fv_108 {
2881
+ ._container_17xnf_80._warning_17xnf_109 {
2869
2882
  color: var(--color-text-warning);
2870
2883
  background-color: var(--color-background-warning);
2871
2884
  }
2872
- ._container_kf5fv_79._error_kf5fv_112 {
2885
+ ._container_17xnf_80._error_17xnf_113 {
2873
2886
  color: var(--color-text-error);
2874
2887
  background-color: var(--color-background-error);
2875
2888
  }
2876
- ._content_kf5fv_116 {
2889
+ ._content_17xnf_117 {
2877
2890
  flex: 1;
2878
2891
  min-width: 0;
2879
2892
  }
2880
- ._heading_kf5fv_120 {
2893
+ ._heading_17xnf_121 {
2881
2894
  font-weight: bold;
2882
2895
  letter-spacing: 0.1em;
2883
2896
  text-transform: uppercase;
2884
2897
  font-size: var(--font-size-sm);
2885
2898
  line-height: var(--line-height);
2886
2899
  }
2887
- ._icon_kf5fv_127 {
2900
+ ._icon_17xnf_128 {
2888
2901
  display: flex;
2889
2902
  justify-content: center;
2890
2903
  align-items: center;
@@ -2892,34 +2905,34 @@ html[data-theme='dark'] {
2892
2905
  margin-right: 12px;
2893
2906
  margin-top: -2px;
2894
2907
  }
2895
- ._dismiss_kf5fv_135 {
2908
+ ._dismiss_17xnf_136 {
2896
2909
  margin-left: 12px;
2897
2910
  color: var(--color-text);
2898
2911
  }
2899
- ._dismiss_kf5fv_135._absolute_kf5fv_139 {
2912
+ ._dismiss_17xnf_136._absolute_17xnf_140 {
2900
2913
  position: absolute;
2901
2914
  top: 10px;
2902
2915
  right: 14px;
2903
2916
  }
2904
- ._dismiss_kf5fv_135 {
2917
+ ._dismiss_17xnf_136 {
2905
2918
  margin-top: -2px;
2906
2919
  margin-right: -6px;
2907
2920
  }
2908
- ._legendToggle_kf5fv_148 {
2921
+ ._legendToggle_17xnf_149 {
2909
2922
  opacity: 0.6;
2910
2923
  }
2911
- ._legendToggle_kf5fv_148:hover {
2924
+ ._legendToggle_17xnf_149:hover {
2912
2925
  opacity: 0.8;
2913
2926
  cursor: pointer;
2914
2927
  }
2915
- ._legendToggle_kf5fv_148:active {
2928
+ ._legendToggle_17xnf_149:active {
2916
2929
  opacity: 1;
2917
2930
  }
2918
- ._detailsText_kf5fv_158 {
2931
+ ._detailsText_17xnf_159 {
2919
2932
  margin-top: var(--spacing);
2920
2933
  word-break: break-word;
2921
2934
  }
2922
- ._footer_kf5fv_162 {
2935
+ ._footer_17xnf_163 {
2923
2936
  display: flex;
2924
2937
  flex-wrap: wrap;
2925
2938
  gap: 8px;
@@ -3027,79 +3040,80 @@ html[data-theme='dark'] {
3027
3040
  ._page_beskc_1._scroll_beskc_23 {
3028
3041
  overflow: auto;
3029
3042
  }
3030
- ._inputInTable_abrmf_1 {
3043
+ ._inputInTable_rp8n6_1 {
3031
3044
  background-color: transparent;
3032
3045
  border-radius: inherit !important;
3033
3046
  height: var(--size);
3034
3047
  min-height: 100%;
3035
3048
  }
3036
- ._inputInTable_abrmf_1:not(:hover) {
3049
+ ._inputInTable_rp8n6_1:not(:hover) {
3037
3050
  border-color: transparent;
3038
3051
  }
3039
- ._inputHover_abrmf_10 {
3052
+ ._inputHover_rp8n6_10 {
3040
3053
  position: relative;
3041
3054
  border-color: var(--color-border-hover);
3042
3055
  z-index: 2;
3043
3056
  }
3044
- ._inputFocus_abrmf_15 {
3057
+ ._inputFocus_rp8n6_15 {
3045
3058
  position: relative;
3046
3059
  outline: none !important;
3047
3060
  border-color: var(--color-border-focus) !important;
3048
3061
  box-shadow: var(--shadow-focus);
3049
3062
  z-index: 3;
3050
3063
  }
3051
- ._inputError_abrmf_22,
3052
- ._inputWarning_abrmf_23 {
3064
+ ._inputError_rp8n6_22,
3065
+ ._inputWarning_rp8n6_23 {
3053
3066
  position: relative;
3054
3067
  }
3055
- ._inputError_abrmf_22 {
3068
+ ._inputError_rp8n6_22 {
3056
3069
  z-index: 2;
3057
3070
  border-color: var(--color-border-error);
3058
3071
  color: var(--color-text-error) !important;
3059
3072
  background-color: var(--color-background-error);
3060
3073
  }
3061
- ._inputError_abrmf_22:hover {
3074
+ ._inputError_rp8n6_22:hover {
3062
3075
  border-color: var(--color-border-error-hover) !important;
3063
3076
  }
3064
- ._inputError_abrmf_22:focus {
3077
+ ._inputError_rp8n6_22:focus {
3065
3078
  position: relative;
3066
3079
  outline: none !important;
3067
3080
  border-color: var(--color-border-focus) !important;
3068
3081
  box-shadow: var(--shadow-focus);
3069
3082
  z-index: 3;
3070
3083
  }
3071
- ._inputWarning_abrmf_23 {
3084
+ ._inputWarning_rp8n6_23 {
3072
3085
  z-index: 1;
3073
3086
  border-color: var(--color-border-warning);
3074
3087
  color: var(--color-text-warning) !important;
3075
3088
  background-color: var(--color-background-warning);
3076
3089
  }
3077
- ._inputWarning_abrmf_23:hover {
3090
+ ._inputWarning_rp8n6_23:hover {
3078
3091
  border-color: var(--color-border-warning-hover) !important;
3079
3092
  }
3080
- ._inputWarning_abrmf_23:focus {
3093
+ ._inputWarning_rp8n6_23:focus {
3081
3094
  position: relative;
3082
3095
  outline: none !important;
3083
3096
  border-color: var(--color-border-focus) !important;
3084
3097
  box-shadow: var(--shadow-focus);
3085
3098
  z-index: 3;
3086
3099
  }
3087
- ._inputDisabled_abrmf_58 {
3100
+ ._inputDisabled_rp8n6_58 {
3088
3101
  pointer-events: none;
3089
3102
  background-color: var(--color-background-disabled);
3090
3103
  color: var(--color-text-muted);
3104
+ box-shadow: none;
3091
3105
  }
3092
- ._hideScrollbars_abrmf_63 {
3106
+ ._hideScrollbars_rp8n6_64 {
3093
3107
  /* Firefox */
3094
3108
  scrollbar-width: none;
3095
3109
  /* IE 10+ */
3096
3110
  -ms-overflow-style: none;
3097
3111
  /* Chrome, Safari and Opera */
3098
3112
  }
3099
- ._hideScrollbars_abrmf_63::-webkit-scrollbar {
3113
+ ._hideScrollbars_rp8n6_64::-webkit-scrollbar {
3100
3114
  display: none;
3101
3115
  }
3102
- ._select_abrmf_73 {
3116
+ ._select_rp8n6_74 {
3103
3117
  appearance: none !important;
3104
3118
  -webkit-appearance: none !important;
3105
3119
  -moz-appearance: none !important;
@@ -3109,88 +3123,91 @@ html[data-theme='dark'] {
3109
3123
  padding-right: calc(var(--size-xs) + (2 * var(--spacing-xs)));
3110
3124
  color: var(--color-text);
3111
3125
  vertical-align: middle;
3112
- background: var(--color-background-input) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' stroke-width='1.75' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6' /%3E%3C/svg%3E") no-repeat right var(--spacing-xs) center;
3126
+ background: var(--color-background-input) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' stroke-width='1.75' stroke='rgb(63, 63, 51)' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6' /%3E%3C/svg%3E") no-repeat right var(--spacing-xs) center;
3113
3127
  background-size: calc(var(--size) / 2);
3114
3128
  border: 1px solid var(--color-border);
3115
3129
  border-radius: var(--border-radius);
3116
3130
  height: var(--size);
3117
3131
  box-shadow: var(--shadow-button);
3118
3132
  }
3119
- ._select_abrmf_73 option {
3133
+ [data-theme='dark'] ._select_rp8n6_74 {
3134
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' stroke-width='1.75' stroke='rgb(215, 215, 206)' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6' /%3E%3C/svg%3E");
3135
+ }
3136
+ ._select_rp8n6_74 option {
3120
3137
  background: var(--color-background-input);
3121
3138
  color: var(--color-text);
3122
3139
  }
3123
- ._select_abrmf_73 option:focus {
3140
+ ._select_rp8n6_74 option:focus {
3124
3141
  background-color: var(--color-background-listitem-active);
3125
3142
  }
3126
- ._select_abrmf_73:-moz-focusring {
3143
+ ._select_rp8n6_74:-moz-focusring {
3127
3144
  color: transparent !important;
3128
3145
  text-shadow: 0 0 0 #000 !important;
3129
3146
  }
3130
- ._select_abrmf_73:hover {
3147
+ ._select_rp8n6_74:hover {
3131
3148
  position: relative;
3132
3149
  border-color: var(--color-border-hover);
3133
3150
  z-index: 2;
3134
3151
  cursor: pointer;
3135
3152
  }
3136
- ._select_abrmf_73:focus {
3153
+ ._select_rp8n6_74:focus {
3137
3154
  position: relative;
3138
3155
  outline: none !important;
3139
3156
  border-color: var(--color-border-focus) !important;
3140
3157
  box-shadow: var(--shadow-focus);
3141
3158
  z-index: 3;
3142
3159
  }
3143
- ._select_abrmf_73._isInTable_abrmf_114 {
3160
+ ._select_rp8n6_74._isInTable_rp8n6_118 {
3144
3161
  background-color: transparent;
3145
3162
  border-radius: inherit !important;
3146
3163
  height: var(--size);
3147
3164
  min-height: 100%;
3148
3165
  }
3149
- ._select_abrmf_73._isInTable_abrmf_114:not(:hover) {
3166
+ ._select_rp8n6_74._isInTable_rp8n6_118:not(:hover) {
3150
3167
  border-color: transparent;
3151
3168
  }
3152
- ._select_abrmf_73._unSelected_abrmf_123 {
3169
+ ._select_rp8n6_74._unSelected_rp8n6_127 {
3153
3170
  color: var(--color-text-placeholder) !important;
3154
3171
  }
3155
- ._select_abrmf_73._unSelected_abrmf_123:-moz-focusring {
3172
+ ._select_rp8n6_74._unSelected_rp8n6_127:-moz-focusring {
3156
3173
  color: transparent !important;
3157
3174
  text-shadow: 0 0 0 #000 !important;
3158
3175
  }
3159
- ._select_abrmf_73._error_abrmf_130 {
3176
+ ._select_rp8n6_74._error_rp8n6_134 {
3160
3177
  position: relative;
3161
3178
  z-index: 2;
3162
3179
  border-color: var(--color-border-error);
3163
3180
  color: var(--color-text-error) !important;
3164
3181
  background-color: var(--color-background-error);
3165
3182
  }
3166
- ._select_abrmf_73._error_abrmf_130:hover {
3183
+ ._select_rp8n6_74._error_rp8n6_134:hover {
3167
3184
  border-color: var(--color-border-error-hover) !important;
3168
3185
  }
3169
- ._select_abrmf_73._error_abrmf_130:focus {
3186
+ ._select_rp8n6_74._error_rp8n6_134:focus {
3170
3187
  position: relative;
3171
3188
  outline: none !important;
3172
3189
  border-color: var(--color-border-focus) !important;
3173
3190
  box-shadow: var(--shadow-focus);
3174
3191
  z-index: 3;
3175
3192
  }
3176
- ._select_abrmf_73._warning_abrmf_147 {
3193
+ ._select_rp8n6_74._warning_rp8n6_151 {
3177
3194
  position: relative;
3178
3195
  z-index: 1;
3179
3196
  border-color: var(--color-border-warning);
3180
3197
  color: var(--color-text-warning) !important;
3181
3198
  background-color: var(--color-background-warning);
3182
3199
  }
3183
- ._select_abrmf_73._warning_abrmf_147:hover {
3200
+ ._select_rp8n6_74._warning_rp8n6_151:hover {
3184
3201
  border-color: var(--color-border-warning-hover) !important;
3185
3202
  }
3186
- ._select_abrmf_73._warning_abrmf_147:focus {
3203
+ ._select_rp8n6_74._warning_rp8n6_151:focus {
3187
3204
  position: relative;
3188
3205
  outline: none !important;
3189
3206
  border-color: var(--color-border-focus) !important;
3190
3207
  box-shadow: var(--shadow-focus);
3191
3208
  z-index: 3;
3192
3209
  }
3193
- ._select_abrmf_73._small_abrmf_164 {
3210
+ ._select_rp8n6_74._small_rp8n6_168 {
3194
3211
  font-size: var(--font-size-sm);
3195
3212
  height: var(--size-sm);
3196
3213
  padding: var(--padding-input-sm);
@@ -3198,24 +3215,25 @@ html[data-theme='dark'] {
3198
3215
  background-position: right var(--spacing-2xs) center;
3199
3216
  padding-right: 28px;
3200
3217
  }
3201
- ._select_abrmf_73._right_abrmf_172 {
3218
+ ._select_rp8n6_74._right_rp8n6_176 {
3202
3219
  text-align: right;
3203
3220
  text-align-last: right;
3204
3221
  }
3205
- ._select_abrmf_73[disabled] {
3222
+ ._select_rp8n6_74[disabled] {
3206
3223
  opacity: 1;
3207
3224
  pointer-events: none;
3208
3225
  background-color: var(--color-background-disabled);
3209
3226
  color: var(--color-text-muted);
3227
+ box-shadow: none;
3210
3228
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='gray' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
3211
3229
  }
3212
- ._groupOrderFirst_abrmf_183,
3213
- ._groupOrderMiddle_abrmf_184 {
3230
+ ._groupOrderFirst_rp8n6_188,
3231
+ ._groupOrderMiddle_rp8n6_189 {
3214
3232
  border-top-right-radius: 0 !important;
3215
3233
  border-bottom-right-radius: 0 !important;
3216
3234
  }
3217
- ._groupOrderLast_abrmf_188,
3218
- ._groupOrderMiddle_abrmf_184 {
3235
+ ._groupOrderLast_rp8n6_193,
3236
+ ._groupOrderMiddle_rp8n6_189 {
3219
3237
  border-top-left-radius: 0 !important;
3220
3238
  border-bottom-left-radius: 0 !important;
3221
3239
  }
@@ -3331,83 +3349,84 @@ html[data-theme='dark'] {
3331
3349
  display: inline;
3332
3350
  white-space: nowrap;
3333
3351
  }
3334
- ._inputInTable_1x17a_1 {
3352
+ ._inputInTable_knwss_1 {
3335
3353
  background-color: transparent;
3336
3354
  border-radius: inherit !important;
3337
3355
  height: var(--size);
3338
3356
  min-height: 100%;
3339
3357
  }
3340
- ._inputInTable_1x17a_1:not(:hover) {
3358
+ ._inputInTable_knwss_1:not(:hover) {
3341
3359
  border-color: transparent;
3342
3360
  }
3343
- ._inputHover_1x17a_10 {
3361
+ ._inputHover_knwss_10 {
3344
3362
  position: relative;
3345
3363
  border-color: var(--color-border-hover);
3346
3364
  z-index: 2;
3347
3365
  }
3348
- ._inputFocus_1x17a_15 {
3366
+ ._inputFocus_knwss_15 {
3349
3367
  position: relative;
3350
3368
  outline: none !important;
3351
3369
  border-color: var(--color-border-focus) !important;
3352
3370
  box-shadow: var(--shadow-focus);
3353
3371
  z-index: 3;
3354
3372
  }
3355
- ._inputError_1x17a_22,
3356
- ._inputWarning_1x17a_23 {
3373
+ ._inputError_knwss_22,
3374
+ ._inputWarning_knwss_23 {
3357
3375
  position: relative;
3358
3376
  }
3359
- ._inputError_1x17a_22 {
3377
+ ._inputError_knwss_22 {
3360
3378
  z-index: 2;
3361
3379
  border-color: var(--color-border-error);
3362
3380
  color: var(--color-text-error) !important;
3363
3381
  background-color: var(--color-background-error);
3364
3382
  }
3365
- ._inputError_1x17a_22:hover {
3383
+ ._inputError_knwss_22:hover {
3366
3384
  border-color: var(--color-border-error-hover) !important;
3367
3385
  }
3368
- ._inputError_1x17a_22:focus {
3386
+ ._inputError_knwss_22:focus {
3369
3387
  position: relative;
3370
3388
  outline: none !important;
3371
3389
  border-color: var(--color-border-focus) !important;
3372
3390
  box-shadow: var(--shadow-focus);
3373
3391
  z-index: 3;
3374
3392
  }
3375
- ._inputWarning_1x17a_23 {
3393
+ ._inputWarning_knwss_23 {
3376
3394
  z-index: 1;
3377
3395
  border-color: var(--color-border-warning);
3378
3396
  color: var(--color-text-warning) !important;
3379
3397
  background-color: var(--color-background-warning);
3380
3398
  }
3381
- ._inputWarning_1x17a_23:hover {
3399
+ ._inputWarning_knwss_23:hover {
3382
3400
  border-color: var(--color-border-warning-hover) !important;
3383
3401
  }
3384
- ._inputWarning_1x17a_23:focus {
3402
+ ._inputWarning_knwss_23:focus {
3385
3403
  position: relative;
3386
3404
  outline: none !important;
3387
3405
  border-color: var(--color-border-focus) !important;
3388
3406
  box-shadow: var(--shadow-focus);
3389
3407
  z-index: 3;
3390
3408
  }
3391
- ._inputDisabled_1x17a_58 {
3409
+ ._inputDisabled_knwss_58 {
3392
3410
  pointer-events: none;
3393
3411
  background-color: var(--color-background-disabled);
3394
3412
  color: var(--color-text-muted);
3413
+ box-shadow: none;
3395
3414
  }
3396
- ._hideScrollbars_1x17a_63 {
3415
+ ._hideScrollbars_knwss_64 {
3397
3416
  /* Firefox */
3398
3417
  scrollbar-width: none;
3399
3418
  /* IE 10+ */
3400
3419
  -ms-overflow-style: none;
3401
3420
  /* Chrome, Safari and Opera */
3402
3421
  }
3403
- ._hideScrollbars_1x17a_63::-webkit-scrollbar {
3422
+ ._hideScrollbars_knwss_64::-webkit-scrollbar {
3404
3423
  display: none;
3405
3424
  }
3406
3425
  :root {
3407
3426
  --size-select-icon: calc(var(--size) / 2);
3408
3427
  --size-select-icon-sm: calc(var(--size-sm) / 2);
3409
3428
  }
3410
- ._trigger_1x17a_77 {
3429
+ ._trigger_knwss_78 {
3411
3430
  font-weight: normal;
3412
3431
  display: flex;
3413
3432
  align-items: center;
@@ -3419,84 +3438,85 @@ html[data-theme='dark'] {
3419
3438
  padding-left: var(--padding-input-x);
3420
3439
  box-shadow: var(--shadow-button);
3421
3440
  }
3422
- ._trigger_1x17a_77 input {
3441
+ ._trigger_knwss_78 input {
3423
3442
  border: none !important;
3424
3443
  background: transparent !important;
3425
3444
  }
3426
- ._trigger_1x17a_77._isInTable_1x17a_93 {
3445
+ ._trigger_knwss_78._isInTable_knwss_94 {
3427
3446
  background-color: transparent;
3428
3447
  border-radius: inherit !important;
3429
3448
  height: var(--size);
3430
3449
  min-height: 100%;
3431
3450
  }
3432
- ._trigger_1x17a_77._isInTable_1x17a_93:not(:hover) {
3451
+ ._trigger_knwss_78._isInTable_knwss_94:not(:hover) {
3433
3452
  border-color: transparent;
3434
3453
  }
3435
- ._trigger_1x17a_77._isInTable_1x17a_93 ._input_1x17a_1 {
3454
+ ._trigger_knwss_78._isInTable_knwss_94 ._input_knwss_1 {
3436
3455
  background: transparent !important;
3437
3456
  }
3438
- ._trigger_1x17a_77:hover {
3457
+ ._trigger_knwss_78:hover {
3439
3458
  position: relative;
3440
3459
  border-color: var(--color-border-hover);
3441
3460
  z-index: 2;
3442
3461
  cursor: pointer;
3443
3462
  }
3444
- ._trigger_1x17a_77._isOpen_1x17a_111,
3445
- ._trigger_1x17a_77:focus {
3463
+ ._trigger_knwss_78._isOpen_knwss_112,
3464
+ ._trigger_knwss_78:focus {
3446
3465
  position: relative;
3447
3466
  outline: none !important;
3448
3467
  border-color: var(--color-border-focus) !important;
3449
3468
  box-shadow: var(--shadow-focus);
3450
3469
  z-index: 3;
3451
3470
  }
3452
- ._trigger_1x17a_77._error_1x17a_119 {
3471
+ ._trigger_knwss_78._error_knwss_120 {
3453
3472
  position: relative;
3454
3473
  z-index: 2;
3455
3474
  border-color: var(--color-border-error);
3456
3475
  color: var(--color-text-error) !important;
3457
3476
  background-color: var(--color-background-error);
3458
3477
  }
3459
- ._trigger_1x17a_77._error_1x17a_119:hover {
3478
+ ._trigger_knwss_78._error_knwss_120:hover {
3460
3479
  border-color: var(--color-border-error-hover) !important;
3461
3480
  }
3462
- ._trigger_1x17a_77._error_1x17a_119:focus {
3481
+ ._trigger_knwss_78._error_knwss_120:focus {
3463
3482
  position: relative;
3464
3483
  outline: none !important;
3465
3484
  border-color: var(--color-border-focus) !important;
3466
3485
  box-shadow: var(--shadow-focus);
3467
3486
  z-index: 3;
3468
3487
  }
3469
- ._trigger_1x17a_77._warning_1x17a_136 {
3488
+ ._trigger_knwss_78._warning_knwss_137 {
3470
3489
  position: relative;
3471
3490
  z-index: 1;
3472
3491
  border-color: var(--color-border-warning);
3473
3492
  color: var(--color-text-warning) !important;
3474
3493
  background-color: var(--color-background-warning);
3475
3494
  }
3476
- ._trigger_1x17a_77._warning_1x17a_136:hover {
3495
+ ._trigger_knwss_78._warning_knwss_137:hover {
3477
3496
  border-color: var(--color-border-warning-hover) !important;
3478
3497
  }
3479
- ._trigger_1x17a_77._warning_1x17a_136:focus {
3498
+ ._trigger_knwss_78._warning_knwss_137:focus {
3480
3499
  position: relative;
3481
3500
  outline: none !important;
3482
3501
  border-color: var(--color-border-focus) !important;
3483
3502
  box-shadow: var(--shadow-focus);
3484
3503
  z-index: 3;
3485
3504
  }
3486
- ._trigger_1x17a_77._disabled_1x17a_153 {
3505
+ ._trigger_knwss_78._disabled_knwss_154 {
3487
3506
  pointer-events: none;
3488
3507
  background-color: var(--color-background-disabled);
3489
3508
  color: var(--color-text-muted);
3509
+ box-shadow: none;
3490
3510
  }
3491
- ._icons_1x17a_158 {
3511
+ ._icons_knwss_160 {
3492
3512
  display: flex;
3493
3513
  flex-wrap: nowrap;
3494
3514
  flex-shrink: 0;
3495
3515
  position: relative;
3496
3516
  z-index: 2;
3497
3517
  }
3498
- ._icons_1x17a_158 ._clearAll_1x17a_165,
3499
- ._icons_1x17a_158 ._iconOpen_1x17a_166 {
3518
+ ._icons_knwss_160 ._clearAll_knwss_167,
3519
+ ._icons_knwss_160 ._iconOpen_knwss_168 {
3500
3520
  font-size: var(--size-select-icon);
3501
3521
  width: var(--size);
3502
3522
  height: var(--size);
@@ -3505,16 +3525,16 @@ html[data-theme='dark'] {
3505
3525
  align-items: center;
3506
3526
  color: var(--color-text);
3507
3527
  }
3508
- ._small_1x17a_175 ._icons_1x17a_158 ._clearAll_1x17a_165,
3509
- ._small_1x17a_175 ._icons_1x17a_158 ._iconOpen_1x17a_166 {
3528
+ ._small_knwss_177 ._icons_knwss_160 ._clearAll_knwss_167,
3529
+ ._small_knwss_177 ._icons_knwss_160 ._iconOpen_knwss_168 {
3510
3530
  font-size: var(--size-select-icon-sm);
3511
3531
  width: var(--size-sm);
3512
3532
  height: var(--size-sm);
3513
3533
  }
3514
- ._icons_1x17a_158 ._clearAll_1x17a_165:hover {
3534
+ ._icons_knwss_160 ._clearAll_knwss_167:hover {
3515
3535
  color: var(--color-text-primary);
3516
3536
  }
3517
- ._triggerInputContainer_1x17a_184 {
3537
+ ._triggerInputContainer_knwss_186 {
3518
3538
  display: flex;
3519
3539
  align-items: center;
3520
3540
  position: relative;
@@ -3523,31 +3543,31 @@ html[data-theme='dark'] {
3523
3543
  min-width: 0;
3524
3544
  margin-right: 4px;
3525
3545
  }
3526
- ._right_1x17a_193 ._triggerInputContainer_1x17a_184 {
3546
+ ._right_knwss_195 ._triggerInputContainer_knwss_186 {
3527
3547
  justify-content: flex-end;
3528
3548
  text-align: right;
3529
3549
  }
3530
- ._right_1x17a_193 ._triggerInputContainer_1x17a_184 input {
3550
+ ._right_knwss_195 ._triggerInputContainer_knwss_186 input {
3531
3551
  padding-right: 0;
3532
3552
  padding-left: 0;
3533
3553
  text-align: right;
3534
3554
  width: 0;
3535
3555
  }
3536
- ._right_1x17a_193 ._triggerInputContainer_1x17a_184 input:focus {
3556
+ ._right_knwss_195 ._triggerInputContainer_knwss_186 input:focus {
3537
3557
  width: auto;
3538
3558
  }
3539
- ._multiOptions_1x17a_206 {
3559
+ ._multiOptions_knwss_208 {
3540
3560
  display: flex;
3541
3561
  overflow: hidden;
3542
3562
  margin-left: -8px;
3543
3563
  }
3544
- ._small_1x17a_175 ._multiOptions_1x17a_206 {
3564
+ ._small_knwss_177 ._multiOptions_knwss_208 {
3545
3565
  margin-left: -5px;
3546
3566
  }
3547
- ._multiOptions_1x17a_206:empty {
3567
+ ._multiOptions_knwss_208:empty {
3548
3568
  display: none !important;
3549
3569
  }
3550
- ._multiOptions_1x17a_206 ._multiOption_1x17a_206 {
3570
+ ._multiOptions_knwss_208 ._multiOption_knwss_208 {
3551
3571
  user-select: none;
3552
3572
  pointer-events: none;
3553
3573
  display: inline-flex;
@@ -3564,14 +3584,14 @@ html[data-theme='dark'] {
3564
3584
  flex-shrink: 0;
3565
3585
  margin-right: 2px;
3566
3586
  }
3567
- ._small_1x17a_175 ._multiOptions_1x17a_206 ._multiOption_1x17a_206 {
3587
+ ._small_knwss_177 ._multiOptions_knwss_208 ._multiOption_knwss_208 {
3568
3588
  height: var(--size-xs);
3569
3589
  padding: 0 3px;
3570
3590
  }
3571
- ._multiOptions_1x17a_206 ._multiOption_1x17a_206 ._label_1x17a_238 {
3591
+ ._multiOptions_knwss_208 ._multiOption_knwss_208 ._label_knwss_240 {
3572
3592
  white-space: nowrap;
3573
3593
  }
3574
- ._multiOptions_1x17a_206 ._multiOption_1x17a_206 ._closeMultiOption_1x17a_241 {
3594
+ ._multiOptions_knwss_208 ._multiOption_knwss_208 ._closeMultiOption_knwss_243 {
3575
3595
  flex-shrink: 0;
3576
3596
  display: flex;
3577
3597
  align-items: center;
@@ -3581,13 +3601,13 @@ html[data-theme='dark'] {
3581
3601
  opacity: 0.25;
3582
3602
  aspect-ratio: 1;
3583
3603
  }
3584
- ._multiOptions_1x17a_206 ._multiOption_1x17a_206 ._closeMultiOption_1x17a_241:hover,
3585
- ._multiOptions_1x17a_206 ._multiOption_1x17a_206 ._closeMultiOption_1x17a_241._focus_1x17a_252 {
3604
+ ._multiOptions_knwss_208 ._multiOption_knwss_208 ._closeMultiOption_knwss_243:hover,
3605
+ ._multiOptions_knwss_208 ._multiOption_knwss_208 ._closeMultiOption_knwss_243._focus_knwss_254 {
3586
3606
  opacity: 1;
3587
3607
  outline: 0;
3588
3608
  }
3589
- ._selectedSingleValue_1x17a_256,
3590
- ._placeHolder_1x17a_257 {
3609
+ ._selectedSingleValue_knwss_258,
3610
+ ._placeHolder_knwss_259 {
3591
3611
  line-height: calc(var(--size) - 2px);
3592
3612
  right: 0;
3593
3613
  left: 0;
@@ -3597,10 +3617,10 @@ html[data-theme='dark'] {
3597
3617
  display: block;
3598
3618
  position: absolute;
3599
3619
  }
3600
- ._placeHolder_1x17a_257 {
3620
+ ._placeHolder_knwss_259 {
3601
3621
  color: var(--color-text-placeholder);
3602
3622
  }
3603
- ._input_1x17a_1 {
3623
+ ._input_knwss_1 {
3604
3624
  font-family: var(--font-family);
3605
3625
  background-color: transparent;
3606
3626
  border: none;
@@ -3608,43 +3628,43 @@ html[data-theme='dark'] {
3608
3628
  padding: 0;
3609
3629
  width: 0;
3610
3630
  }
3611
- ._input_1x17a_1._error_1x17a_119 {
3631
+ ._input_knwss_1._error_knwss_120 {
3612
3632
  color: var(--color-text-error) !important;
3613
3633
  }
3614
- ._input_1x17a_1:focus {
3634
+ ._input_knwss_1:focus {
3615
3635
  outline: none;
3616
3636
  width: auto;
3617
3637
  }
3618
- ._small_1x17a_175 {
3638
+ ._small_knwss_177 {
3619
3639
  height: var(--size-sm);
3620
3640
  font-size: var(--font-size-sm);
3621
3641
  padding-left: var(--padding-input-sm-x);
3622
3642
  }
3623
- ._small_1x17a_175 ._selectedSingleValue_1x17a_256,
3624
- ._small_1x17a_175 ._placeHolder_1x17a_257,
3625
- ._small_1x17a_175 ._input_1x17a_1 {
3643
+ ._small_knwss_177 ._selectedSingleValue_knwss_258,
3644
+ ._small_knwss_177 ._placeHolder_knwss_259,
3645
+ ._small_knwss_177 ._input_knwss_1 {
3626
3646
  height: calc(var(--size-sm) - 2px);
3627
3647
  line-height: calc(var(--size-sm) - 2px);
3628
3648
  }
3629
- ._groupOrderFirst_1x17a_296,
3630
- ._groupOrderMiddle_1x17a_297 {
3649
+ ._groupOrderFirst_knwss_298,
3650
+ ._groupOrderMiddle_knwss_299 {
3631
3651
  border-top-right-radius: 0 !important;
3632
3652
  border-bottom-right-radius: 0 !important;
3633
3653
  }
3634
- ._groupOrderLast_1x17a_301,
3635
- ._groupOrderMiddle_1x17a_297 {
3654
+ ._groupOrderLast_knwss_303,
3655
+ ._groupOrderMiddle_knwss_299 {
3636
3656
  border-top-left-radius: 0 !important;
3637
3657
  border-bottom-left-radius: 0 !important;
3638
3658
  }
3639
- ._detailedLabel_1x17a_306 {
3659
+ ._detailedLabel_knwss_308 {
3640
3660
  width: 100%;
3641
3661
  }
3642
- ._detailedLabel_1x17a_306 :first-child {
3662
+ ._detailedLabel_knwss_308 :first-child {
3643
3663
  float: left;
3644
3664
  position: absolute;
3645
3665
  padding-right: 5px;
3646
3666
  }
3647
- ._detailedLabel_1x17a_306 :last-child {
3667
+ ._detailedLabel_knwss_308 :last-child {
3648
3668
  float: right;
3649
3669
  }
3650
3670
  ._paginationContainer_1tmz4_1 {
@@ -3732,18 +3752,19 @@ html[data-theme='dark'] {
3732
3752
  font-weight: bold;
3733
3753
  z-index: 1;
3734
3754
  }
3735
- ._wrapper_1s098_1._inline_1s098_1 {
3755
+ ._wrapper_6mndi_1._inline_6mndi_1 {
3736
3756
  display: flex;
3737
3757
  align-items: center;
3738
3758
  }
3739
- ._wrapper_1s098_1._inline_1s098_1 ._radio_1s098_5:not(:last-child) {
3759
+ ._wrapper_6mndi_1._inline_6mndi_1 ._radio_6mndi_5:not(:last-child) {
3740
3760
  margin-right: var(--spacing);
3741
3761
  }
3742
- ._wrapper_1s098_1 ._labelMargin_1s098_8 {
3762
+ ._wrapper_6mndi_1 ._labelMargin_6mndi_8 {
3743
3763
  margin-right: 10px;
3744
3764
  }
3745
- ._radio_1s098_5 {
3746
- margin: calc((var(--size) - var(--size-checkbox)) / 2) 0;
3765
+ ._radio_6mndi_5 {
3766
+ --size-radio: var(--size-xs);
3767
+ margin: calc((var(--size) - var(--size-radio)) / 2) 0;
3747
3768
  position: relative;
3748
3769
  display: flex;
3749
3770
  align-items: center;
@@ -3751,91 +3772,92 @@ html[data-theme='dark'] {
3751
3772
  backface-visibility: hidden;
3752
3773
  vertical-align: baseline;
3753
3774
  font-style: normal;
3754
- min-height: var(--size-checkbox);
3775
+ min-height: var(--size-radio);
3755
3776
  font-size: var(--font-size);
3756
- line-height: var(--size-checkbox);
3757
- min-width: var(--size-checkbox);
3777
+ line-height: var(--size-radio);
3778
+ min-width: var(--size-radio);
3758
3779
  outline: 0px;
3759
3780
  }
3760
- ._radio_1s098_5._small_1s098_26 {
3761
- margin: calc((var(--size-sm) - var(--size-checkbox)) / 2) 0;
3781
+ ._radio_6mndi_5._small_6mndi_27 {
3782
+ --size-radio: calc(var(--size-xs) - 4px);
3783
+ margin: calc((var(--size-sm) - var(--size-radio)) / 2) 0;
3762
3784
  font-size: var(--font-size-sm);
3763
3785
  }
3764
- ._radio_1s098_5._noMargin_1s098_30 {
3786
+ ._radio_6mndi_5._noMargin_6mndi_32 {
3765
3787
  margin-top: 0;
3766
3788
  margin-bottom: 0;
3767
3789
  }
3768
- ._radio_1s098_5 input {
3790
+ ._radio_6mndi_5 input {
3769
3791
  cursor: pointer;
3770
3792
  position: absolute;
3771
3793
  top: 0;
3772
3794
  left: 0;
3773
3795
  opacity: 0 !important;
3774
3796
  outline: 0;
3775
- width: var(--size-checkbox);
3776
- height: var(--size-checkbox);
3797
+ width: var(--size-radio);
3798
+ height: var(--size-radio);
3777
3799
  z-index: -1;
3778
3800
  }
3779
- ._radio_1s098_5 label {
3801
+ ._radio_6mndi_5 label {
3780
3802
  cursor: pointer;
3781
3803
  position: relative;
3782
3804
  display: block;
3783
- padding-left: calc(var(--size-checkbox) + var(--spacing-xs));
3805
+ padding-left: calc(var(--size-radio) + var(--spacing-xs));
3784
3806
  outline: 0;
3785
3807
  color: var(--color-text);
3786
3808
  transition: color 0.1s ease;
3787
3809
  }
3788
- ._radio_1s098_5 label:before,
3789
- ._radio_1s098_5 label:after {
3810
+ ._radio_6mndi_5 label:before,
3811
+ ._radio_6mndi_5 label:after {
3790
3812
  content: '';
3791
3813
  position: absolute;
3792
3814
  top: 0;
3793
3815
  left: 0;
3794
- width: var(--size-checkbox);
3795
- height: var(--size-checkbox);
3796
- line-height: var(--size-checkbox);
3816
+ width: var(--size-radio);
3817
+ height: var(--size-radio);
3818
+ line-height: var(--size-radio);
3797
3819
  border-radius: 50%;
3798
3820
  transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
3799
3821
  }
3800
- ._radio_1s098_5 label:before {
3822
+ ._radio_6mndi_5 label:before {
3801
3823
  background: var(--color-background-input);
3802
3824
  border: 1px solid var(--color-border-checkbox);
3803
3825
  transform: none;
3804
3826
  }
3805
- ._radio_1s098_5 label:hover:before {
3827
+ ._radio_6mndi_5 label:hover:before {
3806
3828
  border-color: var(--color-border-hover);
3807
3829
  }
3808
- ._radio_1s098_5 label:after {
3830
+ ._radio_6mndi_5 label:after {
3809
3831
  border: none;
3810
3832
  transform: scale(0.46666667);
3811
3833
  background-color: white;
3812
3834
  box-shadow: var(--shadow-button);
3813
3835
  opacity: 0;
3814
3836
  }
3815
- ._radio_1s098_5 input:checked ~ label:before {
3837
+ ._radio_6mndi_5 input:checked ~ label:before {
3816
3838
  background-color: var(--color-background-primary);
3817
3839
  border-color: transparent;
3818
3840
  }
3819
- ._radio_1s098_5 input:checked ~ label:after {
3841
+ ._radio_6mndi_5 input:checked ~ label:after {
3820
3842
  opacity: 1;
3821
3843
  }
3822
- ._radio_1s098_5._disabled_1s098_88 {
3844
+ ._radio_6mndi_5._disabled_6mndi_90 {
3823
3845
  cursor: default;
3824
3846
  pointer-events: none;
3825
3847
  }
3826
- ._radio_1s098_5._disabled_1s098_88 label {
3848
+ ._radio_6mndi_5._disabled_6mndi_90 label {
3827
3849
  color: var(--color-text-muted);
3828
3850
  }
3829
- ._radio_1s098_5._disabled_1s098_88 label:before {
3851
+ ._radio_6mndi_5._disabled_6mndi_90 label:before {
3830
3852
  background-color: var(--color-background-disabled) !important;
3831
3853
  }
3832
- ._radio_1s098_5._disabled_1s098_88 input:checked ~ label:before {
3854
+ ._radio_6mndi_5._disabled_6mndi_90 input:checked ~ label:before {
3833
3855
  border-color: var(--color-border-checkbox);
3834
3856
  }
3835
- ._radio_1s098_5._disabled_1s098_88 input:checked ~ label:after {
3857
+ ._radio_6mndi_5._disabled_6mndi_90 input:checked ~ label:after {
3836
3858
  background-color: var(--color-border-checkbox);
3837
3859
  }
3838
- ._isInTable_1s098_104 {
3860
+ ._isInTable_6mndi_106 {
3839
3861
  margin: 0;
3840
3862
  position: relative;
3841
3863
  top: 1px;
@@ -8363,79 +8385,80 @@ button:active .remirror-menu-pane-shortcut,
8363
8385
  padding: 8px 0;
8364
8386
  align-items: flex-end;
8365
8387
  }
8366
- ._inputInTable_1v1gv_1 {
8388
+ ._inputInTable_qsvki_1 {
8367
8389
  background-color: transparent;
8368
8390
  border-radius: inherit !important;
8369
8391
  height: var(--size);
8370
8392
  min-height: 100%;
8371
8393
  }
8372
- ._inputInTable_1v1gv_1:not(:hover) {
8394
+ ._inputInTable_qsvki_1:not(:hover) {
8373
8395
  border-color: transparent;
8374
8396
  }
8375
- ._inputHover_1v1gv_10 {
8397
+ ._inputHover_qsvki_10 {
8376
8398
  position: relative;
8377
8399
  border-color: var(--color-border-hover);
8378
8400
  z-index: 2;
8379
8401
  }
8380
- ._inputFocus_1v1gv_15 {
8402
+ ._inputFocus_qsvki_15 {
8381
8403
  position: relative;
8382
8404
  outline: none !important;
8383
8405
  border-color: var(--color-border-focus) !important;
8384
8406
  box-shadow: var(--shadow-focus);
8385
8407
  z-index: 3;
8386
8408
  }
8387
- ._inputError_1v1gv_22,
8388
- ._inputWarning_1v1gv_23 {
8409
+ ._inputError_qsvki_22,
8410
+ ._inputWarning_qsvki_23 {
8389
8411
  position: relative;
8390
8412
  }
8391
- ._inputError_1v1gv_22 {
8413
+ ._inputError_qsvki_22 {
8392
8414
  z-index: 2;
8393
8415
  border-color: var(--color-border-error);
8394
8416
  color: var(--color-text-error) !important;
8395
8417
  background-color: var(--color-background-error);
8396
8418
  }
8397
- ._inputError_1v1gv_22:hover {
8419
+ ._inputError_qsvki_22:hover {
8398
8420
  border-color: var(--color-border-error-hover) !important;
8399
8421
  }
8400
- ._inputError_1v1gv_22:focus {
8422
+ ._inputError_qsvki_22:focus {
8401
8423
  position: relative;
8402
8424
  outline: none !important;
8403
8425
  border-color: var(--color-border-focus) !important;
8404
8426
  box-shadow: var(--shadow-focus);
8405
8427
  z-index: 3;
8406
8428
  }
8407
- ._inputWarning_1v1gv_23 {
8429
+ ._inputWarning_qsvki_23 {
8408
8430
  z-index: 1;
8409
8431
  border-color: var(--color-border-warning);
8410
8432
  color: var(--color-text-warning) !important;
8411
8433
  background-color: var(--color-background-warning);
8412
8434
  }
8413
- ._inputWarning_1v1gv_23:hover {
8435
+ ._inputWarning_qsvki_23:hover {
8414
8436
  border-color: var(--color-border-warning-hover) !important;
8415
8437
  }
8416
- ._inputWarning_1v1gv_23:focus {
8438
+ ._inputWarning_qsvki_23:focus {
8417
8439
  position: relative;
8418
8440
  outline: none !important;
8419
8441
  border-color: var(--color-border-focus) !important;
8420
8442
  box-shadow: var(--shadow-focus);
8421
8443
  z-index: 3;
8422
8444
  }
8423
- ._inputDisabled_1v1gv_58 {
8445
+ ._inputDisabled_qsvki_58 {
8424
8446
  pointer-events: none;
8425
8447
  background-color: var(--color-background-disabled);
8426
8448
  color: var(--color-text-muted);
8449
+ box-shadow: none;
8427
8450
  }
8428
- ._hideScrollbars_1v1gv_63 {
8451
+ ._hideScrollbars_qsvki_64 {
8429
8452
  /* Firefox */
8430
8453
  scrollbar-width: none;
8431
8454
  /* IE 10+ */
8432
8455
  -ms-overflow-style: none;
8433
8456
  /* Chrome, Safari and Opera */
8434
8457
  }
8435
- ._hideScrollbars_1v1gv_63::-webkit-scrollbar {
8458
+ ._hideScrollbars_qsvki_64::-webkit-scrollbar {
8436
8459
  display: none;
8437
8460
  }
8438
- ._richTextInput_1v1gv_73 [role='textbox'] {
8461
+ ._richTextInput_qsvki_74 [role='textbox'] {
8439
8462
  padding: var(--padding-input);
8440
8463
  background: var(--color-background-input);
8441
8464
  border: 1px solid var(--color-border);
@@ -8444,24 +8467,25 @@ button:active .remirror-menu-pane-shortcut,
8444
8467
  transition: border-color 0.1s ease;
8445
8468
  white-space: pre-wrap;
8446
8469
  }
8447
- ._richTextInput_1v1gv_73 [role='textbox']:hover {
8470
+ ._richTextInput_qsvki_74 [role='textbox']:hover {
8448
8471
  position: relative;
8449
8472
  border-color: var(--color-border-hover);
8450
8473
  z-index: 2;
8451
8474
  }
8452
- ._richTextInput_1v1gv_73 [role='textbox']:focus {
8475
+ ._richTextInput_qsvki_74 [role='textbox']:focus {
8453
8476
  position: relative;
8454
8477
  outline: none !important;
8455
8478
  border-color: var(--color-border-focus) !important;
8456
8479
  box-shadow: var(--shadow-focus);
8457
8480
  z-index: 3;
8458
8481
  }
8459
- ._richTextInput_1v1gv_73 [role='textbox'][aria-readonly='true'] {
8482
+ ._richTextInput_qsvki_74 [role='textbox'][aria-readonly='true'] {
8460
8483
  pointer-events: none;
8461
8484
  background-color: var(--color-background-disabled);
8462
8485
  color: var(--color-text-muted);
8486
+ box-shadow: none;
8463
8487
  }
8464
- ._richTextInput_1v1gv_73 [data-placeholder]::before {
8488
+ ._richTextInput_qsvki_74 [data-placeholder]::before {
8465
8489
  color: var(--color-text-faint);
8466
8490
  font-style: normal;
8467
8491
  }
@@ -8470,117 +8494,118 @@ button:active .remirror-menu-pane-shortcut,
8470
8494
  min-height: 0;
8471
8495
  flex-shrink: 0;
8472
8496
  }
8473
- ._inputInTable_itumk_1 {
8497
+ ._inputInTable_j3ulf_1 {
8474
8498
  background-color: transparent;
8475
8499
  border-radius: inherit !important;
8476
8500
  height: var(--size);
8477
8501
  min-height: 100%;
8478
8502
  }
8479
- ._inputInTable_itumk_1:not(:hover) {
8503
+ ._inputInTable_j3ulf_1:not(:hover) {
8480
8504
  border-color: transparent;
8481
8505
  }
8482
- ._inputHover_itumk_10 {
8506
+ ._inputHover_j3ulf_10 {
8483
8507
  position: relative;
8484
8508
  border-color: var(--color-border-hover);
8485
8509
  z-index: 2;
8486
8510
  }
8487
- ._inputFocus_itumk_15 {
8511
+ ._inputFocus_j3ulf_15 {
8488
8512
  position: relative;
8489
8513
  outline: none !important;
8490
8514
  border-color: var(--color-border-focus) !important;
8491
8515
  box-shadow: var(--shadow-focus);
8492
8516
  z-index: 3;
8493
8517
  }
8494
- ._inputError_itumk_22,
8495
- ._inputWarning_itumk_23 {
8518
+ ._inputError_j3ulf_22,
8519
+ ._inputWarning_j3ulf_23 {
8496
8520
  position: relative;
8497
8521
  }
8498
- ._inputError_itumk_22 {
8522
+ ._inputError_j3ulf_22 {
8499
8523
  z-index: 2;
8500
8524
  border-color: var(--color-border-error);
8501
8525
  color: var(--color-text-error) !important;
8502
8526
  background-color: var(--color-background-error);
8503
8527
  }
8504
- ._inputError_itumk_22:hover {
8528
+ ._inputError_j3ulf_22:hover {
8505
8529
  border-color: var(--color-border-error-hover) !important;
8506
8530
  }
8507
- ._inputError_itumk_22:focus {
8531
+ ._inputError_j3ulf_22:focus {
8508
8532
  position: relative;
8509
8533
  outline: none !important;
8510
8534
  border-color: var(--color-border-focus) !important;
8511
8535
  box-shadow: var(--shadow-focus);
8512
8536
  z-index: 3;
8513
8537
  }
8514
- ._inputWarning_itumk_23 {
8538
+ ._inputWarning_j3ulf_23 {
8515
8539
  z-index: 1;
8516
8540
  border-color: var(--color-border-warning);
8517
8541
  color: var(--color-text-warning) !important;
8518
8542
  background-color: var(--color-background-warning);
8519
8543
  }
8520
- ._inputWarning_itumk_23:hover {
8544
+ ._inputWarning_j3ulf_23:hover {
8521
8545
  border-color: var(--color-border-warning-hover) !important;
8522
8546
  }
8523
- ._inputWarning_itumk_23:focus {
8547
+ ._inputWarning_j3ulf_23:focus {
8524
8548
  position: relative;
8525
8549
  outline: none !important;
8526
8550
  border-color: var(--color-border-focus) !important;
8527
8551
  box-shadow: var(--shadow-focus);
8528
8552
  z-index: 3;
8529
8553
  }
8530
- ._inputDisabled_itumk_58 {
8554
+ ._inputDisabled_j3ulf_58 {
8531
8555
  pointer-events: none;
8532
8556
  background-color: var(--color-background-disabled);
8533
8557
  color: var(--color-text-muted);
8558
+ box-shadow: none;
8534
8559
  }
8535
- ._hideScrollbars_itumk_63 {
8560
+ ._hideScrollbars_j3ulf_64 {
8536
8561
  /* Firefox */
8537
8562
  scrollbar-width: none;
8538
8563
  /* IE 10+ */
8539
8564
  -ms-overflow-style: none;
8540
8565
  /* Chrome, Safari and Opera */
8541
8566
  }
8542
- ._hideScrollbars_itumk_63::-webkit-scrollbar {
8567
+ ._hideScrollbars_j3ulf_64::-webkit-scrollbar {
8543
8568
  display: none;
8544
8569
  }
8545
8570
  :root {
8546
8571
  --color-background-sidebar: var(--color-neutral-950);
8547
8572
  }
8548
- ._sidebar_itumk_76 {
8573
+ ._sidebar_j3ulf_77 {
8549
8574
  background-color: var(--color-background-sidebar);
8550
8575
  color: white;
8551
8576
  position: relative;
8552
8577
  padding: var(--padding-y) 0;
8553
8578
  }
8554
8579
  @media print {
8555
- ._sidebar_itumk_76 {
8580
+ ._sidebar_j3ulf_77 {
8556
8581
  display: none;
8557
8582
  }
8558
8583
  }
8559
- ._inner_itumk_87 {
8584
+ ._inner_j3ulf_88 {
8560
8585
  /* Firefox */
8561
8586
  scrollbar-width: none;
8562
8587
  /* IE 10+ */
8563
8588
  -ms-overflow-style: none;
8564
8589
  /* Chrome, Safari and Opera */
8565
8590
  }
8566
- ._inner_itumk_87::-webkit-scrollbar {
8591
+ ._inner_j3ulf_88::-webkit-scrollbar {
8567
8592
  display: none;
8568
8593
  }
8569
- ._title_itumk_97,
8570
- ._subtitle_itumk_98,
8571
- ._label_itumk_99 {
8594
+ ._title_j3ulf_98,
8595
+ ._subtitle_j3ulf_99,
8596
+ ._label_j3ulf_100 {
8572
8597
  transition: opacity 0.2s, max-height 0.2s, margin 0.2s, color 0.2s;
8573
8598
  max-height: 50px;
8574
8599
  }
8575
- ._collapsed_itumk_103 ._title_itumk_97,
8576
- ._collapsed_itumk_103 ._subtitle_itumk_98,
8577
- ._collapsed_itumk_103 ._label_itumk_99 {
8600
+ ._collapsed_j3ulf_104 ._title_j3ulf_98,
8601
+ ._collapsed_j3ulf_104 ._subtitle_j3ulf_99,
8602
+ ._collapsed_j3ulf_104 ._label_j3ulf_100 {
8578
8603
  opacity: 0;
8579
8604
  max-height: 0;
8580
8605
  margin-bottom: 0;
8581
8606
  margin-top: 0;
8582
8607
  }
8583
- ._title_itumk_97 {
8608
+ ._title_j3ulf_98 {
8584
8609
  overflow: hidden;
8585
8610
  max-width: 100%;
8586
8611
  text-overflow: ellipsis;
@@ -8589,7 +8614,7 @@ button:active .remirror-menu-pane-shortcut,
8589
8614
  font-size: var(--font-size-lg);
8590
8615
  padding: 0 var(--padding-x);
8591
8616
  }
8592
- ._subtitle_itumk_98 {
8617
+ ._subtitle_j3ulf_99 {
8593
8618
  margin-bottom: 0.75rem;
8594
8619
  white-space: nowrap;
8595
8620
  font-size: var(--font-size-sm);
@@ -8597,11 +8622,11 @@ button:active .remirror-menu-pane-shortcut,
8597
8622
  opacity: 0.6;
8598
8623
  padding: 0 var(--padding-x);
8599
8624
  }
8600
- ._list_itumk_128 {
8625
+ ._list_j3ulf_129 {
8601
8626
  margin-bottom: 2rem;
8602
8627
  margin-top: 0;
8603
8628
  }
8604
- ._item_itumk_132 {
8629
+ ._item_j3ulf_133 {
8605
8630
  min-height: var(--size-lg);
8606
8631
  transition: padding 0.2s;
8607
8632
  font-size: var(--font-size-lg);
@@ -8611,30 +8636,30 @@ button:active .remirror-menu-pane-shortcut,
8611
8636
  padding: 0 var(--padding-x);
8612
8637
  align-items: center;
8613
8638
  }
8614
- ._collapsed_itumk_103 ._item_itumk_132 {
8639
+ ._collapsed_j3ulf_104 ._item_j3ulf_133 {
8615
8640
  padding: 0 9px;
8616
8641
  }
8617
- ._item_itumk_132:focus {
8642
+ ._item_j3ulf_133:focus {
8618
8643
  outline: none;
8619
8644
  }
8620
- ._item_itumk_132::-moz-focus-inner {
8645
+ ._item_j3ulf_133::-moz-focus-inner {
8621
8646
  border: 0;
8622
8647
  }
8623
- ._item_itumk_132:hover,
8624
- ._item_itumk_132:focus {
8648
+ ._item_j3ulf_133:hover,
8649
+ ._item_j3ulf_133:focus {
8625
8650
  color: var(--color-primary-400);
8626
8651
  }
8627
- ._item_itumk_132:active {
8652
+ ._item_j3ulf_133:active {
8628
8653
  color: var(--color-primary-300);
8629
8654
  }
8630
- ._item_itumk_132._active_itumk_158 {
8655
+ ._item_j3ulf_133._active_j3ulf_159 {
8631
8656
  color: white;
8632
8657
  background: black;
8633
8658
  }
8634
- ._item_itumk_132._experimental_itumk_162 {
8659
+ ._item_j3ulf_133._experimental_j3ulf_163 {
8635
8660
  background: #40130b;
8636
8661
  }
8637
- ._icon_itumk_165 {
8662
+ ._icon_j3ulf_166 {
8638
8663
  margin-right: 10px;
8639
8664
  line-height: 0;
8640
8665
  flex-shrink: 0;
@@ -8642,23 +8667,23 @@ button:active .remirror-menu-pane-shortcut,
8642
8667
  opacity: 0.4;
8643
8668
  display: block;
8644
8669
  }
8645
- ._item_itumk_132:hover ._icon_itumk_165,
8646
- ._item_itumk_132:focus ._icon_itumk_165 {
8670
+ ._item_j3ulf_133:hover ._icon_j3ulf_166,
8671
+ ._item_j3ulf_133:focus ._icon_j3ulf_166 {
8647
8672
  opacity: 0.6;
8648
8673
  }
8649
- ._item_itumk_132:active ._icon_itumk_165 {
8674
+ ._item_j3ulf_133:active ._icon_j3ulf_166 {
8650
8675
  opacity: 0.8;
8651
8676
  }
8652
- ._item_itumk_132._active_itumk_158 ._icon_itumk_165 {
8677
+ ._item_j3ulf_133._active_j3ulf_159 ._icon_j3ulf_166 {
8653
8678
  opacity: 1;
8654
8679
  }
8655
- ._icon_itumk_165 > * {
8680
+ ._icon_j3ulf_166 > * {
8656
8681
  opacity: 1;
8657
8682
  }
8658
- ._icon_itumk_165 > span {
8683
+ ._icon_j3ulf_166 > span {
8659
8684
  display: block;
8660
8685
  }
8661
- ._label_itumk_99 {
8686
+ ._label_j3ulf_100 {
8662
8687
  white-space: nowrap;
8663
8688
  overflow: hidden;
8664
8689
  }
@@ -8999,76 +9024,77 @@ button:active .remirror-menu-pane-shortcut,
8999
9024
  text-overflow: ellipsis;
9000
9025
  flex-shrink: 0;
9001
9026
  }
9002
- ._inputInTable_dvcam_1 {
9027
+ ._inputInTable_kz0i8_1 {
9003
9028
  background-color: transparent;
9004
9029
  border-radius: inherit !important;
9005
9030
  height: var(--size);
9006
9031
  min-height: 100%;
9007
9032
  }
9008
- ._inputInTable_dvcam_1:not(:hover) {
9033
+ ._inputInTable_kz0i8_1:not(:hover) {
9009
9034
  border-color: transparent;
9010
9035
  }
9011
- ._inputHover_dvcam_10 {
9036
+ ._inputHover_kz0i8_10 {
9012
9037
  position: relative;
9013
9038
  border-color: var(--color-border-hover);
9014
9039
  z-index: 2;
9015
9040
  }
9016
- ._inputFocus_dvcam_15 {
9041
+ ._inputFocus_kz0i8_15 {
9017
9042
  position: relative;
9018
9043
  outline: none !important;
9019
9044
  border-color: var(--color-border-focus) !important;
9020
9045
  box-shadow: var(--shadow-focus);
9021
9046
  z-index: 3;
9022
9047
  }
9023
- ._inputError_dvcam_22,
9024
- ._inputWarning_dvcam_23 {
9048
+ ._inputError_kz0i8_22,
9049
+ ._inputWarning_kz0i8_23 {
9025
9050
  position: relative;
9026
9051
  }
9027
- ._inputError_dvcam_22 {
9052
+ ._inputError_kz0i8_22 {
9028
9053
  z-index: 2;
9029
9054
  border-color: var(--color-border-error);
9030
9055
  color: var(--color-text-error) !important;
9031
9056
  background-color: var(--color-background-error);
9032
9057
  }
9033
- ._inputError_dvcam_22:hover {
9058
+ ._inputError_kz0i8_22:hover {
9034
9059
  border-color: var(--color-border-error-hover) !important;
9035
9060
  }
9036
- ._inputError_dvcam_22:focus {
9061
+ ._inputError_kz0i8_22:focus {
9037
9062
  position: relative;
9038
9063
  outline: none !important;
9039
9064
  border-color: var(--color-border-focus) !important;
9040
9065
  box-shadow: var(--shadow-focus);
9041
9066
  z-index: 3;
9042
9067
  }
9043
- ._inputWarning_dvcam_23 {
9068
+ ._inputWarning_kz0i8_23 {
9044
9069
  z-index: 1;
9045
9070
  border-color: var(--color-border-warning);
9046
9071
  color: var(--color-text-warning) !important;
9047
9072
  background-color: var(--color-background-warning);
9048
9073
  }
9049
- ._inputWarning_dvcam_23:hover {
9074
+ ._inputWarning_kz0i8_23:hover {
9050
9075
  border-color: var(--color-border-warning-hover) !important;
9051
9076
  }
9052
- ._inputWarning_dvcam_23:focus {
9077
+ ._inputWarning_kz0i8_23:focus {
9053
9078
  position: relative;
9054
9079
  outline: none !important;
9055
9080
  border-color: var(--color-border-focus) !important;
9056
9081
  box-shadow: var(--shadow-focus);
9057
9082
  z-index: 3;
9058
9083
  }
9059
- ._inputDisabled_dvcam_58 {
9084
+ ._inputDisabled_kz0i8_58 {
9060
9085
  pointer-events: none;
9061
9086
  background-color: var(--color-background-disabled);
9062
9087
  color: var(--color-text-muted);
9088
+ box-shadow: none;
9063
9089
  }
9064
- ._hideScrollbars_dvcam_63 {
9090
+ ._hideScrollbars_kz0i8_64 {
9065
9091
  /* Firefox */
9066
9092
  scrollbar-width: none;
9067
9093
  /* IE 10+ */
9068
9094
  -ms-overflow-style: none;
9069
9095
  /* Chrome, Safari and Opera */
9070
9096
  }
9071
- ._hideScrollbars_dvcam_63::-webkit-scrollbar {
9097
+ ._hideScrollbars_kz0i8_64::-webkit-scrollbar {
9072
9098
  display: none;
9073
9099
  }
9074
9100
  :root {
@@ -9081,7 +9107,7 @@ html[data-theme='dark'] {
9081
9107
  --color-background-table-row-tinted: var(--color-neutral-850);
9082
9108
  --color-border-table: black;
9083
9109
  }
9084
- ._wrapper_dvcam_83 {
9110
+ ._wrapper_kz0i8_84 {
9085
9111
  border-radius: inherit;
9086
9112
  max-height: 100%;
9087
9113
  max-width: 100%;
@@ -9089,21 +9115,21 @@ html[data-theme='dark'] {
9089
9115
  flex-direction: column;
9090
9116
  overflow: hidden;
9091
9117
  }
9092
- ._wrapper_dvcam_83._bordered_dvcam_91 {
9118
+ ._wrapper_kz0i8_84._bordered_kz0i8_92 {
9093
9119
  border-radius: var(--border-radius);
9094
9120
  border: 1px solid var(--color-border-table);
9095
9121
  }
9096
- ._scroll_dvcam_95 {
9122
+ ._scroll_kz0i8_96 {
9097
9123
  overflow-y: auto;
9098
9124
  border-radius: inherit;
9099
9125
  flex: 1;
9100
9126
  min-height: 0;
9101
9127
  }
9102
- ._scroll_dvcam_95:not(:first-child) {
9128
+ ._scroll_kz0i8_96:not(:first-child) {
9103
9129
  border-top-left-radius: 0;
9104
9130
  border-top-right-radius: 0;
9105
9131
  }
9106
- ._table_dvcam_105 {
9132
+ ._table_kz0i8_106 {
9107
9133
  background: var(--color-background-raised);
9108
9134
  color: var(--color-text);
9109
9135
  border-collapse: separate;
@@ -9111,32 +9137,32 @@ html[data-theme='dark'] {
9111
9137
  border-radius: inherit;
9112
9138
  width: 100%;
9113
9139
  }
9114
- ._table_dvcam_105 > :first-child {
9140
+ ._table_kz0i8_106 > :first-child {
9115
9141
  border-top-left-radius: inherit;
9116
9142
  border-top-right-radius: inherit;
9117
9143
  }
9118
- ._table_dvcam_105 > :first-child > :first-child {
9144
+ ._table_kz0i8_106 > :first-child > :first-child {
9119
9145
  border-top-left-radius: inherit;
9120
9146
  border-top-right-radius: inherit;
9121
9147
  }
9122
- ._table_dvcam_105 > :first-child > :first-child > :first-child {
9148
+ ._table_kz0i8_106 > :first-child > :first-child > :first-child {
9123
9149
  border-top-left-radius: inherit;
9124
9150
  }
9125
- ._table_dvcam_105 > :first-child > :first-child > :last-child {
9151
+ ._table_kz0i8_106 > :first-child > :first-child > :last-child {
9126
9152
  border-top-right-radius: inherit;
9127
9153
  }
9128
- ._table_dvcam_105 > :last-child {
9154
+ ._table_kz0i8_106 > :last-child {
9129
9155
  border-bottom-left-radius: inherit;
9130
9156
  border-bottom-right-radius: inherit;
9131
9157
  }
9132
- ._table_dvcam_105 > :last-child > :last-child {
9158
+ ._table_kz0i8_106 > :last-child > :last-child {
9133
9159
  border-bottom-left-radius: inherit;
9134
9160
  border-bottom-right-radius: inherit;
9135
9161
  }
9136
- ._table_dvcam_105 > :last-child > :last-child > :first-child {
9162
+ ._table_kz0i8_106 > :last-child > :last-child > :first-child {
9137
9163
  border-bottom-left-radius: inherit;
9138
9164
  }
9139
- ._table_dvcam_105 > :last-child > :last-child > :last-child {
9165
+ ._table_kz0i8_106 > :last-child > :last-child > :last-child {
9140
9166
  border-bottom-right-radius: inherit;
9141
9167
  }
9142
9168
  th,
@@ -9153,10 +9179,10 @@ th:not(:first-child),
9153
9179
  td:not(:first-child) {
9154
9180
  border-left-width: 1px;
9155
9181
  }
9156
- ._table_dvcam_105 > *:not(:last-child) > tr th,
9157
- ._table_dvcam_105 > *:not(:last-child) > tr td,
9158
- ._table_dvcam_105 > *:last-child > tr:not(:last-child) th,
9159
- ._table_dvcam_105 > *:last-child > tr:not(:last-child) td {
9182
+ ._table_kz0i8_106 > *:not(:last-child) > tr th,
9183
+ ._table_kz0i8_106 > *:not(:last-child) > tr td,
9184
+ ._table_kz0i8_106 > *:last-child > tr:not(:last-child) th,
9185
+ ._table_kz0i8_106 > *:last-child > tr:not(:last-child) td {
9160
9186
  border-bottom-width: 1px;
9161
9187
  }
9162
9188
  @-moz-document url-prefix() {
@@ -9183,7 +9209,7 @@ tbody {
9183
9209
  tbody tr {
9184
9210
  background-color: var(--color-background-raised);
9185
9211
  }
9186
- ._striped_dvcam_185 tbody tr:nth-child(even) {
9212
+ ._striped_kz0i8_186 tbody tr:nth-child(even) {
9187
9213
  background-color: var(--color-background-table-row-tinted);
9188
9214
  }
9189
9215
  ._title_1vehb_1 {
@@ -9211,121 +9237,122 @@ tbody tr {
9211
9237
  justify-content: space-between;
9212
9238
  border-top: 1px solid var(--color-border-table);
9213
9239
  }
9214
- ._inputInTable_jixr6_1 {
9240
+ ._inputInTable_1av87_1 {
9215
9241
  background-color: transparent;
9216
9242
  border-radius: inherit !important;
9217
9243
  height: var(--size);
9218
9244
  min-height: 100%;
9219
9245
  }
9220
- ._inputInTable_jixr6_1:not(:hover) {
9246
+ ._inputInTable_1av87_1:not(:hover) {
9221
9247
  border-color: transparent;
9222
9248
  }
9223
- ._inputHover_jixr6_10 {
9249
+ ._inputHover_1av87_10 {
9224
9250
  position: relative;
9225
9251
  border-color: var(--color-border-hover);
9226
9252
  z-index: 2;
9227
9253
  }
9228
- ._inputFocus_jixr6_15 {
9254
+ ._inputFocus_1av87_15 {
9229
9255
  position: relative;
9230
9256
  outline: none !important;
9231
9257
  border-color: var(--color-border-focus) !important;
9232
9258
  box-shadow: var(--shadow-focus);
9233
9259
  z-index: 3;
9234
9260
  }
9235
- ._inputError_jixr6_22,
9236
- ._inputWarning_jixr6_23 {
9261
+ ._inputError_1av87_22,
9262
+ ._inputWarning_1av87_23 {
9237
9263
  position: relative;
9238
9264
  }
9239
- ._inputError_jixr6_22 {
9265
+ ._inputError_1av87_22 {
9240
9266
  z-index: 2;
9241
9267
  border-color: var(--color-border-error);
9242
9268
  color: var(--color-text-error) !important;
9243
9269
  background-color: var(--color-background-error);
9244
9270
  }
9245
- ._inputError_jixr6_22:hover {
9271
+ ._inputError_1av87_22:hover {
9246
9272
  border-color: var(--color-border-error-hover) !important;
9247
9273
  }
9248
- ._inputError_jixr6_22:focus {
9274
+ ._inputError_1av87_22:focus {
9249
9275
  position: relative;
9250
9276
  outline: none !important;
9251
9277
  border-color: var(--color-border-focus) !important;
9252
9278
  box-shadow: var(--shadow-focus);
9253
9279
  z-index: 3;
9254
9280
  }
9255
- ._inputWarning_jixr6_23 {
9281
+ ._inputWarning_1av87_23 {
9256
9282
  z-index: 1;
9257
9283
  border-color: var(--color-border-warning);
9258
9284
  color: var(--color-text-warning) !important;
9259
9285
  background-color: var(--color-background-warning);
9260
9286
  }
9261
- ._inputWarning_jixr6_23:hover {
9287
+ ._inputWarning_1av87_23:hover {
9262
9288
  border-color: var(--color-border-warning-hover) !important;
9263
9289
  }
9264
- ._inputWarning_jixr6_23:focus {
9290
+ ._inputWarning_1av87_23:focus {
9265
9291
  position: relative;
9266
9292
  outline: none !important;
9267
9293
  border-color: var(--color-border-focus) !important;
9268
9294
  box-shadow: var(--shadow-focus);
9269
9295
  z-index: 3;
9270
9296
  }
9271
- ._inputDisabled_jixr6_58 {
9297
+ ._inputDisabled_1av87_58 {
9272
9298
  pointer-events: none;
9273
9299
  background-color: var(--color-background-disabled);
9274
9300
  color: var(--color-text-muted);
9301
+ box-shadow: none;
9275
9302
  }
9276
- ._hideScrollbars_jixr6_63 {
9303
+ ._hideScrollbars_1av87_64 {
9277
9304
  /* Firefox */
9278
9305
  scrollbar-width: none;
9279
9306
  /* IE 10+ */
9280
9307
  -ms-overflow-style: none;
9281
9308
  /* Chrome, Safari and Opera */
9282
9309
  }
9283
- ._hideScrollbars_jixr6_63::-webkit-scrollbar {
9310
+ ._hideScrollbars_1av87_64::-webkit-scrollbar {
9284
9311
  display: none;
9285
9312
  }
9286
- ._cell_jixr6_73 a {
9313
+ ._cell_1av87_74 a {
9287
9314
  cursor: pointer;
9288
9315
  color: var(--color-text-primary);
9289
9316
  }
9290
- ._cell_jixr6_73 a:hover {
9317
+ ._cell_1av87_74 a:hover {
9291
9318
  color: var(--color-text-primary-hover);
9292
9319
  }
9293
- ._cell_jixr6_73 a:active {
9320
+ ._cell_1av87_74 a:active {
9294
9321
  color: var(--color-text-primary-active);
9295
9322
  }
9296
- ._cell_jixr6_73 a._disabledLink_jixr6_83 {
9323
+ ._cell_1av87_74 a._disabledLink_1av87_84 {
9297
9324
  color: var(--color-text-faint) !important;
9298
9325
  cursor: default !important;
9299
9326
  }
9300
- ._inputWrapper_jixr6_87 {
9327
+ ._inputWrapper_1av87_88 {
9301
9328
  height: 100%;
9302
9329
  border-radius: inherit;
9303
9330
  }
9304
- ._inputWrapper_jixr6_87 > span,
9305
- ._inputWrapper_jixr6_87 > span > span,
9306
- ._inputWrapper_jixr6_87 > span > span > div {
9331
+ ._inputWrapper_1av87_88 > span,
9332
+ ._inputWrapper_1av87_88 > span > span,
9333
+ ._inputWrapper_1av87_88 > span > span > div {
9307
9334
  height: 100%;
9308
9335
  border-radius: inherit;
9309
9336
  }
9310
- ._inputWrapper_jixr6_87 > div,
9311
- ._inputWrapper_jixr6_87 > div > span {
9337
+ ._inputWrapper_1av87_88 > div,
9338
+ ._inputWrapper_1av87_88 > div > span {
9312
9339
  height: 100%;
9313
9340
  border-radius: inherit;
9314
9341
  }
9315
- ._breakWord_jixr6_102 {
9342
+ ._breakWord_1av87_103 {
9316
9343
  word-break: break-word;
9317
9344
  }
9318
- ._inputCell_jixr6_105 {
9345
+ ._inputCell_1av87_106 {
9319
9346
  padding: 0 !important;
9320
9347
  }
9321
- ._sliderCell_jixr6_108 {
9348
+ ._sliderCell_1av87_109 {
9322
9349
  padding-top: 0 !important;
9323
9350
  padding-bottom: 0 !important;
9324
9351
  }
9325
- ._staticCell_jixr6_112 {
9352
+ ._staticCell_1av87_113 {
9326
9353
  padding: 0 !important;
9327
9354
  }
9328
- ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
9355
+ ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
9329
9356
  min-height: 100%;
9330
9357
  padding: var(--padding-input);
9331
9358
  line-height: 17px;
@@ -9334,56 +9361,56 @@ tbody tr {
9334
9361
  display: flex;
9335
9362
  align-items: center;
9336
9363
  }
9337
- tbody ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
9364
+ tbody ._staticCell_1av87_113 ._staticCellContent_1av87_116 {
9338
9365
  background-color: var(--color-background-disabled);
9339
9366
  color: var(--color-text-muted);
9340
9367
  }
9341
- ._staticCell_jixr6_112 ._staticCellContent_jixr6_115._error_jixr6_128,
9342
- ._staticCell_jixr6_112 ._staticCellContent_jixr6_115._warning_jixr6_129 {
9368
+ ._staticCell_1av87_113 ._staticCellContent_1av87_116._error_1av87_129,
9369
+ ._staticCell_1av87_113 ._staticCellContent_1av87_116._warning_1av87_130 {
9343
9370
  border: 1px solid transparent;
9344
9371
  }
9345
- ._staticCell_jixr6_112 ._staticCellContent_jixr6_115._error_jixr6_128 {
9372
+ ._staticCell_1av87_113 ._staticCellContent_1av87_116._error_1av87_129 {
9346
9373
  background-color: var(--color-background-error);
9347
9374
  }
9348
- ._staticCell_jixr6_112 ._staticCellContent_jixr6_115._warning_jixr6_129 {
9375
+ ._staticCell_1av87_113 ._staticCellContent_1av87_116._warning_1av87_130 {
9349
9376
  background-color: var(--color-background-warning);
9350
9377
  }
9351
- ._staticCell_jixr6_112 ._staticCellContent_jixr6_115._unit_jixr6_138 {
9378
+ ._staticCell_1av87_113 ._staticCellContent_1av87_116._unit_1av87_139 {
9352
9379
  font-weight: normal;
9353
9380
  }
9354
- ._sortingCell_jixr6_141 ._staticCellContent_jixr6_115 {
9381
+ ._sortingCell_1av87_142 ._staticCellContent_1av87_116 {
9355
9382
  position: relative;
9356
9383
  padding-right: 45px !important;
9357
9384
  cursor: pointer !important;
9358
9385
  }
9359
- ._sortingCell_jixr6_141 ._staticCellContent_jixr6_115:hover {
9386
+ ._sortingCell_1av87_142 ._staticCellContent_1av87_116:hover {
9360
9387
  background-color: rgba(0, 0, 0, 0.05) !important;
9361
9388
  }
9362
- ._sortingCell_jixr6_141 ._sortingCellIcon_jixr6_149 {
9389
+ ._sortingCell_1av87_142 ._sortingCellIcon_1av87_150 {
9363
9390
  font-size: 1.25em;
9364
9391
  position: absolute;
9365
9392
  right: calc(var(--padding-input-x) - 4px);
9366
9393
  top: 50%;
9367
9394
  transform: translateY(-50%);
9368
9395
  }
9369
- ._icon_jixr6_156 {
9396
+ ._icon_1av87_157 {
9370
9397
  display: inline-flex;
9371
9398
  margin-left: 8px;
9372
9399
  }
9373
- ._checkBoxCell_jixr6_160 {
9400
+ ._checkBoxCell_1av87_161 {
9374
9401
  padding-block: 0 !important;
9375
9402
  width: var(--size);
9376
9403
  }
9377
- ._iconCell_jixr6_164 {
9404
+ ._iconCell_1av87_165 {
9378
9405
  width: var(--size);
9379
9406
  text-align: center;
9380
9407
  padding: 0 !important;
9381
9408
  }
9382
- ._iconCell_jixr6_164 ._iconWrapper_jixr6_169 {
9409
+ ._iconCell_1av87_165 ._iconWrapper_1av87_170 {
9383
9410
  display: flex;
9384
9411
  justify-content: center;
9385
9412
  }
9386
- ._actionsCell_jixr6_173 {
9413
+ ._actionsCell_1av87_174 {
9387
9414
  width: var(--size-sm);
9388
9415
  padding: 0 calc((var(--size) - var(--size-sm)) / 2) !important;
9389
9416
  position: sticky;
@@ -9391,25 +9418,25 @@ tbody ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
9391
9418
  background: inherit;
9392
9419
  z-index: 4;
9393
9420
  }
9394
- ._rightAligned_jixr6_181 {
9421
+ ._rightAligned_1av87_182 {
9395
9422
  text-align: right !important;
9396
9423
  }
9397
- ._rightAligned_jixr6_181 ._staticCellContent_jixr6_115 {
9424
+ ._rightAligned_1av87_182 ._staticCellContent_1av87_116 {
9398
9425
  justify-content: flex-end;
9399
9426
  }
9400
- ._centerAligned_jixr6_187 {
9427
+ ._centerAligned_1av87_188 {
9401
9428
  text-align: center !important;
9402
9429
  }
9403
- ._centerAligned_jixr6_187 ._staticCellContent_jixr6_115 {
9430
+ ._centerAligned_1av87_188 ._staticCellContent_1av87_116 {
9404
9431
  justify-content: center;
9405
9432
  }
9406
- ._leftAligned_jixr6_193 {
9433
+ ._leftAligned_1av87_194 {
9407
9434
  text-align: left !important;
9408
9435
  }
9409
- ._popover_jixr6_196 {
9436
+ ._popover_1av87_197 {
9410
9437
  padding: var(--padding-input);
9411
9438
  }
9412
- ._disabledPointerEvents_jixr6_199 {
9439
+ ._disabledPointerEvents_1av87_200 {
9413
9440
  pointer-events: none;
9414
9441
  }
9415
9442
  ._clickableRow_1sqxy_1 {
@@ -9520,79 +9547,80 @@ tbody ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
9520
9547
  ._item_b0egn_17._left_b0egn_58 + ._item_b0egn_17._right_b0egn_58 {
9521
9548
  margin-left: auto;
9522
9549
  }
9523
- ._inputInTable_4fpgg_1 {
9550
+ ._inputInTable_eglhq_1 {
9524
9551
  background-color: transparent;
9525
9552
  border-radius: inherit !important;
9526
9553
  height: var(--size);
9527
9554
  min-height: 100%;
9528
9555
  }
9529
- ._inputInTable_4fpgg_1:not(:hover) {
9556
+ ._inputInTable_eglhq_1:not(:hover) {
9530
9557
  border-color: transparent;
9531
9558
  }
9532
- ._inputHover_4fpgg_10 {
9559
+ ._inputHover_eglhq_10 {
9533
9560
  position: relative;
9534
9561
  border-color: var(--color-border-hover);
9535
9562
  z-index: 2;
9536
9563
  }
9537
- ._inputFocus_4fpgg_15 {
9564
+ ._inputFocus_eglhq_15 {
9538
9565
  position: relative;
9539
9566
  outline: none !important;
9540
9567
  border-color: var(--color-border-focus) !important;
9541
9568
  box-shadow: var(--shadow-focus);
9542
9569
  z-index: 3;
9543
9570
  }
9544
- ._inputError_4fpgg_22,
9545
- ._inputWarning_4fpgg_23 {
9571
+ ._inputError_eglhq_22,
9572
+ ._inputWarning_eglhq_23 {
9546
9573
  position: relative;
9547
9574
  }
9548
- ._inputError_4fpgg_22 {
9575
+ ._inputError_eglhq_22 {
9549
9576
  z-index: 2;
9550
9577
  border-color: var(--color-border-error);
9551
9578
  color: var(--color-text-error) !important;
9552
9579
  background-color: var(--color-background-error);
9553
9580
  }
9554
- ._inputError_4fpgg_22:hover {
9581
+ ._inputError_eglhq_22:hover {
9555
9582
  border-color: var(--color-border-error-hover) !important;
9556
9583
  }
9557
- ._inputError_4fpgg_22:focus {
9584
+ ._inputError_eglhq_22:focus {
9558
9585
  position: relative;
9559
9586
  outline: none !important;
9560
9587
  border-color: var(--color-border-focus) !important;
9561
9588
  box-shadow: var(--shadow-focus);
9562
9589
  z-index: 3;
9563
9590
  }
9564
- ._inputWarning_4fpgg_23 {
9591
+ ._inputWarning_eglhq_23 {
9565
9592
  z-index: 1;
9566
9593
  border-color: var(--color-border-warning);
9567
9594
  color: var(--color-text-warning) !important;
9568
9595
  background-color: var(--color-background-warning);
9569
9596
  }
9570
- ._inputWarning_4fpgg_23:hover {
9597
+ ._inputWarning_eglhq_23:hover {
9571
9598
  border-color: var(--color-border-warning-hover) !important;
9572
9599
  }
9573
- ._inputWarning_4fpgg_23:focus {
9600
+ ._inputWarning_eglhq_23:focus {
9574
9601
  position: relative;
9575
9602
  outline: none !important;
9576
9603
  border-color: var(--color-border-focus) !important;
9577
9604
  box-shadow: var(--shadow-focus);
9578
9605
  z-index: 3;
9579
9606
  }
9580
- ._inputDisabled_4fpgg_58 {
9607
+ ._inputDisabled_eglhq_58 {
9581
9608
  pointer-events: none;
9582
9609
  background-color: var(--color-background-disabled);
9583
9610
  color: var(--color-text-muted);
9611
+ box-shadow: none;
9584
9612
  }
9585
- ._hideScrollbars_4fpgg_63 {
9613
+ ._hideScrollbars_eglhq_64 {
9586
9614
  /* Firefox */
9587
9615
  scrollbar-width: none;
9588
9616
  /* IE 10+ */
9589
9617
  -ms-overflow-style: none;
9590
9618
  /* Chrome, Safari and Opera */
9591
9619
  }
9592
- ._hideScrollbars_4fpgg_63::-webkit-scrollbar {
9620
+ ._hideScrollbars_eglhq_64::-webkit-scrollbar {
9593
9621
  display: none;
9594
9622
  }
9595
- ._textarea_4fpgg_73 {
9623
+ ._textarea_eglhq_74 {
9596
9624
  margin: 0;
9597
9625
  display: block;
9598
9626
  width: 100%;
@@ -9609,67 +9637,68 @@ tbody ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
9609
9637
  box-shadow: none;
9610
9638
  min-height: var(--size);
9611
9639
  }
9612
- ._textarea_4fpgg_73::placeholder {
9640
+ ._textarea_eglhq_74::placeholder {
9613
9641
  color: var(--color-text-placeholder);
9614
9642
  }
9615
- ._textarea_4fpgg_73:hover {
9643
+ ._textarea_eglhq_74:hover {
9616
9644
  position: relative;
9617
9645
  border-color: var(--color-border-hover);
9618
9646
  z-index: 2;
9619
9647
  }
9620
- ._textarea_4fpgg_73:focus {
9648
+ ._textarea_eglhq_74:focus {
9621
9649
  position: relative;
9622
9650
  outline: none !important;
9623
9651
  border-color: var(--color-border-focus) !important;
9624
9652
  box-shadow: var(--shadow-focus);
9625
9653
  z-index: 3;
9626
9654
  }
9627
- ._textarea_4fpgg_73[disabled] {
9655
+ ._textarea_eglhq_74[disabled] {
9628
9656
  pointer-events: none;
9629
9657
  background-color: var(--color-background-disabled);
9630
9658
  color: var(--color-text-muted);
9659
+ box-shadow: none;
9631
9660
  }
9632
- ._textarea_4fpgg_73._small_4fpgg_110 {
9661
+ ._textarea_eglhq_74._small_eglhq_112 {
9633
9662
  font-size: var(--font-size-sm);
9634
9663
  min-height: var(--size-sm);
9635
9664
  padding: var(--padding-input-sm);
9636
9665
  line-height: 1.2;
9637
9666
  }
9638
- ._textarea_4fpgg_73._error_4fpgg_116 {
9667
+ ._textarea_eglhq_74._error_eglhq_118 {
9639
9668
  position: relative;
9640
9669
  z-index: 2;
9641
9670
  border-color: var(--color-border-error);
9642
9671
  color: var(--color-text-error) !important;
9643
9672
  background-color: var(--color-background-error);
9644
9673
  }
9645
- ._textarea_4fpgg_73._error_4fpgg_116:hover {
9674
+ ._textarea_eglhq_74._error_eglhq_118:hover {
9646
9675
  border-color: var(--color-border-error-hover) !important;
9647
9676
  }
9648
- ._textarea_4fpgg_73._error_4fpgg_116:focus {
9677
+ ._textarea_eglhq_74._error_eglhq_118:focus {
9649
9678
  position: relative;
9650
9679
  outline: none !important;
9651
9680
  border-color: var(--color-border-focus) !important;
9652
9681
  box-shadow: var(--shadow-focus);
9653
9682
  z-index: 3;
9654
9683
  }
9655
- ._textarea_4fpgg_73._warning_4fpgg_133 {
9684
+ ._textarea_eglhq_74._warning_eglhq_135 {
9656
9685
  position: relative;
9657
9686
  z-index: 1;
9658
9687
  border-color: var(--color-border-warning);
9659
9688
  color: var(--color-text-warning) !important;
9660
9689
  background-color: var(--color-background-warning);
9661
9690
  }
9662
- ._textarea_4fpgg_73._warning_4fpgg_133:hover {
9691
+ ._textarea_eglhq_74._warning_eglhq_135:hover {
9663
9692
  border-color: var(--color-border-warning-hover) !important;
9664
9693
  }
9665
- ._textarea_4fpgg_73._warning_4fpgg_133:focus {
9694
+ ._textarea_eglhq_74._warning_eglhq_135:focus {
9666
9695
  position: relative;
9667
9696
  outline: none !important;
9668
9697
  border-color: var(--color-border-focus) !important;
9669
9698
  box-shadow: var(--shadow-focus);
9670
9699
  z-index: 3;
9671
9700
  }
9672
- ._textarea_4fpgg_73._monospace_4fpgg_150 {
9701
+ ._textarea_eglhq_74._monospace_eglhq_152 {
9673
9702
  font-family: monospace;
9674
9703
  }
9675
9704
  :root {
@@ -10373,7 +10402,8 @@ tbody ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
10373
10402
  --color-background-toggle: rgba(255, 255, 255, 0.2);
10374
10403
  --color-background-toggle-hover: rgba(255, 255, 255, 0.3);
10375
10404
  }
10376
- ._toggle_i5is1_9 {
10405
+ ._toggle_2zca0_9 {
10406
+ --size-toggle: var(--size-xs);
10377
10407
  position: relative;
10378
10408
  display: inline-flex;
10379
10409
  align-items: center;
@@ -10382,19 +10412,20 @@ tbody ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
10382
10412
  outline: 0;
10383
10413
  vertical-align: baseline;
10384
10414
  font-style: normal;
10385
- min-height: var(--size-checkbox);
10415
+ min-height: var(--size-toggle);
10386
10416
  font-size: inherit;
10387
- line-height: var(--size-checkbox);
10388
- min-width: var(--size-checkbox);
10389
- margin: calc((var(--size) - var(--size-checkbox)) / 2) 0;
10417
+ line-height: var(--size-toggle);
10418
+ min-width: var(--size-toggle);
10419
+ margin: calc((var(--size) - var(--size-toggle)) / 2) 0;
10390
10420
  }
10391
- ._toggle_i5is1_9._small_i5is1_24 {
10392
- margin: calc((var(--size-sm) - var(--size-checkbox)) / 2) 0;
10421
+ ._toggle_2zca0_9._small_2zca0_25 {
10422
+ --size-toggle: calc(var(--size-xs) - 4px);
10423
+ margin: calc((var(--size-sm) - var(--size-toggle)) / 2) 0;
10393
10424
  font-size: var(--font-size-sm);
10394
10425
  }
10395
- ._toggle_i5is1_9 input {
10396
- width: calc(var(--size-checkbox) * 2);
10397
- height: var(--size-checkbox);
10426
+ ._toggle_2zca0_9 input {
10427
+ width: calc(var(--size-toggle) * 2);
10428
+ height: var(--size-toggle);
10398
10429
  cursor: pointer;
10399
10430
  position: absolute;
10400
10431
  top: 0;
@@ -10409,36 +10440,36 @@ tbody ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
10409
10440
  line-height: 1.15;
10410
10441
  margin: 0;
10411
10442
  }
10412
- ._toggle_i5is1_9 label {
10413
- min-height: var(--size-checkbox);
10414
- padding-left: calc((var(--size-checkbox) * 2) + var(--spacing-xs));
10443
+ ._toggle_2zca0_9 label {
10444
+ min-height: var(--size-toggle);
10445
+ padding-left: calc((var(--size-toggle) * 2) + var(--spacing-xs));
10415
10446
  transition: color 0.1s ease;
10416
10447
  cursor: auto;
10417
10448
  position: relative;
10418
10449
  display: block;
10419
10450
  outline: 0;
10420
10451
  }
10421
- ._toggle_i5is1_9 label:before,
10422
- ._toggle_i5is1_9 label:after {
10452
+ ._toggle_2zca0_9 label:before,
10453
+ ._toggle_2zca0_9 label:after {
10423
10454
  display: block;
10424
10455
  position: absolute;
10425
10456
  content: '';
10426
10457
  }
10427
- ._toggle_i5is1_9 label:before {
10428
- height: var(--size-checkbox);
10429
- border-radius: calc(var(--size-checkbox) / 2);
10458
+ ._toggle_2zca0_9 label:before {
10459
+ height: var(--size-toggle);
10460
+ border-radius: calc(var(--size-toggle) / 2);
10430
10461
  z-index: 1;
10431
10462
  transform: none;
10432
10463
  background: var(--color-background-toggle);
10433
10464
  box-shadow: none;
10434
- width: calc(var(--size-checkbox) * 2);
10465
+ width: calc(var(--size-toggle) * 2);
10435
10466
  left: 0;
10436
10467
  top: 0;
10437
10468
  transition: background 0.3s ease, border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
10438
10469
  }
10439
- ._toggle_i5is1_9 label:after {
10440
- height: calc(var(--size-checkbox) - 4px);
10441
- width: calc(var(--size-checkbox) - 4px);
10470
+ ._toggle_2zca0_9 label:after {
10471
+ height: calc(var(--size-toggle) - 4px);
10472
+ width: calc(var(--size-toggle) - 4px);
10442
10473
  border-radius: 50%;
10443
10474
  left: 2px;
10444
10475
  top: 2px;
@@ -10448,31 +10479,31 @@ tbody ._staticCell_jixr6_112 ._staticCellContent_jixr6_115 {
10448
10479
  z-index: 2;
10449
10480
  transition: background 0.3s ease, left 0.3s ease;
10450
10481
  }
10451
- ._toggle_i5is1_9 input:hover ~ label:before {
10482
+ ._toggle_2zca0_9 input:hover ~ label:before {
10452
10483
  background: var(--color-background-toggle-hover);
10453
10484
  }
10454
- ._toggle_i5is1_9 input:checked ~ label:before {
10485
+ ._toggle_2zca0_9 input:checked ~ label:before {
10455
10486
  border-color: rgba(34, 36, 38, 0.35);
10456
10487
  background-color: var(--color-background-button-primary);
10457
10488
  }
10458
- ._toggle_i5is1_9 input:checked ~ label:after {
10459
- left: calc(var(--size-checkbox) + 2px);
10489
+ ._toggle_2zca0_9 input:checked ~ label:after {
10490
+ left: calc(var(--size-toggle) + 2px);
10460
10491
  }
10461
- ._toggle_i5is1_9 input:checked:hover ~ label:before {
10492
+ ._toggle_2zca0_9 input:checked:hover ~ label:before {
10462
10493
  background-color: var(--color-background-button-primary-hover);
10463
10494
  }
10464
- ._toggle_i5is1_9._disabled_i5is1_97 {
10495
+ ._toggle_2zca0_9._disabled_2zca0_99 {
10465
10496
  cursor: default;
10466
10497
  pointer-events: none;
10467
10498
  color: var(--color-text-muted);
10468
10499
  }
10469
- ._toggle_i5is1_9._disabled_i5is1_97 label:before {
10500
+ ._toggle_2zca0_9._disabled_2zca0_99 label:before {
10470
10501
  background-color: var(--color-background-disabled);
10471
10502
  }
10472
- ._toggle_i5is1_9._disabled_i5is1_97 input:checked ~ label:before {
10503
+ ._toggle_2zca0_9._disabled_2zca0_99 input:checked ~ label:before {
10473
10504
  background-color: var(--color-text-faint);
10474
10505
  }
10475
- ._noMargin_i5is1_108 {
10506
+ ._noMargin_2zca0_110 {
10476
10507
  margin: 0;
10477
10508
  }
10478
10509
  :root {