@carbon/ibm-products 1.56.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/css/index-full-carbon.css +392 -895
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +3 -3
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon.css +392 -895
  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 +392 -895
  10. package/css/index.css.map +1 -1
  11. package/css/index.min.css +3 -3
  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 +104 -0
  15. package/es/components/Checklist/ChecklistIcon.js +105 -0
  16. package/es/components/Checklist/index.js +8 -0
  17. package/es/components/Datagrid/Datagrid/Datagrid.js +12 -7
  18. package/es/components/Datagrid/Datagrid/DatagridContent.js +6 -3
  19. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +128 -7
  20. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +1 -23
  21. package/es/components/Datagrid/Datagrid/addons/stateReducer.js +111 -0
  22. package/es/components/Datagrid/useDatagrid.js +5 -2
  23. package/es/components/Datagrid/utils/getColTitle.js +25 -0
  24. package/es/components/NonLinearReading/NonLinearReading.js +9 -4
  25. package/es/components/index.js +2 -1
  26. package/es/global/js/hooks/useResizeObserver.js +19 -3
  27. package/es/global/js/package-settings.js +1 -0
  28. package/lib/components/Checklist/Checklist.js +267 -0
  29. package/lib/components/Checklist/ChecklistChart.js +94 -0
  30. package/lib/components/Checklist/ChecklistIcon.js +92 -0
  31. package/lib/components/Checklist/index.js +12 -0
  32. package/lib/components/Datagrid/Datagrid/Datagrid.js +12 -7
  33. package/lib/components/Datagrid/Datagrid/DatagridContent.js +6 -3
  34. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +131 -7
  35. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +4 -26
  36. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +122 -0
  37. package/lib/components/Datagrid/useDatagrid.js +5 -2
  38. package/lib/components/Datagrid/utils/getColTitle.js +32 -0
  39. package/lib/components/NonLinearReading/NonLinearReading.js +8 -3
  40. package/lib/components/index.js +8 -1
  41. package/lib/global/js/hooks/useResizeObserver.js +19 -3
  42. package/lib/global/js/package-settings.js +1 -0
  43. package/package.json +2 -2
  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/Datagrid/styles/_datagrid.scss +91 -0
  48. package/scss/components/NonLinearReading/_non-linear-reading.scss +76 -64
  49. package/scss/components/_index.scss +1 -0
package/css/index.css CHANGED
@@ -21153,6 +21153,22 @@ button.c4p--add-select__global-filter-toggle--open {
21153
21153
  width: 100%;
21154
21154
  padding-top: 0;
21155
21155
  }
