@carbon/ibm-products 1.57.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. package/css/index-full-carbon.css +336 -900
  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 +336 -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 +336 -900
  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/DatagridHeaderRow.js +1 -0
  18. package/es/components/NonLinearReading/NonLinearReading.js +9 -4
  19. package/es/components/index.js +2 -1
  20. package/es/global/js/package-settings.js +1 -0
  21. package/lib/components/Checklist/Checklist.js +267 -0
  22. package/lib/components/Checklist/ChecklistChart.js +94 -0
  23. package/lib/components/Checklist/ChecklistIcon.js +92 -0
  24. package/lib/components/Checklist/index.js +12 -0
  25. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +1 -0
  26. package/lib/components/NonLinearReading/NonLinearReading.js +8 -3
  27. package/lib/components/index.js +8 -1
  28. package/lib/global/js/package-settings.js +1 -0
  29. package/package.json +2 -2
  30. package/scss/components/Checklist/_checklist.scss +231 -0
  31. package/scss/components/Checklist/_index.scss +8 -0
  32. package/scss/components/Checklist/_storybook-styles.scss +13 -0
  33. package/scss/components/Datagrid/styles/_datagrid.scss +31 -5
  34. package/scss/components/NonLinearReading/_non-linear-reading.scss +76 -64
  35. package/scss/components/_index.scss +1 -0
@@ -21154,6 +21154,22 @@ button.c4p--add-select__global-filter-toggle--open {
21154
21154
  width: 100%;
21155
21155
  padding-top: 0;
21156
21156
  }
