@carbon/ibm-products 1.11.0 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/README.md +0 -3
  2. package/css/index-full-carbon.css +1543 -529
  3. package/css/index-full-carbon.css.map +1 -1
  4. package/css/index-full-carbon.min.css +5 -5
  5. package/css/index-full-carbon.min.css.map +1 -1
  6. package/css/index-without-carbon-released-only.css +12 -0
  7. package/css/index-without-carbon-released-only.css.map +1 -1
  8. package/css/index-without-carbon-released-only.min.css +2 -2
  9. package/css/index-without-carbon-released-only.min.css.map +1 -1
  10. package/css/index-without-carbon.css +77 -187
  11. package/css/index-without-carbon.css.map +1 -1
  12. package/css/index-without-carbon.min.css +4 -4
  13. package/css/index-without-carbon.min.css.map +1 -1
  14. package/css/index.css +194 -187
  15. package/css/index.css.map +1 -1
  16. package/css/index.min.css +5 -5
  17. package/css/index.min.css.map +1 -1
  18. package/es/components/AddSelect/AddSelect.js +63 -12
  19. package/es/components/AddSelect/AddSelectColumn.js +58 -22
  20. package/es/components/AddSelect/AddSelectList.js +38 -18
  21. package/es/components/AddSelect/AddSelectSidebar.js +2 -1
  22. package/es/components/ButtonMenu/ButtonMenu.js +11 -3
  23. package/es/components/CreateFullPage/CreateFullPageStep.js +4 -4
  24. package/es/components/CreateTearsheet/CreateTearsheetStep.js +4 -4
  25. package/es/components/DataSpreadsheet/DataSpreadsheet.js +107 -89
  26. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +93 -20
  27. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +50 -2
  28. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +3 -1
  29. package/es/components/ImportModal/ImportModal.js +2 -2
  30. package/es/components/UserProfileImage/UserProfileImage.js +1 -1
  31. package/es/components/index.js +0 -1
  32. package/es/global/js/package-settings.js +1 -2
  33. package/lib/components/AddSelect/AddSelect.js +63 -12
  34. package/lib/components/AddSelect/AddSelectColumn.js +57 -21
  35. package/lib/components/AddSelect/AddSelectList.js +39 -17
  36. package/lib/components/AddSelect/AddSelectSidebar.js +2 -1
  37. package/lib/components/ButtonMenu/ButtonMenu.js +11 -3
  38. package/lib/components/CreateFullPage/CreateFullPageStep.js +4 -4
  39. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +4 -4
  40. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +108 -91
  41. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +94 -20
  42. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +52 -7
  43. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +3 -1
  44. package/lib/components/ImportModal/ImportModal.js +1 -1
  45. package/lib/components/UserProfileImage/UserProfileImage.js +1 -1
  46. package/lib/components/index.js +0 -8
  47. package/lib/global/js/package-settings.js +1 -2
  48. package/package.json +16 -16
  49. package/scss/components/AboutModal/_about-modal.scss +2 -2
  50. package/scss/components/ActionSet/_action-set.scss +3 -1
  51. package/scss/components/AddSelect/_add-select.scss +41 -2
  52. package/scss/components/CreateModal/_create-modal.scss +7 -5
  53. package/scss/components/CreateModal/_storybook-styles.scss +8 -7
  54. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +21 -3
  55. package/scss/components/ExportModal/_export-modal.scss +3 -3
  56. package/scss/components/InlineEdit/_inline-edit.scss +3 -0
  57. package/scss/components/ModifiedTabs/_modified-tabs.scss +4 -9
  58. package/scss/components/NotificationsPanel/_notifications-panel.scss +9 -5
  59. package/scss/components/OptionsTile/_options-tile.scss +0 -1
  60. package/scss/components/RemoveModal/_remove-modal.scss +3 -3
  61. package/scss/components/TagSet/_tag-set.scss +2 -1
  62. package/scss/components/Tearsheet/_tearsheet.scss +4 -1
  63. package/scss/components/_index.scss +0 -1
  64. package/es/components/LoadingBar/LoadingBar.js +0 -156
  65. package/es/components/LoadingBar/index.js +0 -7
  66. package/lib/components/LoadingBar/LoadingBar.js +0 -170
  67. package/lib/components/LoadingBar/index.js +0 -13
  68. package/scss/components/LoadingBar/_index.scss +0 -8
  69. package/scss/components/LoadingBar/_loading-bar.scss +0 -224
  70. package/scss/components/LoadingBar/_storybook-styles.scss +0 -14