21156
+ .c4p--datagrid__grid-container .bx--data-table-header__description {
21157
+ overflow: hidden;
21158
+ text-overflow: ellipsis;
21159
+ white-space: nowrap;
21160
+ }
21161
+ .c4p--datagrid__grid-container .bx--data-table-header__title {
21162
+ overflow: hidden;
21163
+ max-width: 80ch;
21164
+ text-overflow: ellipsis;
21165
+ white-space: nowrap;
21166
+ }
21167
+ @media (min-width: 42rem) {
21168
+ .c4p--datagrid__grid-container .bx--data-table-header__title {
21169
+ max-width: 55ch;
21170
+ }
21171
+ }
21156
21172
  .c4p--datagrid__grid-container .bx--data-table-content {
21157
21173
  width: 100%;
21158
21174
  height: 100%;
@@ -21549,6 +21565,72 @@ button.c4p--add-select__global-filter-toggle--open {
21549
21565
  background-color: var(--cds-ui-03, #e0e0e0);
21550
21566
  }
21551
21567
 
21568
+ .c4p--datagrid .c4p--datagrid__col-resizer-range {
21569
+ position: absolute;
21570
+ z-index: 2;
21571
+ top: 0;
21572
+ right: calc(var(--cds-spacing-03, 0.5rem) * -1);
21573
+ width: 1rem;
21574
+ height: 100%;
21575
+ margin: 0;
21576
+ -moz-appearance: initial;
21577
+ -webkit-appearance: none;
21578
+ appearance: none;
21579
+ background: transparent;
21580
+ }
21581
+
21582
+ .c4p--datagrid .c4p--datagrid__col-resizer-range:focus {
21583
+ outline: 0;
21584
+ }
21585
+
21586
+ .c4p--datagrid .c4p--datagrid__col-resizer-range:focus + .c4p--datagrid__col-resize-indicator::before {
21587
+ position: absolute;
21588
+ top: 50%;
21589
+ left: 50%;
21590
+ width: 2px;
21591
+ height: var(--c4p--datagrid--header-height);
21592
+ background-color: var(--cds-focus, #0f62fe);
21593
+ content: "";
21594
+ transform: translate(-50%, -50%);
21595
+ }
21596
+
21597
+ .c4p--datagrid .c4p--datagrid__col-resizer-range:focus + .c4p--datagrid__col-resize-indicator {
21598
+ position: absolute;
21599
+ z-index: 2;
21600
+ right: calc(var(--cds-spacing-03, 0.5rem) * -1);
21601
+ width: 0.5rem;
21602
+ height: 0.5rem;
21603
+ border-radius: 100%;
21604
+ margin: 0;
21605
+ background-color: var(--cds-focus, #0f62fe);
21606
+ transform: translate(-50%, 0);
21607
+ }
21608
+
21609
+ .c4p--datagrid .c4p--datagrid__col-resizer-range:focus + .c4p--datagrid__col-resize-indicator::after {
21610
+ position: absolute;
21611
+ /* stylelint-disable-next-line carbon/layout-token-use */
21612
+ top: calc(var(--c4p--datagrid--row-height) - 20px);
21613
+ right: var(--cds-spacing-02, 0.25rem);
21614
+ width: 1px;
21615
+ height: calc(var(--c4p--datagrid--grid-height) - var(--c4p--datagrid--row-height));
21616
+ background-color: var(--cds-active-ui, #c6c6c6);
21617
+ content: "";
21618
+ }
21619
+
21620
+ .c4p--datagrid .c4p--datagrid__col-resizer-range::-webkit-slider-thumb {
21621
+ width: 16px;
21622
+ height: 16px;
21623
+ border: none;
21624
+ border-radius: 50%;
21625
+ -webkit-appearance: none;
21626
+ appearance: none;
21627
+ background: transparent;
21628
+ }
21629
+
21630
+ .c4p--datagrid .c4p--datagrid__col-resizer-range::-moz-range-thumb {
21631
+ visibility: hidden;
21632
+ }
21633
+
21552
21634
  /*
21553
21635
  * Licensed Materials - Property of IBM
21554
21636
  * 5724-Q36
@@ -24217,22 +24299,32 @@ th.c4p--datagrid__select-all-toggle-on.button {
24217
24299
  padding-right: 0.1875rem;
24218
24300
  border-width: 0.0625rem;
24219
24301
  border-style: solid;
24302
+ border-color: var(--cds-button-tertiary, #0f62fe);
24220
24303
  border-radius: var(--cds-spacing-04, 0.75rem);
24221
- white-space: nowrap;
24222
- border-color: var(--cds-interactive-03, #0f62fe);
24223
24304
  background-color: transparent;
24224
- color: var(--cds-interactive-03, #0f62fe);
24305
+ color: var(--cds-button-tertiary, #0f62fe);
24306
+ white-space: nowrap;
24225
24307
  }
24226
24308
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
24227
- cursor: pointer;
24309
+ border-color: var(--cds-button-tertiary, #0f62fe);
24310
+ background-color: var(--cds-button-tertiary, #0f62fe);
24311
+ color: var(--cds-text-inverse, #ffffff);
24312
+ }
24313
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:focus {
24314
+ border-color: var(--cds-text-inverse, #ffffff);
24315
+ background-color: var(--cds-button-tertiary, #0f62fe);
24316
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24317
+ color: var(--cds-text-inverse, #ffffff);
24318
+ }
24319
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:focus-visible {
24320
+ outline: none;
24228
24321
  }
24229
24322
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed svg {
24230
24323
  margin: 0.0625rem 0 0 0;
24231
24324
  vertical-align: text-top;
24232
24325
  }
24233
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
24234
- background-color: var(--cds-interactive-03, #0f62fe);
24235
- color: var(--cds-inverse-01, #ffffff);
24326
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed + .c4p--non-linear-reading__body {
24327
+ display: none;
24236
24328
  }
24237
24329
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open {
24238
24330
  height: 1.25rem;
@@ -24240,25 +24332,46 @@ th.c4p--datagrid__select-all-toggle-on.button {
24240
24332
  padding-right: 0.1875rem;
24241
24333
  border-width: 0.0625rem;
24242
24334
  border-style: solid;
24335
+ border-color: var(--cds-button-tertiary, #0f62fe);
24243
24336
  border-radius: var(--cds-spacing-04, 0.75rem);
24337
+ background-color: transparent;
24338
+ color: var(--cds-button-tertiary, #0f62fe);
24244
24339
  white-space: nowrap;
24245
- border-color: var(--cds-interactive-03, #0f62fe);
24246
- background-color: var(--cds-interactive-03, #0f62fe);
24247
- color: var(--cds-inverse-01, #ffffff);
24340
+ border-color: var(--cds-button-tertiary, #0f62fe);
24341
+ background-color: var(--cds-button-tertiary, #0f62fe);
24342
+ color: var(--cds-text-inverse, #ffffff);
24248
24343
  }
24249
24344
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
24250
- cursor: pointer;
24345
+ border-color: var(--cds-button-tertiary, #0f62fe);
24346
+ background-color: var(--cds-button-tertiary, #0f62fe);
24347
+ color: var(--cds-text-inverse, #ffffff);
24348
+ }
24349
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus {
24350
+ border-color: var(--cds-text-inverse, #ffffff);
24351
+ background-color: var(--cds-button-tertiary, #0f62fe);
24352
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24353
+ color: var(--cds-text-inverse, #ffffff);
24354
+ }
24355
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus-visible {
24356
+ outline: none;
24251
24357
  }
24252
24358
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24253
24359
  margin: 0.0625rem 0 0 0;
24254
24360
  vertical-align: text-top;
24255
24361
  }
24256
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24257
- transform: rotate(180deg);
24258
- }
24259
24362
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
24363
+ border-color: var(--cds-button-tertiary, #0f62fe);
24260
24364
  background-color: transparent;
24261
- color: var(--cds-interactive-03, #0f62fe);
24365
+ color: var(--cds-button-tertiary, #0f62fe);
24366
+ }
24367
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus {
24368
+ border-color: var(--cds-text-inverse, #ffffff);
24369
+ background-color: transparent;
24370
+ 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);
24371
+ color: var(--cds-button-tertiary, #0f62fe);
24372
+ }
24373
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24374
+ transform: rotate(180deg);
24262
24375
  }
24263
24376
  .c4p--non-linear-reading__light .c4p--non-linear-reading__body {
24264
24377
  font-size: var(--cds-body-long-01-font-size, 0.875rem);
@@ -24267,14 +24380,17 @@ th.c4p--datagrid__select-all-toggle-on.button {
24267
24380
  letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
24268
24381
  display: block;
24269
24382
  padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
24270
- border-left-width: 0.078125rem;
24271
- border-left-style: solid;
24383
+ border-left: 0.078125rem solid var(--cds-text-01, #161616);
24272
24384
  margin: var(--cds-spacing-02, 0.25rem) 0;
24273
24385
  animation: fade 600ms;
24274
- border-left-color: var(--cds-text-01, #161616);
24386
+ }
24387
+ @media (prefers-reduced-motion: reduce) {
24388
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__body {
24389
+ animation: none;
24390
+ }
24275
24391
  }
24276
24392
 
24277
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
24393
+ .c4p--non-linear-reading__dark {
24278
24394
  --cds-interactive-01: #0f62fe;
24279
24395
  --cds-interactive-02: #6f6f6f;
24280
24396
  --cds-interactive-03: #ffffff;
@@ -24695,908 +24811,104 @@ th.c4p--datagrid__select-all-toggle-on.button {
24695
24811
  --cds-size-2XLarge: 5rem;
24696
24812
  --cds-icon-size-01: 1rem;
24697
24813
  --cds-icon-size-02: 1.25rem;
24814
+ }
24815
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
24698
24816
  height: 1.25rem;
24699
24817
  padding-top: 0;
24700
24818
  padding-right: 0.1875rem;
24701
24819
  border-width: 0.0625rem;
24702
24820
  border-style: solid;
24821
+ border-color: var(--cds-button-tertiary, #0f62fe);
24703
24822
  border-radius: var(--cds-spacing-04, 0.75rem);
24704
- white-space: nowrap;
24705
- border-color: var(--cds-icon-03, #ffffff);
24706
24823
  background-color: transparent;
24707
- color: var(--cds-text-01, #161616);
24824
+ color: var(--cds-button-tertiary, #0f62fe);
24825
+ white-space: nowrap;
24708
24826
  }
24709
24827
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
24710
- cursor: pointer;
24828
+ border-color: var(--cds-button-tertiary, #0f62fe);
24829
+ background-color: var(--cds-button-tertiary, #0f62fe);
24830
+ color: var(--cds-text-inverse, #ffffff);
24831
+ }
24832
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:focus {
24833
+ border-color: var(--cds-text-inverse, #ffffff);
24834
+ background-color: var(--cds-button-tertiary, #0f62fe);
24835
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24836
+ color: var(--cds-text-inverse, #ffffff);
24837
+ }
24838
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:focus-visible {
24839
+ outline: none;
24711
24840
  }
24712
24841
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed svg {
24713
24842
  margin: 0.0625rem 0 0 0;
24714
24843
  vertical-align: text-top;
24715
24844
  }
24716
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
24717
- background-color: var(--cds-icon-03, #ffffff);
24718
- color: var(--cds-inverse-01, #ffffff);
24845
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed + .c4p--non-linear-reading__body {
24846
+ display: none;
24719
24847
  }
24720
24848
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open {
24721
- --cds-interactive-01: #0f62fe;
24722
- --cds-interactive-02: #6f6f6f;
24723
- --cds-interactive-03: #ffffff;
24724
- --cds-interactive-04: #4589ff;
24725
- --cds-ui-background: #161616;
24726
- --cds-ui-01: #262626;
24727
- --cds-ui-02: #393939;
24728
- --cds-ui-03: #393939;
24729
- --cds-ui-04: #6f6f6f;
24730
- --cds-ui-05: #f4f4f4;
24731
- --cds-text-01: #f4f4f4;
24732
- --cds-text-02: #c6c6c6;
24733
- --cds-text-03: #6f6f6f;
24734
- --cds-text-04: #ffffff;
24735
- --cds-text-05: #8d8d8d;
24736
- --cds-text-error: #ff8389;
24737
- --cds-icon-01: #f4f4f4;
24738
- --cds-icon-02: #c6c6c6;
24739
- --cds-icon-03: #ffffff;
24740
- --cds-link-01: #78a9ff;
24741
- --cds-link-02: #a6c8ff;
24742
- --cds-inverse-link: #0f62fe;
24743
- --cds-field-01: #262626;
24744
- --cds-field-02: #393939;
24745
- --cds-inverse-01: #161616;
24746
- --cds-inverse-02: #f4f4f4;
24747
- --cds-support-01: #fa4d56;
24748
- --cds-support-02: #42be65;
24749
- --cds-support-03: #f1c21b;
24750
- --cds-support-04: #4589ff;
24751
- --cds-inverse-support-01: #da1e28;
24752
- --cds-inverse-support-02: #24a148;
24753
- --cds-inverse-support-03: #f1c21b;
24754
- --cds-inverse-support-04: #0f62fe;
24755
- --cds-overlay-01: rgba(0, 0, 0, 0.65);
24756
- --cds-danger-01: #da1e28;
24757
- --cds-danger-02: #fa4d56;
24758
- --cds-focus: #ffffff;
24759
- --cds-inverse-focus-ui: #0f62fe;
24760
- --cds-hover-primary: #0353e9;
24761
- --cds-active-primary: #002d9c;
24762
- --cds-hover-primary-text: #a6c8ff;
24763
- --cds-hover-secondary: #606060;
24764
- --cds-active-secondary: #393939;
24765
- --cds-hover-tertiary: #f4f4f4;
24766
- --cds-active-tertiary: #c6c6c6;
24767
- --cds-hover-ui: #353535;
24768
- --cds-hover-light-ui: #4c4c4c;
24769
- --cds-hover-selected-ui: #4c4c4c;
24770
- --cds-active-ui: #525252;
24771
- --cds-active-light-ui: #6f6f6f;
24772
- --cds-selected-ui: #393939;
24773
- --cds-selected-light-ui: #525252;
24774
- --cds-inverse-hover-ui: #e5e5e5;
24775
- --cds-hover-danger: #b81921;
24776
- --cds-active-danger: #750e13;
24777
- --cds-hover-row: #353535;
24778
- --cds-visited-link: #be95ff;
24779
- --cds-disabled-01: #262626;
24780
- --cds-disabled-02: #525252;
24781
- --cds-disabled-03: #8d8d8d;
24782
- --cds-highlight: #002d9c;
24783
- --cds-decorative-01: #525252;
24784
- --cds-button-separator: #161616;
24785
- --cds-skeleton-01: #353535;
24786
- --cds-skeleton-02: #525252;
24787
- --cds-background: #161616;
24788
- --cds-layer: #262626;
24789
- --cds-layer-accent: #393939;
24790
- --cds-layer-accent-hover: #474747;
24791
- --cds-layer-accent-active: #6f6f6f;
24792
- --cds-field: #262626;
24793
- --cds-background-inverse: #f4f4f4;
24794
- --cds-background-brand: #0f62fe;
24795
- --cds-interactive: #4589ff;
24796
- --cds-border-subtle: #393939;
24797
- --cds-border-strong: #6f6f6f;
24798
- --cds-border-inverse: #f4f4f4;
24799
- --cds-border-interactive: #4589ff;
24800
- --cds-text-primary: #f4f4f4;
24801
- --cds-text-secondary: #c6c6c6;
24802
- --cds-text-placeholder: #6f6f6f;
24803
- --cds-text-helper: #8d8d8d;
24804
- --cds-text-on-color: #ffffff;
24805
- --cds-text-inverse: #161616;
24806
- --cds-link-primary: #78a9ff;
24807
- --cds-link-secondary: #a6c8ff;
24808
- --cds-link-visited: #be95ff;
24809
- --cds-link-inverse: #0f62fe;
24810
- --cds-icon-primary: #f4f4f4;
24811
- --cds-icon-secondary: #c6c6c6;
24812
- --cds-icon-on-color: #ffffff;
24813
- --cds-icon-inverse: #161616;
24814
- --cds-support-error: #fa4d56;
24815
- --cds-support-success: #42be65;
24816
- --cds-support-warning: #f1c21b;
24817
- --cds-support-info: #4589ff;
24818
- --cds-support-error-inverse: #da1e28;
24819
- --cds-support-success-inverse: #24a148;
24820
- --cds-support-warning-inverse: #f1c21b;
24821
- --cds-support-info-inverse: #0f62fe;
24822
- --cds-overlay: rgba(0, 0, 0, 0.65);
24823
- --cds-toggle-off: #6f6f6f;
24824
- --cds-shadow: rgba(0, 0, 0, 0.8);
24825
- --cds-button-primary: #0f62fe;
24826
- --cds-button-secondary: #6f6f6f;
24827
- --cds-button-tertiary: #ffffff;
24828
- --cds-button-danger-primary: #da1e28;
24829
- --cds-button-danger-secondary: #fa4d56;
24830
- --cds-background-active: #525252;
24831
- --cds-layer-active: #525252;
24832
- --cds-button-danger-active: #750e13;
24833
- --cds-button-primary-active: #002d9c;
24834
- --cds-button-secondary-active: #393939;
24835
- --cds-button-tertiary-active: #c6c6c6;
24836
- --cds-focus-inset: #161616;
24837
- --cds-focus-inverse: #0f62fe;
24838
- --cds-background-hover: #353535;
24839
- --cds-layer-hover: #353535;
24840
- --cds-field-hover: #353535;
24841
- --cds-background-inverse-hover: #e5e5e5;
24842
- --cds-link-primary-hover: #a6c8ff;
24843
- --cds-button-danger-hover: #b81921;
24844
- --cds-button-primary-hover: #0353e9;
24845
- --cds-button-secondary-hover: #606060;
24846
- --cds-button-tertiary-hover: #f4f4f4;
24847
- --cds-background-selected: #393939;
24848
- --cds-background-selected-hover: #4c4c4c;
24849
- --cds-layer-selected: #393939;
24850
- --cds-layer-selected-hover: #4c4c4c;
24851
- --cds-layer-selected-inverse: #f4f4f4;
24852
- --cds-border-subtle-selected: #525252;
24853
- --cds-border-disabled: #262626;
24854
- --cds-text-disabled: #525252;
24855
- --cds-button-disabled: #525252;
24856
- --cds-icon-disabled: #525252;
24857
- --cds-text-on-color-disabled: #8d8d8d;
24858
- --cds-icon-on-color-disabled: #8d8d8d;
24859
- --cds-layer-selected-disabled: #8d8d8d;
24860
- --cds-skeleton-background: #353535;
24861
- --cds-skeleton-element: #525252;
24862
- --cds-brand-01: #0f62fe;
24863
- --cds-brand-02: #6f6f6f;
24864
- --cds-brand-03: #ffffff;
24865
- --cds-active-01: #525252;
24866
- --cds-hover-field: #353535;
24867
- --cds-danger: #da1e28;
24868
- --cds-caption-01-font-size: 0.75rem;
24869
- --cds-caption-01-font-weight: 400;
24870
- --cds-caption-01-line-height: 1.33333;
24871
- --cds-caption-01-letter-spacing: 0.32px;
24872
- --cds-caption-02-font-size: 0.875rem;
24873
- --cds-caption-02-font-weight: 400;
24874
- --cds-caption-02-line-height: 1.28572;
24875
- --cds-caption-02-letter-spacing: 0.32px;
24876
- --cds-label-01-font-size: 0.75rem;
24877
- --cds-label-01-font-weight: 400;
24878
- --cds-label-01-line-height: 1.33333;
24879
- --cds-label-01-letter-spacing: 0.32px;
24880
- --cds-label-02-font-size: 0.875rem;
24881
- --cds-label-02-font-weight: 400;
24882
- --cds-label-02-line-height: 1.28572;
24883
- --cds-label-02-letter-spacing: 0.16px;
24884
- --cds-helper-text-01-font-size: 0.75rem;
24885
- --cds-helper-text-01-line-height: 1.33333;
24886
- --cds-helper-text-01-letter-spacing: 0.32px;
24887
- --cds-helper-text-02-font-size: 0.875rem;
24888
- --cds-helper-text-02-line-height: 1.28572;
24889
- --cds-helper-text-02-letter-spacing: 0.16px;
24890
- --cds-body-short-01-font-size: 0.875rem;
24891
- --cds-body-short-01-font-weight: 400;
24892
- --cds-body-short-01-line-height: 1.28572;
24893
- --cds-body-short-01-letter-spacing: 0.16px;
24894
- --cds-body-long-01-font-size: 0.875rem;
24895
- --cds-body-long-01-font-weight: 400;
24896
- --cds-body-long-01-line-height: 1.42857;
24897
- --cds-body-long-01-letter-spacing: 0.16px;
24898
- --cds-body-short-02-font-size: 1rem;
24899
- --cds-body-short-02-font-weight: 400;
24900
- --cds-body-short-02-line-height: 1.375;
24901
- --cds-body-short-02-letter-spacing: 0;
24902
- --cds-body-long-02-font-size: 1rem;
24903
- --cds-body-long-02-font-weight: 400;
24904
- --cds-body-long-02-line-height: 1.5;
24905
- --cds-body-long-02-letter-spacing: 0;
24906
- --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
24907
- --cds-code-01-font-size: 0.75rem;
24908
- --cds-code-01-font-weight: 400;
24909
- --cds-code-01-line-height: 1.33333;
24910
- --cds-code-01-letter-spacing: 0.32px;
24911
- --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
24912
- --cds-code-02-font-size: 0.875rem;
24913
- --cds-code-02-font-weight: 400;
24914
- --cds-code-02-line-height: 1.42857;
24915
- --cds-code-02-letter-spacing: 0.32px;
24916
- --cds-heading-01-font-size: 0.875rem;
24917
- --cds-heading-01-font-weight: 600;
24918
- --cds-heading-01-line-height: 1.42857;
24919
- --cds-heading-01-letter-spacing: 0.16px;
24920
- --cds-productive-heading-01-font-size: 0.875rem;
24921
- --cds-productive-heading-01-font-weight: 600;
24922
- --cds-productive-heading-01-line-height: 1.28572;
24923
- --cds-productive-heading-01-letter-spacing: 0.16px;
24924
- --cds-heading-02-font-size: 1rem;
24925
- --cds-heading-02-font-weight: 600;
24926
- --cds-heading-02-line-height: 1.5;
24927
- --cds-heading-02-letter-spacing: 0;
24928
- --cds-productive-heading-02-font-size: 1rem;
24929
- --cds-productive-heading-02-font-weight: 600;
24930
- --cds-productive-heading-02-line-height: 1.375;
24931
- --cds-productive-heading-02-letter-spacing: 0;
24932
- --cds-productive-heading-03-font-size: 1.25rem;
24933
- --cds-productive-heading-03-font-weight: 400;
24934
- --cds-productive-heading-03-line-height: 1.4;
24935
- --cds-productive-heading-03-letter-spacing: 0;
24936
- --cds-productive-heading-04-font-size: 1.75rem;
24937
- --cds-productive-heading-04-font-weight: 400;
24938
- --cds-productive-heading-04-line-height: 1.28572;
24939
- --cds-productive-heading-04-letter-spacing: 0;
24940
- --cds-productive-heading-05-font-size: 2rem;
24941
- --cds-productive-heading-05-font-weight: 400;
24942
- --cds-productive-heading-05-line-height: 1.25;
24943
- --cds-productive-heading-05-letter-spacing: 0;
24944
- --cds-productive-heading-06-font-size: 2.625rem;
24945
- --cds-productive-heading-06-font-weight: 300;
24946
- --cds-productive-heading-06-line-height: 1.199;
24947
- --cds-productive-heading-06-letter-spacing: 0;
24948
- --cds-productive-heading-07-font-size: 3.375rem;
24949
- --cds-productive-heading-07-font-weight: 300;
24950
- --cds-productive-heading-07-line-height: 1.199;
24951
- --cds-productive-heading-07-letter-spacing: 0;
24952
- --cds-expressive-heading-01-font-size: 0.875rem;
24953
- --cds-expressive-heading-01-font-weight: 600;
24954
- --cds-expressive-heading-01-line-height: 1.25;
24955
- --cds-expressive-heading-01-letter-spacing: 0.16px;
24956
- --cds-expressive-heading-02-font-size: 1rem;
24957
- --cds-expressive-heading-02-font-weight: 600;
24958
- --cds-expressive-heading-02-line-height: 1.5;
24959
- --cds-expressive-heading-02-letter-spacing: 0;
24960
- --cds-expressive-heading-03-font-size: 1.25rem;
24961
- --cds-expressive-heading-03-font-weight: 400;
24962
- --cds-expressive-heading-03-line-height: 1.4;
24963
- --cds-expressive-heading-03-letter-spacing: 0;
24964
- --cds-expressive-heading-04-font-size: 1.75rem;
24965
- --cds-expressive-heading-04-font-weight: 400;
24966
- --cds-expressive-heading-04-line-height: 1.28572;
24967
- --cds-expressive-heading-04-letter-spacing: 0;
24968
- --cds-expressive-heading-05-font-size: 2rem;
24969
- --cds-expressive-heading-05-font-weight: 400;
24970
- --cds-expressive-heading-05-line-height: 1.25;
24971
- --cds-expressive-heading-05-letter-spacing: 0;
24972
- --cds-expressive-heading-06-font-size: 2rem;
24973
- --cds-expressive-heading-06-font-weight: 600;
24974
- --cds-expressive-heading-06-line-height: 1.25;
24975
- --cds-expressive-heading-06-letter-spacing: 0;
24976
- --cds-expressive-paragraph-01-font-size: 1.5rem;
24977
- --cds-expressive-paragraph-01-font-weight: 300;
24978
- --cds-expressive-paragraph-01-line-height: 1.334;
24979
- --cds-expressive-paragraph-01-letter-spacing: 0;
24980
- --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
24981
- --cds-quotation-01-font-size: 1.25rem;
24982
- --cds-quotation-01-font-weight: 400;
24983
- --cds-quotation-01-line-height: 1.3;
24984
- --cds-quotation-01-letter-spacing: 0;
24985
- --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
24986
- --cds-quotation-02-font-size: 2rem;
24987
- --cds-quotation-02-font-weight: 300;
24988
- --cds-quotation-02-line-height: 1.25;
24989
- --cds-quotation-02-letter-spacing: 0;
24990
- --cds-display-01-font-size: 2.625rem;
24991
- --cds-display-01-font-weight: 300;
24992
- --cds-display-01-line-height: 1.19;
24993
- --cds-display-01-letter-spacing: 0;
24994
- --cds-display-02-font-size: 2.625rem;
24995
- --cds-display-02-font-weight: 600;
24996
- --cds-display-02-line-height: 1.19;
24997
- --cds-display-02-letter-spacing: 0;
24998
- --cds-display-03-font-size: 2.625rem;
24999
- --cds-display-03-font-weight: 300;
25000
- --cds-display-03-line-height: 1.19;
25001
- --cds-display-03-letter-spacing: 0;
25002
- --cds-display-04-font-size: 2.625rem;
25003
- --cds-display-04-font-weight: 300;
25004
- --cds-display-04-line-height: 1.19;
25005
- --cds-display-04-letter-spacing: 0;
25006
- --cds-legal-01-font-size: 0.75rem;
25007
- --cds-legal-01-font-weight: 400;
25008
- --cds-legal-01-line-height: 1.33333;
25009
- --cds-legal-01-letter-spacing: 0.32px;
25010
- --cds-legal-02-font-size: 0.875rem;
25011
- --cds-legal-02-font-weight: 400;
25012
- --cds-legal-02-line-height: 1.28572;
25013
- --cds-legal-02-letter-spacing: 0.16px;
25014
- --cds-body-compact-01-font-size: 0.875rem;
25015
- --cds-body-compact-01-font-weight: 400;
25016
- --cds-body-compact-01-line-height: 1.28572;
25017
- --cds-body-compact-01-letter-spacing: 0.16px;
25018
- --cds-body-compact-02-font-size: 1rem;
25019
- --cds-body-compact-02-font-weight: 400;
25020
- --cds-body-compact-02-line-height: 1.375;
25021
- --cds-body-compact-02-letter-spacing: 0;
25022
- --cds-body-01-font-size: 0.875rem;
25023
- --cds-body-01-font-weight: 400;
25024
- --cds-body-01-line-height: 1.42857;
25025
- --cds-body-01-letter-spacing: 0.16px;
25026
- --cds-body-02-font-size: 1rem;
25027
- --cds-body-02-font-weight: 400;
25028
- --cds-body-02-line-height: 1.5;
25029
- --cds-body-02-letter-spacing: 0;
25030
- --cds-heading-compact-01-font-size: 0.875rem;
25031
- --cds-heading-compact-01-font-weight: 600;
25032
- --cds-heading-compact-01-line-height: 1.28572;
25033
- --cds-heading-compact-01-letter-spacing: 0.16px;
25034
- --cds-heading-compact-02-font-size: 1rem;
25035
- --cds-heading-compact-02-font-weight: 600;
25036
- --cds-heading-compact-02-line-height: 1.375;
25037
- --cds-heading-compact-02-letter-spacing: 0;
25038
- --cds-heading-03-font-size: 1.25rem;
25039
- --cds-heading-03-font-weight: 400;
25040
- --cds-heading-03-line-height: 1.4;
25041
- --cds-heading-03-letter-spacing: 0;
25042
- --cds-heading-04-font-size: 1.75rem;
25043
- --cds-heading-04-font-weight: 400;
25044
- --cds-heading-04-line-height: 1.28572;
25045
- --cds-heading-04-letter-spacing: 0;
25046
- --cds-heading-05-font-size: 2rem;
25047
- --cds-heading-05-font-weight: 400;
25048
- --cds-heading-05-line-height: 1.25;
25049
- --cds-heading-05-letter-spacing: 0;
25050
- --cds-heading-06-font-size: 2.625rem;
25051
- --cds-heading-06-font-weight: 300;
25052
- --cds-heading-06-line-height: 1.199;
25053
- --cds-heading-06-letter-spacing: 0;
25054
- --cds-heading-07-font-size: 3.375rem;
25055
- --cds-heading-07-font-weight: 300;
25056
- --cds-heading-07-line-height: 1.199;
25057
- --cds-heading-07-letter-spacing: 0;
25058
- --cds-fluid-heading-03-font-size: 1.25rem;
25059
- --cds-fluid-heading-03-font-weight: 400;
25060
- --cds-fluid-heading-03-line-height: 1.4;
25061
- --cds-fluid-heading-03-letter-spacing: 0;
25062
- --cds-fluid-heading-04-font-size: 1.75rem;
25063
- --cds-fluid-heading-04-font-weight: 400;
25064
- --cds-fluid-heading-04-line-height: 1.28572;
25065
- --cds-fluid-heading-04-letter-spacing: 0;
25066
- --cds-fluid-heading-05-font-size: 2rem;
25067
- --cds-fluid-heading-05-font-weight: 400;
25068
- --cds-fluid-heading-05-line-height: 1.25;
25069
- --cds-fluid-heading-05-letter-spacing: 0;
25070
- --cds-fluid-heading-06-font-size: 2rem;
25071
- --cds-fluid-heading-06-font-weight: 600;
25072
- --cds-fluid-heading-06-line-height: 1.25;
25073
- --cds-fluid-heading-06-letter-spacing: 0;
25074
- --cds-fluid-paragraph-01-font-size: 1.5rem;
25075
- --cds-fluid-paragraph-01-font-weight: 300;
25076
- --cds-fluid-paragraph-01-line-height: 1.334;
25077
- --cds-fluid-paragraph-01-letter-spacing: 0;
25078
- --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25079
- --cds-fluid-quotation-01-font-size: 1.25rem;
25080
- --cds-fluid-quotation-01-font-weight: 400;
25081
- --cds-fluid-quotation-01-line-height: 1.3;
25082
- --cds-fluid-quotation-01-letter-spacing: 0;
25083
- --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25084
- --cds-fluid-quotation-02-font-size: 2rem;
25085
- --cds-fluid-quotation-02-font-weight: 300;
25086
- --cds-fluid-quotation-02-line-height: 1.25;
25087
- --cds-fluid-quotation-02-letter-spacing: 0;
25088
- --cds-fluid-display-01-font-size: 2.625rem;
25089
- --cds-fluid-display-01-font-weight: 300;
25090
- --cds-fluid-display-01-line-height: 1.19;
25091
- --cds-fluid-display-01-letter-spacing: 0;
25092
- --cds-fluid-display-02-font-size: 2.625rem;
25093
- --cds-fluid-display-02-font-weight: 600;
25094
- --cds-fluid-display-02-line-height: 1.19;
25095
- --cds-fluid-display-02-letter-spacing: 0;
25096
- --cds-fluid-display-03-font-size: 2.625rem;
25097
- --cds-fluid-display-03-font-weight: 300;
25098
- --cds-fluid-display-03-line-height: 1.19;
25099
- --cds-fluid-display-03-letter-spacing: 0;
25100
- --cds-fluid-display-04-font-size: 2.625rem;
25101
- --cds-fluid-display-04-font-weight: 300;
25102
- --cds-fluid-display-04-line-height: 1.19;
25103
- --cds-fluid-display-04-letter-spacing: 0;
25104
- --cds-spacing-01: 0.125rem;
25105
- --cds-spacing-02: 0.25rem;
25106
- --cds-spacing-03: 0.5rem;
25107
- --cds-spacing-04: 0.75rem;
25108
- --cds-spacing-05: 1rem;
25109
- --cds-spacing-06: 1.5rem;
25110
- --cds-spacing-07: 2rem;
25111
- --cds-spacing-08: 2.5rem;
25112
- --cds-spacing-09: 3rem;
25113
- --cds-spacing-10: 4rem;
25114
- --cds-spacing-11: 5rem;
25115
- --cds-spacing-12: 6rem;
25116
- --cds-spacing-13: 10rem;
25117
- --cds-fluid-spacing-01: 0;
25118
- --cds-fluid-spacing-02: 2vw;
25119
- --cds-fluid-spacing-03: 5vw;
25120
- --cds-fluid-spacing-04: 10vw;
25121
- --cds-layout-01: 1rem;
25122
- --cds-layout-02: 1.5rem;
25123
- --cds-layout-03: 2rem;
25124
- --cds-layout-04: 3rem;
25125
- --cds-layout-05: 4rem;
25126
- --cds-layout-06: 6rem;
25127
- --cds-layout-07: 10rem;
25128
- --cds-container-01: 1.5rem;
25129
- --cds-container-02: 2rem;
25130
- --cds-container-03: 2.5rem;
25131
- --cds-container-04: 3rem;
25132
- --cds-container-05: 4rem;
25133
- --cds-size-xsmall: 1.5rem;
25134
- --cds-size-small: 2rem;
25135
- --cds-size-medium: 2.5rem;
25136
- --cds-size-large: 3rem;
25137
- --cds-size-xlarge: 4rem;
25138
- --cds-size-2XLarge: 5rem;
25139
- --cds-icon-size-01: 1rem;
25140
- --cds-icon-size-02: 1.25rem;
25141
- height: 1.25rem;
25142
- padding-top: 0;
25143
- padding-right: 0.1875rem;
25144
- border-width: 0.0625rem;
25145
- border-style: solid;
25146
- border-radius: var(--cds-spacing-04, 0.75rem);
25147
- white-space: nowrap;
25148
- border-color: var(--cds-icon-03, #ffffff);
25149
- background-color: var(--cds-icon-03, #ffffff);
25150
- color: var(--cds-inverse-01, #ffffff);
25151
- }
25152
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
25153
- cursor: pointer;
25154
- }
25155
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
25156
- margin: 0.0625rem 0 0 0;
25157
- vertical-align: text-top;
25158
- }
25159
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
25160
- transform: rotate(180deg);
25161
- }
25162
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
25163
- background-color: transparent;
25164
- color: var(--cds-text-01, #161616);
25165
- }
25166
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
25167
- --cds-interactive-01: #0f62fe;
25168
- --cds-interactive-02: #6f6f6f;
25169
- --cds-interactive-03: #ffffff;
25170
- --cds-interactive-04: #4589ff;
25171
- --cds-ui-background: #161616;
25172
- --cds-ui-01: #262626;
25173
- --cds-ui-02: #393939;
25174
- --cds-ui-03: #393939;
25175
- --cds-ui-04: #6f6f6f;
25176
- --cds-ui-05: #f4f4f4;
25177
- --cds-text-01: #f4f4f4;
25178
- --cds-text-02: #c6c6c6;
25179
- --cds-text-03: #6f6f6f;
25180
- --cds-text-04: #ffffff;
25181
- --cds-text-05: #8d8d8d;
25182
- --cds-text-error: #ff8389;
25183
- --cds-icon-01: #f4f4f4;
25184
- --cds-icon-02: #c6c6c6;
25185
- --cds-icon-03: #ffffff;
25186
- --cds-link-01: #78a9ff;
25187
- --cds-link-02: #a6c8ff;
25188
- --cds-inverse-link: #0f62fe;
25189
- --cds-field-01: #262626;
25190
- --cds-field-02: #393939;
25191
- --cds-inverse-01: #161616;
25192
- --cds-inverse-02: #f4f4f4;
25193
- --cds-support-01: #fa4d56;
25194
- --cds-support-02: #42be65;
25195
- --cds-support-03: #f1c21b;
25196
- --cds-support-04: #4589ff;
25197
- --cds-inverse-support-01: #da1e28;
25198
- --cds-inverse-support-02: #24a148;
25199
- --cds-inverse-support-03: #f1c21b;
25200
- --cds-inverse-support-04: #0f62fe;
25201
- --cds-overlay-01: rgba(0, 0, 0, 0.65);
25202
- --cds-danger-01: #da1e28;
25203
- --cds-danger-02: #fa4d56;
25204
- --cds-focus: #ffffff;
25205
- --cds-inverse-focus-ui: #0f62fe;
25206
- --cds-hover-primary: #0353e9;
25207
- --cds-active-primary: #002d9c;
25208
- --cds-hover-primary-text: #a6c8ff;
25209
- --cds-hover-secondary: #606060;
25210
- --cds-active-secondary: #393939;
25211
- --cds-hover-tertiary: #f4f4f4;
25212
- --cds-active-tertiary: #c6c6c6;
25213
- --cds-hover-ui: #353535;
25214
- --cds-hover-light-ui: #4c4c4c;
25215
- --cds-hover-selected-ui: #4c4c4c;
25216
- --cds-active-ui: #525252;
25217
- --cds-active-light-ui: #6f6f6f;
25218
- --cds-selected-ui: #393939;
25219
- --cds-selected-light-ui: #525252;
25220
- --cds-inverse-hover-ui: #e5e5e5;
25221
- --cds-hover-danger: #b81921;
25222
- --cds-active-danger: #750e13;
25223
- --cds-hover-row: #353535;
25224
- --cds-visited-link: #be95ff;
25225
- --cds-disabled-01: #262626;
25226
- --cds-disabled-02: #525252;
25227
- --cds-disabled-03: #8d8d8d;
25228
- --cds-highlight: #002d9c;
25229
- --cds-decorative-01: #525252;
25230
- --cds-button-separator: #161616;
25231
- --cds-skeleton-01: #353535;
25232
- --cds-skeleton-02: #525252;
25233
- --cds-background: #161616;
25234
- --cds-layer: #262626;
25235
- --cds-layer-accent: #393939;
25236
- --cds-layer-accent-hover: #474747;
25237
- --cds-layer-accent-active: #6f6f6f;
25238
- --cds-field: #262626;
25239
- --cds-background-inverse: #f4f4f4;
25240
- --cds-background-brand: #0f62fe;
25241
- --cds-interactive: #4589ff;
25242
- --cds-border-subtle: #393939;
25243
- --cds-border-strong: #6f6f6f;
25244
- --cds-border-inverse: #f4f4f4;
25245
- --cds-border-interactive: #4589ff;
25246
- --cds-text-primary: #f4f4f4;
25247
- --cds-text-secondary: #c6c6c6;
25248
- --cds-text-placeholder: #6f6f6f;
25249
- --cds-text-helper: #8d8d8d;
25250
- --cds-text-on-color: #ffffff;
25251
- --cds-text-inverse: #161616;
25252
- --cds-link-primary: #78a9ff;
25253
- --cds-link-secondary: #a6c8ff;
25254
- --cds-link-visited: #be95ff;
25255
- --cds-link-inverse: #0f62fe;
25256
- --cds-icon-primary: #f4f4f4;
25257
- --cds-icon-secondary: #c6c6c6;
25258
- --cds-icon-on-color: #ffffff;
25259
- --cds-icon-inverse: #161616;
25260
- --cds-support-error: #fa4d56;
25261
- --cds-support-success: #42be65;
25262
- --cds-support-warning: #f1c21b;
25263
- --cds-support-info: #4589ff;
25264
- --cds-support-error-inverse: #da1e28;
25265
- --cds-support-success-inverse: #24a148;
25266
- --cds-support-warning-inverse: #f1c21b;
25267
- --cds-support-info-inverse: #0f62fe;
25268
- --cds-overlay: rgba(0, 0, 0, 0.65);
25269
- --cds-toggle-off: #6f6f6f;
25270
- --cds-shadow: rgba(0, 0, 0, 0.8);
25271
- --cds-button-primary: #0f62fe;
25272
- --cds-button-secondary: #6f6f6f;
25273
- --cds-button-tertiary: #ffffff;
25274
- --cds-button-danger-primary: #da1e28;
25275
- --cds-button-danger-secondary: #fa4d56;
25276
- --cds-background-active: #525252;
25277
- --cds-layer-active: #525252;
25278
- --cds-button-danger-active: #750e13;
25279
- --cds-button-primary-active: #002d9c;
25280
- --cds-button-secondary-active: #393939;
25281
- --cds-button-tertiary-active: #c6c6c6;
25282
- --cds-focus-inset: #161616;
25283
- --cds-focus-inverse: #0f62fe;
25284
- --cds-background-hover: #353535;
25285
- --cds-layer-hover: #353535;
25286
- --cds-field-hover: #353535;
25287
- --cds-background-inverse-hover: #e5e5e5;
25288
- --cds-link-primary-hover: #a6c8ff;
25289
- --cds-button-danger-hover: #b81921;
25290
- --cds-button-primary-hover: #0353e9;
25291
- --cds-button-secondary-hover: #606060;
25292
- --cds-button-tertiary-hover: #f4f4f4;
25293
- --cds-background-selected: #393939;
25294
- --cds-background-selected-hover: #4c4c4c;
25295
- --cds-layer-selected: #393939;
25296
- --cds-layer-selected-hover: #4c4c4c;
25297
- --cds-layer-selected-inverse: #f4f4f4;
25298
- --cds-border-subtle-selected: #525252;
25299
- --cds-border-disabled: #262626;
25300
- --cds-text-disabled: #525252;
25301
- --cds-button-disabled: #525252;
25302
- --cds-icon-disabled: #525252;
25303
- --cds-text-on-color-disabled: #8d8d8d;
25304
- --cds-icon-on-color-disabled: #8d8d8d;
25305
- --cds-layer-selected-disabled: #8d8d8d;
25306
- --cds-skeleton-background: #353535;
25307
- --cds-skeleton-element: #525252;
25308
- --cds-brand-01: #0f62fe;
25309
- --cds-brand-02: #6f6f6f;
25310
- --cds-brand-03: #ffffff;
25311
- --cds-active-01: #525252;
25312
- --cds-hover-field: #353535;
25313
- --cds-danger: #da1e28;
25314
- --cds-caption-01-font-size: 0.75rem;
25315
- --cds-caption-01-font-weight: 400;
25316
- --cds-caption-01-line-height: 1.33333;
25317
- --cds-caption-01-letter-spacing: 0.32px;
25318
- --cds-caption-02-font-size: 0.875rem;
25319
- --cds-caption-02-font-weight: 400;
25320
- --cds-caption-02-line-height: 1.28572;
25321
- --cds-caption-02-letter-spacing: 0.32px;
25322
- --cds-label-01-font-size: 0.75rem;
25323
- --cds-label-01-font-weight: 400;
25324
- --cds-label-01-line-height: 1.33333;
25325
- --cds-label-01-letter-spacing: 0.32px;
25326
- --cds-label-02-font-size: 0.875rem;
25327
- --cds-label-02-font-weight: 400;
25328
- --cds-label-02-line-height: 1.28572;
25329
- --cds-label-02-letter-spacing: 0.16px;
25330
- --cds-helper-text-01-font-size: 0.75rem;
25331
- --cds-helper-text-01-line-height: 1.33333;
25332
- --cds-helper-text-01-letter-spacing: 0.32px;
25333
- --cds-helper-text-02-font-size: 0.875rem;
25334
- --cds-helper-text-02-line-height: 1.28572;
25335
- --cds-helper-text-02-letter-spacing: 0.16px;
25336
- --cds-body-short-01-font-size: 0.875rem;
25337
- --cds-body-short-01-font-weight: 400;
25338
- --cds-body-short-01-line-height: 1.28572;
25339
- --cds-body-short-01-letter-spacing: 0.16px;
25340
- --cds-body-long-01-font-size: 0.875rem;
25341
- --cds-body-long-01-font-weight: 400;
25342
- --cds-body-long-01-line-height: 1.42857;
25343
- --cds-body-long-01-letter-spacing: 0.16px;
25344
- --cds-body-short-02-font-size: 1rem;
25345
- --cds-body-short-02-font-weight: 400;
25346
- --cds-body-short-02-line-height: 1.375;
25347
- --cds-body-short-02-letter-spacing: 0;
25348
- --cds-body-long-02-font-size: 1rem;
25349
- --cds-body-long-02-font-weight: 400;
25350
- --cds-body-long-02-line-height: 1.5;
25351
- --cds-body-long-02-letter-spacing: 0;
25352
- --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
25353
- --cds-code-01-font-size: 0.75rem;
25354
- --cds-code-01-font-weight: 400;
25355
- --cds-code-01-line-height: 1.33333;
25356
- --cds-code-01-letter-spacing: 0.32px;
25357
- --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
25358
- --cds-code-02-font-size: 0.875rem;
25359
- --cds-code-02-font-weight: 400;
25360
- --cds-code-02-line-height: 1.42857;
25361
- --cds-code-02-letter-spacing: 0.32px;
25362
- --cds-heading-01-font-size: 0.875rem;
25363
- --cds-heading-01-font-weight: 600;
25364
- --cds-heading-01-line-height: 1.42857;
25365
- --cds-heading-01-letter-spacing: 0.16px;
25366
- --cds-productive-heading-01-font-size: 0.875rem;
25367
- --cds-productive-heading-01-font-weight: 600;
25368
- --cds-productive-heading-01-line-height: 1.28572;
25369
- --cds-productive-heading-01-letter-spacing: 0.16px;
25370
- --cds-heading-02-font-size: 1rem;
25371
- --cds-heading-02-font-weight: 600;
25372
- --cds-heading-02-line-height: 1.5;
25373
- --cds-heading-02-letter-spacing: 0;
25374
- --cds-productive-heading-02-font-size: 1rem;
25375
- --cds-productive-heading-02-font-weight: 600;
25376
- --cds-productive-heading-02-line-height: 1.375;
25377
- --cds-productive-heading-02-letter-spacing: 0;
25378
- --cds-productive-heading-03-font-size: 1.25rem;
25379
- --cds-productive-heading-03-font-weight: 400;
25380
- --cds-productive-heading-03-line-height: 1.4;
25381
- --cds-productive-heading-03-letter-spacing: 0;
25382
- --cds-productive-heading-04-font-size: 1.75rem;
25383
- --cds-productive-heading-04-font-weight: 400;
25384
- --cds-productive-heading-04-line-height: 1.28572;
25385
- --cds-productive-heading-04-letter-spacing: 0;
25386
- --cds-productive-heading-05-font-size: 2rem;
25387
- --cds-productive-heading-05-font-weight: 400;
25388
- --cds-productive-heading-05-line-height: 1.25;
25389
- --cds-productive-heading-05-letter-spacing: 0;
25390
- --cds-productive-heading-06-font-size: 2.625rem;
25391
- --cds-productive-heading-06-font-weight: 300;
25392
- --cds-productive-heading-06-line-height: 1.199;
25393
- --cds-productive-heading-06-letter-spacing: 0;
25394
- --cds-productive-heading-07-font-size: 3.375rem;
25395
- --cds-productive-heading-07-font-weight: 300;
25396
- --cds-productive-heading-07-line-height: 1.199;
25397
- --cds-productive-heading-07-letter-spacing: 0;
25398
- --cds-expressive-heading-01-font-size: 0.875rem;
25399
- --cds-expressive-heading-01-font-weight: 600;
25400
- --cds-expressive-heading-01-line-height: 1.25;
25401
- --cds-expressive-heading-01-letter-spacing: 0.16px;
25402
- --cds-expressive-heading-02-font-size: 1rem;
25403
- --cds-expressive-heading-02-font-weight: 600;
25404
- --cds-expressive-heading-02-line-height: 1.5;
25405
- --cds-expressive-heading-02-letter-spacing: 0;
25406
- --cds-expressive-heading-03-font-size: 1.25rem;
25407
- --cds-expressive-heading-03-font-weight: 400;
25408
- --cds-expressive-heading-03-line-height: 1.4;
25409
- --cds-expressive-heading-03-letter-spacing: 0;
25410
- --cds-expressive-heading-04-font-size: 1.75rem;
25411
- --cds-expressive-heading-04-font-weight: 400;
25412
- --cds-expressive-heading-04-line-height: 1.28572;
25413
- --cds-expressive-heading-04-letter-spacing: 0;
25414
- --cds-expressive-heading-05-font-size: 2rem;
25415
- --cds-expressive-heading-05-font-weight: 400;
25416
- --cds-expressive-heading-05-line-height: 1.25;
25417
- --cds-expressive-heading-05-letter-spacing: 0;
25418
- --cds-expressive-heading-06-font-size: 2rem;
25419
- --cds-expressive-heading-06-font-weight: 600;
25420
- --cds-expressive-heading-06-line-height: 1.25;
25421
- --cds-expressive-heading-06-letter-spacing: 0;
25422
- --cds-expressive-paragraph-01-font-size: 1.5rem;
25423
- --cds-expressive-paragraph-01-font-weight: 300;
25424
- --cds-expressive-paragraph-01-line-height: 1.334;
25425
- --cds-expressive-paragraph-01-letter-spacing: 0;
25426
- --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25427
- --cds-quotation-01-font-size: 1.25rem;
25428
- --cds-quotation-01-font-weight: 400;
25429
- --cds-quotation-01-line-height: 1.3;
25430
- --cds-quotation-01-letter-spacing: 0;
25431
- --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25432
- --cds-quotation-02-font-size: 2rem;
25433
- --cds-quotation-02-font-weight: 300;
25434
- --cds-quotation-02-line-height: 1.25;
25435
- --cds-quotation-02-letter-spacing: 0;
25436
- --cds-display-01-font-size: 2.625rem;
25437
- --cds-display-01-font-weight: 300;
25438
- --cds-display-01-line-height: 1.19;
25439
- --cds-display-01-letter-spacing: 0;
25440
- --cds-display-02-font-size: 2.625rem;
25441
- --cds-display-02-font-weight: 600;
25442
- --cds-display-02-line-height: 1.19;
25443
- --cds-display-02-letter-spacing: 0;
25444
- --cds-display-03-font-size: 2.625rem;
25445
- --cds-display-03-font-weight: 300;
25446
- --cds-display-03-line-height: 1.19;
25447
- --cds-display-03-letter-spacing: 0;
25448
- --cds-display-04-font-size: 2.625rem;
25449
- --cds-display-04-font-weight: 300;
25450
- --cds-display-04-line-height: 1.19;
25451
- --cds-display-04-letter-spacing: 0;
25452
- --cds-legal-01-font-size: 0.75rem;
25453
- --cds-legal-01-font-weight: 400;
25454
- --cds-legal-01-line-height: 1.33333;
25455
- --cds-legal-01-letter-spacing: 0.32px;
25456
- --cds-legal-02-font-size: 0.875rem;
25457
- --cds-legal-02-font-weight: 400;
25458
- --cds-legal-02-line-height: 1.28572;
25459
- --cds-legal-02-letter-spacing: 0.16px;
25460
- --cds-body-compact-01-font-size: 0.875rem;
25461
- --cds-body-compact-01-font-weight: 400;
25462
- --cds-body-compact-01-line-height: 1.28572;
25463
- --cds-body-compact-01-letter-spacing: 0.16px;
25464
- --cds-body-compact-02-font-size: 1rem;
25465
- --cds-body-compact-02-font-weight: 400;
25466
- --cds-body-compact-02-line-height: 1.375;
25467
- --cds-body-compact-02-letter-spacing: 0;
25468
- --cds-body-01-font-size: 0.875rem;
25469
- --cds-body-01-font-weight: 400;
25470
- --cds-body-01-line-height: 1.42857;
25471
- --cds-body-01-letter-spacing: 0.16px;
25472
- --cds-body-02-font-size: 1rem;
25473
- --cds-body-02-font-weight: 400;
25474
- --cds-body-02-line-height: 1.5;
25475
- --cds-body-02-letter-spacing: 0;
25476
- --cds-heading-compact-01-font-size: 0.875rem;
25477
- --cds-heading-compact-01-font-weight: 600;
25478
- --cds-heading-compact-01-line-height: 1.28572;
25479
- --cds-heading-compact-01-letter-spacing: 0.16px;
25480
- --cds-heading-compact-02-font-size: 1rem;
25481
- --cds-heading-compact-02-font-weight: 600;
25482
- --cds-heading-compact-02-line-height: 1.375;
25483
- --cds-heading-compact-02-letter-spacing: 0;
25484
- --cds-heading-03-font-size: 1.25rem;
25485
- --cds-heading-03-font-weight: 400;
25486
- --cds-heading-03-line-height: 1.4;
25487
- --cds-heading-03-letter-spacing: 0;
25488
- --cds-heading-04-font-size: 1.75rem;
25489
- --cds-heading-04-font-weight: 400;
25490
- --cds-heading-04-line-height: 1.28572;
25491
- --cds-heading-04-letter-spacing: 0;
25492
- --cds-heading-05-font-size: 2rem;
25493
- --cds-heading-05-font-weight: 400;
25494
- --cds-heading-05-line-height: 1.25;
25495
- --cds-heading-05-letter-spacing: 0;
25496
- --cds-heading-06-font-size: 2.625rem;
25497
- --cds-heading-06-font-weight: 300;
25498
- --cds-heading-06-line-height: 1.199;
25499
- --cds-heading-06-letter-spacing: 0;
25500
- --cds-heading-07-font-size: 3.375rem;
25501
- --cds-heading-07-font-weight: 300;
25502
- --cds-heading-07-line-height: 1.199;
25503
- --cds-heading-07-letter-spacing: 0;
25504
- --cds-fluid-heading-03-font-size: 1.25rem;
25505
- --cds-fluid-heading-03-font-weight: 400;
25506
- --cds-fluid-heading-03-line-height: 1.4;
25507
- --cds-fluid-heading-03-letter-spacing: 0;
25508
- --cds-fluid-heading-04-font-size: 1.75rem;
25509
- --cds-fluid-heading-04-font-weight: 400;
25510
- --cds-fluid-heading-04-line-height: 1.28572;
25511
- --cds-fluid-heading-04-letter-spacing: 0;
25512
- --cds-fluid-heading-05-font-size: 2rem;
25513
- --cds-fluid-heading-05-font-weight: 400;
25514
- --cds-fluid-heading-05-line-height: 1.25;
25515
- --cds-fluid-heading-05-letter-spacing: 0;
25516
- --cds-fluid-heading-06-font-size: 2rem;
25517
- --cds-fluid-heading-06-font-weight: 600;
25518
- --cds-fluid-heading-06-line-height: 1.25;
25519
- --cds-fluid-heading-06-letter-spacing: 0;
25520
- --cds-fluid-paragraph-01-font-size: 1.5rem;
25521
- --cds-fluid-paragraph-01-font-weight: 300;
25522
- --cds-fluid-paragraph-01-line-height: 1.334;
25523
- --cds-fluid-paragraph-01-letter-spacing: 0;
25524
- --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25525
- --cds-fluid-quotation-01-font-size: 1.25rem;
25526
- --cds-fluid-quotation-01-font-weight: 400;
25527
- --cds-fluid-quotation-01-line-height: 1.3;
25528
- --cds-fluid-quotation-01-letter-spacing: 0;
25529
- --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25530
- --cds-fluid-quotation-02-font-size: 2rem;
25531
- --cds-fluid-quotation-02-font-weight: 300;
25532
- --cds-fluid-quotation-02-line-height: 1.25;
25533
- --cds-fluid-quotation-02-letter-spacing: 0;
25534
- --cds-fluid-display-01-font-size: 2.625rem;
25535
- --cds-fluid-display-01-font-weight: 300;
25536
- --cds-fluid-display-01-line-height: 1.19;
25537
- --cds-fluid-display-01-letter-spacing: 0;
25538
- --cds-fluid-display-02-font-size: 2.625rem;
25539
- --cds-fluid-display-02-font-weight: 600;
25540
- --cds-fluid-display-02-line-height: 1.19;
25541
- --cds-fluid-display-02-letter-spacing: 0;
25542
- --cds-fluid-display-03-font-size: 2.625rem;
25543
- --cds-fluid-display-03-font-weight: 300;
25544
- --cds-fluid-display-03-line-height: 1.19;
25545
- --cds-fluid-display-03-letter-spacing: 0;
25546
- --cds-fluid-display-04-font-size: 2.625rem;
25547
- --cds-fluid-display-04-font-weight: 300;
25548
- --cds-fluid-display-04-line-height: 1.19;
25549
- --cds-fluid-display-04-letter-spacing: 0;
25550
- --cds-spacing-01: 0.125rem;
25551
- --cds-spacing-02: 0.25rem;
25552
- --cds-spacing-03: 0.5rem;
25553
- --cds-spacing-04: 0.75rem;
25554
- --cds-spacing-05: 1rem;
25555
- --cds-spacing-06: 1.5rem;
25556
- --cds-spacing-07: 2rem;
25557
- --cds-spacing-08: 2.5rem;
25558
- --cds-spacing-09: 3rem;
25559
- --cds-spacing-10: 4rem;
25560
- --cds-spacing-11: 5rem;
25561
- --cds-spacing-12: 6rem;
25562
- --cds-spacing-13: 10rem;
25563
- --cds-fluid-spacing-01: 0;
25564
- --cds-fluid-spacing-02: 2vw;
25565
- --cds-fluid-spacing-03: 5vw;
25566
- --cds-fluid-spacing-04: 10vw;
25567
- --cds-layout-01: 1rem;
25568
- --cds-layout-02: 1.5rem;
25569
- --cds-layout-03: 2rem;
25570
- --cds-layout-04: 3rem;
25571
- --cds-layout-05: 4rem;
25572
- --cds-layout-06: 6rem;
25573
- --cds-layout-07: 10rem;
25574
- --cds-container-01: 1.5rem;
25575
- --cds-container-02: 2rem;
25576
- --cds-container-03: 2.5rem;
25577
- --cds-container-04: 3rem;
25578
- --cds-container-05: 4rem;
25579
- --cds-size-xsmall: 1.5rem;
25580
- --cds-size-small: 2rem;
25581
- --cds-size-medium: 2.5rem;
25582
- --cds-size-large: 3rem;
25583
- --cds-size-xlarge: 4rem;
25584
- --cds-size-2XLarge: 5rem;
25585
- --cds-icon-size-01: 1rem;
25586
- --cds-icon-size-02: 1.25rem;
24849
+ height: 1.25rem;
24850
+ padding-top: 0;
24851
+ padding-right: 0.1875rem;
24852
+ border-width: 0.0625rem;
24853
+ border-style: solid;
24854
+ border-color: var(--cds-button-tertiary, #0f62fe);
24855
+ border-radius: var(--cds-spacing-04, 0.75rem);
24856
+ background-color: transparent;
24857
+ color: var(--cds-button-tertiary, #0f62fe);
24858
+ white-space: nowrap;
24859
+ border-color: var(--cds-button-tertiary, #0f62fe);
24860
+ background-color: var(--cds-button-tertiary, #0f62fe);
24861
+ color: var(--cds-text-inverse, #ffffff);
24862
+ }
24863
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
24864
+ border-color: var(--cds-button-tertiary, #0f62fe);
24865
+ background-color: var(--cds-button-tertiary, #0f62fe);
24866
+ color: var(--cds-text-inverse, #ffffff);
24867
+ }
24868
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:focus {
24869
+ border-color: var(--cds-text-inverse, #ffffff);
24870
+ background-color: var(--cds-button-tertiary, #0f62fe);
24871
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px 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:focus-visible {
24875
+ outline: none;
24876
+ }
24877
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
24878
+ margin: 0.0625rem 0 0 0;
24879
+ vertical-align: text-top;
24880
+ }
24881
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
24882
+ border-color: var(--cds-button-tertiary, #0f62fe);
24883
+ background-color: transparent;
24884
+ color: var(--cds-button-tertiary, #0f62fe);
24885
+ }
24886
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:focus {
24887
+ border-color: var(--cds-text-inverse, #ffffff);
24888
+ background-color: transparent;
24889
+ 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);
24890
+ color: var(--cds-button-tertiary, #0f62fe);
24891
+ }
24892
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
24893
+ transform: rotate(180deg);
24894
+ }
24895
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
25587
24896
  font-size: var(--cds-body-long-01-font-size, 0.875rem);
25588
24897
  font-weight: var(--cds-body-long-01-font-weight, 400);
25589
24898
  line-height: var(--cds-body-long-01-line-height, 1.42857);
25590
24899
  letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
25591
24900
  display: block;
25592
24901
  padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
25593
- border-left-width: 0.078125rem;
25594
- border-left-style: solid;
24902
+ border-left: 0.078125rem solid var(--cds-text-01, #161616);
25595
24903
  margin: var(--cds-spacing-02, 0.25rem) 0;
25596
24904
  animation: fade 600ms;
25597
- border-left-color: var(--cds-text-01, #161616);
25598
24905
  color: var(--cds-text-01, #161616);
25599
24906
  }
24907
+ @media (prefers-reduced-motion: reduce) {
24908
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
24909
+ animation: none;
24910
+ }
24911
+ }
25600
24912
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__body a {
25601
24913
  color: var(--cds-link-01, #0f62fe);
25602
24914
  }
@@ -26331,4 +25643,189 @@ th.c4p--datagrid__select-all-toggle-on.button {
26331
25643
  color: #161616 !important;
26332
25644
  }
26333
25645
 
25646
+ /* stylelint-disable declaration-no-important */
25647
+ .c4p--checklist__header {
25648
+ display: flex;
25649
+ padding: var(--cds-spacing-05, 1rem);
25650
+ background-color: var(--cds-ui-01, #f4f4f4);
25651
+ gap: var(--cds-spacing-03, 0.5rem);
25652
+ }
25653
+ .c4p--checklist__chart {
25654
+ position: relative;
25655
+ width: var(--cds-spacing-08, 2.5rem);
25656
+ min-width: var(--cds-spacing-08, 2.5rem);
25657
+ height: var(--cds-spacing-08, 2.5rem);
25658
+ align-self: center;
25659
+ }
25660
+ .c4p--checklist__chart::after {
25661
+ position: absolute;
25662
+ top: var(--cds-spacing-02, 0.25rem);
25663
+ left: var(--cds-spacing-02, 0.25rem);
25664
+ width: var(--cds-spacing-07, 2rem);
25665
+ height: var(--cds-spacing-07, 2rem);
25666
+ border-radius: 50%;
25667
+ background-color: var(--cds-ui-01, #f4f4f4);
25668
+ content: "";
25669
+ }
25670
+ .c4p--checklist__titles {
25671
+ display: flex;
25672
+ flex-direction: column;
25673
+ justify-content: center;
25674
+ }
25675
+ .c4p--checklist__title {
25676
+ font-size: var(--cds-productive-heading-02-font-size, 1rem);
25677
+ font-weight: var(--cds-productive-heading-02-font-weight, 600);
25678
+ line-height: var(--cds-productive-heading-02-line-height, 1.375);
25679
+ letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
25680
+ display: -webkit-box;
25681
+ overflow: hidden;
25682
+ -webkit-box-orient: vertical;
25683
+ -webkit-line-clamp: 2;
25684
+ text-overflow: ellipsis;
25685
+ }
25686
+ .c4p--checklist__chart-label {
25687
+ font-size: var(--cds-label-01-font-size, 0.75rem);
25688
+ font-weight: var(--cds-label-01-font-weight, 400);
25689
+ line-height: var(--cds-label-01-line-height, 1.33333);
25690
+ letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
25691
+ display: -webkit-box;
25692
+ overflow: hidden;
25693
+ -webkit-box-orient: vertical;
25694
+ -webkit-line-clamp: 2;
25695
+ text-overflow: ellipsis;
25696
+ color: var(--cds-text-02, #525252);
25697
+ }
25698
+ .c4p--checklist__title + .c4p--checklist__chart-label {
25699
+ margin-top: var(--cds-spacing-01, 0.125rem);
25700
+ }
25701
+ .c4p--checklist__toggle {
25702
+ width: 30px;
25703
+ min-width: 30px;
25704
+ height: 30px;
25705
+ min-height: 30px !important;
25706
+ /* stylelint-disable-next-line carbon/layout-token-use */
25707
+ padding: 0 0.375rem !important;
25708
+ margin-top: calc(-1 * var(--cds-spacing-03, 0.5rem)) !important;
25709
+ margin-right: calc(-1 * var(--cds-spacing-03, 0.5rem)) !important;
25710
+ margin-left: auto !important;
25711
+ }
25712
+ .c4p--checklist__chevron {
25713
+ color: var(--cds-text-01, #161616);
25714
+ transform: rotate(0deg);
25715
+ transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
25716
+ }
25717
+ @media (prefers-reduced-motion: reduce) {
25718
+ .c4p--checklist__chevron {
25719
+ transition: none;
25720
+ }
25721
+ }
25722
+ .c4p--checklist__closed .c4p--checklist__chevron {
25723
+ transform: rotate(-180deg);
25724
+ }
25725
+ .c4p--checklist__button {
25726
+ max-width: none !important;
25727
+ min-height: auto !important;
25728
+ /* stylelint-disable-next-line declaration-property-value-disallowed-list */
25729
+ flex-shrink: unset !important;
25730
+ padding: 0 !important;
25731
+ border: none !important;
25732
+ background-color: transparent !important;
25733
+ color: var(--cds-link-01, #0f62fe) !important;
25734
+ }
25735
+ .c4p--checklist__button div {
25736
+ display: -webkit-box;
25737
+ overflow: hidden;
25738
+ -webkit-box-orient: vertical;
25739
+ -webkit-line-clamp: 2;
25740
+ text-overflow: ellipsis;
25741
+ }
25742
+ .c4p--checklist__button:hover {
25743
+ background: transparent;
25744
+ color: var(--cds-link-primary-hover, #0043ce);
25745
+ text-decoration: underline;
25746
+ }
25747
+ .c4p--checklist__button:active {
25748
+ background: transparent;
25749
+ color: var(--cds-text-primary, #161616);
25750
+ text-decoration: underline;
25751
+ }
25752
+ .c4p--checklist__button--error {
25753
+ color: var(--cds-text-error, #da1e28) !important;
25754
+ }
25755
+ .c4p--checklist__content-outer {
25756
+ overflow: hidden;
25757
+ }
25758
+ .c4p--checklist__content-inner {
25759
+ height: 100%;
25760
+ background-color: var(--cds-ui-01, #f4f4f4);
25761
+ transform: translate(0, 0);
25762
+ transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
25763
+ }
25764
+ @media (prefers-reduced-motion: reduce) {
25765
+ .c4p--checklist__content-inner {
25766
+ transition: none;
25767
+ }
25768
+ }
25769
+ .c4p--checklist__closed .c4p--checklist__content-inner {
25770
+ height: 0;
25771
+ transform: translate(0, -100%);
25772
+ }
25773
+ .c4p--checklist__list-group {
25774
+ padding: var(--cds-spacing-05, 1rem);
25775
+ border-top: 1px solid var(--cds-ui-03, #e0e0e0);
25776
+ }
25777
+ .c4p--checklist__list-title {
25778
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25779
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25780
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25781
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25782
+ display: -webkit-box;
25783
+ overflow: hidden;
25784
+ -webkit-box-orient: vertical;
25785
+ -webkit-line-clamp: 2;
25786
+ text-overflow: ellipsis;
25787
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
25788
+ }
25789
+ .c4p--checklist__list-item {
25790
+ display: flex;
25791
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
25792
+ }
25793
+ .c4p--checklist__list-item:last-child {
25794
+ margin-bottom: 0;
25795
+ }
25796
+ .c4p--checklist__icon {
25797
+ /* stylelint-disable-next-line carbon/layout-token-use */
25798
+ margin: 0.0625rem var(--cds-spacing-03, 0.5rem) 0 0;
25799
+ color: var(--cds-link-01, #0f62fe);
25800
+ }
25801
+ .c4p--checklist__icon--error {
25802
+ color: var(--cds-support-error, #da1e28);
25803
+ }
25804
+ .c4p--checklist__icon--disabled {
25805
+ color: var(--cds-disabled-03, #8d8d8d);
25806
+ }
25807
+ .c4p--checklist__label {
25808
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25809
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25810
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25811
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25812
+ display: -webkit-box;
25813
+ overflow: hidden;
25814
+ -webkit-box-orient: vertical;
25815
+ -webkit-line-clamp: 2;
25816
+ text-overflow: ellipsis;
25817
+ }
25818
+ .c4p--checklist__label--checked, .c4p--checklist__label--disabled, .c4p--checklist__label--error {
25819
+ color: var(--cds-disabled-03, #8d8d8d);
25820
+ }
25821
+ .c4p--checklist__footer {
25822
+ display: -webkit-box;
25823
+ overflow: hidden;
25824
+ -webkit-box-orient: vertical;
25825
+ -webkit-line-clamp: 2;
25826
+ text-overflow: ellipsis;
25827
+ padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem);
25828
+ border-top: 1px solid var(--cds-ui-03, #e0e0e0);
25829
+ }
25830
+
26334
25831
  /*# sourceMappingURL=index.css.map */