@carbon/ibm-products 1.57.0 → 1.59.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. package/css/index-full-carbon.css +392 -944
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +4 -4
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon.css +346 -900
  6. package/css/index-without-carbon.css.map +1 -1
  7. package/css/index-without-carbon.min.css +3 -3
  8. package/css/index-without-carbon.min.css.map +1 -1
  9. package/css/index.css +390 -944
  10. package/css/index.css.map +1 -1
  11. package/css/index.min.css +4 -4
  12. package/css/index.min.css.map +1 -1
  13. package/es/components/Checklist/Checklist.js +277 -0
  14. package/es/components/Checklist/ChecklistChart.js +98 -0
  15. package/es/components/Checklist/ChecklistIcon.js +105 -0
  16. package/es/components/Checklist/index.js +8 -0
  17. package/es/components/CreateFullPage/CreateFullPage.js +25 -3
  18. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +1 -0
  19. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +34 -18
  20. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +2 -37
  21. package/es/components/InlineTip/InlineTip.js +5 -1
  22. package/es/components/InlineTip/InlineTipButton.js +1 -8
  23. package/es/components/InlineTip/InlineTipLink.js +1 -8
  24. package/es/components/NonLinearReading/NonLinearReading.js +9 -4
  25. package/es/components/index.js +2 -1
  26. package/es/global/js/package-settings.js +1 -0
  27. package/es/global/js/utils/test-helper.js +2 -2
  28. package/lib/components/Checklist/Checklist.js +267 -0
  29. package/lib/components/Checklist/ChecklistChart.js +88 -0
  30. package/lib/components/Checklist/ChecklistIcon.js +92 -0
  31. package/lib/components/Checklist/index.js +12 -0
  32. package/lib/components/CreateFullPage/CreateFullPage.js +24 -2
  33. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +1 -0
  34. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +35 -19
  35. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +2 -40
  36. package/lib/components/InlineTip/InlineTip.js +4 -0
  37. package/lib/components/InlineTip/InlineTipButton.js +2 -9
  38. package/lib/components/InlineTip/InlineTipLink.js +2 -9
  39. package/lib/components/NonLinearReading/NonLinearReading.js +8 -3
  40. package/lib/components/index.js +8 -1
  41. package/lib/global/js/package-settings.js +1 -0
  42. package/lib/global/js/utils/test-helper.js +2 -2
  43. package/package.json +10 -10
  44. package/scss/components/Checklist/_checklist.scss +231 -0
  45. package/scss/components/Checklist/_index.scss +8 -0
  46. package/scss/components/Checklist/_storybook-styles.scss +13 -0
  47. package/scss/components/ComboButton/_combo-button.scss +2 -1
  48. package/scss/components/Datagrid/styles/_datagrid.scss +31 -5
  49. package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +6 -1
  50. package/scss/components/NonLinearReading/_non-linear-reading.scss +76 -64
  51. package/scss/components/Toolbar/_toolbar.scss +6 -3
  52. package/scss/components/_index.scss +1 -0