@@ -1238,6 +1238,11 @@ em {
1238
1238
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger::before, .bx--btn.bx--btn--icon-only.bx--tooltip__trigger::after {
1239
1239
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
1240
1240
  }
1241
+ @media screen and (prefers-reduced-motion: reduce) {
1242
+ .bx--btn.bx--btn--icon-only.bx--tooltip__trigger::before, .bx--btn.bx--btn--icon-only.bx--tooltip__trigger::after {
1243
+ transition: none;
1244
+ }
1245
+ }
1241
1246
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger.bx--tooltip--a11y::before, .bx--btn.bx--btn--icon-only.bx--tooltip__trigger.bx--tooltip--a11y::after {
1242
1247
  transition: none;
1243
1248
  }
@@ -1423,6 +1428,11 @@ em {
1423
1428
  .bx--tooltip__trigger.bx--btn--icon-only--top::before, .bx--tooltip__trigger.bx--btn--icon-only--top::after {
1424
1429
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
1425
1430
  }
1431
+ @media screen and (prefers-reduced-motion: reduce) {
1432
+ .bx--tooltip__trigger.bx--btn--icon-only--top::before, .bx--tooltip__trigger.bx--btn--icon-only--top::after {
1433
+ transition: none;
1434
+ }
1435
+ }
1426
1436
  .bx--tooltip__trigger.bx--btn--icon-only--top.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--btn--icon-only--top.bx--tooltip--a11y::after {
1427
1437
  transition: none;
1428
1438
  }
@@ -1689,6 +1699,11 @@ em {
1689
1699
  .bx--tooltip__trigger.bx--btn--icon-only--right::before, .bx--tooltip__trigger.bx--btn--icon-only--right::after {
1690
1700
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
1691
1701
  }
1702
+ @media screen and (prefers-reduced-motion: reduce) {
1703
+ .bx--tooltip__trigger.bx--btn--icon-only--right::before, .bx--tooltip__trigger.bx--btn--icon-only--right::after {
1704
+ transition: none;
1705
+ }
1706
+ }
1692
1707
  .bx--tooltip__trigger.bx--btn--icon-only--right.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--btn--icon-only--right.bx--tooltip--a11y::after {
1693
1708
  transition: none;
1694
1709
  }
@@ -1950,6 +1965,11 @@ em {
1950
1965
  .bx--tooltip__trigger.bx--btn--icon-only--bottom::before, .bx--tooltip__trigger.bx--btn--icon-only--bottom::after {
1951
1966
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
1952
1967
  }
1968
+ @media screen and (prefers-reduced-motion: reduce) {
1969
+ .bx--tooltip__trigger.bx--btn--icon-only--bottom::before, .bx--tooltip__trigger.bx--btn--icon-only--bottom::after {
1970
+ transition: none;
1971
+ }
1972
+ }
1953
1973
  .bx--tooltip__trigger.bx--btn--icon-only--bottom.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--btn--icon-only--bottom.bx--tooltip--a11y::after {
1954
1974
  transition: none;
1955
1975
  }
@@ -2214,6 +2234,11 @@ em {
2214
2234
  .bx--tooltip__trigger.bx--btn--icon-only--left::before, .bx--tooltip__trigger.bx--btn--icon-only--left::after {
2215
2235
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
2216
2236
  }
2237
+ @media screen and (prefers-reduced-motion: reduce) {
2238
+ .bx--tooltip__trigger.bx--btn--icon-only--left::before, .bx--tooltip__trigger.bx--btn--icon-only--left::after {
2239
+ transition: none;
2240
+ }
2241
+ }
2217
2242
  .bx--tooltip__trigger.bx--btn--icon-only--left.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--btn--icon-only--left.bx--tooltip--a11y::after {
2218
2243
  transition: none;
2219
2244
  }
@@ -2944,6 +2969,11 @@ em {
2944
2969
  transition: opacity 240ms cubic-bezier(0, 0, 0.3, 1), visibility 0ms linear;
2945
2970
  visibility: inherit;
2946
2971
  }
2972
+ @media screen and (prefers-reduced-motion: reduce) {
2973
+ .bx--modal.is-visible {
2974
+ transition: none;
2975
+ }
2976
+ }
2947
2977
  .bx--modal .bx--pagination,
2948
2978
  .bx--modal .bx--pagination__control-buttons,
2949
2979
  .bx--modal .bx--text-input,
@@ -3619,6 +3649,11 @@ fieldset[disabled] .bx--form__helper-text {
3619
3649
  .bx--text-input--password__visibility::before, .bx--text-input--password__visibility::after {
3620
3650
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
3621
3651
  }
3652
+ @media screen and (prefers-reduced-motion: reduce) {
3653
+ .bx--text-input--password__visibility::before, .bx--text-input--password__visibility::after {
3654
+ transition: none;
3655
+ }
3656
+ }
3622
3657
  .bx--text-input--password__visibility.bx--tooltip--a11y::before, .bx--text-input--password__visibility.bx--tooltip--a11y::after {
3623
3658
  transition: none;
3624
3659
  }
@@ -4092,6 +4127,11 @@ fieldset[disabled] .bx--form__helper-text {
4092
4127
  animation-name: init-stroke;
4093
4128
  animation-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
4094
4129
  }
4130
+ @media screen and (prefers-reduced-motion: reduce) {
4131
+ .bx--loading svg circle {
4132
+ animation: none;
4133
+ }
4134
+ }
4095
4135
 
4096
4136
  .bx--loading__svg {
4097
4137
  fill: transparent;
@@ -4122,6 +4162,11 @@ fieldset[disabled] .bx--form__helper-text {
4122
4162
  animation-name: stroke-end;
4123
4163
  animation-timing-function: cubic-bezier(0.2, 0, 1, 0.9);
4124
4164
  }
4165
+ @media screen and (prefers-reduced-motion: reduce) {
4166
+ .bx--loading--stop svg circle {
4167
+ animation: none;
4168
+ }
4169
+ }
4125
4170
 
4126
4171
  .bx--loading--small {
4127
4172
  width: 1rem;
@@ -7433,6 +7478,11 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
7433
7478
  content: "";
7434
7479
  transition: background-color 110ms cubic-bezier(0, 0, 0.38, 0.9);
7435
7480
  }
7481
+ @media screen and (prefers-reduced-motion: reduce) {
7482
+ .bx--overflow-menu-options::after {
7483
+ transition: none;
7484
+ }
7485
+ }
7436
7486
 
7437
7487
  .bx--overflow-menu.bx--overflow-menu--open:hover {
7438
7488
  background-color: var(--cds-field-01, #f4f4f4);
@@ -8137,6 +8187,11 @@ a.bx--overflow-menu-options__btn::before {
8137
8187
  .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::before, .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::after {
8138
8188
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
8139
8189
  }
8190
+ @media screen and (prefers-reduced-motion: reduce) {
8191
+ .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::before, .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top::after {
8192
+ transition: none;
8193
+ }
8194
+ }
8140
8195
  .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--top.bx--tooltip--a11y::after {
8141
8196
  transition: none;
8142
8197
  }
@@ -8391,6 +8446,11 @@ a.bx--overflow-menu-options__btn::before {
8391
8446
  .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::before, .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::after {
8392
8447
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
8393
8448
  }
8449
+ @media screen and (prefers-reduced-motion: reduce) {
8450
+ .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::before, .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom::after {
8451
+ transition: none;
8452
+ }
8453
+ }
8394
8454
  .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--tooltip__trigger--definition.bx--tooltip--bottom.bx--tooltip--a11y::after {
8395
8455
  transition: none;
8396
8456
  }
@@ -8669,6 +8729,13 @@ a.bx--overflow-menu-options__btn::before {
8669
8729
  pointer-events: none;
8670
8730
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
8671
8731
  }
8732
+ @media screen and (prefers-reduced-motion: reduce) {
8733
+ .bx--tooltip--icon__top::before, .bx--tooltip--icon__top::after,
8734
+ .bx--tooltip--icon__bottom::before,
8735
+ .bx--tooltip--icon__bottom::after {
8736
+ transition: none;
8737
+ }
8738
+ }
8672
8739
  .bx--tooltip--icon__top::before,
8673
8740
  .bx--tooltip--icon__bottom::before {
8674
8741
  right: 0;
@@ -8850,6 +8917,11 @@ a.bx--overflow-menu-options__btn::before {
8850
8917
  .bx--tooltip__trigger.bx--tooltip--top::before, .bx--tooltip__trigger.bx--tooltip--top::after {
8851
8918
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
8852
8919
  }
8920
+ @media screen and (prefers-reduced-motion: reduce) {
8921
+ .bx--tooltip__trigger.bx--tooltip--top::before, .bx--tooltip__trigger.bx--tooltip--top::after {
8922
+ transition: none;
8923
+ }
8924
+ }
8853
8925
  .bx--tooltip__trigger.bx--tooltip--top.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--tooltip--top.bx--tooltip--a11y::after {
8854
8926
  transition: none;
8855
8927
  }
@@ -9116,6 +9188,11 @@ a.bx--overflow-menu-options__btn::before {
9116
9188
  .bx--tooltip__trigger.bx--tooltip--right::before, .bx--tooltip__trigger.bx--tooltip--right::after {
9117
9189
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
9118
9190
  }
9191
+ @media screen and (prefers-reduced-motion: reduce) {
9192
+ .bx--tooltip__trigger.bx--tooltip--right::before, .bx--tooltip__trigger.bx--tooltip--right::after {
9193
+ transition: none;
9194
+ }
9195
+ }
9119
9196
  .bx--tooltip__trigger.bx--tooltip--right.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--tooltip--right.bx--tooltip--a11y::after {
9120
9197
  transition: none;
9121
9198
  }
@@ -9377,6 +9454,11 @@ a.bx--overflow-menu-options__btn::before {
9377
9454
  .bx--tooltip__trigger.bx--tooltip--bottom::before, .bx--tooltip__trigger.bx--tooltip--bottom::after {
9378
9455
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
9379
9456
  }
9457
+ @media screen and (prefers-reduced-motion: reduce) {
9458
+ .bx--tooltip__trigger.bx--tooltip--bottom::before, .bx--tooltip__trigger.bx--tooltip--bottom::after {
9459
+ transition: none;
9460
+ }
9461
+ }
9380
9462
  .bx--tooltip__trigger.bx--tooltip--bottom.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--tooltip--bottom.bx--tooltip--a11y::after {
9381
9463
  transition: none;
9382
9464
  }
@@ -9641,6 +9723,11 @@ a.bx--overflow-menu-options__btn::before {
9641
9723
  .bx--tooltip__trigger.bx--tooltip--left::before, .bx--tooltip__trigger.bx--tooltip--left::after {
9642
9724
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
9643
9725
  }
9726
+ @media screen and (prefers-reduced-motion: reduce) {
9727
+ .bx--tooltip__trigger.bx--tooltip--left::before, .bx--tooltip__trigger.bx--tooltip--left::after {
9728
+ transition: none;
9729
+ }
9730
+ }
9644
9731
  .bx--tooltip__trigger.bx--tooltip--left.bx--tooltip--a11y::before, .bx--tooltip__trigger.bx--tooltip--left.bx--tooltip--a11y::after {
9645
9732
  transition: none;
9646
9733
  }
@@ -10263,6 +10350,11 @@ a.bx--overflow-menu-options__btn::before {
10263
10350
  transition: box-shadow 70ms cubic-bezier(0.2, 0, 1, 0.9), background-color 70ms cubic-bezier(0.2, 0, 1, 0.9);
10264
10351
  will-change: box-shadow;
10265
10352
  }
10353
+ @media screen and (prefers-reduced-motion: reduce) {
10354
+ .bx--toggle__appearance::before {
10355
+ transition: none;
10356
+ }
10357
+ }
10266
10358
  .bx--toggle__appearance::after {
10267
10359
  position: absolute;
10268
10360
  top: 0.1875rem;
@@ -10346,6 +10438,11 @@ a.bx--overflow-menu-options__btn::before {
10346
10438
  cursor: not-allowed;
10347
10439
  transition: 70ms cubic-bezier(0.2, 0, 1, 0.9);
10348
10440
  }
10441
+ @media screen and (prefers-reduced-motion: reduce) {
10442
+ .bx--toggle:disabled + .bx--toggle__label .bx--toggle__appearance::before, .bx--toggle:disabled + .bx--toggle__label .bx--toggle__appearance::after {
10443
+ transition: none;
10444
+ }
10445
+ }
10349
10446
 
10350
10447
  .bx--toggle:disabled + .bx--toggle__label .bx--toggle__text--left,
10351
10448
  .bx--toggle:disabled + .bx--toggle__label .bx--toggle__text--right {
@@ -10442,6 +10539,11 @@ a.bx--overflow-menu-options__btn::before {
10442
10539
  transition: box-shadow 70ms cubic-bezier(0.2, 0, 1, 0.9), background-color 70ms cubic-bezier(0.2, 0, 1, 0.9);
10443
10540
  will-change: box-shadow;
10444
10541
  }
10542
+ @media screen and (prefers-reduced-motion: reduce) {
10543
+ .bx--toggle__switch::before {
10544
+ transition: none;
10545
+ }
10546
+ }
10445
10547
  .bx--toggle__switch::after {
10446
10548
  position: absolute;
10447
10549
  top: 0.1875rem;
@@ -10509,6 +10611,11 @@ a.bx--overflow-menu-options__btn::before {
10509
10611
  cursor: not-allowed;
10510
10612
  transition: 70ms cubic-bezier(0.2, 0, 1, 0.9);
10511
10613
  }
10614
+ @media screen and (prefers-reduced-motion: reduce) {
10615
+ .bx--toggle-input:disabled + .bx--toggle-input__label > .bx--toggle__switch::before, .bx--toggle-input:disabled + .bx--toggle-input__label > .bx--toggle__switch::after {
10616
+ transition: none;
10617
+ }
10618
+ }
10512
10619
 
10513
10620
  .bx--toggle-input:disabled:active + .bx--toggle-input__label > .bx--toggle__switch::before {
10514
10621
  box-shadow: none;
@@ -12429,6 +12536,11 @@ a.bx--side-nav__link--current::before {
12429
12536
  align-items: flex-end;
12430
12537
  transition: visibility 0s linear, background-color 240ms cubic-bezier(0, 0, 0.3, 1), opacity 240ms cubic-bezier(0, 0, 0.3, 1);
12431
12538
  }
12539
+ @media (prefers-reduced-motion: reduce) {
12540
+ .c4p--tearsheet.is-visible {
12541
+ transition: none;
12542
+ }
12543
+ }
12432
12544
  .c4p--tearsheet.c4p--tearsheet--stacked-1-of-2 {
12433
12545
  z-index: 8999;
12434
12546
  background-color: rgba(22, 22, 22, 0.33);
@@ -13853,188 +13965,6 @@ a.bx--side-nav__link--current::before {
13853
13965
  background: var(--cds-ui-02, #ffffff);
13854
13966
  }
13855
13967
 
13856
- @keyframes progress-indeterminate {
13857
- 0% {
13858
- right: auto;
13859
- left: 0;
13860
- width: 0%;
13861
- }
13862
- 20% {
13863
- right: auto;
13864
- left: 0;
13865
- width: 100%;
13866
- }
13867
- 28% {
13868
- right: 0;
13869
- left: auto;
13870
- width: 100%;
13871
- }
13872
- 51% {
13873
- right: 0;
13874
- left: auto;
13875
- width: 0%;
13876
- }
13877
- 58% {
13878
- right: 0;
13879
- left: auto;
13880
- width: 0%;
13881
- }
13882
- 82% {
13883
- right: 0;
13884
- left: auto;
13885
- width: 100%;
13886
- }
13887
- 83% {
13888
- right: auto;
13889
- left: 0;
13890
- width: 100%;
13891
- }
13892
- 96% {
13893
- right: auto;
13894
- left: 0;
13895
- width: 0%;
13896
- }
13897
- 100% {
13898
- right: auto;
13899
- left: 0;
13900
- width: 0%;
13901
- }
13902
- }
13903
- @keyframes progress-linear {
13904
- 0% {
13905
- right: auto;
13906
- left: 0;
13907
- width: 0%;
13908
- }
13909
- 100% {
13910
- right: auto;
13911
- left: 0;
13912
- width: 100%;
13913
- }
13914
- }
13915
- @keyframes progress-stop {
13916
- 0% {
13917
- right: auto;
13918
- left: 0;
13919
- width: 0%;
13920
- }
13921
- 92% {
13922
- right: auto;
13923
- left: 0;
13924
- width: 100%;
13925
- }
13926
- 100% {
13927
- right: auto;
13928
- left: 0;
13929
- width: 100%;
13930
- }
13931
- }
13932
- @keyframes loading-bar-stop {
13933
- 0% {
13934
- opacity: 1;
13935
- }
13936
- 92% {
13937
- opacity: 1;
13938
- }
13939
- 100% {
13940
- display: none;
13941
- opacity: 0;
13942
- }
13943
- }
13944
- .c4p--loading-bar .c4p--loading-bar__inner {
13945
- position: relative;
13946
- width: 100%;
13947
- height: 8px;
13948
- padding: 0;
13949
- border: none;
13950
- background-color: var(--cds-hover-ui, #e5e5e5);
13951
- -webkit-box-shadow: none;
13952
- box-shadow: none;
13953
- pointer-events: none;
13954
- }
13955
-
13956
- .c4p--loading-bar .c4p--loading-bar__inner:hover,
13957
- .c4p--loading-bar .c4p--loading-bar__inner:focus,
13958
- .c4p--loading-bar .c4p--loading-bar__inner:active {
13959
- border: none;
13960
- cursor: default;
13961
- outline: none;
13962
- }
13963
-
13964
- .c4p--loading-bar__preload {
13965
- opacity: 0;
13966
- }
13967
-
13968
- .c4p--loading-bar__progress {
13969
- position: relative;
13970
- height: 8px;
13971
- transition: width 720ms cubic-bezier(0.4, 0.14, 0.3, 1);
13972
- }
13973
-
13974
- .c4p--loading-bar__indicator-wrapper {
13975
- display: flex;
13976
- justify-content: flex-end;
13977
- }
13978
-
13979
- .c4p--loading-bar__indicator {
13980
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
13981
- font-weight: var(--cds-body-short-01-font-weight, 400);
13982
- line-height: var(--cds-body-short-01-line-height, 1.28572);
13983
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
13984
- padding-top: var(--cds-spacing-05, 1rem);
13985
- padding-bottom: var(--cds-spacing-03, 0.5rem);
13986
- color: var(--cds-text-01, #161616);
13987
- }
13988
-
13989
- .c4p--loading-bar__small {
13990
- height: 4px;
13991
- }
13992
-
13993
- .c4p--loading-bar__small .c4p--loading-bar__progress {
13994
- height: 4px;
13995
- }
13996
-
13997
- .c4p--loading-bar__linear-stop {
13998
- display: none;
13999
- }
14000
-
14001
- .c4p--loading-bar__indefinite-stop {
14002
- animation: 1800ms ease-in-out loading-bar-stop forwards;
14003
- }
14004
-
14005
- .c4p--loading-bar__stop-progress:before {
14006
- position: absolute;
14007
- top: 0;
14008
- left: 0;
14009
- width: 0%;
14010
- height: 100%;
14011
- animation: 1800ms ease-in-out progress-stop forwards;
14012
- background-color: var(--cds-interactive-01, #0f62fe);
14013
- content: "";
14014
- }
14015
-
14016
- .c4p--loading-bar__indefinite-progress:before {
14017
- position: absolute;
14018
- top: 0;
14019
- left: 0;
14020
- width: 0%;
14021
- height: 100%;
14022
- animation: 3000ms ease-in-out progress-indeterminate infinite;
14023
- background-color: var(--cds-interactive-01, #0f62fe);
14024
- content: "";
14025
- }
14026
-
14027
- .c4p--loading-bar__linear-progress:before {
14028
- position: absolute;
14029
- top: 0;
14030
- left: 0;
14031
- width: 0%;
14032
- height: 100%;
14033
- animation: 1000ms ease-in-out progress-linear forwards;
14034
- background-color: var(--cds-interactive-01, #0f62fe);
14035
- content: "";
14036
- }
14037
-
14038
13968
  .modified-tabs .modified-tabs__tab-label {
14039
13969
  display: flex;
14040
13970
  width: 100%;
@@ -14042,10 +13972,6 @@ a.bx--side-nav__link--current::before {
14042
13972
  justify-content: space-between;
14043
13973
  }
14044
13974
 
14045
- .modified-tabs .bx--tabs__nav {
14046
- /* overflow cannot be tweaked to fix tooltip */
14047
- }
14048
-
14049
13975
  .modified-tabs__tab-new,
14050
13976
  .modified-tabs__tab {
14051
13977
  position: relative;
@@ -14069,6 +13995,12 @@ a.bx--side-nav__link--current::before {
14069
13995
  cursor: pointer;
14070
13996
  transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
14071
13997
  }
13998
+ @media (prefers-reduced-motion: reduce) {
13999
+ .modified-tabs__tab-new-img,
14000
+ .modified-tabs__tab-close {
14001
+ transition: none;
14002
+ }
14003
+ }
14072
14004
 
14073
14005
  .modified-tabs__tab-new-icon {
14074
14006
  display: flex;
@@ -14349,6 +14281,33 @@ a.bx--side-nav__link--current::before {
14349
14281
  display: block;
14350
14282
  color: var(--cds-text-02, #525252);
14351
14283
  }
14284
+ .c4p--add-select__selections-cell:hover .c4p--add-select__selections-dropdown {
14285
+ visibility: visible;
14286
+ }
14287
+ .c4p--add-select__selections-dropdown {
14288
+ visibility: hidden;
14289
+ }
14290
+ .c4p--add-select__selections-row-selected {
14291
+ background: #e5e5e5;
14292
+ }
14293
+ .c4p--add-select__selections-row-selected .c4p--add-select__selections-dropdown {
14294
+ visibility: visible;
14295
+ }
14296
+ .c4p--add-select__selections-checkbox {
14297
+ display: flex;
14298
+ align-items: center;
14299
+ }
14300
+ .c4p--add-select__selections-checkbox-label-text {
14301
+ display: flex;
14302
+ flex-direction: column;
14303
+ padding-left: var(--cds-spacing-05, 1rem);
14304
+ }
14305
+ .c4p--add-select__selections-checkbox-wrapper.bx--form-item {
14306
+ flex: 0;
14307
+ }
14308
+ .c4p--add-select__selections-checkbox-wrapper .bx--checkbox-label-text {
14309
+ display: none;
14310
+ }
14352
14311
 
14353
14312
  .c4p--add-select__sidebar-header {
14354
14313
  display: flex;
@@ -14449,6 +14408,10 @@ a.bx--side-nav__link--current::before {
14449
14408
  margin-right: var(--cds-spacing-03, 0.5rem);
14450
14409
  }
14451
14410
 
14411
+ .c4p--add-select__tag-container .bx--tag {
14412
+ margin: 0;
14413
+ }
14414
+
14452
14415
  .c4p--add-select .c4p--tearsheet .c4p--tearsheet__influencer {
14453
14416
  max-width: 29rem;
14454
14417
  flex: 0 0 50%;
@@ -15089,6 +15052,12 @@ a.bx--side-nav__link--current::before {
15089
15052
  .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button .bx--btn__icon {
15090
15053
  transition: transform 240ms ease;
15091
15054
  }
15055
+ @media (prefers-reduced-motion: reduce) {
15056
+ .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-more-button .bx--btn__icon,
15057
+ .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button .bx--btn__icon {
15058
+ transition: none;
15059
+ }
15060
+ }
15092
15061
  .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-more-button.c4p--notifications-panel__notification-read-more-button .bx--btn__icon,
15093
15062
  .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button.c4p--notifications-panel__notification-read-more-button .bx--btn__icon {
15094
15063
  transform: rotate(0deg);
@@ -15267,6 +15236,11 @@ a.bx--side-nav__link--current::before {
15267
15236
  opacity: 0;
15268
15237
  transition: opacity 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
15269
15238
  }
15239
+ @media screen and (prefers-reduced-motion: reduce) {
15240
+ .bx--breadcrumb-item .bx--overflow-menu::after {
15241
+ transition: none;
15242
+ }
15243
+ }
15270
15244
 
15271
15245
  .bx--breadcrumb-item .bx--overflow-menu:hover::after {
15272
15246
  opacity: 1;
@@ -15978,6 +15952,11 @@ a.bx--side-nav__link--current::before {
15978
15952
  content: "";
15979
15953
  transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
15980
15954
  }
15955
+ @media screen and (prefers-reduced-motion: reduce) {
15956
+ .bx--search-close::before {
15957
+ transition: none;
15958
+ }
15959
+ }
15981
15960
  .bx--search-close:hover {
15982
15961
  border-bottom: 1px solid var(--cds-ui-04, #8d8d8d);
15983
15962
  }
@@ -16293,6 +16272,7 @@ a.bx--side-nav__link--current::before {
16293
16272
 
16294
16273
  .c4p--tag-set-overflow__tooltip.c4p--tag-set-overflow__tooltip {
16295
16274
  min-width: initial;
16275
+ text-align: left;
16296
16276
  }
16297
16277
  .c4p--tag-set-overflow__tooltip .c4p--tag-set-overflow__show-all-tags-link {
16298
16278
  display: inline-block;
@@ -19147,6 +19127,11 @@ a.bx--side-nav__link--current::before {
19147
19127
  .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation .c4p--inline-edit__save svg {
19148
19128
  transition: width 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
19149
19129
  }
19130
+ @media (prefers-reduced-motion: reduce) {
19131
+ .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation .c4p--inline-edit__save svg {
19132
+ transition: none;
19133
+ }
19134
+ }
19150
19135
  .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation:not(.c4p--inline-edit__toolbar--saveable) .c4p--inline-edit__save {
19151
19136
  padding-right: 0;
19152
19137
  padding-left: 0;
@@ -19225,6 +19210,10 @@ a.bx--side-nav__link--current::before {
19225
19210
  }
19226
19211
  .c4p--data-spreadsheet .c4p--data-spreadsheet__th,
19227
19212
  .c4p--data-spreadsheet .c4p--data-spreadsheet__td {
19213
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
19214
+ font-weight: var(--cds-body-short-01-font-weight, 400);
19215
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
19216
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
19228
19217
  padding: 0 var(--cds-spacing-03, 0.5rem);
19229
19218
  border: 0;
19230
19219
  margin: 0;
@@ -19264,10 +19253,15 @@ a.bx--side-nav__link--current::before {
19264
19253
  text-align: left;
19265
19254
  }
19266
19255
  .c4p--data-spreadsheet .c4p--data-spreadsheet__cell-editor {
19256
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
19257
+ font-weight: var(--cds-body-short-01-font-weight, 400);
19258
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
19259
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
19267
19260
  position: absolute;
19268
19261
  z-index: 4;
19269
19262
  display: none;
19270
- padding: 0 var(--cds-spacing-03, 0.5rem);
19263
+ /* stylelint-disable-next-line carbon/layout-token-use */
19264
+ padding: 0 calc(var(--cds-spacing-03, 0.5rem) + 1px) 0 var(--cds-spacing-03, 0.5rem);
19271
19265
  background-color: var(--cds-ui-background, #ffffff);
19272
19266
  resize: none;
19273
19267
  }
@@ -19276,10 +19270,23 @@ a.bx--side-nav__link--current::before {
19276
19270
  min-height: initial;
19277
19271
  }
19278
19272
  .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight {
19273
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
19274
+ font-weight: var(--cds-body-short-01-font-weight, 400);
19275
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
19276
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
19277
+ border-right: 1px solid var(--cds-ui-03, #e0e0e0);
19278
+ border-bottom: 1px solid var(--cds-ui-03, #e0e0e0);
19279
19279
  position: absolute;
19280
19280
  z-index: 3;
19281
19281
  display: none;
19282
+ /* stylelint-disable-next-line carbon/layout-token-use */
19283
+ padding-right: calc(var(--cds-spacing-03, 0.5rem) - 1px);
19284
+ padding-bottom: var(--cds-spacing-01, 0.125rem);
19282
19285
  border: var(--cds-spacing-01, 0.125rem) solid var(--cds-interactive-01, #0f62fe);
19286
+ background-color: var(--cds-ui-background, #ffffff);
19287
+ text-align: left;
19288
+ }
19289
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight[data-active-row-index=header], .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight[data-active-column-index=header] {
19283
19290
  background-color: transparent;
19284
19291
  }
19285
19292
  .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight:focus {
@@ -19311,680 +19318,1634 @@ a.bx--side-nav__link--current::before {
19311
19318
  @font-face {
19312
19319
  font-display: auto;
19313
19320
  font-family: "IBM Plex Mono";
19314
- font-style: italic;
19315
- font-weight: 300;
19316
- src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflV1gMoW.woff) format("woff");
19321
+ font-style: normal;
19322
+ font-weight: 700;
19323
+ src: local("IBM Plex Mono Bold"), local("IBMPlexMono-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-Bold.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-Bold.woff") format("woff");
19317
19324
  }
19318
19325
  @font-face {
19319
19326
  font-display: auto;
19320
19327
  font-family: "IBM Plex Mono";
19321
- font-style: italic;
19322
- font-weight: 400;
19323
- src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioa1Xdm.woff) format("woff");
19328
+ font-style: normal;
19329
+ font-weight: 700;
19330
+ src: local("IBM Plex Mono Bold"), local("IBMPlexMono-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Bold-Cyrillic.woff2") format("woff2");
19331
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19324
19332
  }
19325
19333
  @font-face {
19326
19334
  font-display: auto;
19327
19335
  font-family: "IBM Plex Mono";
19328
- font-style: italic;
19329
- font-weight: 600;
19330
- src: local("IBM Plex Mono SemiBold Italic"), local("IBMPlexMono-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClN1gMoW.woff) format("woff");
19336
+ font-style: normal;
19337
+ font-weight: 700;
19338
+ src: local("IBM Plex Mono Bold"), local("IBMPlexMono-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Bold-Pi.woff2") format("woff2");
19339
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19331
19340
  }
19332
19341
  @font-face {
19333
19342
  font-display: auto;
19334
19343
  font-family: "IBM Plex Mono";
19335
19344
  font-style: normal;
19336
- font-weight: 300;
19337
- src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQIwlBFhA.woff) format("woff");
19345
+ font-weight: 700;
19346
+ src: local("IBM Plex Mono Bold"), local("IBMPlexMono-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Bold-Latin3.woff2") format("woff2");
19347
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19338
19348
  }
19339
19349
  @font-face {
19340
19350
  font-display: auto;
19341
19351
  font-family: "IBM Plex Mono";
19342
19352
  font-style: normal;
19343
- font-weight: 400;
19344
- src: local("IBM Plex Mono"), local("IBMPlexMono"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n1i8q0Q.woff) format("woff");
19353
+ font-weight: 700;
19354
+ src: local("IBM Plex Mono Bold"), local("IBMPlexMono-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Bold-Latin2.woff2") format("woff2");
19355
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19345
19356
  }
19346
19357
  @font-face {
19347
19358
  font-display: auto;
19348
19359
  font-family: "IBM Plex Mono";
19349
19360
  font-style: normal;
19350
- font-weight: 600;
19351
- src: local("IBM Plex Mono SemiBold"), local("IBMPlexMono-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAOwlBFhA.woff) format("woff");
19361
+ font-weight: 700;
19362
+ src: local("IBM Plex Mono Bold"), local("IBMPlexMono-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Bold-Latin1.woff2") format("woff2");
19363
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19352
19364
  }
19353
- /* cyrillic-ext */
19354
19365
  @font-face {
19355
19366
  font-display: auto;
19356
19367
  font-family: "IBM Plex Mono";
19357
19368
  font-style: italic;
19358
- font-weight: 300;
19359
- src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflV1jcoQPttoz6Pz.woff2) format("woff2");
19360
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
19369
+ font-weight: 700;
19370
+ src: local("IBM Plex Mono Bold Italic"), local("IBMPlexMono-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-BoldItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-BoldItalic.woff") format("woff");
19361
19371
  }
19362
- /* cyrillic */
19363
19372
  @font-face {
19364
19373
  font-display: auto;
19365
19374
  font-family: "IBM Plex Mono";
19366
19375
  font-style: italic;
19367
- font-weight: 300;
19368
- src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflV1hMoQPttoz6Pz.woff2) format("woff2");
19369
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
19376
+ font-weight: 700;
19377
+ src: local("IBM Plex Mono Bold Italic"), local("IBMPlexMono-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-BoldItalic-Cyrillic.woff2") format("woff2");
19378
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19370
19379
  }
19371
- /* vietnamese */
19372
19380
  @font-face {
19373
19381
  font-display: auto;
19374
19382
  font-family: "IBM Plex Mono";
19375
19383
  font-style: italic;
19376
- font-weight: 300;
19377
- src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflV1j8oQPttoz6Pz.woff2) format("woff2");
19378
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
19384
+ font-weight: 700;
19385
+ src: local("IBM Plex Mono Bold Italic"), local("IBMPlexMono-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-BoldItalic-Pi.woff2") format("woff2");
19386
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19379
19387
  }
19380
- /* latin-ext */
19381
19388
  @font-face {
19382
19389
  font-display: auto;
19383
19390
  font-family: "IBM Plex Mono";
19384
19391
  font-style: italic;
19385
- font-weight: 300;
19386
- src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflV1jsoQPttoz6Pz.woff2) format("woff2");
19387
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
19392
+ font-weight: 700;
19393
+ src: local("IBM Plex Mono Bold Italic"), local("IBMPlexMono-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-BoldItalic-Latin3.woff2") format("woff2");
19394
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19388
19395
  }
19389
- /* latin */
19390
19396
  @font-face {
19391
19397
  font-display: auto;
19392
19398
  font-family: "IBM Plex Mono";
19393
19399
  font-style: italic;
19394
- font-weight: 300;
19395
- src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflV1gMoQPttozw.woff2) format("woff2");
19396
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
19400
+ font-weight: 700;
19401
+ src: local("IBM Plex Mono Bold Italic"), local("IBMPlexMono-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-BoldItalic-Latin2.woff2") format("woff2");
19402
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19397
19403
  }
19398
- /* cyrillic-ext */
19399
19404
  @font-face {
19400
19405
  font-display: auto;
19401
19406
  font-family: "IBM Plex Mono";
19402
19407
  font-style: italic;
19403
- font-weight: 400;
19404
- src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioa2HdgregdFOFh.woff2) format("woff2");
19405
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
19408
+ font-weight: 700;
19409
+ src: local("IBM Plex Mono Bold Italic"), local("IBMPlexMono-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-BoldItalic-Latin1.woff2") format("woff2");
19410
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19406
19411
  }
19407
- /* cyrillic */
19408
19412
  @font-face {
19409
19413
  font-display: auto;
19410
19414
  font-family: "IBM Plex Mono";
19411
- font-style: italic;
19412
- font-weight: 400;
19413
- src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioa0XdgregdFOFh.woff2) format("woff2");
19414
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
19415
+ font-style: normal;
19416
+ font-weight: 200;
19417
+ src: local("IBM Plex Mono ExtLt"), local("IBMPlexMono-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-ExtraLight.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-ExtraLight.woff") format("woff");
19418
+ }
19419
+ @font-face {
19420
+ font-display: auto;
19421
+ font-family: "IBM Plex Mono";
19422
+ font-style: normal;
19423
+ font-weight: 200;
19424
+ src: local("IBM Plex Mono ExtLt"), local("IBMPlexMono-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLight-Cyrillic.woff2") format("woff2");
19425
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19426
+ }
19427
+ @font-face {
19428
+ font-display: auto;
19429
+ font-family: "IBM Plex Mono";
19430
+ font-style: normal;
19431
+ font-weight: 200;
19432
+ src: local("IBM Plex Mono ExtLt"), local("IBMPlexMono-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLight-Pi.woff2") format("woff2");
19433
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19434
+ }
19435
+ @font-face {
19436
+ font-display: auto;
19437
+ font-family: "IBM Plex Mono";
19438
+ font-style: normal;
19439
+ font-weight: 200;
19440
+ src: local("IBM Plex Mono ExtLt"), local("IBMPlexMono-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLight-Latin3.woff2") format("woff2");
19441
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19442
+ }
19443
+ @font-face {
19444
+ font-display: auto;
19445
+ font-family: "IBM Plex Mono";
19446
+ font-style: normal;
19447
+ font-weight: 200;
19448
+ src: local("IBM Plex Mono ExtLt"), local("IBMPlexMono-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLight-Latin2.woff2") format("woff2");
19449
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19450
+ }
19451
+ @font-face {
19452
+ font-display: auto;
19453
+ font-family: "IBM Plex Mono";
19454
+ font-style: normal;
19455
+ font-weight: 200;
19456
+ src: local("IBM Plex Mono ExtLt"), local("IBMPlexMono-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLight-Latin1.woff2") format("woff2");
19457
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19458
+ }
19459
+ @font-face {
19460
+ font-display: auto;
19461
+ font-family: "IBM Plex Mono";
19462
+ font-style: italic;
19463
+ font-weight: 200;
19464
+ src: local("IBM Plex Mono ExtLt Italic"), local("IBMPlexMono-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-ExtraLightItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-ExtraLightItalic.woff") format("woff");
19465
+ }
19466
+ @font-face {
19467
+ font-display: auto;
19468
+ font-family: "IBM Plex Mono";
19469
+ font-style: italic;
19470
+ font-weight: 200;
19471
+ src: local("IBM Plex Mono ExtLt Italic"), local("IBMPlexMono-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLightItalic-Cyrillic.woff2") format("woff2");
19472
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19473
+ }
19474
+ @font-face {
19475
+ font-display: auto;
19476
+ font-family: "IBM Plex Mono";
19477
+ font-style: italic;
19478
+ font-weight: 200;
19479
+ src: local("IBM Plex Mono ExtLt Italic"), local("IBMPlexMono-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLightItalic-Pi.woff2") format("woff2");
19480
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19481
+ }
19482
+ @font-face {
19483
+ font-display: auto;
19484
+ font-family: "IBM Plex Mono";
19485
+ font-style: italic;
19486
+ font-weight: 200;
19487
+ src: local("IBM Plex Mono ExtLt Italic"), local("IBMPlexMono-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLightItalic-Latin3.woff2") format("woff2");
19488
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19489
+ }
19490
+ @font-face {
19491
+ font-display: auto;
19492
+ font-family: "IBM Plex Mono";
19493
+ font-style: italic;
19494
+ font-weight: 200;
19495
+ src: local("IBM Plex Mono ExtLt Italic"), local("IBMPlexMono-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLightItalic-Latin2.woff2") format("woff2");
19496
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19497
+ }
19498
+ @font-face {
19499
+ font-display: auto;
19500
+ font-family: "IBM Plex Mono";
19501
+ font-style: italic;
19502
+ font-weight: 200;
19503
+ src: local("IBM Plex Mono ExtLt Italic"), local("IBMPlexMono-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ExtraLightItalic-Latin1.woff2") format("woff2");
19504
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19505
+ }
19506
+ @font-face {
19507
+ font-display: auto;
19508
+ font-family: "IBM Plex Mono";
19509
+ font-style: italic;
19510
+ font-weight: 400;
19511
+ src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-Italic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-Italic.woff") format("woff");
19512
+ }
19513
+ @font-face {
19514
+ font-display: auto;
19515
+ font-family: "IBM Plex Mono";
19516
+ font-style: italic;
19517
+ font-weight: 400;
19518
+ src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Cyrillic.woff2") format("woff2");
19519
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19520
+ }
19521
+ @font-face {
19522
+ font-display: auto;
19523
+ font-family: "IBM Plex Mono";
19524
+ font-style: italic;
19525
+ font-weight: 400;
19526
+ src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Pi.woff2") format("woff2");
19527
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19528
+ }
19529
+ @font-face {
19530
+ font-display: auto;
19531
+ font-family: "IBM Plex Mono";
19532
+ font-style: italic;
19533
+ font-weight: 400;
19534
+ src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin3.woff2") format("woff2");
19535
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19536
+ }
19537
+ @font-face {
19538
+ font-display: auto;
19539
+ font-family: "IBM Plex Mono";
19540
+ font-style: italic;
19541
+ font-weight: 400;
19542
+ src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin2.woff2") format("woff2");
19543
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19544
+ }
19545
+ @font-face {
19546
+ font-display: auto;
19547
+ font-family: "IBM Plex Mono";
19548
+ font-style: italic;
19549
+ font-weight: 400;
19550
+ src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Italic-Latin1.woff2") format("woff2");
19551
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19552
+ }
19553
+ @font-face {
19554
+ font-display: auto;
19555
+ font-family: "IBM Plex Mono";
19556
+ font-style: normal;
19557
+ font-weight: 300;
19558
+ src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-Light.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-Light.woff") format("woff");
19559
+ }
19560
+ @font-face {
19561
+ font-display: auto;
19562
+ font-family: "IBM Plex Mono";
19563
+ font-style: normal;
19564
+ font-weight: 300;
19565
+ src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Cyrillic.woff2") format("woff2");
19566
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19567
+ }
19568
+ @font-face {
19569
+ font-display: auto;
19570
+ font-family: "IBM Plex Mono";
19571
+ font-style: normal;
19572
+ font-weight: 300;
19573
+ src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Pi.woff2") format("woff2");
19574
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19575
+ }
19576
+ @font-face {
19577
+ font-display: auto;
19578
+ font-family: "IBM Plex Mono";
19579
+ font-style: normal;
19580
+ font-weight: 300;
19581
+ src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin3.woff2") format("woff2");
19582
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19583
+ }
19584
+ @font-face {
19585
+ font-display: auto;
19586
+ font-family: "IBM Plex Mono";
19587
+ font-style: normal;
19588
+ font-weight: 300;
19589
+ src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin2.woff2") format("woff2");
19590
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19591
+ }
19592
+ @font-face {
19593
+ font-display: auto;
19594
+ font-family: "IBM Plex Mono";
19595
+ font-style: normal;
19596
+ font-weight: 300;
19597
+ src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Light-Latin1.woff2") format("woff2");
19598
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19599
+ }
19600
+ @font-face {
19601
+ font-display: auto;
19602
+ font-family: "IBM Plex Mono";
19603
+ font-style: italic;
19604
+ font-weight: 300;
19605
+ src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-LightItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-LightItalic.woff") format("woff");
19606
+ }
19607
+ @font-face {
19608
+ font-display: auto;
19609
+ font-family: "IBM Plex Mono";
19610
+ font-style: italic;
19611
+ font-weight: 300;
19612
+ src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Cyrillic.woff2") format("woff2");
19613
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19614
+ }
19615
+ @font-face {
19616
+ font-display: auto;
19617
+ font-family: "IBM Plex Mono";
19618
+ font-style: italic;
19619
+ font-weight: 300;
19620
+ src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Pi.woff2") format("woff2");
19621
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19622
+ }
19623
+ @font-face {
19624
+ font-display: auto;
19625
+ font-family: "IBM Plex Mono";
19626
+ font-style: italic;
19627
+ font-weight: 300;
19628
+ src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin3.woff2") format("woff2");
19629
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19630
+ }
19631
+ @font-face {
19632
+ font-display: auto;
19633
+ font-family: "IBM Plex Mono";
19634
+ font-style: italic;
19635
+ font-weight: 300;
19636
+ src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin2.woff2") format("woff2");
19637
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19638
+ }
19639
+ @font-face {
19640
+ font-display: auto;
19641
+ font-family: "IBM Plex Mono";
19642
+ font-style: italic;
19643
+ font-weight: 300;
19644
+ src: local("IBM Plex Mono Light Italic"), local("IBMPlexMono-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-LightItalic-Latin1.woff2") format("woff2");
19645
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19646
+ }
19647
+ @font-face {
19648
+ font-display: auto;
19649
+ font-family: "IBM Plex Mono";
19650
+ font-style: normal;
19651
+ font-weight: 500;
19652
+ src: local("IBM Plex Mono Medm"), local("IBMPlexMono-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-Medium.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-Medium.woff") format("woff");
19653
+ }
19654
+ @font-face {
19655
+ font-display: auto;
19656
+ font-family: "IBM Plex Mono";
19657
+ font-style: normal;
19658
+ font-weight: 500;
19659
+ src: local("IBM Plex Mono Medm"), local("IBMPlexMono-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Medium-Cyrillic.woff2") format("woff2");
19660
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19661
+ }
19662
+ @font-face {
19663
+ font-display: auto;
19664
+ font-family: "IBM Plex Mono";
19665
+ font-style: normal;
19666
+ font-weight: 500;
19667
+ src: local("IBM Plex Mono Medm"), local("IBMPlexMono-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Medium-Pi.woff2") format("woff2");
19668
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19669
+ }
19670
+ @font-face {
19671
+ font-display: auto;
19672
+ font-family: "IBM Plex Mono";
19673
+ font-style: normal;
19674
+ font-weight: 500;
19675
+ src: local("IBM Plex Mono Medm"), local("IBMPlexMono-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Medium-Latin3.woff2") format("woff2");
19676
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19677
+ }
19678
+ @font-face {
19679
+ font-display: auto;
19680
+ font-family: "IBM Plex Mono";
19681
+ font-style: normal;
19682
+ font-weight: 500;
19683
+ src: local("IBM Plex Mono Medm"), local("IBMPlexMono-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Medium-Latin2.woff2") format("woff2");
19684
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19685
+ }
19686
+ @font-face {
19687
+ font-display: auto;
19688
+ font-family: "IBM Plex Mono";
19689
+ font-style: normal;
19690
+ font-weight: 500;
19691
+ src: local("IBM Plex Mono Medm"), local("IBMPlexMono-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Medium-Latin1.woff2") format("woff2");
19692
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19693
+ }
19694
+ @font-face {
19695
+ font-display: auto;
19696
+ font-family: "IBM Plex Mono";
19697
+ font-style: italic;
19698
+ font-weight: 500;
19699
+ src: local("IBM Plex Mono Medm Italic"), local("IBMPlexMono-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-MediumItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-MediumItalic.woff") format("woff");
19700
+ }
19701
+ @font-face {
19702
+ font-display: auto;
19703
+ font-family: "IBM Plex Mono";
19704
+ font-style: italic;
19705
+ font-weight: 500;
19706
+ src: local("IBM Plex Mono Medm Italic"), local("IBMPlexMono-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-MediumItalic-Cyrillic.woff2") format("woff2");
19707
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19708
+ }
19709
+ @font-face {
19710
+ font-display: auto;
19711
+ font-family: "IBM Plex Mono";
19712
+ font-style: italic;
19713
+ font-weight: 500;
19714
+ src: local("IBM Plex Mono Medm Italic"), local("IBMPlexMono-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-MediumItalic-Pi.woff2") format("woff2");
19715
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19716
+ }
19717
+ @font-face {
19718
+ font-display: auto;
19719
+ font-family: "IBM Plex Mono";
19720
+ font-style: italic;
19721
+ font-weight: 500;
19722
+ src: local("IBM Plex Mono Medm Italic"), local("IBMPlexMono-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-MediumItalic-Latin3.woff2") format("woff2");
19723
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19724
+ }
19725
+ @font-face {
19726
+ font-display: auto;
19727
+ font-family: "IBM Plex Mono";
19728
+ font-style: italic;
19729
+ font-weight: 500;
19730
+ src: local("IBM Plex Mono Medm Italic"), local("IBMPlexMono-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-MediumItalic-Latin2.woff2") format("woff2");
19731
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19732
+ }
19733
+ @font-face {
19734
+ font-display: auto;
19735
+ font-family: "IBM Plex Mono";
19736
+ font-style: italic;
19737
+ font-weight: 500;
19738
+ src: local("IBM Plex Mono Medm Italic"), local("IBMPlexMono-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-MediumItalic-Latin1.woff2") format("woff2");
19739
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19740
+ }
19741
+ @font-face {
19742
+ font-display: auto;
19743
+ font-family: "IBM Plex Mono";
19744
+ font-style: normal;
19745
+ font-weight: 400;
19746
+ src: local("IBM Plex Mono"), local("IBMPlexMono"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-Regular.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-Regular.woff") format("woff");
19747
+ }
19748
+ @font-face {
19749
+ font-display: auto;
19750
+ font-family: "IBM Plex Mono";
19751
+ font-style: normal;
19752
+ font-weight: 400;
19753
+ src: local("IBM Plex Mono"), local("IBMPlexMono"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Cyrillic.woff2") format("woff2");
19754
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19755
+ }
19756
+ @font-face {
19757
+ font-display: auto;
19758
+ font-family: "IBM Plex Mono";
19759
+ font-style: normal;
19760
+ font-weight: 400;
19761
+ src: local("IBM Plex Mono"), local("IBMPlexMono"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Pi.woff2") format("woff2");
19762
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19763
+ }
19764
+ @font-face {
19765
+ font-display: auto;
19766
+ font-family: "IBM Plex Mono";
19767
+ font-style: normal;
19768
+ font-weight: 400;
19769
+ src: local("IBM Plex Mono"), local("IBMPlexMono"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin3.woff2") format("woff2");
19770
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19771
+ }
19772
+ @font-face {
19773
+ font-display: auto;
19774
+ font-family: "IBM Plex Mono";
19775
+ font-style: normal;
19776
+ font-weight: 400;
19777
+ src: local("IBM Plex Mono"), local("IBMPlexMono"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin2.woff2") format("woff2");
19778
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19779
+ }
19780
+ @font-face {
19781
+ font-display: auto;
19782
+ font-family: "IBM Plex Mono";
19783
+ font-style: normal;
19784
+ font-weight: 400;
19785
+ src: local("IBM Plex Mono"), local("IBMPlexMono"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Regular-Latin1.woff2") format("woff2");
19786
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19787
+ }
19788
+ @font-face {
19789
+ font-display: auto;
19790
+ font-family: "IBM Plex Mono";
19791
+ font-style: normal;
19792
+ font-weight: 600;
19793
+ src: local("IBM Plex Mono SmBld"), local("IBMPlexMono-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-SemiBold.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-SemiBold.woff") format("woff");
19794
+ }
19795
+ @font-face {
19796
+ font-display: auto;
19797
+ font-family: "IBM Plex Mono";
19798
+ font-style: normal;
19799
+ font-weight: 600;
19800
+ src: local("IBM Plex Mono SmBld"), local("IBMPlexMono-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Cyrillic.woff2") format("woff2");
19801
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19802
+ }
19803
+ @font-face {
19804
+ font-display: auto;
19805
+ font-family: "IBM Plex Mono";
19806
+ font-style: normal;
19807
+ font-weight: 600;
19808
+ src: local("IBM Plex Mono SmBld"), local("IBMPlexMono-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Pi.woff2") format("woff2");
19809
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19810
+ }
19811
+ @font-face {
19812
+ font-display: auto;
19813
+ font-family: "IBM Plex Mono";
19814
+ font-style: normal;
19815
+ font-weight: 600;
19816
+ src: local("IBM Plex Mono SmBld"), local("IBMPlexMono-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin3.woff2") format("woff2");
19817
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19818
+ }
19819
+ @font-face {
19820
+ font-display: auto;
19821
+ font-family: "IBM Plex Mono";
19822
+ font-style: normal;
19823
+ font-weight: 600;
19824
+ src: local("IBM Plex Mono SmBld"), local("IBMPlexMono-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin2.woff2") format("woff2");
19825
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19826
+ }
19827
+ @font-face {
19828
+ font-display: auto;
19829
+ font-family: "IBM Plex Mono";
19830
+ font-style: normal;
19831
+ font-weight: 600;
19832
+ src: local("IBM Plex Mono SmBld"), local("IBMPlexMono-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBold-Latin1.woff2") format("woff2");
19833
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19834
+ }
19835
+ @font-face {
19836
+ font-display: auto;
19837
+ font-family: "IBM Plex Mono";
19838
+ font-style: italic;
19839
+ font-weight: 600;
19840
+ src: local("IBM Plex Mono SmBld Italic"), local("IBMPlexMono-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-SemiBoldItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-SemiBoldItalic.woff") format("woff");
19841
+ }
19842
+ @font-face {
19843
+ font-display: auto;
19844
+ font-family: "IBM Plex Mono";
19845
+ font-style: italic;
19846
+ font-weight: 600;
19847
+ src: local("IBM Plex Mono SmBld Italic"), local("IBMPlexMono-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Cyrillic.woff2") format("woff2");
19848
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19849
+ }
19850
+ @font-face {
19851
+ font-display: auto;
19852
+ font-family: "IBM Plex Mono";
19853
+ font-style: italic;
19854
+ font-weight: 600;
19855
+ src: local("IBM Plex Mono SmBld Italic"), local("IBMPlexMono-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Pi.woff2") format("woff2");
19856
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19857
+ }
19858
+ @font-face {
19859
+ font-display: auto;
19860
+ font-family: "IBM Plex Mono";
19861
+ font-style: italic;
19862
+ font-weight: 600;
19863
+ src: local("IBM Plex Mono SmBld Italic"), local("IBMPlexMono-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin3.woff2") format("woff2");
19864
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19865
+ }
19866
+ @font-face {
19867
+ font-display: auto;
19868
+ font-family: "IBM Plex Mono";
19869
+ font-style: italic;
19870
+ font-weight: 600;
19871
+ src: local("IBM Plex Mono SmBld Italic"), local("IBMPlexMono-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin2.woff2") format("woff2");
19872
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19873
+ }
19874
+ @font-face {
19875
+ font-display: auto;
19876
+ font-family: "IBM Plex Mono";
19877
+ font-style: italic;
19878
+ font-weight: 600;
19879
+ src: local("IBM Plex Mono SmBld Italic"), local("IBMPlexMono-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-SemiBoldItalic-Latin1.woff2") format("woff2");
19880
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19881
+ }
19882
+ @font-face {
19883
+ font-display: auto;
19884
+ font-family: "IBM Plex Mono";
19885
+ font-style: normal;
19886
+ font-weight: 450;
19887
+ src: local("IBM Plex Mono Text"), local("IBMPlexMono-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-Text.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-Text.woff") format("woff");
19888
+ }
19889
+ @font-face {
19890
+ font-display: auto;
19891
+ font-family: "IBM Plex Mono";
19892
+ font-style: normal;
19893
+ font-weight: 450;
19894
+ src: local("IBM Plex Mono Text"), local("IBMPlexMono-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Text-Cyrillic.woff2") format("woff2");
19895
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19896
+ }
19897
+ @font-face {
19898
+ font-display: auto;
19899
+ font-family: "IBM Plex Mono";
19900
+ font-style: normal;
19901
+ font-weight: 450;
19902
+ src: local("IBM Plex Mono Text"), local("IBMPlexMono-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Text-Pi.woff2") format("woff2");
19903
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19904
+ }
19905
+ @font-face {
19906
+ font-display: auto;
19907
+ font-family: "IBM Plex Mono";
19908
+ font-style: normal;
19909
+ font-weight: 450;
19910
+ src: local("IBM Plex Mono Text"), local("IBMPlexMono-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Text-Latin3.woff2") format("woff2");
19911
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19912
+ }
19913
+ @font-face {
19914
+ font-display: auto;
19915
+ font-family: "IBM Plex Mono";
19916
+ font-style: normal;
19917
+ font-weight: 450;
19918
+ src: local("IBM Plex Mono Text"), local("IBMPlexMono-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Text-Latin2.woff2") format("woff2");
19919
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19920
+ }
19921
+ @font-face {
19922
+ font-display: auto;
19923
+ font-family: "IBM Plex Mono";
19924
+ font-style: normal;
19925
+ font-weight: 450;
19926
+ src: local("IBM Plex Mono Text"), local("IBMPlexMono-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Text-Latin1.woff2") format("woff2");
19927
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19928
+ }
19929
+ @font-face {
19930
+ font-display: auto;
19931
+ font-family: "IBM Plex Mono";
19932
+ font-style: italic;
19933
+ font-weight: 450;
19934
+ src: local("IBM Plex Mono Text Italic"), local("IBMPlexMono-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-TextItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-TextItalic.woff") format("woff");
19935
+ }
19936
+ @font-face {
19937
+ font-display: auto;
19938
+ font-family: "IBM Plex Mono";
19939
+ font-style: italic;
19940
+ font-weight: 450;
19941
+ src: local("IBM Plex Mono Text Italic"), local("IBMPlexMono-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-TextItalic-Cyrillic.woff2") format("woff2");
19942
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19943
+ }
19944
+ @font-face {
19945
+ font-display: auto;
19946
+ font-family: "IBM Plex Mono";
19947
+ font-style: italic;
19948
+ font-weight: 450;
19949
+ src: local("IBM Plex Mono Text Italic"), local("IBMPlexMono-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-TextItalic-Pi.woff2") format("woff2");
19950
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19951
+ }
19952
+ @font-face {
19953
+ font-display: auto;
19954
+ font-family: "IBM Plex Mono";
19955
+ font-style: italic;
19956
+ font-weight: 450;
19957
+ src: local("IBM Plex Mono Text Italic"), local("IBMPlexMono-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-TextItalic-Latin3.woff2") format("woff2");
19958
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19959
+ }
19960
+ @font-face {
19961
+ font-display: auto;
19962
+ font-family: "IBM Plex Mono";
19963
+ font-style: italic;
19964
+ font-weight: 450;
19965
+ src: local("IBM Plex Mono Text Italic"), local("IBMPlexMono-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-TextItalic-Latin2.woff2") format("woff2");
19966
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19967
+ }
19968
+ @font-face {
19969
+ font-display: auto;
19970
+ font-family: "IBM Plex Mono";
19971
+ font-style: italic;
19972
+ font-weight: 450;
19973
+ src: local("IBM Plex Mono Text Italic"), local("IBMPlexMono-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-TextItalic-Latin1.woff2") format("woff2");
19974
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19975
+ }
19976
+ @font-face {
19977
+ font-display: auto;
19978
+ font-family: "IBM Plex Mono";
19979
+ font-style: normal;
19980
+ font-weight: 100;
19981
+ src: local("IBM Plex Mono Thin"), local("IBMPlexMono-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-Thin.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-Thin.woff") format("woff");
19982
+ }
19983
+ @font-face {
19984
+ font-display: auto;
19985
+ font-family: "IBM Plex Mono";
19986
+ font-style: normal;
19987
+ font-weight: 100;
19988
+ src: local("IBM Plex Mono Thin"), local("IBMPlexMono-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Thin-Cyrillic.woff2") format("woff2");
19989
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19990
+ }
19991
+ @font-face {
19992
+ font-display: auto;
19993
+ font-family: "IBM Plex Mono";
19994
+ font-style: normal;
19995
+ font-weight: 100;
19996
+ src: local("IBM Plex Mono Thin"), local("IBMPlexMono-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Thin-Pi.woff2") format("woff2");
19997
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19998
+ }
19999
+ @font-face {
20000
+ font-display: auto;
20001
+ font-family: "IBM Plex Mono";
20002
+ font-style: normal;
20003
+ font-weight: 100;
20004
+ src: local("IBM Plex Mono Thin"), local("IBMPlexMono-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Thin-Latin3.woff2") format("woff2");
20005
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20006
+ }
20007
+ @font-face {
20008
+ font-display: auto;
20009
+ font-family: "IBM Plex Mono";
20010
+ font-style: normal;
20011
+ font-weight: 100;
20012
+ src: local("IBM Plex Mono Thin"), local("IBMPlexMono-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Thin-Latin2.woff2") format("woff2");
20013
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20014
+ }
20015
+ @font-face {
20016
+ font-display: auto;
20017
+ font-family: "IBM Plex Mono";
20018
+ font-style: normal;
20019
+ font-weight: 100;
20020
+ src: local("IBM Plex Mono Thin"), local("IBMPlexMono-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-Thin-Latin1.woff2") format("woff2");
20021
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20022
+ }
20023
+ @font-face {
20024
+ font-display: auto;
20025
+ font-family: "IBM Plex Mono";
20026
+ font-style: italic;
20027
+ font-weight: 100;
20028
+ src: local("IBM Plex Mono Thin Italic"), local("IBMPlexMono-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff2/IBMPlexMono-ThinItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/complete/woff/IBMPlexMono-ThinItalic.woff") format("woff");
20029
+ }
20030
+ @font-face {
20031
+ font-display: auto;
20032
+ font-family: "IBM Plex Mono";
20033
+ font-style: italic;
20034
+ font-weight: 100;
20035
+ src: local("IBM Plex Mono Thin Italic"), local("IBMPlexMono-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ThinItalic-Cyrillic.woff2") format("woff2");
20036
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20037
+ }
20038
+ @font-face {
20039
+ font-display: auto;
20040
+ font-family: "IBM Plex Mono";
20041
+ font-style: italic;
20042
+ font-weight: 100;
20043
+ src: local("IBM Plex Mono Thin Italic"), local("IBMPlexMono-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ThinItalic-Pi.woff2") format("woff2");
20044
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20045
+ }
20046
+ @font-face {
20047
+ font-display: auto;
20048
+ font-family: "IBM Plex Mono";
20049
+ font-style: italic;
20050
+ font-weight: 100;
20051
+ src: local("IBM Plex Mono Thin Italic"), local("IBMPlexMono-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ThinItalic-Latin3.woff2") format("woff2");
20052
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20053
+ }
20054
+ @font-face {
20055
+ font-display: auto;
20056
+ font-family: "IBM Plex Mono";
20057
+ font-style: italic;
20058
+ font-weight: 100;
20059
+ src: local("IBM Plex Mono Thin Italic"), local("IBMPlexMono-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ThinItalic-Latin2.woff2") format("woff2");
20060
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20061
+ }
20062
+ @font-face {
20063
+ font-display: auto;
20064
+ font-family: "IBM Plex Mono";
20065
+ font-style: italic;
20066
+ font-weight: 100;
20067
+ src: local("IBM Plex Mono Thin Italic"), local("IBMPlexMono-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Mono/fonts/split/woff2/IBMPlexMono-ThinItalic-Latin1.woff2") format("woff2");
20068
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20069
+ }
20070
+ @font-face {
20071
+ font-display: auto;
20072
+ font-family: "IBM Plex Sans";
20073
+ font-style: normal;
20074
+ font-weight: 700;
20075
+ src: local("IBM Plex Sans Bold"), local("IBMPlexSans-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-Bold.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-Bold.woff") format("woff");
20076
+ }
20077
+ @font-face {
20078
+ font-display: auto;
20079
+ font-family: "IBM Plex Sans";
20080
+ font-style: normal;
20081
+ font-weight: 700;
20082
+ src: local("IBM Plex Sans Bold"), local("IBMPlexSans-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Bold-Cyrillic.woff2") format("woff2");
20083
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20084
+ }
20085
+ @font-face {
20086
+ font-display: auto;
20087
+ font-family: "IBM Plex Sans";
20088
+ font-style: normal;
20089
+ font-weight: 700;
20090
+ src: local("IBM Plex Sans Bold"), local("IBMPlexSans-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Bold-Pi.woff2") format("woff2");
20091
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20092
+ }
20093
+ @font-face {
20094
+ font-display: auto;
20095
+ font-family: "IBM Plex Sans";
20096
+ font-style: normal;
20097
+ font-weight: 700;
20098
+ src: local("IBM Plex Sans Bold"), local("IBMPlexSans-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Bold-Latin3.woff2") format("woff2");
20099
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20100
+ }
20101
+ @font-face {
20102
+ font-display: auto;
20103
+ font-family: "IBM Plex Sans";
20104
+ font-style: normal;
20105
+ font-weight: 700;
20106
+ src: local("IBM Plex Sans Bold"), local("IBMPlexSans-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Bold-Latin2.woff2") format("woff2");
20107
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20108
+ }
20109
+ @font-face {
20110
+ font-display: auto;
20111
+ font-family: "IBM Plex Sans";
20112
+ font-style: normal;
20113
+ font-weight: 700;
20114
+ src: local("IBM Plex Sans Bold"), local("IBMPlexSans-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Bold-Latin1.woff2") format("woff2");
20115
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20116
+ }
20117
+ @font-face {
20118
+ font-display: auto;
20119
+ font-family: "IBM Plex Sans";
20120
+ font-style: normal;
20121
+ font-weight: 700;
20122
+ src: local("IBM Plex Sans Bold"), local("IBMPlexSans-Bold"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Bold-Greek.woff2") format("woff2");
20123
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
20124
+ }
20125
+ @font-face {
20126
+ font-display: auto;
20127
+ font-family: "IBM Plex Sans";
20128
+ font-style: italic;
20129
+ font-weight: 700;
20130
+ src: local("IBM Plex Sans Bold Italic"), local("IBMPlexSans-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-BoldItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-BoldItalic.woff") format("woff");
20131
+ }
20132
+ @font-face {
20133
+ font-display: auto;
20134
+ font-family: "IBM Plex Sans";
20135
+ font-style: italic;
20136
+ font-weight: 700;
20137
+ src: local("IBM Plex Sans Bold Italic"), local("IBMPlexSans-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-BoldItalic-Cyrillic.woff2") format("woff2");
20138
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20139
+ }
20140
+ @font-face {
20141
+ font-display: auto;
20142
+ font-family: "IBM Plex Sans";
20143
+ font-style: italic;
20144
+ font-weight: 700;
20145
+ src: local("IBM Plex Sans Bold Italic"), local("IBMPlexSans-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-BoldItalic-Pi.woff2") format("woff2");
20146
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20147
+ }
20148
+ @font-face {
20149
+ font-display: auto;
20150
+ font-family: "IBM Plex Sans";
20151
+ font-style: italic;
20152
+ font-weight: 700;
20153
+ src: local("IBM Plex Sans Bold Italic"), local("IBMPlexSans-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-BoldItalic-Latin3.woff2") format("woff2");
20154
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20155
+ }
20156
+ @font-face {
20157
+ font-display: auto;
20158
+ font-family: "IBM Plex Sans";
20159
+ font-style: italic;
20160
+ font-weight: 700;
20161
+ src: local("IBM Plex Sans Bold Italic"), local("IBMPlexSans-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-BoldItalic-Latin2.woff2") format("woff2");
20162
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20163
+ }
20164
+ @font-face {
20165
+ font-display: auto;
20166
+ font-family: "IBM Plex Sans";
20167
+ font-style: italic;
20168
+ font-weight: 700;
20169
+ src: local("IBM Plex Sans Bold Italic"), local("IBMPlexSans-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-BoldItalic-Latin1.woff2") format("woff2");
20170
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20171
+ }
20172
+ @font-face {
20173
+ font-display: auto;
20174
+ font-family: "IBM Plex Sans";
20175
+ font-style: italic;
20176
+ font-weight: 700;
20177
+ src: local("IBM Plex Sans Bold Italic"), local("IBMPlexSans-BoldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-BoldItalic-Greek.woff2") format("woff2");
20178
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
20179
+ }
20180
+ @font-face {
20181
+ font-display: auto;
20182
+ font-family: "IBM Plex Sans";
20183
+ font-style: normal;
20184
+ font-weight: 200;
20185
+ src: local("IBM Plex Sans ExtLt"), local("IBMPlexSans-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-ExtraLight.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-ExtraLight.woff") format("woff");
20186
+ }
20187
+ @font-face {
20188
+ font-display: auto;
20189
+ font-family: "IBM Plex Sans";
20190
+ font-style: normal;
20191
+ font-weight: 200;
20192
+ src: local("IBM Plex Sans ExtLt"), local("IBMPlexSans-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLight-Cyrillic.woff2") format("woff2");
20193
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20194
+ }
20195
+ @font-face {
20196
+ font-display: auto;
20197
+ font-family: "IBM Plex Sans";
20198
+ font-style: normal;
20199
+ font-weight: 200;
20200
+ src: local("IBM Plex Sans ExtLt"), local("IBMPlexSans-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLight-Pi.woff2") format("woff2");
20201
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20202
+ }
20203
+ @font-face {
20204
+ font-display: auto;
20205
+ font-family: "IBM Plex Sans";
20206
+ font-style: normal;
20207
+ font-weight: 200;
20208
+ src: local("IBM Plex Sans ExtLt"), local("IBMPlexSans-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLight-Latin3.woff2") format("woff2");
20209
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20210
+ }
20211
+ @font-face {
20212
+ font-display: auto;
20213
+ font-family: "IBM Plex Sans";
20214
+ font-style: normal;
20215
+ font-weight: 200;
20216
+ src: local("IBM Plex Sans ExtLt"), local("IBMPlexSans-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLight-Latin2.woff2") format("woff2");
20217
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20218
+ }
20219
+ @font-face {
20220
+ font-display: auto;
20221
+ font-family: "IBM Plex Sans";
20222
+ font-style: normal;
20223
+ font-weight: 200;
20224
+ src: local("IBM Plex Sans ExtLt"), local("IBMPlexSans-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLight-Latin1.woff2") format("woff2");
20225
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20226
+ }
20227
+ @font-face {
20228
+ font-display: auto;
20229
+ font-family: "IBM Plex Sans";
20230
+ font-style: normal;
20231
+ font-weight: 200;
20232
+ src: local("IBM Plex Sans ExtLt"), local("IBMPlexSans-ExtLt"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLight-Greek.woff2") format("woff2");
20233
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
20234
+ }
20235
+ @font-face {
20236
+ font-display: auto;
20237
+ font-family: "IBM Plex Sans";
20238
+ font-style: italic;
20239
+ font-weight: 200;
20240
+ src: local("IBM Plex Sans ExtLt Italic"), local("IBMPlexSans-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-ExtraLightItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-ExtraLightItalic.woff") format("woff");
20241
+ }
20242
+ @font-face {
20243
+ font-display: auto;
20244
+ font-family: "IBM Plex Sans";
20245
+ font-style: italic;
20246
+ font-weight: 200;
20247
+ src: local("IBM Plex Sans ExtLt Italic"), local("IBMPlexSans-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLightItalic-Cyrillic.woff2") format("woff2");
20248
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20249
+ }
20250
+ @font-face {
20251
+ font-display: auto;
20252
+ font-family: "IBM Plex Sans";
20253
+ font-style: italic;
20254
+ font-weight: 200;
20255
+ src: local("IBM Plex Sans ExtLt Italic"), local("IBMPlexSans-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLightItalic-Pi.woff2") format("woff2");
20256
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20257
+ }
20258
+ @font-face {
20259
+ font-display: auto;
20260
+ font-family: "IBM Plex Sans";
20261
+ font-style: italic;
20262
+ font-weight: 200;
20263
+ src: local("IBM Plex Sans ExtLt Italic"), local("IBMPlexSans-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLightItalic-Latin3.woff2") format("woff2");
20264
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20265
+ }
20266
+ @font-face {
20267
+ font-display: auto;
20268
+ font-family: "IBM Plex Sans";
20269
+ font-style: italic;
20270
+ font-weight: 200;
20271
+ src: local("IBM Plex Sans ExtLt Italic"), local("IBMPlexSans-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLightItalic-Latin2.woff2") format("woff2");
20272
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20273
+ }
20274
+ @font-face {
20275
+ font-display: auto;
20276
+ font-family: "IBM Plex Sans";
20277
+ font-style: italic;
20278
+ font-weight: 200;
20279
+ src: local("IBM Plex Sans ExtLt Italic"), local("IBMPlexSans-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLightItalic-Latin1.woff2") format("woff2");
20280
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20281
+ }
20282
+ @font-face {
20283
+ font-display: auto;
20284
+ font-family: "IBM Plex Sans";
20285
+ font-style: italic;
20286
+ font-weight: 200;
20287
+ src: local("IBM Plex Sans ExtLt Italic"), local("IBMPlexSans-ExtLtItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ExtraLightItalic-Greek.woff2") format("woff2");
20288
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
20289
+ }
20290
+ @font-face {
20291
+ font-display: auto;
20292
+ font-family: "IBM Plex Sans";
20293
+ font-style: italic;
20294
+ font-weight: 400;
20295
+ src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-Italic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-Italic.woff") format("woff");
20296
+ }
20297
+ @font-face {
20298
+ font-display: auto;
20299
+ font-family: "IBM Plex Sans";
20300
+ font-style: italic;
20301
+ font-weight: 400;
20302
+ src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Cyrillic.woff2") format("woff2");
20303
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20304
+ }
20305
+ @font-face {
20306
+ font-display: auto;
20307
+ font-family: "IBM Plex Sans";
20308
+ font-style: italic;
20309
+ font-weight: 400;
20310
+ src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Pi.woff2") format("woff2");
20311
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20312
+ }
20313
+ @font-face {
20314
+ font-display: auto;
20315
+ font-family: "IBM Plex Sans";
20316
+ font-style: italic;
20317
+ font-weight: 400;
20318
+ src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin3.woff2") format("woff2");
20319
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20320
+ }
20321
+ @font-face {
20322
+ font-display: auto;
20323
+ font-family: "IBM Plex Sans";
20324
+ font-style: italic;
20325
+ font-weight: 400;
20326
+ src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin2.woff2") format("woff2");
20327
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20328
+ }
20329
+ @font-face {
20330
+ font-display: auto;
20331
+ font-family: "IBM Plex Sans";
20332
+ font-style: italic;
20333
+ font-weight: 400;
20334
+ src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Latin1.woff2") format("woff2");
20335
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20336
+ }
20337
+ @font-face {
20338
+ font-display: auto;
20339
+ font-family: "IBM Plex Sans";
20340
+ font-style: italic;
20341
+ font-weight: 400;
20342
+ src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Italic-Greek.woff2") format("woff2");
20343
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
20344
+ }
20345
+ @font-face {
20346
+ font-display: auto;
20347
+ font-family: "IBM Plex Sans";
20348
+ font-style: normal;
20349
+ font-weight: 300;
20350
+ src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-Light.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-Light.woff") format("woff");
20351
+ }
20352
+ @font-face {
20353
+ font-display: auto;
20354
+ font-family: "IBM Plex Sans";
20355
+ font-style: normal;
20356
+ font-weight: 300;
20357
+ src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Cyrillic.woff2") format("woff2");
20358
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20359
+ }
20360
+ @font-face {
20361
+ font-display: auto;
20362
+ font-family: "IBM Plex Sans";
20363
+ font-style: normal;
20364
+ font-weight: 300;
20365
+ src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Pi.woff2") format("woff2");
20366
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20367
+ }
20368
+ @font-face {
20369
+ font-display: auto;
20370
+ font-family: "IBM Plex Sans";
20371
+ font-style: normal;
20372
+ font-weight: 300;
20373
+ src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin3.woff2") format("woff2");
20374
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20375
+ }
20376
+ @font-face {
20377
+ font-display: auto;
20378
+ font-family: "IBM Plex Sans";
20379
+ font-style: normal;
20380
+ font-weight: 300;
20381
+ src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin2.woff2") format("woff2");
20382
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20383
+ }
20384
+ @font-face {
20385
+ font-display: auto;
20386
+ font-family: "IBM Plex Sans";
20387
+ font-style: normal;
20388
+ font-weight: 300;
20389
+ src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Latin1.woff2") format("woff2");
20390
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19415
20391
  }
19416
- /* vietnamese */
19417
20392
  @font-face {
19418
20393
  font-display: auto;
19419
- font-family: "IBM Plex Mono";
19420
- font-style: italic;
19421
- font-weight: 400;
19422
- src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioa2ndgregdFOFh.woff2) format("woff2");
19423
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20394
+ font-family: "IBM Plex Sans";
20395
+ font-style: normal;
20396
+ font-weight: 300;
20397
+ src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Light-Greek.woff2") format("woff2");
20398
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19424
20399
  }
19425
- /* latin-ext */
19426
20400
  @font-face {
19427
20401
  font-display: auto;
19428
- font-family: "IBM Plex Mono";
20402
+ font-family: "IBM Plex Sans";
19429
20403
  font-style: italic;
19430
- font-weight: 400;
19431
- src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioa23dgregdFOFh.woff2) format("woff2");
19432
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20404
+ font-weight: 300;
20405
+ src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-LightItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-LightItalic.woff") format("woff");
19433
20406
  }
19434
- /* latin */
19435
20407
  @font-face {
19436
20408
  font-display: auto;
19437
- font-family: "IBM Plex Mono";
20409
+ font-family: "IBM Plex Sans";
19438
20410
  font-style: italic;
19439
- font-weight: 400;
19440
- src: local("IBM Plex Mono Italic"), local("IBMPlexMono-Italic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioa1XdgregdFA.woff2) format("woff2");
19441
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20411
+ font-weight: 300;
20412
+ src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Cyrillic.woff2") format("woff2");
20413
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19442
20414
  }
19443
- /* cyrillic-ext */
19444
20415
  @font-face {
19445
20416
  font-display: auto;
19446
- font-family: "IBM Plex Mono";
20417
+ font-family: "IBM Plex Sans";
19447
20418
  font-style: italic;
19448
- font-weight: 600;
19449
- src: local("IBM Plex Mono SemiBold Italic"), local("IBMPlexMono-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClN1jcoQPttoz6Pz.woff2) format("woff2");
19450
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20419
+ font-weight: 300;
20420
+ src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Pi.woff2") format("woff2");
20421
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19451
20422
  }
19452
- /* cyrillic */
19453
20423
  @font-face {
19454
20424
  font-display: auto;
19455
- font-family: "IBM Plex Mono";
20425
+ font-family: "IBM Plex Sans";
19456
20426
  font-style: italic;
19457
- font-weight: 600;
19458
- src: local("IBM Plex Mono SemiBold Italic"), local("IBMPlexMono-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClN1hMoQPttoz6Pz.woff2) format("woff2");
19459
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20427
+ font-weight: 300;
20428
+ src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin3.woff2") format("woff2");
20429
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19460
20430
  }
19461
- /* vietnamese */
19462
20431
  @font-face {
19463
20432
  font-display: auto;
19464
- font-family: "IBM Plex Mono";
20433
+ font-family: "IBM Plex Sans";
19465
20434
  font-style: italic;
19466
- font-weight: 600;
19467
- src: local("IBM Plex Mono SemiBold Italic"), local("IBMPlexMono-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClN1j8oQPttoz6Pz.woff2) format("woff2");
19468
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20435
+ font-weight: 300;
20436
+ src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin2.woff2") format("woff2");
20437
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19469
20438
  }
19470
- /* latin-ext */
19471
20439
  @font-face {
19472
20440
  font-display: auto;
19473
- font-family: "IBM Plex Mono";
20441
+ font-family: "IBM Plex Sans";
19474
20442
  font-style: italic;
19475
- font-weight: 600;
19476
- src: local("IBM Plex Mono SemiBold Italic"), local("IBMPlexMono-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClN1jsoQPttoz6Pz.woff2) format("woff2");
19477
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20443
+ font-weight: 300;
20444
+ src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Latin1.woff2") format("woff2");
20445
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19478
20446
  }
19479
- /* latin */
19480
20447
  @font-face {
19481
20448
  font-display: auto;
19482
- font-family: "IBM Plex Mono";
20449
+ font-family: "IBM Plex Sans";
19483
20450
  font-style: italic;
19484
- font-weight: 600;
19485
- src: local("IBM Plex Mono SemiBold Italic"), local("IBMPlexMono-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClN1gMoQPttozw.woff2) format("woff2");
19486
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20451
+ font-weight: 300;
20452
+ src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-LightItalic-Greek.woff2") format("woff2");
20453
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19487
20454
  }
19488
- /* cyrillic-ext */
19489
20455
  @font-face {
19490
20456
  font-display: auto;
19491
- font-family: "IBM Plex Mono";
20457
+ font-family: "IBM Plex Sans";
19492
20458
  font-style: normal;
19493
- font-weight: 300;
19494
- src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQIwl1FgsAXHNlYzg.woff2) format("woff2");
19495
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20459
+ font-weight: 500;
20460
+ src: local("IBM Plex Sans Medm"), local("IBMPlexSans-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-Medium.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-Medium.woff") format("woff");
19496
20461
  }
19497
- /* cyrillic */
19498
20462
  @font-face {
19499
20463
  font-display: auto;
19500
- font-family: "IBM Plex Mono";
20464
+ font-family: "IBM Plex Sans";
19501
20465
  font-style: normal;
19502
- font-weight: 300;
19503
- src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQIwlRFgsAXHNlYzg.woff2) format("woff2");
19504
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20466
+ font-weight: 500;
20467
+ src: local("IBM Plex Sans Medm"), local("IBMPlexSans-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Medium-Cyrillic.woff2") format("woff2");
20468
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19505
20469
  }
19506
- /* vietnamese */
19507
20470
  @font-face {
19508
20471
  font-display: auto;
19509
- font-family: "IBM Plex Mono";
20472
+ font-family: "IBM Plex Sans";
19510
20473
  font-style: normal;
19511
- font-weight: 300;
19512
- src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQIwl9FgsAXHNlYzg.woff2) format("woff2");
19513
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20474
+ font-weight: 500;
20475
+ src: local("IBM Plex Sans Medm"), local("IBMPlexSans-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Medium-Pi.woff2") format("woff2");
20476
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19514
20477
  }
19515
- /* latin-ext */
19516
20478
  @font-face {
19517
20479
  font-display: auto;
19518
- font-family: "IBM Plex Mono";
20480
+ font-family: "IBM Plex Sans";
19519
20481
  font-style: normal;
19520
- font-weight: 300;
19521
- src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQIwl5FgsAXHNlYzg.woff2) format("woff2");
19522
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20482
+ font-weight: 500;
20483
+ src: local("IBM Plex Sans Medm"), local("IBMPlexSans-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Medium-Latin3.woff2") format("woff2");
20484
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19523
20485
  }
19524
- /* latin */
19525
20486
  @font-face {
19526
20487
  font-display: auto;
19527
- font-family: "IBM Plex Mono";
20488
+ font-family: "IBM Plex Sans";
19528
20489
  font-style: normal;
19529
- font-weight: 300;
19530
- src: local("IBM Plex Mono Light"), local("IBMPlexMono-Light"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQIwlBFgsAXHNk.woff2) format("woff2");
19531
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20490
+ font-weight: 500;
20491
+ src: local("IBM Plex Sans Medm"), local("IBMPlexSans-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Medium-Latin2.woff2") format("woff2");
20492
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19532
20493
  }
19533
- /* cyrillic-ext */
19534
20494
  @font-face {
19535
20495
  font-display: auto;
19536
- font-family: "IBM Plex Mono";
20496
+ font-family: "IBM Plex Sans";
19537
20497
  font-style: normal;
19538
- font-weight: 400;
19539
- src: local("IBM Plex Mono"), local("IBMPlexMono"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2) format("woff2");
19540
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20498
+ font-weight: 500;
20499
+ src: local("IBM Plex Sans Medm"), local("IBMPlexSans-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Medium-Latin1.woff2") format("woff2");
20500
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19541
20501
  }
19542
- /* cyrillic */
19543
20502
  @font-face {
19544
20503
  font-display: auto;
19545
- font-family: "IBM Plex Mono";
20504
+ font-family: "IBM Plex Sans";
19546
20505
  font-style: normal;
19547
- font-weight: 400;
19548
- src: local("IBM Plex Mono"), local("IBMPlexMono"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2) format("woff2");
19549
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20506
+ font-weight: 500;
20507
+ src: local("IBM Plex Sans Medm"), local("IBMPlexSans-Medm"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Medium-Greek.woff2") format("woff2");
20508
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19550
20509
  }
19551
- /* vietnamese */
19552
20510
  @font-face {
19553
20511
  font-display: auto;
19554
- font-family: "IBM Plex Mono";
19555
- font-style: normal;
19556
- font-weight: 400;
19557
- src: local("IBM Plex Mono"), local("IBMPlexMono"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2) format("woff2");
19558
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20512
+ font-family: "IBM Plex Sans";
20513
+ font-style: italic;
20514
+ font-weight: 500;
20515
+ src: local("IBM Plex Sans Medm Italic"), local("IBMPlexSans-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-MediumItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-MediumItalic.woff") format("woff");
19559
20516
  }
19560
- /* latin-ext */
19561
20517
  @font-face {
19562
20518
  font-display: auto;
19563
- font-family: "IBM Plex Mono";
20519
+ font-family: "IBM Plex Sans";
20520
+ font-style: italic;
20521
+ font-weight: 500;
20522
+ src: local("IBM Plex Sans Medm Italic"), local("IBMPlexSans-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-MediumItalic-Cyrillic.woff2") format("woff2");
20523
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
20524
+ }
20525
+ @font-face {
20526
+ font-display: auto;
20527
+ font-family: "IBM Plex Sans";
20528
+ font-style: italic;
20529
+ font-weight: 500;
20530
+ src: local("IBM Plex Sans Medm Italic"), local("IBMPlexSans-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-MediumItalic-Pi.woff2") format("woff2");
20531
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
20532
+ }
20533
+ @font-face {
20534
+ font-display: auto;
20535
+ font-family: "IBM Plex Sans";
20536
+ font-style: italic;
20537
+ font-weight: 500;
20538
+ src: local("IBM Plex Sans Medm Italic"), local("IBMPlexSans-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-MediumItalic-Latin3.woff2") format("woff2");
20539
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
20540
+ }
20541
+ @font-face {
20542
+ font-display: auto;
20543
+ font-family: "IBM Plex Sans";
20544
+ font-style: italic;
20545
+ font-weight: 500;
20546
+ src: local("IBM Plex Sans Medm Italic"), local("IBMPlexSans-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-MediumItalic-Latin2.woff2") format("woff2");
20547
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
20548
+ }
20549
+ @font-face {
20550
+ font-display: auto;
20551
+ font-family: "IBM Plex Sans";
20552
+ font-style: italic;
20553
+ font-weight: 500;
20554
+ src: local("IBM Plex Sans Medm Italic"), local("IBMPlexSans-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-MediumItalic-Latin1.woff2") format("woff2");
20555
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
20556
+ }
20557
+ @font-face {
20558
+ font-display: auto;
20559
+ font-family: "IBM Plex Sans";
20560
+ font-style: italic;
20561
+ font-weight: 500;
20562
+ src: local("IBM Plex Sans Medm Italic"), local("IBMPlexSans-MedmItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-MediumItalic-Greek.woff2") format("woff2");
20563
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
20564
+ }
20565
+ @font-face {
20566
+ font-display: auto;
20567
+ font-family: "IBM Plex Sans";
19564
20568
  font-style: normal;
19565
20569
  font-weight: 400;
19566
- src: local("IBM Plex Mono"), local("IBMPlexMono"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2) format("woff2");
19567
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20570
+ src: local("IBM Plex Sans"), local("IBMPlexSans"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-Regular.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-Regular.woff") format("woff");
19568
20571
  }
19569
- /* latin */
19570
20572
  @font-face {
19571
20573
  font-display: auto;
19572
- font-family: "IBM Plex Mono";
20574
+ font-family: "IBM Plex Sans";
19573
20575
  font-style: normal;
19574
20576
  font-weight: 400;
19575
- src: local("IBM Plex Mono"), local("IBMPlexMono"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2) format("woff2");
19576
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20577
+ src: local("IBM Plex Sans"), local("IBMPlexSans"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Cyrillic.woff2") format("woff2");
20578
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19577
20579
  }
19578
- /* cyrillic-ext */
19579
20580
  @font-face {
19580
20581
  font-display: auto;
19581
- font-family: "IBM Plex Mono";
20582
+ font-family: "IBM Plex Sans";
19582
20583
  font-style: normal;
19583
- font-weight: 600;
19584
- src: local("IBM Plex Mono SemiBold"), local("IBMPlexMono-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl1FgsAXHNlYzg.woff2) format("woff2");
19585
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20584
+ font-weight: 400;
20585
+ src: local("IBM Plex Sans"), local("IBMPlexSans"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Pi.woff2") format("woff2");
20586
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19586
20587
  }
19587
- /* cyrillic */
19588
20588
  @font-face {
19589
20589
  font-display: auto;
19590
- font-family: "IBM Plex Mono";
20590
+ font-family: "IBM Plex Sans";
19591
20591
  font-style: normal;
19592
- font-weight: 600;
19593
- src: local("IBM Plex Mono SemiBold"), local("IBMPlexMono-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAOwlRFgsAXHNlYzg.woff2) format("woff2");
19594
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20592
+ font-weight: 400;
20593
+ src: local("IBM Plex Sans"), local("IBMPlexSans"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin3.woff2") format("woff2");
20594
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19595
20595
  }
19596
- /* vietnamese */
19597
20596
  @font-face {
19598
20597
  font-display: auto;
19599
- font-family: "IBM Plex Mono";
20598
+ font-family: "IBM Plex Sans";
19600
20599
  font-style: normal;
19601
- font-weight: 600;
19602
- src: local("IBM Plex Mono SemiBold"), local("IBMPlexMono-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl9FgsAXHNlYzg.woff2) format("woff2");
19603
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20600
+ font-weight: 400;
20601
+ src: local("IBM Plex Sans"), local("IBMPlexSans"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin2.woff2") format("woff2");
20602
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19604
20603
  }
19605
- /* latin-ext */
19606
20604
  @font-face {
19607
20605
  font-display: auto;
19608
- font-family: "IBM Plex Mono";
20606
+ font-family: "IBM Plex Sans";
19609
20607
  font-style: normal;
19610
- font-weight: 600;
19611
- src: local("IBM Plex Mono SemiBold"), local("IBMPlexMono-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl5FgsAXHNlYzg.woff2) format("woff2");
19612
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20608
+ font-weight: 400;
20609
+ src: local("IBM Plex Sans"), local("IBMPlexSans"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Latin1.woff2") format("woff2");
20610
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19613
20611
  }
19614
- /* latin */
19615
20612
  @font-face {
19616
20613
  font-display: auto;
19617
- font-family: "IBM Plex Mono";
20614
+ font-family: "IBM Plex Sans";
19618
20615
  font-style: normal;
19619
- font-weight: 600;
19620
- src: local("IBM Plex Mono SemiBold"), local("IBMPlexMono-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAOwlBFgsAXHNk.woff2) format("woff2");
19621
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20616
+ font-weight: 400;
20617
+ src: local("IBM Plex Sans"), local("IBMPlexSans"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Regular-Greek.woff2") format("woff2");
20618
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19622
20619
  }
19623
20620
  @font-face {
19624
20621
  font-display: auto;
19625
20622
  font-family: "IBM Plex Sans";
19626
- font-style: italic;
19627
- font-weight: 300;
19628
- src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRcdvfo.woff) format("woff");
20623
+ font-style: normal;
20624
+ font-weight: 600;
20625
+ src: local("IBM Plex Sans SmBld"), local("IBMPlexSans-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-SemiBold.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-SemiBold.woff") format("woff");
19629
20626
  }
19630
20627
  @font-face {
19631
20628
  font-display: auto;
19632
20629
  font-family: "IBM Plex Sans";
19633
- font-style: italic;
19634
- font-weight: 400;
19635
- src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTuF6ZP.woff) format("woff");
20630
+ font-style: normal;
20631
+ font-weight: 600;
20632
+ src: local("IBM Plex Sans SmBld"), local("IBMPlexSans-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Cyrillic.woff2") format("woff2");
20633
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19636
20634
  }
19637
20635
  @font-face {
19638
20636
  font-display: auto;
19639
20637
  font-family: "IBM Plex Sans";
19640
- font-style: italic;
20638
+ font-style: normal;
19641
20639
  font-weight: 600;
19642
- src: local("IBM Plex Sans SemiBold Italic"), local("IBMPlexSans-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJcdvfo.woff) format("woff");
20640
+ src: local("IBM Plex Sans SmBld"), local("IBMPlexSans-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Pi.woff2") format("woff2");
20641
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19643
20642
  }
19644
20643
  @font-face {
19645
20644
  font-display: auto;
19646
20645
  font-family: "IBM Plex Sans";
19647
20646
  font-style: normal;
19648
- font-weight: 300;
19649
- src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8AIFscg.woff) format("woff");
20647
+ font-weight: 600;
20648
+ src: local("IBM Plex Sans SmBld"), local("IBMPlexSans-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin3.woff2") format("woff2");
20649
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19650
20650
  }
19651
20651
  @font-face {
19652
20652
  font-display: auto;
19653
20653
  font-family: "IBM Plex Sans";
19654
20654
  font-style: normal;
19655
- font-weight: 400;
19656
- src: local("IBM Plex Sans"), local("IBMPlexSans"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKhdHeEw.woff) format("woff");
20655
+ font-weight: 600;
20656
+ src: local("IBM Plex Sans SmBld"), local("IBMPlexSans-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin2.woff2") format("woff2");
20657
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19657
20658
  }
19658
20659
  @font-face {
19659
20660
  font-display: auto;
19660
20661
  font-family: "IBM Plex Sans";
19661
20662
  font-style: normal;
19662
20663
  font-weight: 600;
19663
- src: local("IBM Plex Sans SemiBold"), local("IBMPlexSans-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76AIFscg.woff) format("woff");
20664
+ src: local("IBM Plex Sans SmBld"), local("IBMPlexSans-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Latin1.woff2") format("woff2");
20665
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19664
20666
  }
19665
- /* cyrillic-ext */
19666
20667
  @font-face {
19667
20668
  font-display: auto;
19668
20669
  font-family: "IBM Plex Sans";
19669
- font-style: italic;
19670
- font-weight: 300;
19671
- src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRce_fuJGl18QRY.woff2) format("woff2");
19672
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20670
+ font-style: normal;
20671
+ font-weight: 600;
20672
+ src: local("IBM Plex Sans SmBld"), local("IBMPlexSans-SmBld"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBold-Greek.woff2") format("woff2");
20673
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19673
20674
  }
19674
- /* cyrillic */
19675
20675
  @font-face {
19676
20676
  font-display: auto;
19677
20677
  font-family: "IBM Plex Sans";
19678
20678
  font-style: italic;
19679
- font-weight: 300;
19680
- src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRccvfuJGl18QRY.woff2) format("woff2");
19681
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20679
+ font-weight: 600;
20680
+ src: local("IBM Plex Sans SmBld Italic"), local("IBMPlexSans-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-SemiBoldItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-SemiBoldItalic.woff") format("woff");
19682
20681
  }
19683
- /* greek */
19684
20682
  @font-face {
19685
20683
  font-display: auto;
19686
20684
  font-family: "IBM Plex Sans";
19687
20685
  font-style: italic;
19688
- font-weight: 300;
19689
- src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRcdffuJGl18QRY.woff2) format("woff2");
19690
- unicode-range: U+0370-03FF;
20686
+ font-weight: 600;
20687
+ src: local("IBM Plex Sans SmBld Italic"), local("IBMPlexSans-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Cyrillic.woff2") format("woff2");
20688
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19691
20689
  }
19692
- /* vietnamese */
19693
20690
  @font-face {
19694
20691
  font-display: auto;
19695
20692
  font-family: "IBM Plex Sans";
19696
20693
  font-style: italic;
19697
- font-weight: 300;
19698
- src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRceffuJGl18QRY.woff2) format("woff2");
19699
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20694
+ font-weight: 600;
20695
+ src: local("IBM Plex Sans SmBld Italic"), local("IBMPlexSans-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Pi.woff2") format("woff2");
20696
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19700
20697
  }
19701
- /* latin-ext */
19702
20698
  @font-face {
19703
20699
  font-display: auto;
19704
20700
  font-family: "IBM Plex Sans";
19705
20701
  font-style: italic;
19706
- font-weight: 300;
19707
- src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRcePfuJGl18QRY.woff2) format("woff2");
19708
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20702
+ font-weight: 600;
20703
+ src: local("IBM Plex Sans SmBld Italic"), local("IBMPlexSans-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin3.woff2") format("woff2");
20704
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19709
20705
  }
19710
- /* latin */
19711
20706
  @font-face {
19712
20707
  font-display: auto;
19713
20708
  font-family: "IBM Plex Sans";
19714
20709
  font-style: italic;
19715
- font-weight: 300;
19716
- src: local("IBM Plex Sans Light Italic"), local("IBMPlexSans-LightItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRcdvfuJGl18Q.woff2) format("woff2");
19717
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20710
+ font-weight: 600;
20711
+ src: local("IBM Plex Sans SmBld Italic"), local("IBMPlexSans-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin2.woff2") format("woff2");
20712
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19718
20713
  }
19719
- /* cyrillic-ext */
19720
20714
  @font-face {
19721
20715
  font-display: auto;
19722
20716
  font-family: "IBM Plex Sans";
19723
20717
  font-style: italic;
19724
- font-weight: 400;
19725
- src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTuGqZJW9XjDlN8.woff2) format("woff2");
19726
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20718
+ font-weight: 600;
20719
+ src: local("IBM Plex Sans SmBld Italic"), local("IBMPlexSans-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Latin1.woff2") format("woff2");
20720
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19727
20721
  }
19728
- /* cyrillic */
19729
20722
  @font-face {
19730
20723
  font-display: auto;
19731
20724
  font-family: "IBM Plex Sans";
19732
20725
  font-style: italic;
19733
- font-weight: 400;
19734
- src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTuE6ZJW9XjDlN8.woff2) format("woff2");
19735
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20726
+ font-weight: 600;
20727
+ src: local("IBM Plex Sans SmBld Italic"), local("IBMPlexSans-SmBldItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-SemiBoldItalic-Greek.woff2") format("woff2");
20728
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19736
20729
  }
19737
- /* greek */
19738
20730
  @font-face {
19739
20731
  font-display: auto;
19740
20732
  font-family: "IBM Plex Sans";
19741
- font-style: italic;
19742
- font-weight: 400;
19743
- src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTuFKZJW9XjDlN8.woff2) format("woff2");
19744
- unicode-range: U+0370-03FF;
20733
+ font-style: normal;
20734
+ font-weight: 450;
20735
+ src: local("IBM Plex Sans Text"), local("IBMPlexSans-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-Text.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-Text.woff") format("woff");
19745
20736
  }
19746
- /* vietnamese */
19747
20737
  @font-face {
19748
20738
  font-display: auto;
19749
20739
  font-family: "IBM Plex Sans";
19750
- font-style: italic;
19751
- font-weight: 400;
19752
- src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTuGKZJW9XjDlN8.woff2) format("woff2");
19753
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20740
+ font-style: normal;
20741
+ font-weight: 450;
20742
+ src: local("IBM Plex Sans Text"), local("IBMPlexSans-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Text-Cyrillic.woff2") format("woff2");
20743
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19754
20744
  }
19755
- /* latin-ext */
19756
20745
  @font-face {
19757
20746
  font-display: auto;
19758
20747
  font-family: "IBM Plex Sans";
19759
- font-style: italic;
19760
- font-weight: 400;
19761
- src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTuGaZJW9XjDlN8.woff2) format("woff2");
19762
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20748
+ font-style: normal;
20749
+ font-weight: 450;
20750
+ src: local("IBM Plex Sans Text"), local("IBMPlexSans-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Text-Pi.woff2") format("woff2");
20751
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19763
20752
  }
19764
- /* latin */
19765
20753
  @font-face {
19766
20754
  font-display: auto;
19767
20755
  font-family: "IBM Plex Sans";
19768
- font-style: italic;
19769
- font-weight: 400;
19770
- src: local("IBM Plex Sans Italic"), local("IBMPlexSans-Italic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTuF6ZJW9XjDg.woff2) format("woff2");
19771
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20756
+ font-style: normal;
20757
+ font-weight: 450;
20758
+ src: local("IBM Plex Sans Text"), local("IBMPlexSans-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Text-Latin3.woff2") format("woff2");
20759
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19772
20760
  }
19773
- /* cyrillic-ext */
19774
20761
  @font-face {
19775
20762
  font-display: auto;
19776
20763
  font-family: "IBM Plex Sans";
19777
- font-style: italic;
19778
- font-weight: 600;
19779
- src: local("IBM Plex Sans SemiBold Italic"), local("IBMPlexSans-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJce_fuJGl18QRY.woff2) format("woff2");
19780
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20764
+ font-style: normal;
20765
+ font-weight: 450;
20766
+ src: local("IBM Plex Sans Text"), local("IBMPlexSans-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Text-Latin2.woff2") format("woff2");
20767
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19781
20768
  }
19782
- /* cyrillic */
19783
20769
  @font-face {
19784
20770
  font-display: auto;
19785
20771
  font-family: "IBM Plex Sans";
19786
- font-style: italic;
19787
- font-weight: 600;
19788
- src: local("IBM Plex Sans SemiBold Italic"), local("IBMPlexSans-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJccvfuJGl18QRY.woff2) format("woff2");
19789
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20772
+ font-style: normal;
20773
+ font-weight: 450;
20774
+ src: local("IBM Plex Sans Text"), local("IBMPlexSans-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Text-Latin1.woff2") format("woff2");
20775
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19790
20776
  }
19791
- /* greek */
19792
20777
  @font-face {
19793
20778
  font-display: auto;
19794
20779
  font-family: "IBM Plex Sans";
19795
- font-style: italic;
19796
- font-weight: 600;
19797
- src: local("IBM Plex Sans SemiBold Italic"), local("IBMPlexSans-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJcdffuJGl18QRY.woff2) format("woff2");
19798
- unicode-range: U+0370-03FF;
20780
+ font-style: normal;
20781
+ font-weight: 450;
20782
+ src: local("IBM Plex Sans Text"), local("IBMPlexSans-Text"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Text-Greek.woff2") format("woff2");
20783
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19799
20784
  }
19800
- /* vietnamese */
19801
20785
  @font-face {
19802
20786
  font-display: auto;
19803
20787
  font-family: "IBM Plex Sans";
19804
20788
  font-style: italic;
19805
- font-weight: 600;
19806
- src: local("IBM Plex Sans SemiBold Italic"), local("IBMPlexSans-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJceffuJGl18QRY.woff2) format("woff2");
19807
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20789
+ font-weight: 450;
20790
+ src: local("IBM Plex Sans Text Italic"), local("IBMPlexSans-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-TextItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-TextItalic.woff") format("woff");
19808
20791
  }
19809
- /* latin-ext */
19810
20792
  @font-face {
19811
20793
  font-display: auto;
19812
20794
  font-family: "IBM Plex Sans";
19813
20795
  font-style: italic;
19814
- font-weight: 600;
19815
- src: local("IBM Plex Sans SemiBold Italic"), local("IBMPlexSans-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJcePfuJGl18QRY.woff2) format("woff2");
19816
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20796
+ font-weight: 450;
20797
+ src: local("IBM Plex Sans Text Italic"), local("IBMPlexSans-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-TextItalic-Cyrillic.woff2") format("woff2");
20798
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19817
20799
  }
19818
- /* latin */
19819
20800
  @font-face {
19820
20801
  font-display: auto;
19821
20802
  font-family: "IBM Plex Sans";
19822
20803
  font-style: italic;
19823
- font-weight: 600;
19824
- src: local("IBM Plex Sans SemiBold Italic"), local("IBMPlexSans-SemiBoldItalic"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJcdvfuJGl18Q.woff2) format("woff2");
19825
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20804
+ font-weight: 450;
20805
+ src: local("IBM Plex Sans Text Italic"), local("IBMPlexSans-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-TextItalic-Pi.woff2") format("woff2");
20806
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19826
20807
  }
19827
- /* cyrillic-ext */
19828
20808
  @font-face {
19829
20809
  font-display: auto;
19830
20810
  font-family: "IBM Plex Sans";
19831
- font-style: normal;
19832
- font-weight: 300;
19833
- src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8AIxsdP3pBmtF8A.woff2) format("woff2");
19834
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20811
+ font-style: italic;
20812
+ font-weight: 450;
20813
+ src: local("IBM Plex Sans Text Italic"), local("IBMPlexSans-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-TextItalic-Latin3.woff2") format("woff2");
20814
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19835
20815
  }
19836
- /* cyrillic */
19837
20816
  @font-face {
19838
20817
  font-display: auto;
19839
20818
  font-family: "IBM Plex Sans";
19840
- font-style: normal;
19841
- font-weight: 300;
19842
- src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8AIVsdP3pBmtF8A.woff2) format("woff2");
19843
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20819
+ font-style: italic;
20820
+ font-weight: 450;
20821
+ src: local("IBM Plex Sans Text Italic"), local("IBMPlexSans-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-TextItalic-Latin2.woff2") format("woff2");
20822
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19844
20823
  }
19845
- /* greek */
19846
20824
  @font-face {
19847
20825
  font-display: auto;
19848
20826
  font-family: "IBM Plex Sans";
19849
- font-style: normal;
19850
- font-weight: 300;
19851
- src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8AIJsdP3pBmtF8A.woff2) format("woff2");
19852
- unicode-range: U+0370-03FF;
20827
+ font-style: italic;
20828
+ font-weight: 450;
20829
+ src: local("IBM Plex Sans Text Italic"), local("IBMPlexSans-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-TextItalic-Latin1.woff2") format("woff2");
20830
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19853
20831
  }
19854
- /* vietnamese */
19855
20832
  @font-face {
19856
20833
  font-display: auto;
19857
20834
  font-family: "IBM Plex Sans";
19858
- font-style: normal;
19859
- font-weight: 300;
19860
- src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8AI5sdP3pBmtF8A.woff2) format("woff2");
19861
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20835
+ font-style: italic;
20836
+ font-weight: 450;
20837
+ src: local("IBM Plex Sans Text Italic"), local("IBMPlexSans-TextItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-TextItalic-Greek.woff2") format("woff2");
20838
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19862
20839
  }
19863
- /* latin-ext */
19864
20840
  @font-face {
19865
20841
  font-display: auto;
19866
20842
  font-family: "IBM Plex Sans";
19867
20843
  font-style: normal;
19868
- font-weight: 300;
19869
- src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8AI9sdP3pBmtF8A.woff2) format("woff2");
19870
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20844
+ font-weight: 100;
20845
+ src: local("IBM Plex Sans Thin"), local("IBMPlexSans-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-Thin.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-Thin.woff") format("woff");
19871
20846
  }
19872
- /* latin */
19873
20847
  @font-face {
19874
20848
  font-display: auto;
19875
20849
  font-family: "IBM Plex Sans";
19876
20850
  font-style: normal;
19877
- font-weight: 300;
19878
- src: local("IBM Plex Sans Light"), local("IBMPlexSans-Light"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8AIFsdP3pBms.woff2) format("woff2");
19879
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20851
+ font-weight: 100;
20852
+ src: local("IBM Plex Sans Thin"), local("IBMPlexSans-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Thin-Cyrillic.woff2") format("woff2");
20853
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19880
20854
  }
19881
- /* cyrillic-ext */
19882
20855
  @font-face {
19883
20856
  font-display: auto;
19884
20857
  font-family: "IBM Plex Sans";
19885
20858
  font-style: normal;
19886
- font-weight: 400;
19887
- src: local("IBM Plex Sans"), local("IBMPlexSans"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKhdzeFaxOedfTDw.woff2) format("woff2");
19888
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20859
+ font-weight: 100;
20860
+ src: local("IBM Plex Sans Thin"), local("IBMPlexSans-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Thin-Pi.woff2") format("woff2");
20861
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19889
20862
  }
19890
- /* cyrillic */
19891
20863
  @font-face {
19892
20864
  font-display: auto;
19893
20865
  font-family: "IBM Plex Sans";
19894
20866
  font-style: normal;
19895
- font-weight: 400;
19896
- src: local("IBM Plex Sans"), local("IBMPlexSans"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKhdXeFaxOedfTDw.woff2) format("woff2");
19897
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20867
+ font-weight: 100;
20868
+ src: local("IBM Plex Sans Thin"), local("IBMPlexSans-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Thin-Latin3.woff2") format("woff2");
20869
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19898
20870
  }
19899
- /* greek */
19900
20871
  @font-face {
19901
20872
  font-display: auto;
19902
20873
  font-family: "IBM Plex Sans";
19903
20874
  font-style: normal;
19904
- font-weight: 400;
19905
- src: local("IBM Plex Sans"), local("IBMPlexSans"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKhdLeFaxOedfTDw.woff2) format("woff2");
19906
- unicode-range: U+0370-03FF;
20875
+ font-weight: 100;
20876
+ src: local("IBM Plex Sans Thin"), local("IBMPlexSans-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Thin-Latin2.woff2") format("woff2");
20877
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19907
20878
  }
19908
- /* vietnamese */
19909
20879
  @font-face {
19910
20880
  font-display: auto;
19911
20881
  font-family: "IBM Plex Sans";
19912
20882
  font-style: normal;
19913
- font-weight: 400;
19914
- src: local("IBM Plex Sans"), local("IBMPlexSans"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKhd7eFaxOedfTDw.woff2) format("woff2");
19915
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20883
+ font-weight: 100;
20884
+ src: local("IBM Plex Sans Thin"), local("IBMPlexSans-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Thin-Latin1.woff2") format("woff2");
20885
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19916
20886
  }
19917
- /* latin-ext */
19918
20887
  @font-face {
19919
20888
  font-display: auto;
19920
20889
  font-family: "IBM Plex Sans";
19921
20890
  font-style: normal;
19922
- font-weight: 400;
19923
- src: local("IBM Plex Sans"), local("IBMPlexSans"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKhd_eFaxOedfTDw.woff2) format("woff2");
19924
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20891
+ font-weight: 100;
20892
+ src: local("IBM Plex Sans Thin"), local("IBMPlexSans-Thin"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-Thin-Greek.woff2") format("woff2");
20893
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19925
20894
  }
19926
- /* latin */
19927
20895
  @font-face {
19928
20896
  font-display: auto;
19929
20897
  font-family: "IBM Plex Sans";
19930
- font-style: normal;
19931
- font-weight: 400;
19932
- src: local("IBM Plex Sans"), local("IBMPlexSans"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKhdHeFaxOedc.woff2) format("woff2");
19933
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20898
+ font-style: italic;
20899
+ font-weight: 100;
20900
+ src: local("IBM Plex Sans Thin Italic"), local("IBMPlexSans-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff2/IBMPlexSans-ThinItalic.woff2") format("woff2"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/complete/woff/IBMPlexSans-ThinItalic.woff") format("woff");
19934
20901
  }
19935
- /* cyrillic-ext */
19936
20902
  @font-face {
19937
20903
  font-display: auto;
19938
20904
  font-family: "IBM Plex Sans";
19939
- font-style: normal;
19940
- font-weight: 600;
19941
- src: local("IBM Plex Sans SemiBold"), local("IBMPlexSans-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76AIxsdP3pBmtF8A.woff2) format("woff2");
19942
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
20905
+ font-style: italic;
20906
+ font-weight: 100;
20907
+ src: local("IBM Plex Sans Thin Italic"), local("IBMPlexSans-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ThinItalic-Cyrillic.woff2") format("woff2");
20908
+ unicode-range: U+0400-045F, U+0472-0473, U+0490-049D, U+04A0-04A5, U+04AA-04AB, U+04AE-04B3, U+04B6-04BB, U+04C0-04C2, U+04CF-04D9, U+04DC-04DF, U+04E2-04E9, U+04EE-04F5, U+04F8-04F9;
19943
20909
  }
19944
- /* cyrillic */
19945
20910
  @font-face {
19946
20911
  font-display: auto;
19947
20912
  font-family: "IBM Plex Sans";
19948
- font-style: normal;
19949
- font-weight: 600;
19950
- src: local("IBM Plex Sans SemiBold"), local("IBMPlexSans-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76AIVsdP3pBmtF8A.woff2) format("woff2");
19951
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
20913
+ font-style: italic;
20914
+ font-weight: 100;
20915
+ src: local("IBM Plex Sans Thin Italic"), local("IBMPlexSans-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ThinItalic-Pi.woff2") format("woff2");
20916
+ unicode-range: U+0E3F, U+2032-2033, U+2070, U+2075-2079, U+2080-2081, U+2083, U+2085-2089, U+2113, U+2116, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+EBE1-EBE7, U+ECE0, U+EFCC;
19952
20917
  }
19953
- /* greek */
19954
20918
  @font-face {
19955
20919
  font-display: auto;
19956
20920
  font-family: "IBM Plex Sans";
19957
- font-style: normal;
19958
- font-weight: 600;
19959
- src: local("IBM Plex Sans SemiBold"), local("IBMPlexSans-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76AIJsdP3pBmtF8A.woff2) format("woff2");
19960
- unicode-range: U+0370-03FF;
20921
+ font-style: italic;
20922
+ font-weight: 100;
20923
+ src: local("IBM Plex Sans Thin Italic"), local("IBMPlexSans-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ThinItalic-Latin3.woff2") format("woff2");
20924
+ unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
19961
20925
  }
19962
- /* vietnamese */
19963
20926
  @font-face {
19964
20927
  font-display: auto;
19965
20928
  font-family: "IBM Plex Sans";
19966
- font-style: normal;
19967
- font-weight: 600;
19968
- src: local("IBM Plex Sans SemiBold"), local("IBMPlexSans-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76AI5sdP3pBmtF8A.woff2) format("woff2");
19969
- unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
20929
+ font-style: italic;
20930
+ font-weight: 100;
20931
+ src: local("IBM Plex Sans Thin Italic"), local("IBMPlexSans-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ThinItalic-Latin2.woff2") format("woff2");
20932
+ unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF, U+FB01-FB02;
19970
20933
  }
19971
- /* latin-ext */
19972
20934
  @font-face {
19973
20935
  font-display: auto;
19974
20936
  font-family: "IBM Plex Sans";
19975
- font-style: normal;
19976
- font-weight: 600;
19977
- src: local("IBM Plex Sans SemiBold"), local("IBMPlexSans-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76AI9sdP3pBmtF8A.woff2) format("woff2");
19978
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
20937
+ font-style: italic;
20938
+ font-weight: 100;
20939
+ src: local("IBM Plex Sans Thin Italic"), local("IBMPlexSans-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ThinItalic-Latin1.woff2") format("woff2");
20940
+ unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A3, U+00A4-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
19979
20941
  }
19980
- /* latin */
19981
20942
  @font-face {
19982
20943
  font-display: auto;
19983
20944
  font-family: "IBM Plex Sans";
19984
- font-style: normal;
19985
- font-weight: 600;
19986
- src: local("IBM Plex Sans SemiBold"), local("IBMPlexSans-SemiBold"), url(https://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76AIFsdP3pBms.woff2) format("woff2");
19987
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
20945
+ font-style: italic;
20946
+ font-weight: 100;
20947
+ src: local("IBM Plex Sans Thin Italic"), local("IBMPlexSans-ThinItalic"), url("https://1.www.s81c.com/common/carbon/plex/fonts/IBM-Plex-Sans/fonts/split/woff2/IBMPlexSans-ThinItalic-Greek.woff2") format("woff2");
20948
+ unicode-range: U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;
19988
20949
  }
19989
20950
  body {
19990
20951
  font-size: var(--cds-body-short-01-font-size, 0.875rem);
@@ -22015,13 +22976,11 @@ li.bx--accordion__item--disabled:last-of-type {
22015
22976
  color: var(--cds-text-primary, #161616);
22016
22977
  }
22017
22978
 
22018
- .bx--data-table tbody tr:hover td .bx--link,
22019
- .bx--data-table tbody tr:hover th .bx--link {
22979
+ .bx--data-table tr:hover .bx--link {
22020
22980
  color: var(--cds-link-secondary, #0043ce);
22021
22981
  }
22022
22982
 
22023
- .bx--data-table tbody tr:hover td .bx--link--disabled,
22024
- .bx--data-table tbody tr:hover th .bx--link--disabled {
22983
+ .bx--data-table tr:hover .bx--link--disabled {
22025
22984
  color: var(--cds-disabled-02, #c6c6c6);
22026
22985
  }
22027
22986
 
@@ -22130,7 +23089,7 @@ li.bx--accordion__item--disabled:last-of-type {
22130
23089
  background-color: var(--cds-layer-hover, #e5e5e5);
22131
23090
  }
22132
23091
 
22133
- .bx--data-table--selected .bx--link {
23092
+ .bx--data-table--selected .bx--link:not(.bx--link--disabled) {
22134
23093
  color: var(--cds-link-secondary, #0043ce);
22135
23094
  }
22136
23095
 
@@ -22258,6 +23217,17 @@ li.bx--accordion__item--disabled:last-of-type {
22258
23217
  padding-top: var(--cds-spacing-05, 1rem);
22259
23218
  }
22260
23219
 
23220
+ tr.bx--data-table--selected:hover .bx--radio-button[disabled] + .bx--radio-button__label,
23221
+ tr.bx--data-table--selected:hover .bx--checkbox[disabled] + .bx--checkbox-label,
23222
+ tr.bx--data-table--selected:hover .bx--link--disabled {
23223
+ color: var(--cds-disabled-03, #8d8d8d);
23224
+ }
23225
+
23226
+ tr.bx--data-table--selected:hover .bx--radio-button[disabled] + .bx--radio-button__label .bx--radio-button__appearance,
23227
+ tr.bx--data-table--selected:hover .bx--checkbox[disabled] + .bx--checkbox-label:before {
23228
+ border-color: var(--cds-disabled-03, #8d8d8d);
23229
+ }
23230
+
22261
23231
  .bx--table-column-radio {
22262
23232
  width: 48px;
22263
23233
  }
@@ -26069,6 +27039,11 @@ button.bx--dropdown-text:focus {
26069
27039
  opacity: 0;
26070
27040
  transition: width 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
26071
27041
  }
27042
+ @media screen and (prefers-reduced-motion: reduce) {
27043
+ .bx--pagination-nav__page:not(.bx--pagination-nav__page--direction)::after {
27044
+ transition: none;
27045
+ }
27046
+ }
26072
27047
  .bx--pagination-nav__page--active + .bx--pagination-nav__page::after, .bx--pagination-nav__page.bx--pagination-nav__page--active::after {
26073
27048
  left: calc(50% - 0.5rem);
26074
27049
  width: 1rem;
@@ -26127,6 +27102,11 @@ button.bx--dropdown-text:focus {
26127
27102
  opacity: 0;
26128
27103
  transition: width 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
26129
27104
  }
27105
+ @media screen and (prefers-reduced-motion: reduce) {
27106
+ .bx--pagination-nav__select-icon-wrapper:not(.bx--pagination-nav__page--direction)::after {
27107
+ transition: none;
27108
+ }
27109
+ }
26130
27110
  .bx--pagination-nav__page--active + .bx--pagination-nav__select-icon-wrapper::after, .bx--pagination-nav__select-icon-wrapper.bx--pagination-nav__page--active::after {
26131
27111
  left: calc(50% - 0.5rem);
26132
27112
  width: 1rem;
@@ -26659,7 +27639,7 @@ span.bx--pagination__text {
26659
27639
  height: 100%;
26660
27640
  background-color: var(--cds-interactive, #0f62fe);
26661
27641
  transform: scaleX(0);
26662
- transform-origin: 0 50%;
27642
+ transform-origin: 0 center /*rtl:100% center*/;
26663
27643
  transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
26664
27644
  }
26665
27645
 
@@ -26695,6 +27675,36 @@ span.bx--pagination__text {
26695
27675
  background-position-x: -105%;
26696
27676
  }
26697
27677
  }
27678
+ .bx--progress-bar--inline {
27679
+ display: flex;
27680
+ align-items: center;
27681
+ }
27682
+
27683
+ .bx--progress-bar--inline .bx--progress-bar__label {
27684
+ flex-shrink: 0;
27685
+ margin-right: var(--cds-spacing-05, 1rem);
27686
+ margin-bottom: 0;
27687
+ }
27688
+
27689
+ .bx--progress-bar--inline .bx--progress-bar__helper-text {
27690
+ position: absolute;
27691
+ overflow: hidden;
27692
+ width: 1px;
27693
+ height: 1px;
27694
+ padding: 0;
27695
+ border: 0;
27696
+ margin: -1px;
27697
+ clip: rect(0, 0, 0, 0);
27698
+ visibility: inherit;
27699
+ white-space: nowrap;
27700
+ }
27701
+
27702
+ .bx--progress-bar--indented .bx--progress-bar__label,
27703
+ .bx--progress-bar--indented .bx--progress-bar__helper-text {
27704
+ padding-right: var(--cds-spacing-05, 1rem);
27705
+ padding-left: var(--cds-spacing-05, 1rem);
27706
+ }
27707
+
26698
27708
  .bx--icon--skeleton {
26699
27709
  position: relative;
26700
27710
  padding: 0;
@@ -27239,6 +28249,11 @@ span.bx--pagination__text {
27239
28249
  transform-origin: center;
27240
28250
  transition: 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
27241
28251
  }
28252
+ @media screen and (prefers-reduced-motion: reduce) {
28253
+ .bx--tile__chevron svg {
28254
+ transition: none;
28255
+ }
28256
+ }
27242
28257
  @media screen and (-ms-high-contrast: active), screen and (prefers-contrast) {
27243
28258
  .bx--tile__chevron svg {
27244
28259
  fill: ButtonText;
@@ -28447,7 +29462,6 @@ a.bx--navigation-link:focus {
28447
29462
 
28448
29463
  .bx--content {
28449
29464
  padding: 2rem;
28450
- background: var(--cds-ui-02, #ffffff);
28451
29465
  will-change: margin-left;
28452
29466
  }
28453
29467