21157
+ .c4p--datagrid__grid-container .bx--data-table-header__description {
21158
+ overflow: hidden;
21159
+ text-overflow: ellipsis;
21160
+ white-space: nowrap;
21161
+ }
21162
+ .c4p--datagrid__grid-container .bx--data-table-header__title {
21163
+ overflow: hidden;
21164
+ max-width: 80ch;
21165
+ text-overflow: ellipsis;
21166
+ white-space: nowrap;
21167
+ }
21168
+ @media (min-width: 42rem) {
21169
+ .c4p--datagrid__grid-container .bx--data-table-header__title {
21170
+ max-width: 55ch;
21171
+ }
21172
+ }
21157
21173
  .c4p--datagrid__grid-container .bx--data-table-content {
21158
21174
  width: 100%;
21159
21175
  height: 100%;
@@ -21558,6 +21574,7 @@ button.c4p--add-select__global-filter-toggle--open {
21558
21574
  width: 1rem;
21559
21575
  height: 100%;
21560
21576
  margin: 0;
21577
+ -moz-appearance: initial;
21561
21578
  -webkit-appearance: none;
21562
21579
  appearance: none;
21563
21580
  background: transparent;
@@ -21567,12 +21584,12 @@ button.c4p--add-select__global-filter-toggle--open {
21567
21584
  outline: 0;
21568
21585
  }
21569
21586
 
21570
- .c4p--datagrid .c4p--datagrid__col-resizer-range:focus::before {
21587
+ .c4p--datagrid .c4p--datagrid__col-resizer-range:focus + .c4p--datagrid__col-resize-indicator::before {
21571
21588
  position: absolute;
21572
21589
  top: 50%;
21573
21590
  left: 50%;
21574
21591
  width: 2px;
21575
- height: 100%;
21592
+ height: var(--c4p--datagrid--header-height);
21576
21593
  background-color: var(--cds-focus, #0f62fe);
21577
21594
  content: "";
21578
21595
  transform: translate(-50%, -50%);
@@ -21590,11 +21607,11 @@ button.c4p--add-select__global-filter-toggle--open {
21590
21607
  transform: translate(-50%, 0);
21591
21608
  }
21592
21609
 
21593
- .c4p--datagrid .c4p--datagrid__col-resizer-range:focus::after {
21610
+ .c4p--datagrid .c4p--datagrid__col-resizer-range:focus + .c4p--datagrid__col-resize-indicator::after {
21594
21611
  position: absolute;
21595
21612
  /* stylelint-disable-next-line carbon/layout-token-use */
21596
- top: var(--c4p--datagrid--row-height);
21597
- right: var(--cds-spacing-03, 0.5rem);
21613
+ top: calc(var(--c4p--datagrid--row-height) - 20px);
21614
+ right: var(--cds-spacing-02, 0.25rem);
21598
21615
  width: 1px;
21599
21616
  height: calc(var(--c4p--datagrid--grid-height) - var(--c4p--datagrid--row-height));
21600
21617
  background-color: var(--cds-active-ui, #c6c6c6);
@@ -21611,6 +21628,10 @@ button.c4p--add-select__global-filter-toggle--open {
21611
21628
  background: transparent;
21612
21629
  }
21613
21630
 
21631
+ .c4p--datagrid .c4p--datagrid__col-resizer-range::-moz-range-thumb {
21632
+ visibility: hidden;
21633
+ }
21634
+
21614
21635
  /*
21615
21636
  * Licensed Materials - Property of IBM
21616
21637
  * 5724-Q36
@@ -24279,22 +24300,32 @@ th.c4p--datagrid__select-all-toggle-on.button {
24279
24300
  padding-right: 0.1875rem;
24280
24301
  border-width: 0.0625rem;
24281
24302
  border-style: solid;
24303
+ border-color: var(--cds-button-tertiary, #0f62fe);
24282
24304
  border-radius: var(--cds-spacing-04, 0.75rem);
24283
- white-space: nowrap;
24284
- border-color: var(--cds-interactive-03, #0f62fe);
24285
24305
  background-color: transparent;
24286
- color: var(--cds-interactive-03, #0f62fe);
24306
+ color: var(--cds-button-tertiary, #0f62fe);
24307
+ white-space: nowrap;
24287
24308
  }
24288
24309
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
24289
- cursor: pointer;
24310
+ border-color: var(--cds-button-tertiary, #0f62fe);
24311
+ background-color: var(--cds-button-tertiary, #0f62fe);
24312
+ color: var(--cds-text-inverse, #ffffff);
24313
+ }
24314
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:focus {
24315
+ border-color: var(--cds-text-inverse, #ffffff);
24316
+ background-color: var(--cds-button-tertiary, #0f62fe);
24317
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24318
+ color: var(--cds-text-inverse, #ffffff);
24319
+ }
24320
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:focus-visible {
24321
+ outline: none;
24290
24322
  }
24291
24323
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed svg {
24292
24324
  margin: 0.0625rem 0 0 0;
24293
24325
  vertical-align: text-top;
24294
24326
  }
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);
24327
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed + .c4p--non-linear-reading__body {
24328
+ display: none;
24298
24329
  }
24299
24330
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open {
24300
24331
  height: 1.25rem;
@@ -24302,25 +24333,46 @@ th.c4p--datagrid__select-all-toggle-on.button {
24302
24333
  padding-right: 0.1875rem;
24303
24334
  border-width: 0.0625rem;
24304
24335
  border-style: solid;
24336
+ border-color: var(--cds-button-tertiary, #0f62fe);
24305
24337
  border-radius: var(--cds-spacing-04, 0.75rem);
24338
+ background-color: transparent;
24339
+ color: var(--cds-button-tertiary, #0f62fe);
24306
24340
  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);
24341
+ border-color: var(--cds-button-tertiary, #0f62fe);
24342
+ background-color: var(--cds-button-tertiary, #0f62fe);
24343
+ color: var(--cds-text-inverse, #ffffff);
24310
24344
  }
24311
24345
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
24312
- cursor: pointer;
24346
+ border-color: var(--cds-button-tertiary, #0f62fe);
24347
+ background-color: var(--cds-button-tertiary, #0f62fe);
24348
+ color: var(--cds-text-inverse, #ffffff);
24349
+ }
24350
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus {
24351
+ border-color: var(--cds-text-inverse, #ffffff);
24352
+ background-color: var(--cds-button-tertiary, #0f62fe);
24353
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24354
+ color: var(--cds-text-inverse, #ffffff);
24355
+ }
24356
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus-visible {
24357
+ outline: none;
24313
24358
  }
24314
24359
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24315
24360
  margin: 0.0625rem 0 0 0;
24316
24361
  vertical-align: text-top;
24317
24362
  }
24318
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24319
- transform: rotate(180deg);
24320
- }
24321
24363
  .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
24364
+ border-color: var(--cds-button-tertiary, #0f62fe);
24322
24365
  background-color: transparent;
24323
- color: var(--cds-interactive-03, #0f62fe);
24366
+ color: var(--cds-button-tertiary, #0f62fe);
24367
+ }
24368
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:focus {
24369
+ border-color: var(--cds-text-inverse, #ffffff);
24370
+ background-color: transparent;
24371
+ 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);
24372
+ color: var(--cds-button-tertiary, #0f62fe);
24373
+ }
24374
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24375
+ transform: rotate(180deg);
24324
24376
  }
24325
24377
  .c4p--non-linear-reading__light .c4p--non-linear-reading__body {
24326
24378
  font-size: var(--cds-body-long-01-font-size, 0.875rem);
@@ -24329,14 +24381,17 @@ th.c4p--datagrid__select-all-toggle-on.button {
24329
24381
  letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
24330
24382
  display: block;
24331
24383
  padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
24332
- border-left-width: 0.078125rem;
24333
- border-left-style: solid;
24384
+ border-left: 0.078125rem solid var(--cds-text-01, #161616);
24334
24385
  margin: var(--cds-spacing-02, 0.25rem) 0;
24335
24386
  animation: fade 600ms;
24336
- border-left-color: var(--cds-text-01, #161616);
24387
+ }
24388
+ @media (prefers-reduced-motion: reduce) {
24389
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__body {
24390
+ animation: none;
24391
+ }
24337
24392
  }
24338
24393
 
24339
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
24394
+ .c4p--non-linear-reading__dark {
24340
24395
  --cds-interactive-01: #0f62fe;
24341
24396
  --cds-interactive-02: #6f6f6f;
24342
24397
  --cds-interactive-03: #ffffff;
@@ -24757,908 +24812,104 @@ th.c4p--datagrid__select-all-toggle-on.button {
24757
24812
  --cds-size-2XLarge: 5rem;
24758
24813
  --cds-icon-size-01: 1rem;
24759
24814
  --cds-icon-size-02: 1.25rem;
24815
+ }
24816
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
24760
24817
  height: 1.25rem;
24761
24818
  padding-top: 0;
24762
24819
  padding-right: 0.1875rem;
24763
24820
  border-width: 0.0625rem;
24764
24821
  border-style: solid;
24822
+ border-color: var(--cds-button-tertiary, #0f62fe);
24765
24823
  border-radius: var(--cds-spacing-04, 0.75rem);
24766
- white-space: nowrap;
24767
- border-color: var(--cds-icon-03, #ffffff);
24768
24824
  background-color: transparent;
24769
- color: var(--cds-text-01, #161616);
24825
+ color: var(--cds-button-tertiary, #0f62fe);
24826
+ white-space: nowrap;
24770
24827
  }
24771
24828
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
24772
- cursor: pointer;
24829
+ border-color: var(--cds-button-tertiary, #0f62fe);
24830
+ background-color: var(--cds-button-tertiary, #0f62fe);
24831
+ color: var(--cds-text-inverse, #ffffff);
24832
+ }
24833
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:focus {
24834
+ border-color: var(--cds-text-inverse, #ffffff);
24835
+ background-color: var(--cds-button-tertiary, #0f62fe);
24836
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24837
+ color: var(--cds-text-inverse, #ffffff);
24838
+ }
24839
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:focus-visible {
24840
+ outline: none;
24773
24841
  }
24774
24842
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed svg {
24775
24843
  margin: 0.0625rem 0 0 0;
24776
24844
  vertical-align: text-top;
24777
24845
  }
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);
24846
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed + .c4p--non-linear-reading__body {
24847
+ display: none;
24781
24848
  }
24782
24849
  .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;
24850
+ height: 1.25rem;
24851
+ padding-top: 0;
24852
+ padding-right: 0.1875rem;
24853
+ border-width: 0.0625rem;
24854
+ border-style: solid;
24855
+ border-color: var(--cds-button-tertiary, #0f62fe);
24856
+ border-radius: var(--cds-spacing-04, 0.75rem);
24857
+ background-color: transparent;
24858
+ color: var(--cds-button-tertiary, #0f62fe);
24859
+ white-space: nowrap;
24860
+ border-color: var(--cds-button-tertiary, #0f62fe);
24861
+ background-color: var(--cds-button-tertiary, #0f62fe);
24862
+ color: var(--cds-text-inverse, #ffffff);
24863
+ }
24864
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
24865
+ border-color: var(--cds-button-tertiary, #0f62fe);
24866
+ background-color: var(--cds-button-tertiary, #0f62fe);
24867
+ color: var(--cds-text-inverse, #ffffff);
24868
+ }
24869
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:focus {
24870
+ border-color: var(--cds-text-inverse, #ffffff);
24871
+ background-color: var(--cds-button-tertiary, #0f62fe);
24872
+ box-shadow: 0 0 0 1px var(--cds-text-inverse, #ffffff), 0 0 0 3px var(--cds-button-tertiary, #0f62fe);
24873
+ color: var(--cds-text-inverse, #ffffff);
24874
+ }
24875
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:focus-visible {
24876
+ outline: none;
24877
+ }
24878
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
24879
+ margin: 0.0625rem 0 0 0;
24880
+ vertical-align: text-top;
24881
+ }
24882
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
24883
+ border-color: var(--cds-button-tertiary, #0f62fe);
24884
+ background-color: transparent;
24885
+ color: var(--cds-button-tertiary, #0f62fe);
24886
+ }
24887
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:focus {
24888
+ border-color: var(--cds-text-inverse, #ffffff);
24889
+ background-color: transparent;
24890
+ 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);
24891
+ color: var(--cds-button-tertiary, #0f62fe);
24892
+ }
24893
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
24894
+ transform: rotate(180deg);
24895
+ }
24896
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
25649
24897
  font-size: var(--cds-body-long-01-font-size, 0.875rem);
25650
24898
  font-weight: var(--cds-body-long-01-font-weight, 400);
25651
24899
  line-height: var(--cds-body-long-01-line-height, 1.42857);
25652
24900
  letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
25653
24901
  display: block;
25654
24902
  padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
25655
- border-left-width: 0.078125rem;
25656
- border-left-style: solid;
24903
+ border-left: 0.078125rem solid var(--cds-text-01, #161616);
25657
24904
  margin: var(--cds-spacing-02, 0.25rem) 0;
25658
24905
  animation: fade 600ms;
25659
- border-left-color: var(--cds-text-01, #161616);
25660
24906
  color: var(--cds-text-01, #161616);
25661
24907
  }
24908
+ @media (prefers-reduced-motion: reduce) {
24909
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
24910
+ animation: none;
24911
+ }
24912
+ }
25662
24913
  .c4p--non-linear-reading__dark .c4p--non-linear-reading__body a {
25663
24914
  color: var(--cds-link-01, #0f62fe);
25664
24915
  }
@@ -26393,6 +25644,191 @@ th.c4p--datagrid__select-all-toggle-on.button {
26393
25644
  color: #161616 !important;
26394
25645
  }
26395
25646
 
25647
+ /* stylelint-disable declaration-no-important */
25648
+ .c4p--checklist__header {
25649
+ display: flex;
25650
+ padding: var(--cds-spacing-05, 1rem);
25651
+ background-color: var(--cds-ui-01, #f4f4f4);
25652
+ gap: var(--cds-spacing-03, 0.5rem);
25653
+ }
25654
+ .c4p--checklist__chart {
25655
+ position: relative;
25656
+ width: var(--cds-spacing-08, 2.5rem);
25657
+ min-width: var(--cds-spacing-08, 2.5rem);
25658
+ height: var(--cds-spacing-08, 2.5rem);
25659
+ align-self: center;
25660
+ }
25661
+ .c4p--checklist__chart::after {
25662
+ position: absolute;
25663
+ top: var(--cds-spacing-02, 0.25rem);
25664
+ left: var(--cds-spacing-02, 0.25rem);
25665
+ width: var(--cds-spacing-07, 2rem);
25666
+ height: var(--cds-spacing-07, 2rem);
25667
+ border-radius: 50%;
25668
+ background-color: var(--cds-ui-01, #f4f4f4);
25669
+ content: "";
25670
+ }
25671
+ .c4p--checklist__titles {
25672
+ display: flex;
25673
+ flex-direction: column;
25674
+ justify-content: center;
25675
+ }
25676
+ .c4p--checklist__title {
25677
+ font-size: var(--cds-productive-heading-02-font-size, 1rem);
25678
+ font-weight: var(--cds-productive-heading-02-font-weight, 600);
25679
+ line-height: var(--cds-productive-heading-02-line-height, 1.375);
25680
+ letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
25681
+ display: -webkit-box;
25682
+ overflow: hidden;
25683
+ -webkit-box-orient: vertical;
25684
+ -webkit-line-clamp: 2;
25685
+ text-overflow: ellipsis;
25686
+ }
25687
+ .c4p--checklist__chart-label {
25688
+ font-size: var(--cds-label-01-font-size, 0.75rem);
25689
+ font-weight: var(--cds-label-01-font-weight, 400);
25690
+ line-height: var(--cds-label-01-line-height, 1.33333);
25691
+ letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
25692
+ display: -webkit-box;
25693
+ overflow: hidden;
25694
+ -webkit-box-orient: vertical;
25695
+ -webkit-line-clamp: 2;
25696
+ text-overflow: ellipsis;
25697
+ color: var(--cds-text-02, #525252);
25698
+ }
25699
+ .c4p--checklist__title + .c4p--checklist__chart-label {
25700
+ margin-top: var(--cds-spacing-01, 0.125rem);
25701
+ }
25702
+ .c4p--checklist__toggle {
25703
+ width: 30px;
25704
+ min-width: 30px;
25705
+ height: 30px;
25706
+ min-height: 30px !important;
25707
+ /* stylelint-disable-next-line carbon/layout-token-use */
25708
+ padding: 0 0.375rem !important;
25709
+ margin-top: calc(-1 * var(--cds-spacing-03, 0.5rem)) !important;
25710
+ margin-right: calc(-1 * var(--cds-spacing-03, 0.5rem)) !important;
25711
+ margin-left: auto !important;
25712
+ }
25713
+ .c4p--checklist__chevron {
25714
+ color: var(--cds-text-01, #161616);
25715
+ transform: rotate(0deg);
25716
+ transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
25717
+ }
25718
+ @media (prefers-reduced-motion: reduce) {
25719
+ .c4p--checklist__chevron {
25720
+ transition: none;
25721
+ }
25722
+ }
25723
+ .c4p--checklist__closed .c4p--checklist__chevron {
25724
+ transform: rotate(-180deg);
25725
+ }
25726
+ .c4p--checklist__button {
25727
+ max-width: none !important;
25728
+ min-height: auto !important;
25729
+ /* stylelint-disable-next-line declaration-property-value-disallowed-list */
25730
+ flex-shrink: unset !important;
25731
+ padding: 0 !important;
25732
+ border: none !important;
25733
+ background-color: transparent !important;
25734
+ color: var(--cds-link-01, #0f62fe) !important;
25735
+ }
25736
+ .c4p--checklist__button div {
25737
+ display: -webkit-box;
25738
+ overflow: hidden;
25739
+ -webkit-box-orient: vertical;
25740
+ -webkit-line-clamp: 2;
25741
+ text-overflow: ellipsis;
25742
+ }
25743
+ .c4p--checklist__button:hover {
25744
+ background: transparent;
25745
+ color: var(--cds-link-primary-hover, #0043ce);
25746
+ text-decoration: underline;
25747
+ }
25748
+ .c4p--checklist__button:active {
25749
+ background: transparent;
25750
+ color: var(--cds-text-primary, #161616);
25751
+ text-decoration: underline;
25752
+ }
25753
+ .c4p--checklist__button--error {
25754
+ color: var(--cds-text-error, #da1e28) !important;
25755
+ }
25756
+ .c4p--checklist__content-outer {
25757
+ overflow: hidden;
25758
+ }
25759
+ .c4p--checklist__content-inner {
25760
+ height: 100%;
25761
+ background-color: var(--cds-ui-01, #f4f4f4);
25762
+ transform: translate(0, 0);
25763
+ transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
25764
+ }
25765
+ @media (prefers-reduced-motion: reduce) {
25766
+ .c4p--checklist__content-inner {
25767
+ transition: none;
25768
+ }
25769
+ }
25770
+ .c4p--checklist__closed .c4p--checklist__content-inner {
25771
+ height: 0;
25772
+ transform: translate(0, -100%);
25773
+ }
25774
+ .c4p--checklist__list-group {
25775
+ padding: var(--cds-spacing-05, 1rem);
25776
+ border-top: 1px solid var(--cds-ui-03, #e0e0e0);
25777
+ }
25778
+ .c4p--checklist__list-title {
25779
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25780
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25781
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25782
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25783
+ display: -webkit-box;
25784
+ overflow: hidden;
25785
+ -webkit-box-orient: vertical;
25786
+ -webkit-line-clamp: 2;
25787
+ text-overflow: ellipsis;
25788
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
25789
+ }
25790
+ .c4p--checklist__list-item {
25791
+ display: flex;
25792
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
25793
+ }
25794
+ .c4p--checklist__list-item:last-child {
25795
+ margin-bottom: 0;
25796
+ }
25797
+ .c4p--checklist__icon {
25798
+ /* stylelint-disable-next-line carbon/layout-token-use */
25799
+ margin: 0.0625rem var(--cds-spacing-03, 0.5rem) 0 0;
25800
+ color: var(--cds-link-01, #0f62fe);
25801
+ }
25802
+ .c4p--checklist__icon--error {
25803
+ color: var(--cds-support-error, #da1e28);
25804
+ }
25805
+ .c4p--checklist__icon--disabled {
25806
+ color: var(--cds-disabled-03, #8d8d8d);
25807
+ }
25808
+ .c4p--checklist__label {
25809
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25810
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25811
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25812
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25813
+ display: -webkit-box;
25814
+ overflow: hidden;
25815
+ -webkit-box-orient: vertical;
25816
+ -webkit-line-clamp: 2;
25817
+ text-overflow: ellipsis;
25818
+ }
25819
+ .c4p--checklist__label--checked, .c4p--checklist__label--disabled, .c4p--checklist__label--error {
25820
+ color: var(--cds-disabled-03, #8d8d8d);
25821
+ }
25822
+ .c4p--checklist__footer {
25823
+ display: -webkit-box;
25824
+ overflow: hidden;
25825
+ -webkit-box-orient: vertical;
25826
+ -webkit-line-clamp: 2;
25827
+ text-overflow: ellipsis;
25828
+ padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem);
25829
+ border-top: 1px solid var(--cds-ui-03, #e0e0e0);
25830
+ }
25831
+
26396
25832
  @font-face {
26397
25833
  font-display: auto;
26398
25834
  font-family: "IBM Plex Mono";