@@ -7651,6 +7651,7 @@ a.bx--overflow-menu-options__btn::before {
7651
7651
  .security--combo-button .security--combo-button__overflow-menu {
7652
7652
  width: 3rem;
7653
7653
  height: auto;
7654
+ /* stylelint-disable-next-line function-no-unknown */
7654
7655
  border-left: 0.0625rem solid var(--cds-ui-03, #e0e0e0);
7655
7656
  background-color: var(--cds-interactive-01, #0f62fe);
7656
7657
  }
@@ -10234,18 +10235,18 @@ a.bx--overflow-menu-options__btn::before {
10234
10235
 
10235
10236
  .bx--toggle__appearance {
10236
10237
  position: relative;
10237
- width: 3rem;
10238
- height: 1.5rem;
10238
+ width: to-to-rem(48px);
10239
+ height: to-to-rem(24px);
10239
10240
  }
10240
10241
  .bx--toggle__appearance::before {
10241
10242
  position: absolute;
10242
10243
  top: 0;
10243
10244
  display: block;
10244
- width: 3rem;
10245
- height: 1.5rem;
10245
+ width: to-to-rem(48px);
10246
+ height: to-to-rem(24px);
10246
10247
  box-sizing: border-box;
10247
10248
  background-color: var(--cds-ui-04, #8d8d8d);
10248
- border-radius: 0.9375rem;
10249
+ border-radius: to-to-rem(15px);
10249
10250
  box-shadow: 0 0 0 1px transparent, 0 0 0 3px transparent;
10250
10251
  content: "";
10251
10252
  cursor: pointer;
@@ -10259,11 +10260,11 @@ a.bx--overflow-menu-options__btn::before {
10259
10260
  }
10260
10261
  .bx--toggle__appearance::after {
10261
10262
  position: absolute;
10262
- top: 0.1875rem;
10263
- left: 0.1875rem;
10263
+ top: to-to-rem(3px);
10264
+ left: to-to-rem(3px);
10264
10265
  display: block;
10265
- width: 1.125rem;
10266
- height: 1.125rem;
10266
+ width: to-to-rem(18px);
10267
+ height: to-to-rem(18px);
10267
10268
  box-sizing: border-box;
10268
10269
  background-color: var(--cds-icon-03, #ffffff);
10269
10270
  border-radius: 50%;
@@ -10275,10 +10276,10 @@ a.bx--overflow-menu-options__btn::before {
10275
10276
  .bx--toggle__check {
10276
10277
  position: absolute;
10277
10278
  z-index: 1;
10278
- top: 0.375rem;
10279
- left: 0.375rem;
10280
- width: 0.375rem;
10281
- height: 0.3125rem;
10279
+ top: to-to-rem(6px);
10280
+ left: to-to-rem(6px);
10281
+ width: to-to-rem(6px);
10282
+ height: to-to-rem(5px);
10282
10283
  fill: var(--cds-icon-03, #ffffff);
10283
10284
  transform: scale(0.2);
10284
10285
  transition: 70ms cubic-bezier(0.2, 0, 1, 0.9);
@@ -10296,7 +10297,7 @@ a.bx--overflow-menu-options__btn::before {
10296
10297
 
10297
10298
  .bx--toggle__text--left {
10298
10299
  position: absolute;
10299
- left: 3rem;
10300
+ left: to-to-rem(48px);
10300
10301
  }
10301
10302
 
10302
10303
  .bx--toggle:checked + .bx--toggle__label .bx--toggle__text--left,
@@ -10314,7 +10315,7 @@ a.bx--overflow-menu-options__btn::before {
10314
10315
  }
10315
10316
  .bx--toggle:checked + .bx--toggle__label .bx--toggle__appearance::after {
10316
10317
  background-color: var(--cds-icon-03, #ffffff);
10317
- transform: translateX(1.5rem);
10318
+ transform: translateX(to-to-rem(24px));
10318
10319
  }
10319
10320
 
10320
10321
  .bx--toggle + .bx--toggle__label .bx--toggle__appearance::before {
@@ -10360,30 +10361,30 @@ a.bx--overflow-menu-options__btn::before {
10360
10361
  }
10361
10362
 
10362
10363
  .bx--toggle--small + .bx--toggle__label .bx--toggle__appearance {
10363
- width: 2rem;
10364
- height: 1rem;
10364
+ width: to-to-rem(32px);
10365
+ height: to-to-rem(16px);
10365
10366
  }
10366
10367
  .bx--toggle--small + .bx--toggle__label .bx--toggle__appearance::before {
10367
10368
  top: 0;
10368
- width: 2rem;
10369
- height: 1rem;
10369
+ width: to-to-rem(32px);
10370
+ height: to-to-rem(16px);
10370
10371
  box-sizing: border-box;
10371
10372
  border-radius: 0.9375rem;
10372
10373
  }
10373
10374
  .bx--toggle--small + .bx--toggle__label .bx--toggle__appearance::after {
10374
- top: 0.1875rem;
10375
- left: 0.1875rem;
10376
- width: 0.625rem;
10377
- height: 0.625rem;
10375
+ top: to-to-rem(3px);
10376
+ left: to-to-rem(3px);
10377
+ width: to-to-rem(10px);
10378
+ height: to-to-rem(10px);
10378
10379
  }
10379
10380
 
10380
10381
  .bx--toggle--small:checked + .bx--toggle__label .bx--toggle__check {
10381
10382
  fill: var(--cds-support-02, #198038);
10382
- transform: scale(1) translateX(1rem);
10383
+ transform: scale(1) translateX(to-to-rem(16px));
10383
10384
  }
10384
10385
 
10385
10386
  .bx--toggle--small + .bx--toggle__label .bx--toggle__text--left {
10386
- left: 2rem;
10387
+ left: to-to-rem(32px);
10387
10388
  }
10388
10389
 
10389
10390
  .bx--toggle--small:checked + .bx--toggle__label .bx--toggle__appearance::after {
@@ -10422,8 +10423,8 @@ a.bx--overflow-menu-options__btn::before {
10422
10423
  .bx--toggle__switch {
10423
10424
  position: relative;
10424
10425
  display: flex;
10425
- width: 3rem;
10426
- height: 1.5rem;
10426
+ width: to-to-rem(48px);
10427
+ height: to-to-rem(24px);
10427
10428
  align-items: center;
10428
10429
  cursor: pointer;
10429
10430
  }
@@ -10431,11 +10432,11 @@ a.bx--overflow-menu-options__btn::before {
10431
10432
  position: absolute;
10432
10433
  top: 0;
10433
10434
  display: block;
10434
- width: 3rem;
10435
- height: 1.5rem;
10435
+ width: to-to-rem(48px);
10436
+ height: to-to-rem(24px);
10436
10437
  box-sizing: border-box;
10437
10438
  background-color: var(--cds-ui-04, #8d8d8d);
10438
- border-radius: 0.9375rem;
10439
+ border-radius: to-to-rem(15px);
10439
10440
  box-shadow: 0 0 0 1px transparent, 0 0 0 3px transparent;
10440
10441
  content: "";
10441
10442
  transition: box-shadow 70ms cubic-bezier(0.2, 0, 1, 0.9), background-color 70ms cubic-bezier(0.2, 0, 1, 0.9);
@@ -10448,11 +10449,11 @@ a.bx--overflow-menu-options__btn::before {
10448
10449
  }
10449
10450
  .bx--toggle__switch::after {
10450
10451
  position: absolute;
10451
- top: 0.1875rem;
10452
- left: 0.1875rem;
10452
+ top: to-to-rem(3px);
10453
+ left: to-to-rem(3px);
10453
10454
  display: block;
10454
- width: 1.125rem;
10455
- height: 1.125rem;
10455
+ width: to-to-rem(18px);
10456
+ height: to-to-rem(18px);
10456
10457
  box-sizing: border-box;
10457
10458
  background-color: var(--cds-icon-03, #ffffff);
10458
10459
  border-radius: 50%;
@@ -10487,7 +10488,7 @@ a.bx--overflow-menu-options__btn::before {
10487
10488
  }
10488
10489
  .bx--toggle-input:checked + .bx--toggle-input__label > .bx--toggle__switch::after {
10489
10490
  background-color: var(--cds-icon-03, #ffffff);
10490
- transform: translateX(1.5rem);
10491
+ transform: translateX(to-to-rem(24px));
10491
10492
  }
10492
10493
 
10493
10494
  .bx--toggle-input:focus + .bx--toggle-input__label > .bx--toggle__switch::before,
@@ -10524,29 +10525,29 @@ a.bx--overflow-menu-options__btn::before {
10524
10525
  }
10525
10526
 
10526
10527
  .bx--toggle-input--small + .bx--toggle-input__label > .bx--toggle__switch {
10527
- width: 2rem;
10528
- height: 1rem;
10528
+ width: to-to-rem(32px);
10529
+ height: to-to-rem(16px);
10529
10530
  }
10530
10531
  .bx--toggle-input--small + .bx--toggle-input__label > .bx--toggle__switch::before {
10531
- width: 2rem;
10532
- height: 1rem;
10532
+ width: to-to-rem(32px);
10533
+ height: to-to-rem(16px);
10533
10534
  border-radius: 0.9375rem;
10534
10535
  }
10535
10536
  .bx--toggle-input--small + .bx--toggle-input__label > .bx--toggle__switch::after {
10536
- width: 0.625rem;
10537
- height: 0.625rem;
10537
+ width: to-to-rem(10px);
10538
+ height: to-to-rem(10px);
10538
10539
  }
10539
10540
  .bx--toggle-input--small + .bx--toggle-input__label .bx--toggle__text--off,
10540
10541
  .bx--toggle-input--small + .bx--toggle-input__label .bx--toggle__text--on {
10541
- margin-left: 2.5rem;
10542
+ margin-left: to-to-rem(40px);
10542
10543
  }
10543
10544
 
10544
10545
  .bx--toggle-input--small:checked + .bx--toggle-input__label > .bx--toggle__switch::after {
10545
- transform: translateX(1.0625rem);
10546
+ transform: translateX(to-to-rem(17px));
10546
10547
  }
10547
10548
  .bx--toggle-input--small:checked + .bx--toggle-input__label .bx--toggle__check {
10548
10549
  fill: var(--cds-support-02, #198038);
10549
- transform: scale(1) translateX(1rem);
10550
+ transform: scale(1) translateX(to-to-rem(16px));
10550
10551
  }
10551
10552
 
10552
10553
  .bx--toggle-input--small:disabled:checked + .bx--toggle-input__label .bx--toggle__check {
@@ -19384,6 +19385,8 @@ button.c4p--add-select__global-filter-toggle--open {
19384
19385
  stroke-dashoffset: 0;
19385
19386
  }
19386
19387
  }
19388
+ /* stylelint-disable-next-line function-no-unknown */
19389
+ /* stylelint-disable-next-line function-no-unknown */
19387
19390
  .c4p--toolbar {
19388
19391
  display: flex;
19389
19392
  min-width: 2.5rem;
@@ -19426,6 +19429,7 @@ button.c4p--add-select__global-filter-toggle--open {
19426
19429
  }
19427
19430
 
19428
19431
  .c4p--toolbar__button__caret {
19432
+ /* stylelint-disable-next-line function-no-unknown */
19429
19433
  position: absolute;
19430
19434
  right: 0.125rem;
19431
19435
  bottom: 0.125rem;
@@ -21154,6 +21158,22 @@ button.c4p--add-select__global-filter-toggle--open {
21154
21158
  width: 100%;
21155
21159
  padding-top: 0;
21156
21160
  }
21161
+ .c4p--datagrid__grid-container .bx--data-table-header__description {
21162
+ overflow: hidden;
21163
+ text-overflow: ellipsis;
21164
+ white-space: nowrap;
21165
+ }
21166
+ .c4p--datagrid__grid-container .bx--data-table-header__title {
21167
+ overflow: hidden;
21168
+ max-width: 80ch;
21169
+ text-overflow: ellipsis;
21170
+ white-space: nowrap;
21171
+ }
21172
+ @media (min-width: 42rem) {
21173
+ .c4p--datagrid__grid-container .bx--data-table-header__title {
21174
+ max-width: 55ch;
21175
+ }
21176
+ }
21157
21177
  .c4p--datagrid__grid-container .bx--data-table-content {
21158
21178
  width: 100%;
21159
21179
  height: 100%;
@@ -21558,6 +21578,7 @@ button.c4p--add-select__global-filter-toggle--open {
21558
21578
  width: 1rem;
21559
21579
  height: 100%;
21560
21580
  margin: 0;
21581
+ -moz-appearance: initial;
21561
21582
  -webkit-appearance: none;
21562
21583
  appearance: none;
21563
21584
  background: transparent;
@@ -21567,12 +21588,12 @@ button.c4p--add-select__global-filter-toggle--open {
21567
21588
  outline: 0;
21568
21589
  }
21569
21590
 
21570
- .c4p--datagrid .c4p--datagrid__col-resizer-range:focus::before {
21591
+ .c4p--datagrid .c4p--datagrid__col-resizer-range:focus + .c4p--datagrid__col-resize-indicator::before {
21571
21592
  position: absolute;
21572
21593
  top: 50%;
21573
21594
  left: 50%;
21574
21595
  width: 2px;
21575
- height: 100%;
21596
+ height: var(--c4p--datagrid--header-height);
21576
21597
  background-color: var(--cds-focus, #0f62fe);
21577
21598
  content: "";
21578
21599
  transform: translate(-50%, -50%);
@@ -21590,11 +21611,11 @@ button.c4p--add-select__global-filter-toggle--open {
21590
21611
  transform: translate(-50%, 0);
21591
21612
  }
21592
21613
 
21593
- .c4p--datagrid .c4p--datagrid__col-resizer-range:focus::after {
21614
+ .c4p--datagrid .c4p--datagrid__col-resizer-range:focus + .c4p--datagrid__col-resize-indicator::after {
21594
21615
  position: absolute;
21595
21616
  /* stylelint-disable-next-line carbon/layout-token-use */
21596
- top: var(--c4p--datagrid--row-height);
21597
- right: var(--cds-spacing-03, 0.5rem);
21617
+ top: calc(var(--c4p--datagrid--row-height) - 20px);
21618
+ right: var(--cds-spacing-02, 0.25rem);
21598
21619
  width: 1px;
21599
21620
  height: calc(var(--c4p--datagrid--grid-height) - var(--c4p--datagrid--row-height));
21600
21621
  background-color: var(--cds-active-ui, #c6c6c6);
@@ -21611,6 +21632,10 @@ button.c4p--add-select__global-filter-toggle--open {
21611
21632
  background: transparent;
21612
21633
  }
21613
21634
 
21635
+ .c4p--datagrid .c4p--datagrid__col-resizer-range::-moz-range-thumb {
21636
+ visibility: hidden;
21637
+ }
21638
+
21614
21639
  /*
21615
21640
  * Licensed Materials - Property of IBM
21616
21641
  * 5724-Q36
@@ -21940,8 +21965,14 @@ button.c4p--add-select__global-filter-toggle--open {
21940
21965
  * US Government Users Restricted Rights - Use, duplication or disclosure
21941
21966
  * restricted by GSA ADP Schedule Contract with IBM Corp.
21942
21967
  */
21968
+ .c4p--datagrid__row-size {
21969
+ position: relative;
21970
+ }
21971
+
21943
21972
  .c4p--datagrid__row-size-dropdown {
21944
21973
  position: absolute;
21974
+ right: 0;
21975
+ width: 10rem;
21945
21976
  padding: var(--cds-spacing-05, 1rem);
21946
21977
  background-color: var(--cds-ui-background, #ffffff);
21947
21978
  box-shadow: 1px 4px 8px -3px var(--cds-overlay-01, rgba(22, 22, 22, 0.5)), -1px 6px 8px -5px var(--cds-overlay-01, rgba(22, 22, 22, 0.5));
@@ -24279,22 +24310,32 @@ th.c4p--datagrid__select-all-toggle-on.button {
24279
24310
  padding-right: 0.1875rem;
24280
24311
  border-width: 0.0625rem;
24281
24312
  border-style: solid;
24313
+ border-color: var(--cds-button-tertiary, #0f62fe);
24282
24314
  border-radius: var(--cds-spacing-04, 0.75rem);
24283
- white-space: nowrap;
24284
- border-color: var(--cds-interactive-03, #0f62fe);
24285
24315
  background-color: transparent;
24286
- color: var(--cds-interactive-03, #0f62fe);
24316
+ color: var(--cds-button-tertiary, #0f62fe);
24317
+ white-space: nowrap;
24287
24318
  }
24288
24319
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
24289
- cursor: pointer;
24320
+ border-color: var(--cds-button-tertiary, #0f62fe);
24321
+ background-color: var(--cds-button-tertiary, #0f62fe);
24322
+ color: var(--cds-text-inverse, #ffffff);
24323
+ }
24324
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:focus {
24325
+ border-color: var(--cds-text-inverse, #ffffff);
24326
+ background-color: var(--cds-button-tertiary, #0f62fe);
24327
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24328
+ color: var(--cds-text-inverse, #ffffff);
24329
+ }
24330
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:focus-visible {
24331
+ outline: none;
24290
24332
  }
24291
24333
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed svg {
24292
24334
  margin: 0.0625rem 0 0 0;
24293
24335
  vertical-align: text-top;
24294
24336
  }
24295
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
24296
- background-color: var(--cds-interactive-03, #0f62fe);
24297
- color: var(--cds-inverse-01, #ffffff);
24337
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed + .c4p--non-linear-reading__body {
24338
+ display: none;
24298
24339
  }
24299
24340
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open {
24300
24341
  height: 1.25rem;
@@ -24302,25 +24343,46 @@ th.c4p--datagrid__select-all-toggle-on.button {
24302
24343
  padding-right: 0.1875rem;
24303
24344
  border-width: 0.0625rem;
24304
24345
  border-style: solid;
24346
+ border-color: var(--cds-button-tertiary, #0f62fe);
24305
24347
  border-radius: var(--cds-spacing-04, 0.75rem);
24348
+ background-color: transparent;
24349
+ color: var(--cds-button-tertiary, #0f62fe);
24306
24350
  white-space: nowrap;
24307
- border-color: var(--cds-interactive-03, #0f62fe);
24308
- background-color: var(--cds-interactive-03, #0f62fe);
24309
- color: var(--cds-inverse-01, #ffffff);
24351
+ border-color: var(--cds-button-tertiary, #0f62fe);
24352
+ background-color: var(--cds-button-tertiary, #0f62fe);
24353
+ color: var(--cds-text-inverse, #ffffff);
24310
24354
  }
24311
24355
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
24312
- cursor: pointer;
24356
+ border-color: var(--cds-button-tertiary, #0f62fe);
24357
+ background-color: var(--cds-button-tertiary, #0f62fe);
24358
+ color: var(--cds-text-inverse, #ffffff);
24359
+ }
24360
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus {
24361
+ border-color: var(--cds-text-inverse, #ffffff);
24362
+ background-color: var(--cds-button-tertiary, #0f62fe);
24363
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24364
+ color: var(--cds-text-inverse, #ffffff);
24365
+ }
24366
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus-visible {
24367
+ outline: none;
24313
24368
  }
24314
24369
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24315
24370
  margin: 0.0625rem 0 0 0;
24316
24371
  vertical-align: text-top;
24317
24372
  }
24318
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24319
- transform: rotate(180deg);
24320
- }
24321
24373
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
24374
+ border-color: var(--cds-button-tertiary, #0f62fe);
24322
24375
  background-color: transparent;
24323
- color: var(--cds-interactive-03, #0f62fe);
24376
+ color: var(--cds-button-tertiary, #0f62fe);
24377
+ }
24378
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus {
24379
+ border-color: var(--cds-text-inverse, #ffffff);
24380
+ background-color: transparent;
24381
+ box-shadow: inset 0 0 0 1px var(--cds-button-tertiary, #0f62fe), 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24382
+ color: var(--cds-button-tertiary, #0f62fe);
24383
+ }
24384
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24385
+ transform: rotate(180deg);
24324
24386
  }
24325
24387
  .c4p--non-linear-reading__light .c4p--non-linear-reading__body {
24326
24388
  font-size: var(--cds-body-long-01-font-size, 0.875rem);
@@ -24329,14 +24391,17 @@ th.c4p--datagrid__select-all-toggle-on.button {
24329
24391
  letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
24330
24392
  display: block;
24331
24393
  padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
24332
- border-left-width: 0.078125rem;
24333
- border-left-style: solid;
24394
+ border-left: 0.078125rem solid var(--cds-text-01, #161616);
24334
24395
  margin: var(--cds-spacing-02, 0.25rem) 0;
24335
24396
  animation: fade 600ms;
24336
- border-left-color: var(--cds-text-01, #161616);
24397
+ }
24398
+ @media (prefers-reduced-motion: reduce) {
24399
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__body {
24400
+ animation: none;
24401
+ }
24337
24402
  }
24338
24403
 
24339
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
24404
+ .c4p--non-linear-reading__dark {
24340
24405
  --cds-interactive-01: #0f62fe;
24341
24406
  --cds-interactive-02: #6f6f6f;
24342
24407
  --cds-interactive-03: #ffffff;
@@ -24757,908 +24822,104 @@ th.c4p--datagrid__select-all-toggle-on.button {
24757
24822
  --cds-size-2XLarge: 5rem;
24758
24823
  --cds-icon-size-01: 1rem;
24759
24824
  --cds-icon-size-02: 1.25rem;
24825
+ }
24826
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
24760
24827
  height: 1.25rem;
24761
24828
  padding-top: 0;
24762
24829
  padding-right: 0.1875rem;
24763
24830
  border-width: 0.0625rem;
24764
24831
  border-style: solid;
24832
+ border-color: var(--cds-button-tertiary, #0f62fe);
24765
24833
  border-radius: var(--cds-spacing-04, 0.75rem);
24766
- white-space: nowrap;
24767
- border-color: var(--cds-icon-03, #ffffff);
24768
24834
  background-color: transparent;
24769
- color: var(--cds-text-01, #161616);
24835
+ color: var(--cds-button-tertiary, #0f62fe);
24836
+ white-space: nowrap;
24770
24837
  }
24771
24838
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
24772
- cursor: pointer;
24839
+ border-color: var(--cds-button-tertiary, #0f62fe);
24840
+ background-color: var(--cds-button-tertiary, #0f62fe);
24841
+ color: var(--cds-text-inverse, #ffffff);
24842
+ }
24843
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:focus {
24844
+ border-color: var(--cds-text-inverse, #ffffff);
24845
+ background-color: var(--cds-button-tertiary, #0f62fe);
24846
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24847
+ color: var(--cds-text-inverse, #ffffff);
24848
+ }
24849
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:focus-visible {
24850
+ outline: none;
24773
24851
  }
24774
24852
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed svg {
24775
24853
  margin: 0.0625rem 0 0 0;
24776
24854
  vertical-align: text-top;
24777
24855
  }
24778
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
24779
- background-color: var(--cds-icon-03, #ffffff);
24780
- color: var(--cds-inverse-01, #ffffff);
24856
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed + .c4p--non-linear-reading__body {
24857
+ display: none;
24781
24858
  }
24782
24859
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open {
24783
- --cds-interactive-01: #0f62fe;
24784
- --cds-interactive-02: #6f6f6f;
24785
- --cds-interactive-03: #ffffff;
24786
- --cds-interactive-04: #4589ff;
24787
- --cds-ui-background: #161616;
24788
- --cds-ui-01: #262626;
24789
- --cds-ui-02: #393939;
24790
- --cds-ui-03: #393939;
24791
- --cds-ui-04: #6f6f6f;
24792
- --cds-ui-05: #f4f4f4;
24793
- --cds-text-01: #f4f4f4;
24794
- --cds-text-02: #c6c6c6;
24795
- --cds-text-03: #6f6f6f;
24796
- --cds-text-04: #ffffff;
24797
- --cds-text-05: #8d8d8d;
24798
- --cds-text-error: #ff8389;
24799
- --cds-icon-01: #f4f4f4;
24800
- --cds-icon-02: #c6c6c6;
24801
- --cds-icon-03: #ffffff;
24802
- --cds-link-01: #78a9ff;
24803
- --cds-link-02: #a6c8ff;
24804
- --cds-inverse-link: #0f62fe;
24805
- --cds-field-01: #262626;
24806
- --cds-field-02: #393939;
24807
- --cds-inverse-01: #161616;
24808
- --cds-inverse-02: #f4f4f4;
24809
- --cds-support-01: #fa4d56;
24810
- --cds-support-02: #42be65;
24811
- --cds-support-03: #f1c21b;
24812
- --cds-support-04: #4589ff;
24813
- --cds-inverse-support-01: #da1e28;
24814
- --cds-inverse-support-02: #24a148;
24815
- --cds-inverse-support-03: #f1c21b;
24816
- --cds-inverse-support-04: #0f62fe;
24817
- --cds-overlay-01: rgba(0, 0, 0, 0.65);
24818
- --cds-danger-01: #da1e28;
24819
- --cds-danger-02: #fa4d56;
24820
- --cds-focus: #ffffff;
24821
- --cds-inverse-focus-ui: #0f62fe;
24822
- --cds-hover-primary: #0353e9;
24823
- --cds-active-primary: #002d9c;
24824
- --cds-hover-primary-text: #a6c8ff;
24825
- --cds-hover-secondary: #606060;
24826
- --cds-active-secondary: #393939;
24827
- --cds-hover-tertiary: #f4f4f4;
24828
- --cds-active-tertiary: #c6c6c6;
24829
- --cds-hover-ui: #353535;
24830
- --cds-hover-light-ui: #4c4c4c;
24831
- --cds-hover-selected-ui: #4c4c4c;
24832
- --cds-active-ui: #525252;
24833
- --cds-active-light-ui: #6f6f6f;
24834
- --cds-selected-ui: #393939;
24835
- --cds-selected-light-ui: #525252;
24836
- --cds-inverse-hover-ui: #e5e5e5;
24837
- --cds-hover-danger: #b81921;
24838
- --cds-active-danger: #750e13;
24839
- --cds-hover-row: #353535;
24840
- --cds-visited-link: #be95ff;
24841
- --cds-disabled-01: #262626;
24842
- --cds-disabled-02: #525252;
24843
- --cds-disabled-03: #8d8d8d;
24844
- --cds-highlight: #002d9c;
24845
- --cds-decorative-01: #525252;
24846
- --cds-button-separator: #161616;
24847
- --cds-skeleton-01: #353535;
24848
- --cds-skeleton-02: #525252;
24849
- --cds-background: #161616;
24850
- --cds-layer: #262626;
24851
- --cds-layer-accent: #393939;
24852
- --cds-layer-accent-hover: #474747;
24853
- --cds-layer-accent-active: #6f6f6f;
24854
- --cds-field: #262626;
24855
- --cds-background-inverse: #f4f4f4;
24856
- --cds-background-brand: #0f62fe;
24857
- --cds-interactive: #4589ff;
24858
- --cds-border-subtle: #393939;
24859
- --cds-border-strong: #6f6f6f;
24860
- --cds-border-inverse: #f4f4f4;
24861
- --cds-border-interactive: #4589ff;
24862
- --cds-text-primary: #f4f4f4;
24863
- --cds-text-secondary: #c6c6c6;
24864
- --cds-text-placeholder: #6f6f6f;
24865
- --cds-text-helper: #8d8d8d;
24866
- --cds-text-on-color: #ffffff;
24867
- --cds-text-inverse: #161616;
24868
- --cds-link-primary: #78a9ff;
24869
- --cds-link-secondary: #a6c8ff;
24870
- --cds-link-visited: #be95ff;
24871
- --cds-link-inverse: #0f62fe;
24872
- --cds-icon-primary: #f4f4f4;
24873
- --cds-icon-secondary: #c6c6c6;
24874
- --cds-icon-on-color: #ffffff;
24875
- --cds-icon-inverse: #161616;
24876
- --cds-support-error: #fa4d56;
24877
- --cds-support-success: #42be65;
24878
- --cds-support-warning: #f1c21b;
24879
- --cds-support-info: #4589ff;
24880
- --cds-support-error-inverse: #da1e28;
24881
- --cds-support-success-inverse: #24a148;
24882
- --cds-support-warning-inverse: #f1c21b;
24883
- --cds-support-info-inverse: #0f62fe;
24884
- --cds-overlay: rgba(0, 0, 0, 0.65);
24885
- --cds-toggle-off: #6f6f6f;
24886
- --cds-shadow: rgba(0, 0, 0, 0.8);
24887
- --cds-button-primary: #0f62fe;
24888
- --cds-button-secondary: #6f6f6f;
24889
- --cds-button-tertiary: #ffffff;
24890
- --cds-button-danger-primary: #da1e28;
24891
- --cds-button-danger-secondary: #fa4d56;
24892
- --cds-background-active: #525252;
24893
- --cds-layer-active: #525252;
24894
- --cds-button-danger-active: #750e13;
24895
- --cds-button-primary-active: #002d9c;
24896
- --cds-button-secondary-active: #393939;
24897
- --cds-button-tertiary-active: #c6c6c6;
24898
- --cds-focus-inset: #161616;
24899
- --cds-focus-inverse: #0f62fe;
24900
- --cds-background-hover: #353535;
24901
- --cds-layer-hover: #353535;
24902
- --cds-field-hover: #353535;
24903
- --cds-background-inverse-hover: #e5e5e5;
24904
- --cds-link-primary-hover: #a6c8ff;
24905
- --cds-button-danger-hover: #b81921;
24906
- --cds-button-primary-hover: #0353e9;
24907
- --cds-button-secondary-hover: #606060;
24908
- --cds-button-tertiary-hover: #f4f4f4;
24909
- --cds-background-selected: #393939;
24910
- --cds-background-selected-hover: #4c4c4c;
24911
- --cds-layer-selected: #393939;
24912
- --cds-layer-selected-hover: #4c4c4c;
24913
- --cds-layer-selected-inverse: #f4f4f4;
24914
- --cds-border-subtle-selected: #525252;
24915
- --cds-border-disabled: #262626;
24916
- --cds-text-disabled: #525252;
24917
- --cds-button-disabled: #525252;
24918
- --cds-icon-disabled: #525252;
24919
- --cds-text-on-color-disabled: #8d8d8d;
24920
- --cds-icon-on-color-disabled: #8d8d8d;
24921
- --cds-layer-selected-disabled: #8d8d8d;
24922
- --cds-skeleton-background: #353535;
24923
- --cds-skeleton-element: #525252;
24924
- --cds-brand-01: #0f62fe;
24925
- --cds-brand-02: #6f6f6f;
24926
- --cds-brand-03: #ffffff;
24927
- --cds-active-01: #525252;
24928
- --cds-hover-field: #353535;
24929
- --cds-danger: #da1e28;
24930
- --cds-caption-01-font-size: 0.75rem;
24931
- --cds-caption-01-font-weight: 400;
24932
- --cds-caption-01-line-height: 1.33333;
24933
- --cds-caption-01-letter-spacing: 0.32px;
24934
- --cds-caption-02-font-size: 0.875rem;
24935
- --cds-caption-02-font-weight: 400;
24936
- --cds-caption-02-line-height: 1.28572;
24937
- --cds-caption-02-letter-spacing: 0.32px;
24938
- --cds-label-01-font-size: 0.75rem;
24939
- --cds-label-01-font-weight: 400;
24940
- --cds-label-01-line-height: 1.33333;
24941
- --cds-label-01-letter-spacing: 0.32px;
24942
- --cds-label-02-font-size: 0.875rem;
24943
- --cds-label-02-font-weight: 400;
24944
- --cds-label-02-line-height: 1.28572;
24945
- --cds-label-02-letter-spacing: 0.16px;
24946
- --cds-helper-text-01-font-size: 0.75rem;
24947
- --cds-helper-text-01-line-height: 1.33333;
24948
- --cds-helper-text-01-letter-spacing: 0.32px;
24949
- --cds-helper-text-02-font-size: 0.875rem;
24950
- --cds-helper-text-02-line-height: 1.28572;
24951
- --cds-helper-text-02-letter-spacing: 0.16px;
24952
- --cds-body-short-01-font-size: 0.875rem;
24953
- --cds-body-short-01-font-weight: 400;
24954
- --cds-body-short-01-line-height: 1.28572;
24955
- --cds-body-short-01-letter-spacing: 0.16px;
24956
- --cds-body-long-01-font-size: 0.875rem;
24957
- --cds-body-long-01-font-weight: 400;
24958
- --cds-body-long-01-line-height: 1.42857;
24959
- --cds-body-long-01-letter-spacing: 0.16px;
24960
- --cds-body-short-02-font-size: 1rem;
24961
- --cds-body-short-02-font-weight: 400;
24962
- --cds-body-short-02-line-height: 1.375;
24963
- --cds-body-short-02-letter-spacing: 0;
24964
- --cds-body-long-02-font-size: 1rem;
24965
- --cds-body-long-02-font-weight: 400;
24966
- --cds-body-long-02-line-height: 1.5;
24967
- --cds-body-long-02-letter-spacing: 0;
24968
- --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
24969
- --cds-code-01-font-size: 0.75rem;
24970
- --cds-code-01-font-weight: 400;
24971
- --cds-code-01-line-height: 1.33333;
24972
- --cds-code-01-letter-spacing: 0.32px;
24973
- --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
24974
- --cds-code-02-font-size: 0.875rem;
24975
- --cds-code-02-font-weight: 400;
24976
- --cds-code-02-line-height: 1.42857;
24977
- --cds-code-02-letter-spacing: 0.32px;
24978
- --cds-heading-01-font-size: 0.875rem;
24979
- --cds-heading-01-font-weight: 600;
24980
- --cds-heading-01-line-height: 1.42857;
24981
- --cds-heading-01-letter-spacing: 0.16px;
24982
- --cds-productive-heading-01-font-size: 0.875rem;
24983
- --cds-productive-heading-01-font-weight: 600;
24984
- --cds-productive-heading-01-line-height: 1.28572;
24985
- --cds-productive-heading-01-letter-spacing: 0.16px;
24986
- --cds-heading-02-font-size: 1rem;
24987
- --cds-heading-02-font-weight: 600;
24988
- --cds-heading-02-line-height: 1.5;
24989
- --cds-heading-02-letter-spacing: 0;
24990
- --cds-productive-heading-02-font-size: 1rem;
24991
- --cds-productive-heading-02-font-weight: 600;
24992
- --cds-productive-heading-02-line-height: 1.375;
24993
- --cds-productive-heading-02-letter-spacing: 0;
24994
- --cds-productive-heading-03-font-size: 1.25rem;
24995
- --cds-productive-heading-03-font-weight: 400;
24996
- --cds-productive-heading-03-line-height: 1.4;
24997
- --cds-productive-heading-03-letter-spacing: 0;
24998
- --cds-productive-heading-04-font-size: 1.75rem;
24999
- --cds-productive-heading-04-font-weight: 400;
25000
- --cds-productive-heading-04-line-height: 1.28572;
25001
- --cds-productive-heading-04-letter-spacing: 0;
25002
- --cds-productive-heading-05-font-size: 2rem;
25003
- --cds-productive-heading-05-font-weight: 400;
25004
- --cds-productive-heading-05-line-height: 1.25;
25005
- --cds-productive-heading-05-letter-spacing: 0;
25006
- --cds-productive-heading-06-font-size: 2.625rem;
25007
- --cds-productive-heading-06-font-weight: 300;
25008
- --cds-productive-heading-06-line-height: 1.199;
25009
- --cds-productive-heading-06-letter-spacing: 0;
25010
- --cds-productive-heading-07-font-size: 3.375rem;
25011
- --cds-productive-heading-07-font-weight: 300;
25012
- --cds-productive-heading-07-line-height: 1.199;
25013
- --cds-productive-heading-07-letter-spacing: 0;
25014
- --cds-expressive-heading-01-font-size: 0.875rem;
25015
- --cds-expressive-heading-01-font-weight: 600;
25016
- --cds-expressive-heading-01-line-height: 1.25;
25017
- --cds-expressive-heading-01-letter-spacing: 0.16px;
25018
- --cds-expressive-heading-02-font-size: 1rem;
25019
- --cds-expressive-heading-02-font-weight: 600;
25020
- --cds-expressive-heading-02-line-height: 1.5;
25021
- --cds-expressive-heading-02-letter-spacing: 0;
25022
- --cds-expressive-heading-03-font-size: 1.25rem;
25023
- --cds-expressive-heading-03-font-weight: 400;
25024
- --cds-expressive-heading-03-line-height: 1.4;
25025
- --cds-expressive-heading-03-letter-spacing: 0;
25026
- --cds-expressive-heading-04-font-size: 1.75rem;
25027
- --cds-expressive-heading-04-font-weight: 400;
25028
- --cds-expressive-heading-04-line-height: 1.28572;
25029
- --cds-expressive-heading-04-letter-spacing: 0;
25030
- --cds-expressive-heading-05-font-size: 2rem;
25031
- --cds-expressive-heading-05-font-weight: 400;
25032
- --cds-expressive-heading-05-line-height: 1.25;
25033
- --cds-expressive-heading-05-letter-spacing: 0;
25034
- --cds-expressive-heading-06-font-size: 2rem;
25035
- --cds-expressive-heading-06-font-weight: 600;
25036
- --cds-expressive-heading-06-line-height: 1.25;
25037
- --cds-expressive-heading-06-letter-spacing: 0;
25038
- --cds-expressive-paragraph-01-font-size: 1.5rem;
25039
- --cds-expressive-paragraph-01-font-weight: 300;
25040
- --cds-expressive-paragraph-01-line-height: 1.334;
25041
- --cds-expressive-paragraph-01-letter-spacing: 0;
25042
- --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25043
- --cds-quotation-01-font-size: 1.25rem;
25044
- --cds-quotation-01-font-weight: 400;
25045
- --cds-quotation-01-line-height: 1.3;
25046
- --cds-quotation-01-letter-spacing: 0;
25047
- --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25048
- --cds-quotation-02-font-size: 2rem;
25049
- --cds-quotation-02-font-weight: 300;
25050
- --cds-quotation-02-line-height: 1.25;
25051
- --cds-quotation-02-letter-spacing: 0;
25052
- --cds-display-01-font-size: 2.625rem;
25053
- --cds-display-01-font-weight: 300;
25054
- --cds-display-01-line-height: 1.19;
25055
- --cds-display-01-letter-spacing: 0;
25056
- --cds-display-02-font-size: 2.625rem;
25057
- --cds-display-02-font-weight: 600;
25058
- --cds-display-02-line-height: 1.19;
25059
- --cds-display-02-letter-spacing: 0;
25060
- --cds-display-03-font-size: 2.625rem;
25061
- --cds-display-03-font-weight: 300;
25062
- --cds-display-03-line-height: 1.19;
25063
- --cds-display-03-letter-spacing: 0;
25064
- --cds-display-04-font-size: 2.625rem;
25065
- --cds-display-04-font-weight: 300;
25066
- --cds-display-04-line-height: 1.19;
25067
- --cds-display-04-letter-spacing: 0;
25068
- --cds-legal-01-font-size: 0.75rem;
25069
- --cds-legal-01-font-weight: 400;
25070
- --cds-legal-01-line-height: 1.33333;
25071
- --cds-legal-01-letter-spacing: 0.32px;
25072
- --cds-legal-02-font-size: 0.875rem;
25073
- --cds-legal-02-font-weight: 400;
25074
- --cds-legal-02-line-height: 1.28572;
25075
- --cds-legal-02-letter-spacing: 0.16px;
25076
- --cds-body-compact-01-font-size: 0.875rem;
25077
- --cds-body-compact-01-font-weight: 400;
25078
- --cds-body-compact-01-line-height: 1.28572;
25079
- --cds-body-compact-01-letter-spacing: 0.16px;
25080
- --cds-body-compact-02-font-size: 1rem;
25081
- --cds-body-compact-02-font-weight: 400;
25082
- --cds-body-compact-02-line-height: 1.375;
25083
- --cds-body-compact-02-letter-spacing: 0;
25084
- --cds-body-01-font-size: 0.875rem;
25085
- --cds-body-01-font-weight: 400;
25086
- --cds-body-01-line-height: 1.42857;
25087
- --cds-body-01-letter-spacing: 0.16px;
25088
- --cds-body-02-font-size: 1rem;
25089
- --cds-body-02-font-weight: 400;
25090
- --cds-body-02-line-height: 1.5;
25091
- --cds-body-02-letter-spacing: 0;
25092
- --cds-heading-compact-01-font-size: 0.875rem;
25093
- --cds-heading-compact-01-font-weight: 600;
25094
- --cds-heading-compact-01-line-height: 1.28572;
25095
- --cds-heading-compact-01-letter-spacing: 0.16px;
25096
- --cds-heading-compact-02-font-size: 1rem;
25097
- --cds-heading-compact-02-font-weight: 600;
25098
- --cds-heading-compact-02-line-height: 1.375;
25099
- --cds-heading-compact-02-letter-spacing: 0;
25100
- --cds-heading-03-font-size: 1.25rem;
25101
- --cds-heading-03-font-weight: 400;
25102
- --cds-heading-03-line-height: 1.4;
25103
- --cds-heading-03-letter-spacing: 0;
25104
- --cds-heading-04-font-size: 1.75rem;
25105
- --cds-heading-04-font-weight: 400;
25106
- --cds-heading-04-line-height: 1.28572;
25107
- --cds-heading-04-letter-spacing: 0;
25108
- --cds-heading-05-font-size: 2rem;
25109
- --cds-heading-05-font-weight: 400;
25110
- --cds-heading-05-line-height: 1.25;
25111
- --cds-heading-05-letter-spacing: 0;
25112
- --cds-heading-06-font-size: 2.625rem;
25113
- --cds-heading-06-font-weight: 300;
25114
- --cds-heading-06-line-height: 1.199;
25115
- --cds-heading-06-letter-spacing: 0;
25116
- --cds-heading-07-font-size: 3.375rem;
25117
- --cds-heading-07-font-weight: 300;
25118
- --cds-heading-07-line-height: 1.199;
25119
- --cds-heading-07-letter-spacing: 0;
25120
- --cds-fluid-heading-03-font-size: 1.25rem;
25121
- --cds-fluid-heading-03-font-weight: 400;
25122
- --cds-fluid-heading-03-line-height: 1.4;
25123
- --cds-fluid-heading-03-letter-spacing: 0;
25124
- --cds-fluid-heading-04-font-size: 1.75rem;
25125
- --cds-fluid-heading-04-font-weight: 400;
25126
- --cds-fluid-heading-04-line-height: 1.28572;
25127
- --cds-fluid-heading-04-letter-spacing: 0;
25128
- --cds-fluid-heading-05-font-size: 2rem;
25129
- --cds-fluid-heading-05-font-weight: 400;
25130
- --cds-fluid-heading-05-line-height: 1.25;
25131
- --cds-fluid-heading-05-letter-spacing: 0;
25132
- --cds-fluid-heading-06-font-size: 2rem;
25133
- --cds-fluid-heading-06-font-weight: 600;
25134
- --cds-fluid-heading-06-line-height: 1.25;
25135
- --cds-fluid-heading-06-letter-spacing: 0;
25136
- --cds-fluid-paragraph-01-font-size: 1.5rem;
25137
- --cds-fluid-paragraph-01-font-weight: 300;
25138
- --cds-fluid-paragraph-01-line-height: 1.334;
25139
- --cds-fluid-paragraph-01-letter-spacing: 0;
25140
- --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25141
- --cds-fluid-quotation-01-font-size: 1.25rem;
25142
- --cds-fluid-quotation-01-font-weight: 400;
25143
- --cds-fluid-quotation-01-line-height: 1.3;
25144
- --cds-fluid-quotation-01-letter-spacing: 0;
25145
- --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25146
- --cds-fluid-quotation-02-font-size: 2rem;
25147
- --cds-fluid-quotation-02-font-weight: 300;
25148
- --cds-fluid-quotation-02-line-height: 1.25;
25149
- --cds-fluid-quotation-02-letter-spacing: 0;
25150
- --cds-fluid-display-01-font-size: 2.625rem;
25151
- --cds-fluid-display-01-font-weight: 300;
25152
- --cds-fluid-display-01-line-height: 1.19;
25153
- --cds-fluid-display-01-letter-spacing: 0;
25154
- --cds-fluid-display-02-font-size: 2.625rem;
25155
- --cds-fluid-display-02-font-weight: 600;
25156
- --cds-fluid-display-02-line-height: 1.19;
25157
- --cds-fluid-display-02-letter-spacing: 0;
25158
- --cds-fluid-display-03-font-size: 2.625rem;
25159
- --cds-fluid-display-03-font-weight: 300;
25160
- --cds-fluid-display-03-line-height: 1.19;
25161
- --cds-fluid-display-03-letter-spacing: 0;
25162
- --cds-fluid-display-04-font-size: 2.625rem;
25163
- --cds-fluid-display-04-font-weight: 300;
25164
- --cds-fluid-display-04-line-height: 1.19;
25165
- --cds-fluid-display-04-letter-spacing: 0;
25166
- --cds-spacing-01: 0.125rem;
25167
- --cds-spacing-02: 0.25rem;
25168
- --cds-spacing-03: 0.5rem;
25169
- --cds-spacing-04: 0.75rem;
25170
- --cds-spacing-05: 1rem;
25171
- --cds-spacing-06: 1.5rem;
25172
- --cds-spacing-07: 2rem;
25173
- --cds-spacing-08: 2.5rem;
25174
- --cds-spacing-09: 3rem;
25175
- --cds-spacing-10: 4rem;
25176
- --cds-spacing-11: 5rem;
25177
- --cds-spacing-12: 6rem;
25178
- --cds-spacing-13: 10rem;
25179
- --cds-fluid-spacing-01: 0;
25180
- --cds-fluid-spacing-02: 2vw;
25181
- --cds-fluid-spacing-03: 5vw;
25182
- --cds-fluid-spacing-04: 10vw;
25183
- --cds-layout-01: 1rem;
25184
- --cds-layout-02: 1.5rem;
25185
- --cds-layout-03: 2rem;
25186
- --cds-layout-04: 3rem;
25187
- --cds-layout-05: 4rem;
25188
- --cds-layout-06: 6rem;
25189
- --cds-layout-07: 10rem;
25190
- --cds-container-01: 1.5rem;
25191
- --cds-container-02: 2rem;
25192
- --cds-container-03: 2.5rem;
25193
- --cds-container-04: 3rem;
25194
- --cds-container-05: 4rem;
25195
- --cds-size-xsmall: 1.5rem;
25196
- --cds-size-small: 2rem;
25197
- --cds-size-medium: 2.5rem;
25198
- --cds-size-large: 3rem;
25199
- --cds-size-xlarge: 4rem;
25200
- --cds-size-2XLarge: 5rem;
25201
- --cds-icon-size-01: 1rem;
25202
- --cds-icon-size-02: 1.25rem;
25203
- height: 1.25rem;
25204
- padding-top: 0;
25205
- padding-right: 0.1875rem;
25206
- border-width: 0.0625rem;
25207
- border-style: solid;
25208
- border-radius: var(--cds-spacing-04, 0.75rem);
25209
- white-space: nowrap;
25210
- border-color: var(--cds-icon-03, #ffffff);
25211
- background-color: var(--cds-icon-03, #ffffff);
25212
- color: var(--cds-inverse-01, #ffffff);
25213
- }
25214
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
25215
- cursor: pointer;
25216
- }
25217
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
25218
- margin: 0.0625rem 0 0 0;
25219
- vertical-align: text-top;
25220
- }
25221
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
25222
- transform: rotate(180deg);
25223
- }
25224
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
25225
- background-color: transparent;
25226
- color: var(--cds-text-01, #161616);
25227
- }
25228
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
25229
- --cds-interactive-01: #0f62fe;
25230
- --cds-interactive-02: #6f6f6f;
25231
- --cds-interactive-03: #ffffff;
25232
- --cds-interactive-04: #4589ff;
25233
- --cds-ui-background: #161616;
25234
- --cds-ui-01: #262626;
25235
- --cds-ui-02: #393939;
25236
- --cds-ui-03: #393939;
25237
- --cds-ui-04: #6f6f6f;
25238
- --cds-ui-05: #f4f4f4;
25239
- --cds-text-01: #f4f4f4;
25240
- --cds-text-02: #c6c6c6;
25241
- --cds-text-03: #6f6f6f;
25242
- --cds-text-04: #ffffff;
25243
- --cds-text-05: #8d8d8d;
25244
- --cds-text-error: #ff8389;
25245
- --cds-icon-01: #f4f4f4;
25246
- --cds-icon-02: #c6c6c6;
25247
- --cds-icon-03: #ffffff;
25248
- --cds-link-01: #78a9ff;
25249
- --cds-link-02: #a6c8ff;
25250
- --cds-inverse-link: #0f62fe;
25251
- --cds-field-01: #262626;
25252
- --cds-field-02: #393939;
25253
- --cds-inverse-01: #161616;
25254
- --cds-inverse-02: #f4f4f4;
25255
- --cds-support-01: #fa4d56;
25256
- --cds-support-02: #42be65;
25257
- --cds-support-03: #f1c21b;
25258
- --cds-support-04: #4589ff;
25259
- --cds-inverse-support-01: #da1e28;
25260
- --cds-inverse-support-02: #24a148;
25261
- --cds-inverse-support-03: #f1c21b;
25262
- --cds-inverse-support-04: #0f62fe;
25263
- --cds-overlay-01: rgba(0, 0, 0, 0.65);
25264
- --cds-danger-01: #da1e28;
25265
- --cds-danger-02: #fa4d56;
25266
- --cds-focus: #ffffff;
25267
- --cds-inverse-focus-ui: #0f62fe;
25268
- --cds-hover-primary: #0353e9;
25269
- --cds-active-primary: #002d9c;
25270
- --cds-hover-primary-text: #a6c8ff;
25271
- --cds-hover-secondary: #606060;
25272
- --cds-active-secondary: #393939;
25273
- --cds-hover-tertiary: #f4f4f4;
25274
- --cds-active-tertiary: #c6c6c6;
25275
- --cds-hover-ui: #353535;
25276
- --cds-hover-light-ui: #4c4c4c;
25277
- --cds-hover-selected-ui: #4c4c4c;
25278
- --cds-active-ui: #525252;
25279
- --cds-active-light-ui: #6f6f6f;
25280
- --cds-selected-ui: #393939;
25281
- --cds-selected-light-ui: #525252;
25282
- --cds-inverse-hover-ui: #e5e5e5;
25283
- --cds-hover-danger: #b81921;
25284
- --cds-active-danger: #750e13;
25285
- --cds-hover-row: #353535;
25286
- --cds-visited-link: #be95ff;
25287
- --cds-disabled-01: #262626;
25288
- --cds-disabled-02: #525252;
25289
- --cds-disabled-03: #8d8d8d;
25290
- --cds-highlight: #002d9c;
25291
- --cds-decorative-01: #525252;
25292
- --cds-button-separator: #161616;
25293
- --cds-skeleton-01: #353535;
25294
- --cds-skeleton-02: #525252;
25295
- --cds-background: #161616;
25296
- --cds-layer: #262626;
25297
- --cds-layer-accent: #393939;
25298
- --cds-layer-accent-hover: #474747;
25299
- --cds-layer-accent-active: #6f6f6f;
25300
- --cds-field: #262626;
25301
- --cds-background-inverse: #f4f4f4;
25302
- --cds-background-brand: #0f62fe;
25303
- --cds-interactive: #4589ff;
25304
- --cds-border-subtle: #393939;
25305
- --cds-border-strong: #6f6f6f;
25306
- --cds-border-inverse: #f4f4f4;
25307
- --cds-border-interactive: #4589ff;
25308
- --cds-text-primary: #f4f4f4;
25309
- --cds-text-secondary: #c6c6c6;
25310
- --cds-text-placeholder: #6f6f6f;
25311
- --cds-text-helper: #8d8d8d;
25312
- --cds-text-on-color: #ffffff;
25313
- --cds-text-inverse: #161616;
25314
- --cds-link-primary: #78a9ff;
25315
- --cds-link-secondary: #a6c8ff;
25316
- --cds-link-visited: #be95ff;
25317
- --cds-link-inverse: #0f62fe;
25318
- --cds-icon-primary: #f4f4f4;
25319
- --cds-icon-secondary: #c6c6c6;
25320
- --cds-icon-on-color: #ffffff;
25321
- --cds-icon-inverse: #161616;
25322
- --cds-support-error: #fa4d56;
25323
- --cds-support-success: #42be65;
25324
- --cds-support-warning: #f1c21b;
25325
- --cds-support-info: #4589ff;
25326
- --cds-support-error-inverse: #da1e28;
25327
- --cds-support-success-inverse: #24a148;
25328
- --cds-support-warning-inverse: #f1c21b;
25329
- --cds-support-info-inverse: #0f62fe;
25330
- --cds-overlay: rgba(0, 0, 0, 0.65);
25331
- --cds-toggle-off: #6f6f6f;
25332
- --cds-shadow: rgba(0, 0, 0, 0.8);
25333
- --cds-button-primary: #0f62fe;
25334
- --cds-button-secondary: #6f6f6f;
25335
- --cds-button-tertiary: #ffffff;
25336
- --cds-button-danger-primary: #da1e28;
25337
- --cds-button-danger-secondary: #fa4d56;
25338
- --cds-background-active: #525252;
25339
- --cds-layer-active: #525252;
25340
- --cds-button-danger-active: #750e13;
25341
- --cds-button-primary-active: #002d9c;
25342
- --cds-button-secondary-active: #393939;
25343
- --cds-button-tertiary-active: #c6c6c6;
25344
- --cds-focus-inset: #161616;
25345
- --cds-focus-inverse: #0f62fe;
25346
- --cds-background-hover: #353535;
25347
- --cds-layer-hover: #353535;
25348
- --cds-field-hover: #353535;
25349
- --cds-background-inverse-hover: #e5e5e5;
25350
- --cds-link-primary-hover: #a6c8ff;
25351
- --cds-button-danger-hover: #b81921;
25352
- --cds-button-primary-hover: #0353e9;
25353
- --cds-button-secondary-hover: #606060;
25354
- --cds-button-tertiary-hover: #f4f4f4;
25355
- --cds-background-selected: #393939;
25356
- --cds-background-selected-hover: #4c4c4c;
25357
- --cds-layer-selected: #393939;
25358
- --cds-layer-selected-hover: #4c4c4c;
25359
- --cds-layer-selected-inverse: #f4f4f4;
25360
- --cds-border-subtle-selected: #525252;
25361
- --cds-border-disabled: #262626;
25362
- --cds-text-disabled: #525252;
25363
- --cds-button-disabled: #525252;
25364
- --cds-icon-disabled: #525252;
25365
- --cds-text-on-color-disabled: #8d8d8d;
25366
- --cds-icon-on-color-disabled: #8d8d8d;
25367
- --cds-layer-selected-disabled: #8d8d8d;
25368
- --cds-skeleton-background: #353535;
25369
- --cds-skeleton-element: #525252;
25370
- --cds-brand-01: #0f62fe;
25371
- --cds-brand-02: #6f6f6f;
25372
- --cds-brand-03: #ffffff;
25373
- --cds-active-01: #525252;
25374
- --cds-hover-field: #353535;
25375
- --cds-danger: #da1e28;
25376
- --cds-caption-01-font-size: 0.75rem;
25377
- --cds-caption-01-font-weight: 400;
25378
- --cds-caption-01-line-height: 1.33333;
25379
- --cds-caption-01-letter-spacing: 0.32px;
25380
- --cds-caption-02-font-size: 0.875rem;
25381
- --cds-caption-02-font-weight: 400;
25382
- --cds-caption-02-line-height: 1.28572;
25383
- --cds-caption-02-letter-spacing: 0.32px;
25384
- --cds-label-01-font-size: 0.75rem;
25385
- --cds-label-01-font-weight: 400;
25386
- --cds-label-01-line-height: 1.33333;
25387
- --cds-label-01-letter-spacing: 0.32px;
25388
- --cds-label-02-font-size: 0.875rem;
25389
- --cds-label-02-font-weight: 400;
25390
- --cds-label-02-line-height: 1.28572;
25391
- --cds-label-02-letter-spacing: 0.16px;
25392
- --cds-helper-text-01-font-size: 0.75rem;
25393
- --cds-helper-text-01-line-height: 1.33333;
25394
- --cds-helper-text-01-letter-spacing: 0.32px;
25395
- --cds-helper-text-02-font-size: 0.875rem;
25396
- --cds-helper-text-02-line-height: 1.28572;
25397
- --cds-helper-text-02-letter-spacing: 0.16px;
25398
- --cds-body-short-01-font-size: 0.875rem;
25399
- --cds-body-short-01-font-weight: 400;
25400
- --cds-body-short-01-line-height: 1.28572;
25401
- --cds-body-short-01-letter-spacing: 0.16px;
25402
- --cds-body-long-01-font-size: 0.875rem;
25403
- --cds-body-long-01-font-weight: 400;
25404
- --cds-body-long-01-line-height: 1.42857;
25405
- --cds-body-long-01-letter-spacing: 0.16px;
25406
- --cds-body-short-02-font-size: 1rem;
25407
- --cds-body-short-02-font-weight: 400;
25408
- --cds-body-short-02-line-height: 1.375;
25409
- --cds-body-short-02-letter-spacing: 0;
25410
- --cds-body-long-02-font-size: 1rem;
25411
- --cds-body-long-02-font-weight: 400;
25412
- --cds-body-long-02-line-height: 1.5;
25413
- --cds-body-long-02-letter-spacing: 0;
25414
- --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
25415
- --cds-code-01-font-size: 0.75rem;
25416
- --cds-code-01-font-weight: 400;
25417
- --cds-code-01-line-height: 1.33333;
25418
- --cds-code-01-letter-spacing: 0.32px;
25419
- --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
25420
- --cds-code-02-font-size: 0.875rem;
25421
- --cds-code-02-font-weight: 400;
25422
- --cds-code-02-line-height: 1.42857;
25423
- --cds-code-02-letter-spacing: 0.32px;
25424
- --cds-heading-01-font-size: 0.875rem;
25425
- --cds-heading-01-font-weight: 600;
25426
- --cds-heading-01-line-height: 1.42857;
25427
- --cds-heading-01-letter-spacing: 0.16px;
25428
- --cds-productive-heading-01-font-size: 0.875rem;
25429
- --cds-productive-heading-01-font-weight: 600;
25430
- --cds-productive-heading-01-line-height: 1.28572;
25431
- --cds-productive-heading-01-letter-spacing: 0.16px;
25432
- --cds-heading-02-font-size: 1rem;
25433
- --cds-heading-02-font-weight: 600;
25434
- --cds-heading-02-line-height: 1.5;
25435
- --cds-heading-02-letter-spacing: 0;
25436
- --cds-productive-heading-02-font-size: 1rem;
25437
- --cds-productive-heading-02-font-weight: 600;
25438
- --cds-productive-heading-02-line-height: 1.375;
25439
- --cds-productive-heading-02-letter-spacing: 0;
25440
- --cds-productive-heading-03-font-size: 1.25rem;
25441
- --cds-productive-heading-03-font-weight: 400;
25442
- --cds-productive-heading-03-line-height: 1.4;
25443
- --cds-productive-heading-03-letter-spacing: 0;
25444
- --cds-productive-heading-04-font-size: 1.75rem;
25445
- --cds-productive-heading-04-font-weight: 400;
25446
- --cds-productive-heading-04-line-height: 1.28572;
25447
- --cds-productive-heading-04-letter-spacing: 0;
25448
- --cds-productive-heading-05-font-size: 2rem;
25449
- --cds-productive-heading-05-font-weight: 400;
25450
- --cds-productive-heading-05-line-height: 1.25;
25451
- --cds-productive-heading-05-letter-spacing: 0;
25452
- --cds-productive-heading-06-font-size: 2.625rem;
25453
- --cds-productive-heading-06-font-weight: 300;
25454
- --cds-productive-heading-06-line-height: 1.199;
25455
- --cds-productive-heading-06-letter-spacing: 0;
25456
- --cds-productive-heading-07-font-size: 3.375rem;
25457
- --cds-productive-heading-07-font-weight: 300;
25458
- --cds-productive-heading-07-line-height: 1.199;
25459
- --cds-productive-heading-07-letter-spacing: 0;
25460
- --cds-expressive-heading-01-font-size: 0.875rem;
25461
- --cds-expressive-heading-01-font-weight: 600;
25462
- --cds-expressive-heading-01-line-height: 1.25;
25463
- --cds-expressive-heading-01-letter-spacing: 0.16px;
25464
- --cds-expressive-heading-02-font-size: 1rem;
25465
- --cds-expressive-heading-02-font-weight: 600;
25466
- --cds-expressive-heading-02-line-height: 1.5;
25467
- --cds-expressive-heading-02-letter-spacing: 0;
25468
- --cds-expressive-heading-03-font-size: 1.25rem;
25469
- --cds-expressive-heading-03-font-weight: 400;
25470
- --cds-expressive-heading-03-line-height: 1.4;
25471
- --cds-expressive-heading-03-letter-spacing: 0;
25472
- --cds-expressive-heading-04-font-size: 1.75rem;
25473
- --cds-expressive-heading-04-font-weight: 400;
25474
- --cds-expressive-heading-04-line-height: 1.28572;
25475
- --cds-expressive-heading-04-letter-spacing: 0;
25476
- --cds-expressive-heading-05-font-size: 2rem;
25477
- --cds-expressive-heading-05-font-weight: 400;
25478
- --cds-expressive-heading-05-line-height: 1.25;
25479
- --cds-expressive-heading-05-letter-spacing: 0;
25480
- --cds-expressive-heading-06-font-size: 2rem;
25481
- --cds-expressive-heading-06-font-weight: 600;
25482
- --cds-expressive-heading-06-line-height: 1.25;
25483
- --cds-expressive-heading-06-letter-spacing: 0;
25484
- --cds-expressive-paragraph-01-font-size: 1.5rem;
25485
- --cds-expressive-paragraph-01-font-weight: 300;
25486
- --cds-expressive-paragraph-01-line-height: 1.334;
25487
- --cds-expressive-paragraph-01-letter-spacing: 0;
25488
- --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25489
- --cds-quotation-01-font-size: 1.25rem;
25490
- --cds-quotation-01-font-weight: 400;
25491
- --cds-quotation-01-line-height: 1.3;
25492
- --cds-quotation-01-letter-spacing: 0;
25493
- --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25494
- --cds-quotation-02-font-size: 2rem;
25495
- --cds-quotation-02-font-weight: 300;
25496
- --cds-quotation-02-line-height: 1.25;
25497
- --cds-quotation-02-letter-spacing: 0;
25498
- --cds-display-01-font-size: 2.625rem;
25499
- --cds-display-01-font-weight: 300;
25500
- --cds-display-01-line-height: 1.19;
25501
- --cds-display-01-letter-spacing: 0;
25502
- --cds-display-02-font-size: 2.625rem;
25503
- --cds-display-02-font-weight: 600;
25504
- --cds-display-02-line-height: 1.19;
25505
- --cds-display-02-letter-spacing: 0;
25506
- --cds-display-03-font-size: 2.625rem;
25507
- --cds-display-03-font-weight: 300;
25508
- --cds-display-03-line-height: 1.19;
25509
- --cds-display-03-letter-spacing: 0;
25510
- --cds-display-04-font-size: 2.625rem;
25511
- --cds-display-04-font-weight: 300;
25512
- --cds-display-04-line-height: 1.19;
25513
- --cds-display-04-letter-spacing: 0;
25514
- --cds-legal-01-font-size: 0.75rem;
25515
- --cds-legal-01-font-weight: 400;
25516
- --cds-legal-01-line-height: 1.33333;
25517
- --cds-legal-01-letter-spacing: 0.32px;
25518
- --cds-legal-02-font-size: 0.875rem;
25519
- --cds-legal-02-font-weight: 400;
25520
- --cds-legal-02-line-height: 1.28572;
25521
- --cds-legal-02-letter-spacing: 0.16px;
25522
- --cds-body-compact-01-font-size: 0.875rem;
25523
- --cds-body-compact-01-font-weight: 400;
25524
- --cds-body-compact-01-line-height: 1.28572;
25525
- --cds-body-compact-01-letter-spacing: 0.16px;
25526
- --cds-body-compact-02-font-size: 1rem;
25527
- --cds-body-compact-02-font-weight: 400;
25528
- --cds-body-compact-02-line-height: 1.375;
25529
- --cds-body-compact-02-letter-spacing: 0;
25530
- --cds-body-01-font-size: 0.875rem;
25531
- --cds-body-01-font-weight: 400;
25532
- --cds-body-01-line-height: 1.42857;
25533
- --cds-body-01-letter-spacing: 0.16px;
25534
- --cds-body-02-font-size: 1rem;
25535
- --cds-body-02-font-weight: 400;
25536
- --cds-body-02-line-height: 1.5;
25537
- --cds-body-02-letter-spacing: 0;
25538
- --cds-heading-compact-01-font-size: 0.875rem;
25539
- --cds-heading-compact-01-font-weight: 600;
25540
- --cds-heading-compact-01-line-height: 1.28572;
25541
- --cds-heading-compact-01-letter-spacing: 0.16px;
25542
- --cds-heading-compact-02-font-size: 1rem;
25543
- --cds-heading-compact-02-font-weight: 600;
25544
- --cds-heading-compact-02-line-height: 1.375;
25545
- --cds-heading-compact-02-letter-spacing: 0;
25546
- --cds-heading-03-font-size: 1.25rem;
25547
- --cds-heading-03-font-weight: 400;
25548
- --cds-heading-03-line-height: 1.4;
25549
- --cds-heading-03-letter-spacing: 0;
25550
- --cds-heading-04-font-size: 1.75rem;
25551
- --cds-heading-04-font-weight: 400;
25552
- --cds-heading-04-line-height: 1.28572;
25553
- --cds-heading-04-letter-spacing: 0;
25554
- --cds-heading-05-font-size: 2rem;
25555
- --cds-heading-05-font-weight: 400;
25556
- --cds-heading-05-line-height: 1.25;
25557
- --cds-heading-05-letter-spacing: 0;
25558
- --cds-heading-06-font-size: 2.625rem;
25559
- --cds-heading-06-font-weight: 300;
25560
- --cds-heading-06-line-height: 1.199;
25561
- --cds-heading-06-letter-spacing: 0;
25562
- --cds-heading-07-font-size: 3.375rem;
25563
- --cds-heading-07-font-weight: 300;
25564
- --cds-heading-07-line-height: 1.199;
25565
- --cds-heading-07-letter-spacing: 0;
25566
- --cds-fluid-heading-03-font-size: 1.25rem;
25567
- --cds-fluid-heading-03-font-weight: 400;
25568
- --cds-fluid-heading-03-line-height: 1.4;
25569
- --cds-fluid-heading-03-letter-spacing: 0;
25570
- --cds-fluid-heading-04-font-size: 1.75rem;
25571
- --cds-fluid-heading-04-font-weight: 400;
25572
- --cds-fluid-heading-04-line-height: 1.28572;
25573
- --cds-fluid-heading-04-letter-spacing: 0;
25574
- --cds-fluid-heading-05-font-size: 2rem;
25575
- --cds-fluid-heading-05-font-weight: 400;
25576
- --cds-fluid-heading-05-line-height: 1.25;
25577
- --cds-fluid-heading-05-letter-spacing: 0;
25578
- --cds-fluid-heading-06-font-size: 2rem;
25579
- --cds-fluid-heading-06-font-weight: 600;
25580
- --cds-fluid-heading-06-line-height: 1.25;
25581
- --cds-fluid-heading-06-letter-spacing: 0;
25582
- --cds-fluid-paragraph-01-font-size: 1.5rem;
25583
- --cds-fluid-paragraph-01-font-weight: 300;
25584
- --cds-fluid-paragraph-01-line-height: 1.334;
25585
- --cds-fluid-paragraph-01-letter-spacing: 0;
25586
- --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25587
- --cds-fluid-quotation-01-font-size: 1.25rem;
25588
- --cds-fluid-quotation-01-font-weight: 400;
25589
- --cds-fluid-quotation-01-line-height: 1.3;
25590
- --cds-fluid-quotation-01-letter-spacing: 0;
25591
- --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25592
- --cds-fluid-quotation-02-font-size: 2rem;
25593
- --cds-fluid-quotation-02-font-weight: 300;
25594
- --cds-fluid-quotation-02-line-height: 1.25;
25595
- --cds-fluid-quotation-02-letter-spacing: 0;
25596
- --cds-fluid-display-01-font-size: 2.625rem;
25597
- --cds-fluid-display-01-font-weight: 300;
25598
- --cds-fluid-display-01-line-height: 1.19;
25599
- --cds-fluid-display-01-letter-spacing: 0;
25600
- --cds-fluid-display-02-font-size: 2.625rem;
25601
- --cds-fluid-display-02-font-weight: 600;
25602
- --cds-fluid-display-02-line-height: 1.19;
25603
- --cds-fluid-display-02-letter-spacing: 0;
25604
- --cds-fluid-display-03-font-size: 2.625rem;
25605
- --cds-fluid-display-03-font-weight: 300;
25606
- --cds-fluid-display-03-line-height: 1.19;
25607
- --cds-fluid-display-03-letter-spacing: 0;
25608
- --cds-fluid-display-04-font-size: 2.625rem;
25609
- --cds-fluid-display-04-font-weight: 300;
25610
- --cds-fluid-display-04-line-height: 1.19;
25611
- --cds-fluid-display-04-letter-spacing: 0;
25612
- --cds-spacing-01: 0.125rem;
25613
- --cds-spacing-02: 0.25rem;
25614
- --cds-spacing-03: 0.5rem;
25615
- --cds-spacing-04: 0.75rem;
25616
- --cds-spacing-05: 1rem;
25617
- --cds-spacing-06: 1.5rem;
25618
- --cds-spacing-07: 2rem;
25619
- --cds-spacing-08: 2.5rem;
25620
- --cds-spacing-09: 3rem;
25621
- --cds-spacing-10: 4rem;
25622
- --cds-spacing-11: 5rem;
25623
- --cds-spacing-12: 6rem;
25624
- --cds-spacing-13: 10rem;
25625
- --cds-fluid-spacing-01: 0;
25626
- --cds-fluid-spacing-02: 2vw;
25627
- --cds-fluid-spacing-03: 5vw;
25628
- --cds-fluid-spacing-04: 10vw;
25629
- --cds-layout-01: 1rem;
25630
- --cds-layout-02: 1.5rem;
25631
- --cds-layout-03: 2rem;
25632
- --cds-layout-04: 3rem;
25633
- --cds-layout-05: 4rem;
25634
- --cds-layout-06: 6rem;
25635
- --cds-layout-07: 10rem;
25636
- --cds-container-01: 1.5rem;
25637
- --cds-container-02: 2rem;
25638
- --cds-container-03: 2.5rem;
25639
- --cds-container-04: 3rem;
25640
- --cds-container-05: 4rem;
25641
- --cds-size-xsmall: 1.5rem;
25642
- --cds-size-small: 2rem;
25643
- --cds-size-medium: 2.5rem;
25644
- --cds-size-large: 3rem;
25645
- --cds-size-xlarge: 4rem;
25646
- --cds-size-2XLarge: 5rem;
25647
- --cds-icon-size-01: 1rem;
25648
- --cds-icon-size-02: 1.25rem;
24860
+ height: 1.25rem;
24861
+ padding-top: 0;
24862
+ padding-right: 0.1875rem;
24863
+ border-width: 0.0625rem;
24864
+ border-style: solid;
24865
+ border-color: var(--cds-button-tertiary, #0f62fe);
24866
+ border-radius: var(--cds-spacing-04, 0.75rem);
24867
+ background-color: transparent;
24868
+ color: var(--cds-button-tertiary, #0f62fe);
24869
+ white-space: nowrap;
24870
+ border-color: var(--cds-button-tertiary, #0f62fe);
24871
+ background-color: var(--cds-button-tertiary, #0f62fe);
24872
+ color: var(--cds-text-inverse, #ffffff);
24873
+ }
24874
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
24875
+ border-color: var(--cds-button-tertiary, #0f62fe);
24876
+ background-color: var(--cds-button-tertiary, #0f62fe);
24877
+ color: var(--cds-text-inverse, #ffffff);
24878
+ }
24879
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:focus {
24880
+ border-color: var(--cds-text-inverse, #ffffff);
24881
+ background-color: var(--cds-button-tertiary, #0f62fe);
24882
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24883
+ color: var(--cds-text-inverse, #ffffff);
24884
+ }
24885
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:focus-visible {
24886
+ outline: none;
24887
+ }
24888
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
24889
+ margin: 0.0625rem 0 0 0;
24890
+ vertical-align: text-top;
24891
+ }
24892
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
24893
+ border-color: var(--cds-button-tertiary, #0f62fe);
24894
+ background-color: transparent;
24895
+ color: var(--cds-button-tertiary, #0f62fe);
24896
+ }
24897
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:focus {
24898
+ border-color: var(--cds-text-inverse, #ffffff);
24899
+ background-color: transparent;
24900
+ box-shadow: inset 0 0 0 1px var(--cds-button-tertiary, #0f62fe), 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24901
+ color: var(--cds-button-tertiary, #0f62fe);
24902
+ }
24903
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
24904
+ transform: rotate(180deg);
24905
+ }
24906
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
25649
24907
  font-size: var(--cds-body-long-01-font-size, 0.875rem);
25650
24908
  font-weight: var(--cds-body-long-01-font-weight, 400);
25651
24909
  line-height: var(--cds-body-long-01-line-height, 1.42857);
25652
24910
  letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
25653
24911
  display: block;
25654
24912
  padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
25655
- border-left-width: 0.078125rem;
25656
- border-left-style: solid;
24913
+ border-left: 0.078125rem solid var(--cds-text-01, #161616);
25657
24914
  margin: var(--cds-spacing-02, 0.25rem) 0;
25658
24915
  animation: fade 600ms;
25659
- border-left-color: var(--cds-text-01, #161616);
25660
24916
  color: var(--cds-text-01, #161616);
25661
24917
  }
24918
+ @media (prefers-reduced-motion: reduce) {
24919
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
24920
+ animation: none;
24921
+ }
24922
+ }
25662
24923
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__body a {
25663
24924
  color: var(--cds-link-01, #0f62fe);
25664
24925
  }
@@ -26393,6 +25654,191 @@ th.c4p--datagrid__select-all-toggle-on.button {
26393
25654
  color: #161616 !important;
26394
25655
  }
26395
25656
 
25657
+ /* stylelint-disable declaration-no-important */
25658
+ .c4p--checklist__header {
25659
+ display: flex;
25660
+ padding: var(--cds-spacing-05, 1rem);
25661
+ background-color: var(--cds-ui-01, #f4f4f4);
25662
+ gap: var(--cds-spacing-03, 0.5rem);
25663
+ }
25664
+ .c4p--checklist__chart {
25665
+ position: relative;
25666
+ width: var(--cds-spacing-08, 2.5rem);
25667
+ min-width: var(--cds-spacing-08, 2.5rem);
25668
+ height: var(--cds-spacing-08, 2.5rem);
25669
+ align-self: center;
25670
+ }
25671
+ .c4p--checklist__chart::after {
25672
+ position: absolute;
25673
+ top: var(--cds-spacing-02, 0.25rem);
25674
+ left: var(--cds-spacing-02, 0.25rem);
25675
+ width: var(--cds-spacing-07, 2rem);
25676
+ height: var(--cds-spacing-07, 2rem);
25677
+ border-radius: 50%;
25678
+ background-color: var(--cds-ui-01, #f4f4f4);
25679
+ content: "";
25680
+ }
25681
+ .c4p--checklist__titles {
25682
+ display: flex;
25683
+ flex-direction: column;
25684
+ justify-content: center;
25685
+ }
25686
+ .c4p--checklist__title {
25687
+ font-size: var(--cds-productive-heading-02-font-size, 1rem);
25688
+ font-weight: var(--cds-productive-heading-02-font-weight, 600);
25689
+ line-height: var(--cds-productive-heading-02-line-height, 1.375);
25690
+ letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
25691
+ display: -webkit-box;
25692
+ overflow: hidden;
25693
+ -webkit-box-orient: vertical;
25694
+ -webkit-line-clamp: 2;
25695
+ text-overflow: ellipsis;
25696
+ }
25697
+ .c4p--checklist__chart-label {
25698
+ font-size: var(--cds-label-01-font-size, 0.75rem);
25699
+ font-weight: var(--cds-label-01-font-weight, 400);
25700
+ line-height: var(--cds-label-01-line-height, 1.33333);
25701
+ letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
25702
+ display: -webkit-box;
25703
+ overflow: hidden;
25704
+ -webkit-box-orient: vertical;
25705
+ -webkit-line-clamp: 2;
25706
+ text-overflow: ellipsis;
25707
+ color: var(--cds-text-02, #525252);
25708
+ }
25709
+ .c4p--checklist__title + .c4p--checklist__chart-label {
25710
+ margin-top: var(--cds-spacing-01, 0.125rem);
25711
+ }
25712
+ .c4p--checklist__toggle {
25713
+ width: 30px;
25714
+ min-width: 30px;
25715
+ height: 30px;
25716
+ min-height: 30px !important;
25717
+ /* stylelint-disable-next-line carbon/layout-token-use */
25718
+ padding: 0 0.375rem !important;
25719
+ margin-top: calc(-1 * var(--cds-spacing-03, 0.5rem)) !important;
25720
+ margin-right: calc(-1 * var(--cds-spacing-03, 0.5rem)) !important;
25721
+ margin-left: auto !important;
25722
+ }
25723
+ .c4p--checklist__chevron {
25724
+ color: var(--cds-text-01, #161616);
25725
+ transform: rotate(0deg);
25726
+ transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
25727
+ }
25728
+ @media (prefers-reduced-motion: reduce) {
25729
+ .c4p--checklist__chevron {
25730
+ transition: none;
25731
+ }
25732
+ }
25733
+ .c4p--checklist__closed .c4p--checklist__chevron {
25734
+ transform: rotate(-180deg);
25735
+ }
25736
+ .c4p--checklist__button {
25737
+ max-width: none !important;
25738
+ min-height: auto !important;
25739
+ /* stylelint-disable-next-line declaration-property-value-disallowed-list */
25740
+ flex-shrink: unset !important;
25741
+ padding: 0 !important;
25742
+ border: none !important;
25743
+ background-color: transparent !important;
25744
+ color: var(--cds-link-01, #0f62fe) !important;
25745
+ }
25746
+ .c4p--checklist__button div {
25747
+ display: -webkit-box;
25748
+ overflow: hidden;
25749
+ -webkit-box-orient: vertical;
25750
+ -webkit-line-clamp: 2;
25751
+ text-overflow: ellipsis;
25752
+ }
25753
+ .c4p--checklist__button:hover {
25754
+ background: transparent;
25755
+ color: var(--cds-link-primary-hover, #0043ce);
25756
+ text-decoration: underline;
25757
+ }
25758
+ .c4p--checklist__button:active {
25759
+ background: transparent;
25760
+ color: var(--cds-text-primary, #161616);
25761
+ text-decoration: underline;
25762
+ }
25763
+ .c4p--checklist__button--error {
25764
+ color: var(--cds-text-error, #da1e28) !important;
25765
+ }
25766
+ .c4p--checklist__content-outer {
25767
+ overflow: hidden;
25768
+ }
25769
+ .c4p--checklist__content-inner {
25770
+ height: 100%;
25771
+ background-color: var(--cds-ui-01, #f4f4f4);
25772
+ transform: translate(0, 0);
25773
+ transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
25774
+ }
25775
+ @media (prefers-reduced-motion: reduce) {
25776
+ .c4p--checklist__content-inner {
25777
+ transition: none;
25778
+ }
25779
+ }
25780
+ .c4p--checklist__closed .c4p--checklist__content-inner {
25781
+ height: 0;
25782
+ transform: translate(0, -100%);
25783
+ }
25784
+ .c4p--checklist__list-group {
25785
+ padding: var(--cds-spacing-05, 1rem);
25786
+ border-top: 1px solid var(--cds-ui-03, #e0e0e0);
25787
+ }
25788
+ .c4p--checklist__list-title {
25789
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25790
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25791
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25792
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25793
+ display: -webkit-box;
25794
+ overflow: hidden;
25795
+ -webkit-box-orient: vertical;
25796
+ -webkit-line-clamp: 2;
25797
+ text-overflow: ellipsis;
25798
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
25799
+ }
25800
+ .c4p--checklist__list-item {
25801
+ display: flex;
25802
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
25803
+ }
25804
+ .c4p--checklist__list-item:last-child {
25805
+ margin-bottom: 0;
25806
+ }
25807
+ .c4p--checklist__icon {
25808
+ /* stylelint-disable-next-line carbon/layout-token-use */
25809
+ margin: 0.0625rem var(--cds-spacing-03, 0.5rem) 0 0;
25810
+ color: var(--cds-link-01, #0f62fe);
25811
+ }
25812
+ .c4p--checklist__icon--error {
25813
+ color: var(--cds-support-error, #da1e28);
25814
+ }
25815
+ .c4p--checklist__icon--disabled {
25816
+ color: var(--cds-disabled-03, #8d8d8d);
25817
+ }
25818
+ .c4p--checklist__label {
25819
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25820
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25821
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25822
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25823
+ display: -webkit-box;
25824
+ overflow: hidden;
25825
+ -webkit-box-orient: vertical;
25826
+ -webkit-line-clamp: 2;
25827
+ text-overflow: ellipsis;
25828
+ }
25829
+ .c4p--checklist__label--checked, .c4p--checklist__label--disabled, .c4p--checklist__label--error {
25830
+ color: var(--cds-disabled-03, #8d8d8d);
25831
+ }
25832
+ .c4p--checklist__footer {
25833
+ display: -webkit-box;
25834
+ overflow: hidden;
25835
+ -webkit-box-orient: vertical;
25836
+ -webkit-line-clamp: 2;
25837
+ text-overflow: ellipsis;
25838
+ padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem);
25839
+ border-top: 1px solid var(--cds-ui-03, #e0e0e0);
25840
+ }
25841
+
26396
25842
  @font-face {
26397
25843
  font-display: auto;
26398
25844
  font-family: "IBM Plex Mono";
@@ -32058,6 +31504,7 @@ th .bx--table-sort__flex {
32058
31504
  border: 0;
32059
31505
  border-bottom: 0.0625rem solid var(--cds-ui-04, #8d8d8d);
32060
31506
  -moz-appearance: textfield;
31507
+ appearance: textfield;
32061
31508
  background-color: var(--cds-field-01, #f4f4f4);
32062
31509
  border-radius: 0;
32063
31510
  color: var(--cds-text-01, #161616);
@@ -33424,6 +32871,7 @@ span.bx--pagination__text {
33424
32871
  width: 4rem;
33425
32872
  height: 2.5rem;
33426
32873
  -moz-appearance: textfield;
32874
+ appearance: textfield;
33427
32875
  text-align: center;
33428
32876
  }
33429
32877
  .bx--slider-text-input::-webkit-outer-spin-button, .bx--slider-text-input::-webkit-inner-spin-button,