@carbon/ibm-products 1.46.2 → 1.48.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. package/css/index-full-carbon.css +1399 -29
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +5 -5
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon-released-only.css +5 -12
  6. package/css/index-without-carbon-released-only.css.map +1 -1
  7. package/css/index-without-carbon-released-only.min.css +2 -2
  8. package/css/index-without-carbon-released-only.min.css.map +1 -1
  9. package/css/index-without-carbon.css +1395 -25
  10. package/css/index-without-carbon.css.map +1 -1
  11. package/css/index-without-carbon.min.css +4 -4
  12. package/css/index-without-carbon.min.css.map +1 -1
  13. package/css/index.css +1399 -29
  14. package/css/index.css.map +1 -1
  15. package/css/index.min.css +5 -5
  16. package/css/index.min.css.map +1 -1
  17. package/es/components/AddSelect/AddSelectBreadcrumbs.js +6 -4
  18. package/es/components/AddSelect/AddSelectList.js +15 -26
  19. package/es/components/CreateFullPage/CreateFullPage.js +3 -2
  20. package/es/components/Datagrid/Datagrid/DatagridContent.js +1 -1
  21. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +14 -5
  22. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +7 -1
  23. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +1 -5
  24. package/es/components/Datagrid/useSortableColumns.js +20 -4
  25. package/es/components/Datagrid/utils/getArgTypes.js +5 -0
  26. package/es/components/NonLinearReading/NonLinearReading.js +87 -0
  27. package/es/components/NonLinearReading/index.js +8 -0
  28. package/es/components/SidePanel/SidePanel.js +16 -8
  29. package/es/components/index.js +2 -1
  30. package/es/global/js/package-settings.js +3 -1
  31. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +6 -4
  32. package/lib/components/AddSelect/AddSelectList.js +14 -25
  33. package/lib/components/CreateFullPage/CreateFullPage.js +2 -1
  34. package/lib/components/Datagrid/Datagrid/DatagridContent.js +1 -1
  35. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +13 -4
  36. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +7 -1
  37. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +0 -4
  38. package/lib/components/Datagrid/useSortableColumns.js +20 -4
  39. package/lib/components/Datagrid/utils/getArgTypes.js +5 -0
  40. package/lib/components/NonLinearReading/NonLinearReading.js +90 -0
  41. package/lib/components/NonLinearReading/index.js +12 -0
  42. package/lib/components/SidePanel/SidePanel.js +15 -7
  43. package/lib/components/index.js +8 -1
  44. package/lib/global/js/package-settings.js +3 -1
  45. package/package.json +5 -5
  46. package/scss/components/AddSelect/_add-select.scss +0 -10
  47. package/scss/components/Datagrid/_storybook-styles.scss +26 -0
  48. package/scss/components/Datagrid/styles/_datagrid.scss +4 -0
  49. package/scss/components/Datagrid/styles/_useInlineEdit.scss +4 -0
  50. package/scss/components/Datagrid/styles/_useSortableColumns.scss +8 -4
  51. package/scss/components/EmptyStates/_empty-state.scss +4 -3
  52. package/scss/components/NonLinearReading/_index.scss +8 -0
  53. package/scss/components/NonLinearReading/_non-linear-reading.scss +157 -0
  54. package/scss/components/NonLinearReading/_storybook-styles.scss +13 -0
  55. package/scss/components/SidePanel/_side-panel.scss +5 -14
  56. package/scss/components/Tearsheet/_tearsheet.scss +4 -0
  57. package/scss/components/_index.scss +1 -0
@@ -3058,7 +3058,7 @@ em {
3058
3058
  }
3059
3059
  }
3060
3060
 
3061
- .bx--modal-content p,
3061
+ .bx--modal-content > p,
3062
3062
  .bx--modal-content__regular-content {
3063
3063
  padding-right: 20%;
3064
3064
  font-size: var(--cds-body-long-01-font-size, 0.875rem);
@@ -3100,7 +3100,7 @@ em {
3100
3100
  .bx--modal-container--xs .bx--modal-content__regular-content {
3101
3101
  padding-right: var(--cds-spacing-05, 1rem);
3102
3102
  }
3103
- .bx--modal-container--xs .bx--modal-content p {
3103
+ .bx--modal-container--xs .bx--modal-content > p {
3104
3104
  padding-right: 0;
3105
3105
  }
3106
3106
  @media (min-width: 42rem) {
@@ -3123,7 +3123,7 @@ em {
3123
3123
  .bx--modal-container--sm .bx--modal-content__regular-content {
3124
3124
  padding-right: var(--cds-spacing-05, 1rem);
3125
3125
  }
3126
- .bx--modal-container--sm .bx--modal-content p {
3126
+ .bx--modal-container--sm .bx--modal-content > p {
3127
3127
  padding-right: 0;
3128
3128
  }
3129
3129
  @media (min-width: 42rem) {
@@ -3136,7 +3136,7 @@ em {
3136
3136
  width: 42%;
3137
3137
  max-height: 72%;
3138
3138
  }
3139
- .bx--modal-container--sm .bx--modal-content p,
3139
+ .bx--modal-container--sm .bx--modal-content > p,
3140
3140
  .bx--modal-container--sm .bx--modal-content__regular-content {
3141
3141
  padding-right: 20%;
3142
3142
  }
@@ -11395,17 +11395,7 @@ a.bx--overflow-menu-options__btn::before {
11395
11395
  background-color: var(--cds-ui-01, #f4f4f4);
11396
11396
  transition: transform 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
11397
11397
  }
11398
- .c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button {
11399
- min-width: 2rem;
11400
- }
11401
- .c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button.c4p--side-panel__action-toolbar-icon-only-button {
11402
- padding: 0;
11403
- color: var(--cds-text-01, #161616);
11404
- }
11405
- .c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button.c4p--side-panel__action-toolbar-icon-only-button svg {
11406
- margin-left: var(--cds-spacing-03, 0.5rem);
11407
- }
11408
- .c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button.c4p--side-panel__action-toolbar-leading-button {
11398
+ .c4p--side-panel__container .c4p--side-panel__action-toolbar-leading-button {
11409
11399
  margin-right: var(--cds-spacing-03, 0.5rem);
11410
11400
  }
11411
11401
  .c4p--side-panel__container .bx--btn.c4p--side-panel__navigation-back-button {
@@ -12366,6 +12356,9 @@ a.bx--side-nav__link--current::before {
12366
12356
  border-bottom: 1px solid var(--cds-ui-03, #e0e0e0);
12367
12357
  margin: 0;
12368
12358
  }
12359
+ .c4p--tearsheet.c4p--tearsheet--narrow .c4p--tearsheet__header-description {
12360
+ max-width: 80%;
12361
+ }
12369
12362
  .c4p--tearsheet.c4p--tearsheet--wide .c4p--tearsheet__header--with-close-icon {
12370
12363
  padding-right: var(--cds-spacing-10, 4rem);
12371
12364
  }
@@ -12801,7 +12794,7 @@ a.bx--side-nav__link--current::before {
12801
12794
  font-weight: var(--cds-productive-heading-03-font-weight, 400);
12802
12795
  line-height: var(--cds-productive-heading-03-line-height, 1.4);
12803
12796
  letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
12804
- padding-bottom: calc(var(--cds-spacing-01, 0.125rem) + var(--cds-spacing-02, 0.25rem));
12797
+ padding-bottom: var(--cds-spacing-03, 0.5rem);
12805
12798
  margin: 0;
12806
12799
  }
12807
12800
  .c4p--empty-state .c4p--empty-state__subtitle {
@@ -16753,13 +16746,6 @@ button.bx--dropdown-text:focus {
16753
16746
  flex-direction: column;
16754
16747
  justify-content: center;
16755
16748
  }
16756
- .c4p--add-select__selections-cell:hover .c4p--add-select__selections-hidden-hover,
16757
- .c4p--add-select__selections .bx--structured-list-row:focus-within .c4p--add-select__selections-hidden-hover {
16758
- visibility: visible;
16759
- }
16760
- .c4p--add-select__selections-hidden-hover {
16761
- visibility: hidden;
16762
- }
16763
16749
  .c4p--add-select__selections-row--selected.bx--structured-list-row {
16764
16750
  border-bottom: 1px solid var(--cds-selected-ui, #e0e0e0);
16765
16751
  background-color: var(--cds-selected-ui, #e0e0e0);
@@ -21522,6 +21508,10 @@ button.c4p--add-select__global-filter-toggle--open {
21522
21508
  padding: 0 var(--cds-spacing-03, 0.5rem);
21523
21509
  }
21524
21510
 
21511
+ .c4p--datagrid .c4p--datagrid__head-wrap {
21512
+ background-color: var(--cds-ui-03, #e0e0e0);
21513
+ }
21514
+
21525
21515
  /*
21526
21516
  * Licensed Materials - Property of IBM
21527
21517
  * 5724-Q36
@@ -21617,7 +21607,7 @@ button.c4p--add-select__global-filter-toggle--open {
21617
21607
  }
21618
21608
  .c4p--datagrid__sortableColumn .bx--table-header-label .bx--table-sort:focus,
21619
21609
  .c4p--datagrid__sortableColumn .bx--table-header-label .bx--table-sort:active,
21620
- .c4p--datagrid__sortableColumn .bx--table-header-label .bx--table-sort:focus svg {
21610
+ .c4p--datagrid__sortableColumn .bx--table-header-label .bx--table-sort:focus .c4p--datagrid__sortable-icon {
21621
21611
  /* stylelint-disable-next-line declaration-no-important */
21622
21612
  background: none !important;
21623
21613
  /* stylelint-disable-next-line declaration-no-important */
@@ -21638,7 +21628,7 @@ button.c4p--add-select__global-filter-toggle--open {
21638
21628
  color: var(--cds-text-01, #161616) !important;
21639
21629
  font: inherit;
21640
21630
  }
21641
- .c4p--datagrid__sortableColumn .bx--table-header-label .bx--table-sort svg {
21631
+ .c4p--datagrid__sortableColumn .bx--table-header-label .bx--table-sort .c4p--datagrid__sortable-icon {
21642
21632
  fill: var(--cds-text-01, #161616);
21643
21633
  opacity: 0;
21644
21634
  transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
@@ -21649,14 +21639,14 @@ button.c4p--add-select__global-filter-toggle--open {
21649
21639
  margin: 0 calc(-1 * var(--cds-spacing-05, 1rem));
21650
21640
  }
21651
21641
 
21652
- .c4p--datagrid__sortableColumn:hover .bx--table-header-label svg,
21653
- .c4p--datagrid__sortableColumn:focus-within .bx--table-header-label svg,
21654
- .c4p--datagrid__sortableColumn.c4p--datagrid__isSorted .bx--table-header-label svg {
21642
+ .c4p--datagrid__sortableColumn:hover .bx--table-header-label .c4p--datagrid__sortable-icon,
21643
+ .c4p--datagrid__sortableColumn:focus-within .bx--table-header-label .c4p--datagrid__sortable-icon,
21644
+ .c4p--datagrid__sortableColumn.c4p--datagrid__isSorted .bx--table-header-label .c4p--datagrid__sortable-icon {
21655
21645
  opacity: 1;
21656
21646
  visibility: visible;
21657
21647
  }
21658
21648
 
21659
- .c4p--datagrid__sortableColumn .c4p--datagrid--table-sort--desc svg {
21649
+ .c4p--datagrid__sortableColumn .c4p--datagrid--table-sort--desc .c4p--datagrid__sortable-icon {
21660
21650
  transform: rotate(180deg);
21661
21651
  }
21662
21652
 
@@ -22571,6 +22561,10 @@ th.c4p--datagrid__select-all-toggle-on.button {
22571
22561
  outline-color: var(--cds-support-01, #da1e28);
22572
22562
  }
22573
22563
 
22564
+ .c4p--datagrid .bx--text-input:focus {
22565
+ background: var(--cds-field-01, #f4f4f4);
22566
+ }
22567
+
22574
22568
  .c4p--datagrid .c4p--datagrid__inline-edit--outer-cell-button--invalid .bx--number input[type=number][data-invalid]:focus ~ .bx--number__controls .bx--number__control-btn.up-icon::after {
22575
22569
  background-color: var(--cds-support-01, #da1e28);
22576
22570
  }
@@ -23070,6 +23064,1382 @@ th.c4p--datagrid__select-all-toggle-on.button {
23070
23064
  outline: none;
23071
23065
  }
23072
23066
 
23067
+ @keyframes fade {
23068
+ 0% {
23069
+ opacity: 0;
23070
+ }
23071
+ 15% {
23072
+ opacity: 0;
23073
+ }
23074
+ 100% {
23075
+ opacity: 1;
23076
+ }
23077
+ }
23078
+ .c4p--non-linear-reading__term-light--closed {
23079
+ padding: 0.0625rem var(--cds-spacing-03, 0.5rem) 0.0625rem var(--cds-spacing-03, 0.5rem);
23080
+ border: none;
23081
+ border-radius: var(--cds-spacing-04, 0.75rem);
23082
+ background-color: var(--cds-interactive-02, #393939);
23083
+ white-space: nowrap;
23084
+ background-color: var(--cds-interactive-02, #393939);
23085
+ color: var(--cds-inverse-01, #ffffff);
23086
+ }
23087
+ .c4p--non-linear-reading__term-light--closed:hover {
23088
+ background-color: var(--cds-hover-secondary, #4c4c4c);
23089
+ cursor: pointer;
23090
+ }
23091
+ .c4p--non-linear-reading__term-light--closed:hover {
23092
+ background-color: var(--cds-hover-secondary, #4c4c4c);
23093
+ }
23094
+ .c4p--non-linear-reading__term-light--open {
23095
+ padding: 0.0625rem var(--cds-spacing-03, 0.5rem) 0.0625rem var(--cds-spacing-03, 0.5rem);
23096
+ border: none;
23097
+ border-radius: var(--cds-spacing-04, 0.75rem);
23098
+ background-color: var(--cds-interactive-02, #393939);
23099
+ white-space: nowrap;
23100
+ padding-right: 0;
23101
+ background-color: #e8daff;
23102
+ color: var(--cds-text-01, #161616);
23103
+ }
23104
+ .c4p--non-linear-reading__term-light--open:hover {
23105
+ background-color: var(--cds-hover-secondary, #4c4c4c);
23106
+ cursor: pointer;
23107
+ }
23108
+ .c4p--non-linear-reading__term-light--open svg {
23109
+ padding-top: 0.0625rem;
23110
+ margin: 0 var(--cds-spacing-02, 0.25rem) 0 var(--cds-spacing-01, 0.125rem);
23111
+ vertical-align: text-top;
23112
+ }
23113
+ .c4p--non-linear-reading__term-light--open:hover {
23114
+ background-color: #dcc7ff;
23115
+ }
23116
+ .c4p--non-linear-reading__term-dark--closed {
23117
+ --cds-interactive-01: #0f62fe;
23118
+ --cds-interactive-02: #6f6f6f;
23119
+ --cds-interactive-03: #ffffff;
23120
+ --cds-interactive-04: #4589ff;
23121
+ --cds-ui-background: #161616;
23122
+ --cds-ui-01: #262626;
23123
+ --cds-ui-02: #393939;
23124
+ --cds-ui-03: #393939;
23125
+ --cds-ui-04: #6f6f6f;
23126
+ --cds-ui-05: #f4f4f4;
23127
+ --cds-text-01: #f4f4f4;
23128
+ --cds-text-02: #c6c6c6;
23129
+ --cds-text-03: #6f6f6f;
23130
+ --cds-text-04: #ffffff;
23131
+ --cds-text-05: #8d8d8d;
23132
+ --cds-text-error: #ff8389;
23133
+ --cds-icon-01: #f4f4f4;
23134
+ --cds-icon-02: #c6c6c6;
23135
+ --cds-icon-03: #ffffff;
23136
+ --cds-link-01: #78a9ff;
23137
+ --cds-link-02: #a6c8ff;
23138
+ --cds-inverse-link: #0f62fe;
23139
+ --cds-field-01: #262626;
23140
+ --cds-field-02: #393939;
23141
+ --cds-inverse-01: #161616;
23142
+ --cds-inverse-02: #f4f4f4;
23143
+ --cds-support-01: #fa4d56;
23144
+ --cds-support-02: #42be65;
23145
+ --cds-support-03: #f1c21b;
23146
+ --cds-support-04: #4589ff;
23147
+ --cds-inverse-support-01: #da1e28;
23148
+ --cds-inverse-support-02: #24a148;
23149
+ --cds-inverse-support-03: #f1c21b;
23150
+ --cds-inverse-support-04: #0f62fe;
23151
+ --cds-overlay-01: rgba(0, 0, 0, 0.65);
23152
+ --cds-danger-01: #da1e28;
23153
+ --cds-danger-02: #fa4d56;
23154
+ --cds-focus: #ffffff;
23155
+ --cds-inverse-focus-ui: #0f62fe;
23156
+ --cds-hover-primary: #0353e9;
23157
+ --cds-active-primary: #002d9c;
23158
+ --cds-hover-primary-text: #a6c8ff;
23159
+ --cds-hover-secondary: #606060;
23160
+ --cds-active-secondary: #393939;
23161
+ --cds-hover-tertiary: #f4f4f4;
23162
+ --cds-active-tertiary: #c6c6c6;
23163
+ --cds-hover-ui: #353535;
23164
+ --cds-hover-light-ui: #4c4c4c;
23165
+ --cds-hover-selected-ui: #4c4c4c;
23166
+ --cds-active-ui: #525252;
23167
+ --cds-active-light-ui: #6f6f6f;
23168
+ --cds-selected-ui: #393939;
23169
+ --cds-selected-light-ui: #525252;
23170
+ --cds-inverse-hover-ui: #e5e5e5;
23171
+ --cds-hover-danger: #b81921;
23172
+ --cds-active-danger: #750e13;
23173
+ --cds-hover-row: #353535;
23174
+ --cds-visited-link: #be95ff;
23175
+ --cds-disabled-01: #262626;
23176
+ --cds-disabled-02: #525252;
23177
+ --cds-disabled-03: #8d8d8d;
23178
+ --cds-highlight: #002d9c;
23179
+ --cds-decorative-01: #525252;
23180
+ --cds-button-separator: #161616;
23181
+ --cds-skeleton-01: #353535;
23182
+ --cds-skeleton-02: #525252;
23183
+ --cds-background: #161616;
23184
+ --cds-layer: #262626;
23185
+ --cds-layer-accent: #393939;
23186
+ --cds-layer-accent-hover: #474747;
23187
+ --cds-layer-accent-active: #6f6f6f;
23188
+ --cds-field: #262626;
23189
+ --cds-background-inverse: #f4f4f4;
23190
+ --cds-background-brand: #0f62fe;
23191
+ --cds-interactive: #4589ff;
23192
+ --cds-border-subtle: #393939;
23193
+ --cds-border-strong: #6f6f6f;
23194
+ --cds-border-inverse: #f4f4f4;
23195
+ --cds-border-interactive: #4589ff;
23196
+ --cds-text-primary: #f4f4f4;
23197
+ --cds-text-secondary: #c6c6c6;
23198
+ --cds-text-placeholder: #6f6f6f;
23199
+ --cds-text-helper: #8d8d8d;
23200
+ --cds-text-on-color: #ffffff;
23201
+ --cds-text-inverse: #161616;
23202
+ --cds-link-primary: #78a9ff;
23203
+ --cds-link-secondary: #a6c8ff;
23204
+ --cds-link-visited: #be95ff;
23205
+ --cds-link-inverse: #0f62fe;
23206
+ --cds-icon-primary: #f4f4f4;
23207
+ --cds-icon-secondary: #c6c6c6;
23208
+ --cds-icon-on-color: #ffffff;
23209
+ --cds-icon-inverse: #161616;
23210
+ --cds-support-error: #fa4d56;
23211
+ --cds-support-success: #42be65;
23212
+ --cds-support-warning: #f1c21b;
23213
+ --cds-support-info: #4589ff;
23214
+ --cds-support-error-inverse: #da1e28;
23215
+ --cds-support-success-inverse: #24a148;
23216
+ --cds-support-warning-inverse: #f1c21b;
23217
+ --cds-support-info-inverse: #0f62fe;
23218
+ --cds-overlay: rgba(0, 0, 0, 0.65);
23219
+ --cds-toggle-off: #6f6f6f;
23220
+ --cds-shadow: rgba(0, 0, 0, 0.8);
23221
+ --cds-button-primary: #0f62fe;
23222
+ --cds-button-secondary: #6f6f6f;
23223
+ --cds-button-tertiary: #ffffff;
23224
+ --cds-button-danger-primary: #da1e28;
23225
+ --cds-button-danger-secondary: #fa4d56;
23226
+ --cds-background-active: #525252;
23227
+ --cds-layer-active: #525252;
23228
+ --cds-button-danger-active: #750e13;
23229
+ --cds-button-primary-active: #002d9c;
23230
+ --cds-button-secondary-active: #393939;
23231
+ --cds-button-tertiary-active: #c6c6c6;
23232
+ --cds-focus-inset: #161616;
23233
+ --cds-focus-inverse: #0f62fe;
23234
+ --cds-background-hover: #353535;
23235
+ --cds-layer-hover: #353535;
23236
+ --cds-field-hover: #353535;
23237
+ --cds-background-inverse-hover: #e5e5e5;
23238
+ --cds-link-primary-hover: #a6c8ff;
23239
+ --cds-button-danger-hover: #b81921;
23240
+ --cds-button-primary-hover: #0353e9;
23241
+ --cds-button-secondary-hover: #606060;
23242
+ --cds-button-tertiary-hover: #f4f4f4;
23243
+ --cds-background-selected: #393939;
23244
+ --cds-background-selected-hover: #4c4c4c;
23245
+ --cds-layer-selected: #393939;
23246
+ --cds-layer-selected-hover: #4c4c4c;
23247
+ --cds-layer-selected-inverse: #f4f4f4;
23248
+ --cds-border-subtle-selected: #525252;
23249
+ --cds-border-disabled: #262626;
23250
+ --cds-text-disabled: #525252;
23251
+ --cds-button-disabled: #525252;
23252
+ --cds-icon-disabled: #525252;
23253
+ --cds-text-on-color-disabled: #8d8d8d;
23254
+ --cds-icon-on-color-disabled: #8d8d8d;
23255
+ --cds-layer-selected-disabled: #8d8d8d;
23256
+ --cds-skeleton-background: #353535;
23257
+ --cds-skeleton-element: #525252;
23258
+ --cds-brand-01: #0f62fe;
23259
+ --cds-brand-02: #6f6f6f;
23260
+ --cds-brand-03: #ffffff;
23261
+ --cds-active-01: #525252;
23262
+ --cds-hover-field: #353535;
23263
+ --cds-danger: #da1e28;
23264
+ --cds-caption-01-font-size: 0.75rem;
23265
+ --cds-caption-01-font-weight: 400;
23266
+ --cds-caption-01-line-height: 1.33333;
23267
+ --cds-caption-01-letter-spacing: 0.32px;
23268
+ --cds-caption-02-font-size: 0.875rem;
23269
+ --cds-caption-02-font-weight: 400;
23270
+ --cds-caption-02-line-height: 1.28572;
23271
+ --cds-caption-02-letter-spacing: 0.32px;
23272
+ --cds-label-01-font-size: 0.75rem;
23273
+ --cds-label-01-font-weight: 400;
23274
+ --cds-label-01-line-height: 1.33333;
23275
+ --cds-label-01-letter-spacing: 0.32px;
23276
+ --cds-label-02-font-size: 0.875rem;
23277
+ --cds-label-02-font-weight: 400;
23278
+ --cds-label-02-line-height: 1.28572;
23279
+ --cds-label-02-letter-spacing: 0.16px;
23280
+ --cds-helper-text-01-font-size: 0.75rem;
23281
+ --cds-helper-text-01-line-height: 1.33333;
23282
+ --cds-helper-text-01-letter-spacing: 0.32px;
23283
+ --cds-helper-text-02-font-size: 0.875rem;
23284
+ --cds-helper-text-02-line-height: 1.28572;
23285
+ --cds-helper-text-02-letter-spacing: 0.16px;
23286
+ --cds-body-short-01-font-size: 0.875rem;
23287
+ --cds-body-short-01-font-weight: 400;
23288
+ --cds-body-short-01-line-height: 1.28572;
23289
+ --cds-body-short-01-letter-spacing: 0.16px;
23290
+ --cds-body-long-01-font-size: 0.875rem;
23291
+ --cds-body-long-01-font-weight: 400;
23292
+ --cds-body-long-01-line-height: 1.42857;
23293
+ --cds-body-long-01-letter-spacing: 0.16px;
23294
+ --cds-body-short-02-font-size: 1rem;
23295
+ --cds-body-short-02-font-weight: 400;
23296
+ --cds-body-short-02-line-height: 1.375;
23297
+ --cds-body-short-02-letter-spacing: 0;
23298
+ --cds-body-long-02-font-size: 1rem;
23299
+ --cds-body-long-02-font-weight: 400;
23300
+ --cds-body-long-02-line-height: 1.5;
23301
+ --cds-body-long-02-letter-spacing: 0;
23302
+ --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
23303
+ --cds-code-01-font-size: 0.75rem;
23304
+ --cds-code-01-font-weight: 400;
23305
+ --cds-code-01-line-height: 1.33333;
23306
+ --cds-code-01-letter-spacing: 0.32px;
23307
+ --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
23308
+ --cds-code-02-font-size: 0.875rem;
23309
+ --cds-code-02-font-weight: 400;
23310
+ --cds-code-02-line-height: 1.42857;
23311
+ --cds-code-02-letter-spacing: 0.32px;
23312
+ --cds-heading-01-font-size: 0.875rem;
23313
+ --cds-heading-01-font-weight: 600;
23314
+ --cds-heading-01-line-height: 1.42857;
23315
+ --cds-heading-01-letter-spacing: 0.16px;
23316
+ --cds-productive-heading-01-font-size: 0.875rem;
23317
+ --cds-productive-heading-01-font-weight: 600;
23318
+ --cds-productive-heading-01-line-height: 1.28572;
23319
+ --cds-productive-heading-01-letter-spacing: 0.16px;
23320
+ --cds-heading-02-font-size: 1rem;
23321
+ --cds-heading-02-font-weight: 600;
23322
+ --cds-heading-02-line-height: 1.5;
23323
+ --cds-heading-02-letter-spacing: 0;
23324
+ --cds-productive-heading-02-font-size: 1rem;
23325
+ --cds-productive-heading-02-font-weight: 600;
23326
+ --cds-productive-heading-02-line-height: 1.375;
23327
+ --cds-productive-heading-02-letter-spacing: 0;
23328
+ --cds-productive-heading-03-font-size: 1.25rem;
23329
+ --cds-productive-heading-03-font-weight: 400;
23330
+ --cds-productive-heading-03-line-height: 1.4;
23331
+ --cds-productive-heading-03-letter-spacing: 0;
23332
+ --cds-productive-heading-04-font-size: 1.75rem;
23333
+ --cds-productive-heading-04-font-weight: 400;
23334
+ --cds-productive-heading-04-line-height: 1.28572;
23335
+ --cds-productive-heading-04-letter-spacing: 0;
23336
+ --cds-productive-heading-05-font-size: 2rem;
23337
+ --cds-productive-heading-05-font-weight: 400;
23338
+ --cds-productive-heading-05-line-height: 1.25;
23339
+ --cds-productive-heading-05-letter-spacing: 0;
23340
+ --cds-productive-heading-06-font-size: 2.625rem;
23341
+ --cds-productive-heading-06-font-weight: 300;
23342
+ --cds-productive-heading-06-line-height: 1.199;
23343
+ --cds-productive-heading-06-letter-spacing: 0;
23344
+ --cds-productive-heading-07-font-size: 3.375rem;
23345
+ --cds-productive-heading-07-font-weight: 300;
23346
+ --cds-productive-heading-07-line-height: 1.199;
23347
+ --cds-productive-heading-07-letter-spacing: 0;
23348
+ --cds-expressive-heading-01-font-size: 0.875rem;
23349
+ --cds-expressive-heading-01-font-weight: 600;
23350
+ --cds-expressive-heading-01-line-height: 1.25;
23351
+ --cds-expressive-heading-01-letter-spacing: 0.16px;
23352
+ --cds-expressive-heading-02-font-size: 1rem;
23353
+ --cds-expressive-heading-02-font-weight: 600;
23354
+ --cds-expressive-heading-02-line-height: 1.5;
23355
+ --cds-expressive-heading-02-letter-spacing: 0;
23356
+ --cds-expressive-heading-03-font-size: 1.25rem;
23357
+ --cds-expressive-heading-03-font-weight: 400;
23358
+ --cds-expressive-heading-03-line-height: 1.4;
23359
+ --cds-expressive-heading-03-letter-spacing: 0;
23360
+ --cds-expressive-heading-04-font-size: 1.75rem;
23361
+ --cds-expressive-heading-04-font-weight: 400;
23362
+ --cds-expressive-heading-04-line-height: 1.28572;
23363
+ --cds-expressive-heading-04-letter-spacing: 0;
23364
+ --cds-expressive-heading-05-font-size: 2rem;
23365
+ --cds-expressive-heading-05-font-weight: 400;
23366
+ --cds-expressive-heading-05-line-height: 1.25;
23367
+ --cds-expressive-heading-05-letter-spacing: 0;
23368
+ --cds-expressive-heading-06-font-size: 2rem;
23369
+ --cds-expressive-heading-06-font-weight: 600;
23370
+ --cds-expressive-heading-06-line-height: 1.25;
23371
+ --cds-expressive-heading-06-letter-spacing: 0;
23372
+ --cds-expressive-paragraph-01-font-size: 1.5rem;
23373
+ --cds-expressive-paragraph-01-font-weight: 300;
23374
+ --cds-expressive-paragraph-01-line-height: 1.334;
23375
+ --cds-expressive-paragraph-01-letter-spacing: 0;
23376
+ --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
23377
+ --cds-quotation-01-font-size: 1.25rem;
23378
+ --cds-quotation-01-font-weight: 400;
23379
+ --cds-quotation-01-line-height: 1.3;
23380
+ --cds-quotation-01-letter-spacing: 0;
23381
+ --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
23382
+ --cds-quotation-02-font-size: 2rem;
23383
+ --cds-quotation-02-font-weight: 300;
23384
+ --cds-quotation-02-line-height: 1.25;
23385
+ --cds-quotation-02-letter-spacing: 0;
23386
+ --cds-display-01-font-size: 2.625rem;
23387
+ --cds-display-01-font-weight: 300;
23388
+ --cds-display-01-line-height: 1.19;
23389
+ --cds-display-01-letter-spacing: 0;
23390
+ --cds-display-02-font-size: 2.625rem;
23391
+ --cds-display-02-font-weight: 600;
23392
+ --cds-display-02-line-height: 1.19;
23393
+ --cds-display-02-letter-spacing: 0;
23394
+ --cds-display-03-font-size: 2.625rem;
23395
+ --cds-display-03-font-weight: 300;
23396
+ --cds-display-03-line-height: 1.19;
23397
+ --cds-display-03-letter-spacing: 0;
23398
+ --cds-display-04-font-size: 2.625rem;
23399
+ --cds-display-04-font-weight: 300;
23400
+ --cds-display-04-line-height: 1.19;
23401
+ --cds-display-04-letter-spacing: 0;
23402
+ --cds-legal-01-font-size: 0.75rem;
23403
+ --cds-legal-01-font-weight: 400;
23404
+ --cds-legal-01-line-height: 1.33333;
23405
+ --cds-legal-01-letter-spacing: 0.32px;
23406
+ --cds-legal-02-font-size: 0.875rem;
23407
+ --cds-legal-02-font-weight: 400;
23408
+ --cds-legal-02-line-height: 1.28572;
23409
+ --cds-legal-02-letter-spacing: 0.16px;
23410
+ --cds-body-compact-01-font-size: 0.875rem;
23411
+ --cds-body-compact-01-font-weight: 400;
23412
+ --cds-body-compact-01-line-height: 1.28572;
23413
+ --cds-body-compact-01-letter-spacing: 0.16px;
23414
+ --cds-body-compact-02-font-size: 1rem;
23415
+ --cds-body-compact-02-font-weight: 400;
23416
+ --cds-body-compact-02-line-height: 1.375;
23417
+ --cds-body-compact-02-letter-spacing: 0;
23418
+ --cds-body-01-font-size: 0.875rem;
23419
+ --cds-body-01-font-weight: 400;
23420
+ --cds-body-01-line-height: 1.42857;
23421
+ --cds-body-01-letter-spacing: 0.16px;
23422
+ --cds-body-02-font-size: 1rem;
23423
+ --cds-body-02-font-weight: 400;
23424
+ --cds-body-02-line-height: 1.5;
23425
+ --cds-body-02-letter-spacing: 0;
23426
+ --cds-heading-compact-01-font-size: 0.875rem;
23427
+ --cds-heading-compact-01-font-weight: 600;
23428
+ --cds-heading-compact-01-line-height: 1.28572;
23429
+ --cds-heading-compact-01-letter-spacing: 0.16px;
23430
+ --cds-heading-compact-02-font-size: 1rem;
23431
+ --cds-heading-compact-02-font-weight: 600;
23432
+ --cds-heading-compact-02-line-height: 1.375;
23433
+ --cds-heading-compact-02-letter-spacing: 0;
23434
+ --cds-heading-03-font-size: 1.25rem;
23435
+ --cds-heading-03-font-weight: 400;
23436
+ --cds-heading-03-line-height: 1.4;
23437
+ --cds-heading-03-letter-spacing: 0;
23438
+ --cds-heading-04-font-size: 1.75rem;
23439
+ --cds-heading-04-font-weight: 400;
23440
+ --cds-heading-04-line-height: 1.28572;
23441
+ --cds-heading-04-letter-spacing: 0;
23442
+ --cds-heading-05-font-size: 2rem;
23443
+ --cds-heading-05-font-weight: 400;
23444
+ --cds-heading-05-line-height: 1.25;
23445
+ --cds-heading-05-letter-spacing: 0;
23446
+ --cds-heading-06-font-size: 2.625rem;
23447
+ --cds-heading-06-font-weight: 300;
23448
+ --cds-heading-06-line-height: 1.199;
23449
+ --cds-heading-06-letter-spacing: 0;
23450
+ --cds-heading-07-font-size: 3.375rem;
23451
+ --cds-heading-07-font-weight: 300;
23452
+ --cds-heading-07-line-height: 1.199;
23453
+ --cds-heading-07-letter-spacing: 0;
23454
+ --cds-fluid-heading-03-font-size: 1.25rem;
23455
+ --cds-fluid-heading-03-font-weight: 400;
23456
+ --cds-fluid-heading-03-line-height: 1.4;
23457
+ --cds-fluid-heading-03-letter-spacing: 0;
23458
+ --cds-fluid-heading-04-font-size: 1.75rem;
23459
+ --cds-fluid-heading-04-font-weight: 400;
23460
+ --cds-fluid-heading-04-line-height: 1.28572;
23461
+ --cds-fluid-heading-04-letter-spacing: 0;
23462
+ --cds-fluid-heading-05-font-size: 2rem;
23463
+ --cds-fluid-heading-05-font-weight: 400;
23464
+ --cds-fluid-heading-05-line-height: 1.25;
23465
+ --cds-fluid-heading-05-letter-spacing: 0;
23466
+ --cds-fluid-heading-06-font-size: 2rem;
23467
+ --cds-fluid-heading-06-font-weight: 600;
23468
+ --cds-fluid-heading-06-line-height: 1.25;
23469
+ --cds-fluid-heading-06-letter-spacing: 0;
23470
+ --cds-fluid-paragraph-01-font-size: 1.5rem;
23471
+ --cds-fluid-paragraph-01-font-weight: 300;
23472
+ --cds-fluid-paragraph-01-line-height: 1.334;
23473
+ --cds-fluid-paragraph-01-letter-spacing: 0;
23474
+ --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
23475
+ --cds-fluid-quotation-01-font-size: 1.25rem;
23476
+ --cds-fluid-quotation-01-font-weight: 400;
23477
+ --cds-fluid-quotation-01-line-height: 1.3;
23478
+ --cds-fluid-quotation-01-letter-spacing: 0;
23479
+ --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
23480
+ --cds-fluid-quotation-02-font-size: 2rem;
23481
+ --cds-fluid-quotation-02-font-weight: 300;
23482
+ --cds-fluid-quotation-02-line-height: 1.25;
23483
+ --cds-fluid-quotation-02-letter-spacing: 0;
23484
+ --cds-fluid-display-01-font-size: 2.625rem;
23485
+ --cds-fluid-display-01-font-weight: 300;
23486
+ --cds-fluid-display-01-line-height: 1.19;
23487
+ --cds-fluid-display-01-letter-spacing: 0;
23488
+ --cds-fluid-display-02-font-size: 2.625rem;
23489
+ --cds-fluid-display-02-font-weight: 600;
23490
+ --cds-fluid-display-02-line-height: 1.19;
23491
+ --cds-fluid-display-02-letter-spacing: 0;
23492
+ --cds-fluid-display-03-font-size: 2.625rem;
23493
+ --cds-fluid-display-03-font-weight: 300;
23494
+ --cds-fluid-display-03-line-height: 1.19;
23495
+ --cds-fluid-display-03-letter-spacing: 0;
23496
+ --cds-fluid-display-04-font-size: 2.625rem;
23497
+ --cds-fluid-display-04-font-weight: 300;
23498
+ --cds-fluid-display-04-line-height: 1.19;
23499
+ --cds-fluid-display-04-letter-spacing: 0;
23500
+ --cds-spacing-01: 0.125rem;
23501
+ --cds-spacing-02: 0.25rem;
23502
+ --cds-spacing-03: 0.5rem;
23503
+ --cds-spacing-04: 0.75rem;
23504
+ --cds-spacing-05: 1rem;
23505
+ --cds-spacing-06: 1.5rem;
23506
+ --cds-spacing-07: 2rem;
23507
+ --cds-spacing-08: 2.5rem;
23508
+ --cds-spacing-09: 3rem;
23509
+ --cds-spacing-10: 4rem;
23510
+ --cds-spacing-11: 5rem;
23511
+ --cds-spacing-12: 6rem;
23512
+ --cds-spacing-13: 10rem;
23513
+ --cds-fluid-spacing-01: 0;
23514
+ --cds-fluid-spacing-02: 2vw;
23515
+ --cds-fluid-spacing-03: 5vw;
23516
+ --cds-fluid-spacing-04: 10vw;
23517
+ --cds-layout-01: 1rem;
23518
+ --cds-layout-02: 1.5rem;
23519
+ --cds-layout-03: 2rem;
23520
+ --cds-layout-04: 3rem;
23521
+ --cds-layout-05: 4rem;
23522
+ --cds-layout-06: 6rem;
23523
+ --cds-layout-07: 10rem;
23524
+ --cds-container-01: 1.5rem;
23525
+ --cds-container-02: 2rem;
23526
+ --cds-container-03: 2.5rem;
23527
+ --cds-container-04: 3rem;
23528
+ --cds-container-05: 4rem;
23529
+ --cds-size-xsmall: 1.5rem;
23530
+ --cds-size-small: 2rem;
23531
+ --cds-size-medium: 2.5rem;
23532
+ --cds-size-large: 3rem;
23533
+ --cds-size-xlarge: 4rem;
23534
+ --cds-size-2XLarge: 5rem;
23535
+ --cds-icon-size-01: 1rem;
23536
+ --cds-icon-size-02: 1.25rem;
23537
+ padding: 0.0625rem var(--cds-spacing-03, 0.5rem) 0.0625rem var(--cds-spacing-03, 0.5rem);
23538
+ border: none;
23539
+ border-radius: var(--cds-spacing-04, 0.75rem);
23540
+ background-color: var(--cds-interactive-02, #393939);
23541
+ white-space: nowrap;
23542
+ background-color: var(--cds-interactive-02, #393939);
23543
+ color: var(--cds-text-04, #ffffff);
23544
+ }
23545
+ .c4p--non-linear-reading__term-dark--closed:hover {
23546
+ background-color: var(--cds-hover-secondary, #4c4c4c);
23547
+ cursor: pointer;
23548
+ }
23549
+ .c4p--non-linear-reading__term-dark--closed:hover {
23550
+ background-color: var(--cds-hover-secondary, #4c4c4c);
23551
+ }
23552
+ .c4p--non-linear-reading__term-dark--open {
23553
+ --cds-interactive-01: #0f62fe;
23554
+ --cds-interactive-02: #6f6f6f;
23555
+ --cds-interactive-03: #ffffff;
23556
+ --cds-interactive-04: #4589ff;
23557
+ --cds-ui-background: #161616;
23558
+ --cds-ui-01: #262626;
23559
+ --cds-ui-02: #393939;
23560
+ --cds-ui-03: #393939;
23561
+ --cds-ui-04: #6f6f6f;
23562
+ --cds-ui-05: #f4f4f4;
23563
+ --cds-text-01: #f4f4f4;
23564
+ --cds-text-02: #c6c6c6;
23565
+ --cds-text-03: #6f6f6f;
23566
+ --cds-text-04: #ffffff;
23567
+ --cds-text-05: #8d8d8d;
23568
+ --cds-text-error: #ff8389;
23569
+ --cds-icon-01: #f4f4f4;
23570
+ --cds-icon-02: #c6c6c6;
23571
+ --cds-icon-03: #ffffff;
23572
+ --cds-link-01: #78a9ff;
23573
+ --cds-link-02: #a6c8ff;
23574
+ --cds-inverse-link: #0f62fe;
23575
+ --cds-field-01: #262626;
23576
+ --cds-field-02: #393939;
23577
+ --cds-inverse-01: #161616;
23578
+ --cds-inverse-02: #f4f4f4;
23579
+ --cds-support-01: #fa4d56;
23580
+ --cds-support-02: #42be65;
23581
+ --cds-support-03: #f1c21b;
23582
+ --cds-support-04: #4589ff;
23583
+ --cds-inverse-support-01: #da1e28;
23584
+ --cds-inverse-support-02: #24a148;
23585
+ --cds-inverse-support-03: #f1c21b;
23586
+ --cds-inverse-support-04: #0f62fe;
23587
+ --cds-overlay-01: rgba(0, 0, 0, 0.65);
23588
+ --cds-danger-01: #da1e28;
23589
+ --cds-danger-02: #fa4d56;
23590
+ --cds-focus: #ffffff;
23591
+ --cds-inverse-focus-ui: #0f62fe;
23592
+ --cds-hover-primary: #0353e9;
23593
+ --cds-active-primary: #002d9c;
23594
+ --cds-hover-primary-text: #a6c8ff;
23595
+ --cds-hover-secondary: #606060;
23596
+ --cds-active-secondary: #393939;
23597
+ --cds-hover-tertiary: #f4f4f4;
23598
+ --cds-active-tertiary: #c6c6c6;
23599
+ --cds-hover-ui: #353535;
23600
+ --cds-hover-light-ui: #4c4c4c;
23601
+ --cds-hover-selected-ui: #4c4c4c;
23602
+ --cds-active-ui: #525252;
23603
+ --cds-active-light-ui: #6f6f6f;
23604
+ --cds-selected-ui: #393939;
23605
+ --cds-selected-light-ui: #525252;
23606
+ --cds-inverse-hover-ui: #e5e5e5;
23607
+ --cds-hover-danger: #b81921;
23608
+ --cds-active-danger: #750e13;
23609
+ --cds-hover-row: #353535;
23610
+ --cds-visited-link: #be95ff;
23611
+ --cds-disabled-01: #262626;
23612
+ --cds-disabled-02: #525252;
23613
+ --cds-disabled-03: #8d8d8d;
23614
+ --cds-highlight: #002d9c;
23615
+ --cds-decorative-01: #525252;
23616
+ --cds-button-separator: #161616;
23617
+ --cds-skeleton-01: #353535;
23618
+ --cds-skeleton-02: #525252;
23619
+ --cds-background: #161616;
23620
+ --cds-layer: #262626;
23621
+ --cds-layer-accent: #393939;
23622
+ --cds-layer-accent-hover: #474747;
23623
+ --cds-layer-accent-active: #6f6f6f;
23624
+ --cds-field: #262626;
23625
+ --cds-background-inverse: #f4f4f4;
23626
+ --cds-background-brand: #0f62fe;
23627
+ --cds-interactive: #4589ff;
23628
+ --cds-border-subtle: #393939;
23629
+ --cds-border-strong: #6f6f6f;
23630
+ --cds-border-inverse: #f4f4f4;
23631
+ --cds-border-interactive: #4589ff;
23632
+ --cds-text-primary: #f4f4f4;
23633
+ --cds-text-secondary: #c6c6c6;
23634
+ --cds-text-placeholder: #6f6f6f;
23635
+ --cds-text-helper: #8d8d8d;
23636
+ --cds-text-on-color: #ffffff;
23637
+ --cds-text-inverse: #161616;
23638
+ --cds-link-primary: #78a9ff;
23639
+ --cds-link-secondary: #a6c8ff;
23640
+ --cds-link-visited: #be95ff;
23641
+ --cds-link-inverse: #0f62fe;
23642
+ --cds-icon-primary: #f4f4f4;
23643
+ --cds-icon-secondary: #c6c6c6;
23644
+ --cds-icon-on-color: #ffffff;
23645
+ --cds-icon-inverse: #161616;
23646
+ --cds-support-error: #fa4d56;
23647
+ --cds-support-success: #42be65;
23648
+ --cds-support-warning: #f1c21b;
23649
+ --cds-support-info: #4589ff;
23650
+ --cds-support-error-inverse: #da1e28;
23651
+ --cds-support-success-inverse: #24a148;
23652
+ --cds-support-warning-inverse: #f1c21b;
23653
+ --cds-support-info-inverse: #0f62fe;
23654
+ --cds-overlay: rgba(0, 0, 0, 0.65);
23655
+ --cds-toggle-off: #6f6f6f;
23656
+ --cds-shadow: rgba(0, 0, 0, 0.8);
23657
+ --cds-button-primary: #0f62fe;
23658
+ --cds-button-secondary: #6f6f6f;
23659
+ --cds-button-tertiary: #ffffff;
23660
+ --cds-button-danger-primary: #da1e28;
23661
+ --cds-button-danger-secondary: #fa4d56;
23662
+ --cds-background-active: #525252;
23663
+ --cds-layer-active: #525252;
23664
+ --cds-button-danger-active: #750e13;
23665
+ --cds-button-primary-active: #002d9c;
23666
+ --cds-button-secondary-active: #393939;
23667
+ --cds-button-tertiary-active: #c6c6c6;
23668
+ --cds-focus-inset: #161616;
23669
+ --cds-focus-inverse: #0f62fe;
23670
+ --cds-background-hover: #353535;
23671
+ --cds-layer-hover: #353535;
23672
+ --cds-field-hover: #353535;
23673
+ --cds-background-inverse-hover: #e5e5e5;
23674
+ --cds-link-primary-hover: #a6c8ff;
23675
+ --cds-button-danger-hover: #b81921;
23676
+ --cds-button-primary-hover: #0353e9;
23677
+ --cds-button-secondary-hover: #606060;
23678
+ --cds-button-tertiary-hover: #f4f4f4;
23679
+ --cds-background-selected: #393939;
23680
+ --cds-background-selected-hover: #4c4c4c;
23681
+ --cds-layer-selected: #393939;
23682
+ --cds-layer-selected-hover: #4c4c4c;
23683
+ --cds-layer-selected-inverse: #f4f4f4;
23684
+ --cds-border-subtle-selected: #525252;
23685
+ --cds-border-disabled: #262626;
23686
+ --cds-text-disabled: #525252;
23687
+ --cds-button-disabled: #525252;
23688
+ --cds-icon-disabled: #525252;
23689
+ --cds-text-on-color-disabled: #8d8d8d;
23690
+ --cds-icon-on-color-disabled: #8d8d8d;
23691
+ --cds-layer-selected-disabled: #8d8d8d;
23692
+ --cds-skeleton-background: #353535;
23693
+ --cds-skeleton-element: #525252;
23694
+ --cds-brand-01: #0f62fe;
23695
+ --cds-brand-02: #6f6f6f;
23696
+ --cds-brand-03: #ffffff;
23697
+ --cds-active-01: #525252;
23698
+ --cds-hover-field: #353535;
23699
+ --cds-danger: #da1e28;
23700
+ --cds-caption-01-font-size: 0.75rem;
23701
+ --cds-caption-01-font-weight: 400;
23702
+ --cds-caption-01-line-height: 1.33333;
23703
+ --cds-caption-01-letter-spacing: 0.32px;
23704
+ --cds-caption-02-font-size: 0.875rem;
23705
+ --cds-caption-02-font-weight: 400;
23706
+ --cds-caption-02-line-height: 1.28572;
23707
+ --cds-caption-02-letter-spacing: 0.32px;
23708
+ --cds-label-01-font-size: 0.75rem;
23709
+ --cds-label-01-font-weight: 400;
23710
+ --cds-label-01-line-height: 1.33333;
23711
+ --cds-label-01-letter-spacing: 0.32px;
23712
+ --cds-label-02-font-size: 0.875rem;
23713
+ --cds-label-02-font-weight: 400;
23714
+ --cds-label-02-line-height: 1.28572;
23715
+ --cds-label-02-letter-spacing: 0.16px;
23716
+ --cds-helper-text-01-font-size: 0.75rem;
23717
+ --cds-helper-text-01-line-height: 1.33333;
23718
+ --cds-helper-text-01-letter-spacing: 0.32px;
23719
+ --cds-helper-text-02-font-size: 0.875rem;
23720
+ --cds-helper-text-02-line-height: 1.28572;
23721
+ --cds-helper-text-02-letter-spacing: 0.16px;
23722
+ --cds-body-short-01-font-size: 0.875rem;
23723
+ --cds-body-short-01-font-weight: 400;
23724
+ --cds-body-short-01-line-height: 1.28572;
23725
+ --cds-body-short-01-letter-spacing: 0.16px;
23726
+ --cds-body-long-01-font-size: 0.875rem;
23727
+ --cds-body-long-01-font-weight: 400;
23728
+ --cds-body-long-01-line-height: 1.42857;
23729
+ --cds-body-long-01-letter-spacing: 0.16px;
23730
+ --cds-body-short-02-font-size: 1rem;
23731
+ --cds-body-short-02-font-weight: 400;
23732
+ --cds-body-short-02-line-height: 1.375;
23733
+ --cds-body-short-02-letter-spacing: 0;
23734
+ --cds-body-long-02-font-size: 1rem;
23735
+ --cds-body-long-02-font-weight: 400;
23736
+ --cds-body-long-02-line-height: 1.5;
23737
+ --cds-body-long-02-letter-spacing: 0;
23738
+ --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
23739
+ --cds-code-01-font-size: 0.75rem;
23740
+ --cds-code-01-font-weight: 400;
23741
+ --cds-code-01-line-height: 1.33333;
23742
+ --cds-code-01-letter-spacing: 0.32px;
23743
+ --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
23744
+ --cds-code-02-font-size: 0.875rem;
23745
+ --cds-code-02-font-weight: 400;
23746
+ --cds-code-02-line-height: 1.42857;
23747
+ --cds-code-02-letter-spacing: 0.32px;
23748
+ --cds-heading-01-font-size: 0.875rem;
23749
+ --cds-heading-01-font-weight: 600;
23750
+ --cds-heading-01-line-height: 1.42857;
23751
+ --cds-heading-01-letter-spacing: 0.16px;
23752
+ --cds-productive-heading-01-font-size: 0.875rem;
23753
+ --cds-productive-heading-01-font-weight: 600;
23754
+ --cds-productive-heading-01-line-height: 1.28572;
23755
+ --cds-productive-heading-01-letter-spacing: 0.16px;
23756
+ --cds-heading-02-font-size: 1rem;
23757
+ --cds-heading-02-font-weight: 600;
23758
+ --cds-heading-02-line-height: 1.5;
23759
+ --cds-heading-02-letter-spacing: 0;
23760
+ --cds-productive-heading-02-font-size: 1rem;
23761
+ --cds-productive-heading-02-font-weight: 600;
23762
+ --cds-productive-heading-02-line-height: 1.375;
23763
+ --cds-productive-heading-02-letter-spacing: 0;
23764
+ --cds-productive-heading-03-font-size: 1.25rem;
23765
+ --cds-productive-heading-03-font-weight: 400;
23766
+ --cds-productive-heading-03-line-height: 1.4;
23767
+ --cds-productive-heading-03-letter-spacing: 0;
23768
+ --cds-productive-heading-04-font-size: 1.75rem;
23769
+ --cds-productive-heading-04-font-weight: 400;
23770
+ --cds-productive-heading-04-line-height: 1.28572;
23771
+ --cds-productive-heading-04-letter-spacing: 0;
23772
+ --cds-productive-heading-05-font-size: 2rem;
23773
+ --cds-productive-heading-05-font-weight: 400;
23774
+ --cds-productive-heading-05-line-height: 1.25;
23775
+ --cds-productive-heading-05-letter-spacing: 0;
23776
+ --cds-productive-heading-06-font-size: 2.625rem;
23777
+ --cds-productive-heading-06-font-weight: 300;
23778
+ --cds-productive-heading-06-line-height: 1.199;
23779
+ --cds-productive-heading-06-letter-spacing: 0;
23780
+ --cds-productive-heading-07-font-size: 3.375rem;
23781
+ --cds-productive-heading-07-font-weight: 300;
23782
+ --cds-productive-heading-07-line-height: 1.199;
23783
+ --cds-productive-heading-07-letter-spacing: 0;
23784
+ --cds-expressive-heading-01-font-size: 0.875rem;
23785
+ --cds-expressive-heading-01-font-weight: 600;
23786
+ --cds-expressive-heading-01-line-height: 1.25;
23787
+ --cds-expressive-heading-01-letter-spacing: 0.16px;
23788
+ --cds-expressive-heading-02-font-size: 1rem;
23789
+ --cds-expressive-heading-02-font-weight: 600;
23790
+ --cds-expressive-heading-02-line-height: 1.5;
23791
+ --cds-expressive-heading-02-letter-spacing: 0;
23792
+ --cds-expressive-heading-03-font-size: 1.25rem;
23793
+ --cds-expressive-heading-03-font-weight: 400;
23794
+ --cds-expressive-heading-03-line-height: 1.4;
23795
+ --cds-expressive-heading-03-letter-spacing: 0;
23796
+ --cds-expressive-heading-04-font-size: 1.75rem;
23797
+ --cds-expressive-heading-04-font-weight: 400;
23798
+ --cds-expressive-heading-04-line-height: 1.28572;
23799
+ --cds-expressive-heading-04-letter-spacing: 0;
23800
+ --cds-expressive-heading-05-font-size: 2rem;
23801
+ --cds-expressive-heading-05-font-weight: 400;
23802
+ --cds-expressive-heading-05-line-height: 1.25;
23803
+ --cds-expressive-heading-05-letter-spacing: 0;
23804
+ --cds-expressive-heading-06-font-size: 2rem;
23805
+ --cds-expressive-heading-06-font-weight: 600;
23806
+ --cds-expressive-heading-06-line-height: 1.25;
23807
+ --cds-expressive-heading-06-letter-spacing: 0;
23808
+ --cds-expressive-paragraph-01-font-size: 1.5rem;
23809
+ --cds-expressive-paragraph-01-font-weight: 300;
23810
+ --cds-expressive-paragraph-01-line-height: 1.334;
23811
+ --cds-expressive-paragraph-01-letter-spacing: 0;
23812
+ --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
23813
+ --cds-quotation-01-font-size: 1.25rem;
23814
+ --cds-quotation-01-font-weight: 400;
23815
+ --cds-quotation-01-line-height: 1.3;
23816
+ --cds-quotation-01-letter-spacing: 0;
23817
+ --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
23818
+ --cds-quotation-02-font-size: 2rem;
23819
+ --cds-quotation-02-font-weight: 300;
23820
+ --cds-quotation-02-line-height: 1.25;
23821
+ --cds-quotation-02-letter-spacing: 0;
23822
+ --cds-display-01-font-size: 2.625rem;
23823
+ --cds-display-01-font-weight: 300;
23824
+ --cds-display-01-line-height: 1.19;
23825
+ --cds-display-01-letter-spacing: 0;
23826
+ --cds-display-02-font-size: 2.625rem;
23827
+ --cds-display-02-font-weight: 600;
23828
+ --cds-display-02-line-height: 1.19;
23829
+ --cds-display-02-letter-spacing: 0;
23830
+ --cds-display-03-font-size: 2.625rem;
23831
+ --cds-display-03-font-weight: 300;
23832
+ --cds-display-03-line-height: 1.19;
23833
+ --cds-display-03-letter-spacing: 0;
23834
+ --cds-display-04-font-size: 2.625rem;
23835
+ --cds-display-04-font-weight: 300;
23836
+ --cds-display-04-line-height: 1.19;
23837
+ --cds-display-04-letter-spacing: 0;
23838
+ --cds-legal-01-font-size: 0.75rem;
23839
+ --cds-legal-01-font-weight: 400;
23840
+ --cds-legal-01-line-height: 1.33333;
23841
+ --cds-legal-01-letter-spacing: 0.32px;
23842
+ --cds-legal-02-font-size: 0.875rem;
23843
+ --cds-legal-02-font-weight: 400;
23844
+ --cds-legal-02-line-height: 1.28572;
23845
+ --cds-legal-02-letter-spacing: 0.16px;
23846
+ --cds-body-compact-01-font-size: 0.875rem;
23847
+ --cds-body-compact-01-font-weight: 400;
23848
+ --cds-body-compact-01-line-height: 1.28572;
23849
+ --cds-body-compact-01-letter-spacing: 0.16px;
23850
+ --cds-body-compact-02-font-size: 1rem;
23851
+ --cds-body-compact-02-font-weight: 400;
23852
+ --cds-body-compact-02-line-height: 1.375;
23853
+ --cds-body-compact-02-letter-spacing: 0;
23854
+ --cds-body-01-font-size: 0.875rem;
23855
+ --cds-body-01-font-weight: 400;
23856
+ --cds-body-01-line-height: 1.42857;
23857
+ --cds-body-01-letter-spacing: 0.16px;
23858
+ --cds-body-02-font-size: 1rem;
23859
+ --cds-body-02-font-weight: 400;
23860
+ --cds-body-02-line-height: 1.5;
23861
+ --cds-body-02-letter-spacing: 0;
23862
+ --cds-heading-compact-01-font-size: 0.875rem;
23863
+ --cds-heading-compact-01-font-weight: 600;
23864
+ --cds-heading-compact-01-line-height: 1.28572;
23865
+ --cds-heading-compact-01-letter-spacing: 0.16px;
23866
+ --cds-heading-compact-02-font-size: 1rem;
23867
+ --cds-heading-compact-02-font-weight: 600;
23868
+ --cds-heading-compact-02-line-height: 1.375;
23869
+ --cds-heading-compact-02-letter-spacing: 0;
23870
+ --cds-heading-03-font-size: 1.25rem;
23871
+ --cds-heading-03-font-weight: 400;
23872
+ --cds-heading-03-line-height: 1.4;
23873
+ --cds-heading-03-letter-spacing: 0;
23874
+ --cds-heading-04-font-size: 1.75rem;
23875
+ --cds-heading-04-font-weight: 400;
23876
+ --cds-heading-04-line-height: 1.28572;
23877
+ --cds-heading-04-letter-spacing: 0;
23878
+ --cds-heading-05-font-size: 2rem;
23879
+ --cds-heading-05-font-weight: 400;
23880
+ --cds-heading-05-line-height: 1.25;
23881
+ --cds-heading-05-letter-spacing: 0;
23882
+ --cds-heading-06-font-size: 2.625rem;
23883
+ --cds-heading-06-font-weight: 300;
23884
+ --cds-heading-06-line-height: 1.199;
23885
+ --cds-heading-06-letter-spacing: 0;
23886
+ --cds-heading-07-font-size: 3.375rem;
23887
+ --cds-heading-07-font-weight: 300;
23888
+ --cds-heading-07-line-height: 1.199;
23889
+ --cds-heading-07-letter-spacing: 0;
23890
+ --cds-fluid-heading-03-font-size: 1.25rem;
23891
+ --cds-fluid-heading-03-font-weight: 400;
23892
+ --cds-fluid-heading-03-line-height: 1.4;
23893
+ --cds-fluid-heading-03-letter-spacing: 0;
23894
+ --cds-fluid-heading-04-font-size: 1.75rem;
23895
+ --cds-fluid-heading-04-font-weight: 400;
23896
+ --cds-fluid-heading-04-line-height: 1.28572;
23897
+ --cds-fluid-heading-04-letter-spacing: 0;
23898
+ --cds-fluid-heading-05-font-size: 2rem;
23899
+ --cds-fluid-heading-05-font-weight: 400;
23900
+ --cds-fluid-heading-05-line-height: 1.25;
23901
+ --cds-fluid-heading-05-letter-spacing: 0;
23902
+ --cds-fluid-heading-06-font-size: 2rem;
23903
+ --cds-fluid-heading-06-font-weight: 600;
23904
+ --cds-fluid-heading-06-line-height: 1.25;
23905
+ --cds-fluid-heading-06-letter-spacing: 0;
23906
+ --cds-fluid-paragraph-01-font-size: 1.5rem;
23907
+ --cds-fluid-paragraph-01-font-weight: 300;
23908
+ --cds-fluid-paragraph-01-line-height: 1.334;
23909
+ --cds-fluid-paragraph-01-letter-spacing: 0;
23910
+ --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
23911
+ --cds-fluid-quotation-01-font-size: 1.25rem;
23912
+ --cds-fluid-quotation-01-font-weight: 400;
23913
+ --cds-fluid-quotation-01-line-height: 1.3;
23914
+ --cds-fluid-quotation-01-letter-spacing: 0;
23915
+ --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
23916
+ --cds-fluid-quotation-02-font-size: 2rem;
23917
+ --cds-fluid-quotation-02-font-weight: 300;
23918
+ --cds-fluid-quotation-02-line-height: 1.25;
23919
+ --cds-fluid-quotation-02-letter-spacing: 0;
23920
+ --cds-fluid-display-01-font-size: 2.625rem;
23921
+ --cds-fluid-display-01-font-weight: 300;
23922
+ --cds-fluid-display-01-line-height: 1.19;
23923
+ --cds-fluid-display-01-letter-spacing: 0;
23924
+ --cds-fluid-display-02-font-size: 2.625rem;
23925
+ --cds-fluid-display-02-font-weight: 600;
23926
+ --cds-fluid-display-02-line-height: 1.19;
23927
+ --cds-fluid-display-02-letter-spacing: 0;
23928
+ --cds-fluid-display-03-font-size: 2.625rem;
23929
+ --cds-fluid-display-03-font-weight: 300;
23930
+ --cds-fluid-display-03-line-height: 1.19;
23931
+ --cds-fluid-display-03-letter-spacing: 0;
23932
+ --cds-fluid-display-04-font-size: 2.625rem;
23933
+ --cds-fluid-display-04-font-weight: 300;
23934
+ --cds-fluid-display-04-line-height: 1.19;
23935
+ --cds-fluid-display-04-letter-spacing: 0;
23936
+ --cds-spacing-01: 0.125rem;
23937
+ --cds-spacing-02: 0.25rem;
23938
+ --cds-spacing-03: 0.5rem;
23939
+ --cds-spacing-04: 0.75rem;
23940
+ --cds-spacing-05: 1rem;
23941
+ --cds-spacing-06: 1.5rem;
23942
+ --cds-spacing-07: 2rem;
23943
+ --cds-spacing-08: 2.5rem;
23944
+ --cds-spacing-09: 3rem;
23945
+ --cds-spacing-10: 4rem;
23946
+ --cds-spacing-11: 5rem;
23947
+ --cds-spacing-12: 6rem;
23948
+ --cds-spacing-13: 10rem;
23949
+ --cds-fluid-spacing-01: 0;
23950
+ --cds-fluid-spacing-02: 2vw;
23951
+ --cds-fluid-spacing-03: 5vw;
23952
+ --cds-fluid-spacing-04: 10vw;
23953
+ --cds-layout-01: 1rem;
23954
+ --cds-layout-02: 1.5rem;
23955
+ --cds-layout-03: 2rem;
23956
+ --cds-layout-04: 3rem;
23957
+ --cds-layout-05: 4rem;
23958
+ --cds-layout-06: 6rem;
23959
+ --cds-layout-07: 10rem;
23960
+ --cds-container-01: 1.5rem;
23961
+ --cds-container-02: 2rem;
23962
+ --cds-container-03: 2.5rem;
23963
+ --cds-container-04: 3rem;
23964
+ --cds-container-05: 4rem;
23965
+ --cds-size-xsmall: 1.5rem;
23966
+ --cds-size-small: 2rem;
23967
+ --cds-size-medium: 2.5rem;
23968
+ --cds-size-large: 3rem;
23969
+ --cds-size-xlarge: 4rem;
23970
+ --cds-size-2XLarge: 5rem;
23971
+ --cds-icon-size-01: 1rem;
23972
+ --cds-icon-size-02: 1.25rem;
23973
+ padding: 0.0625rem var(--cds-spacing-03, 0.5rem) 0.0625rem var(--cds-spacing-03, 0.5rem);
23974
+ border: none;
23975
+ border-radius: var(--cds-spacing-04, 0.75rem);
23976
+ background-color: var(--cds-interactive-02, #393939);
23977
+ white-space: nowrap;
23978
+ padding-right: 0;
23979
+ background-color: #491d8b;
23980
+ color: var(--cds-text-04, #ffffff);
23981
+ }
23982
+ .c4p--non-linear-reading__term-dark--open:hover {
23983
+ background-color: var(--cds-hover-secondary, #4c4c4c);
23984
+ cursor: pointer;
23985
+ }
23986
+ .c4p--non-linear-reading__term-dark--open svg {
23987
+ padding-top: 0.0625rem;
23988
+ margin: 0 var(--cds-spacing-02, 0.25rem) 0 var(--cds-spacing-01, 0.125rem);
23989
+ vertical-align: text-top;
23990
+ }
23991
+ .c4p--non-linear-reading__term-dark--open:hover {
23992
+ background-color: #7f3ae7;
23993
+ }
23994
+ .c4p--non-linear-reading--body-light {
23995
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
23996
+ font-weight: var(--cds-body-long-01-font-weight, 400);
23997
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
23998
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
23999
+ display: block;
24000
+ padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
24001
+ border-left-width: 0.078125rem;
24002
+ border-left-style: solid;
24003
+ margin: var(--cds-spacing-02, 0.25rem) 0;
24004
+ animation: fade 600ms;
24005
+ border-left-color: #6929c4;
24006
+ color: #6929c4;
24007
+ }
24008
+ .c4p--non-linear-reading--body-dark {
24009
+ --cds-interactive-01: #0f62fe;
24010
+ --cds-interactive-02: #6f6f6f;
24011
+ --cds-interactive-03: #ffffff;
24012
+ --cds-interactive-04: #4589ff;
24013
+ --cds-ui-background: #161616;
24014
+ --cds-ui-01: #262626;
24015
+ --cds-ui-02: #393939;
24016
+ --cds-ui-03: #393939;
24017
+ --cds-ui-04: #6f6f6f;
24018
+ --cds-ui-05: #f4f4f4;
24019
+ --cds-text-01: #f4f4f4;
24020
+ --cds-text-02: #c6c6c6;
24021
+ --cds-text-03: #6f6f6f;
24022
+ --cds-text-04: #ffffff;
24023
+ --cds-text-05: #8d8d8d;
24024
+ --cds-text-error: #ff8389;
24025
+ --cds-icon-01: #f4f4f4;
24026
+ --cds-icon-02: #c6c6c6;
24027
+ --cds-icon-03: #ffffff;
24028
+ --cds-link-01: #78a9ff;
24029
+ --cds-link-02: #a6c8ff;
24030
+ --cds-inverse-link: #0f62fe;
24031
+ --cds-field-01: #262626;
24032
+ --cds-field-02: #393939;
24033
+ --cds-inverse-01: #161616;
24034
+ --cds-inverse-02: #f4f4f4;
24035
+ --cds-support-01: #fa4d56;
24036
+ --cds-support-02: #42be65;
24037
+ --cds-support-03: #f1c21b;
24038
+ --cds-support-04: #4589ff;
24039
+ --cds-inverse-support-01: #da1e28;
24040
+ --cds-inverse-support-02: #24a148;
24041
+ --cds-inverse-support-03: #f1c21b;
24042
+ --cds-inverse-support-04: #0f62fe;
24043
+ --cds-overlay-01: rgba(0, 0, 0, 0.65);
24044
+ --cds-danger-01: #da1e28;
24045
+ --cds-danger-02: #fa4d56;
24046
+ --cds-focus: #ffffff;
24047
+ --cds-inverse-focus-ui: #0f62fe;
24048
+ --cds-hover-primary: #0353e9;
24049
+ --cds-active-primary: #002d9c;
24050
+ --cds-hover-primary-text: #a6c8ff;
24051
+ --cds-hover-secondary: #606060;
24052
+ --cds-active-secondary: #393939;
24053
+ --cds-hover-tertiary: #f4f4f4;
24054
+ --cds-active-tertiary: #c6c6c6;
24055
+ --cds-hover-ui: #353535;
24056
+ --cds-hover-light-ui: #4c4c4c;
24057
+ --cds-hover-selected-ui: #4c4c4c;
24058
+ --cds-active-ui: #525252;
24059
+ --cds-active-light-ui: #6f6f6f;
24060
+ --cds-selected-ui: #393939;
24061
+ --cds-selected-light-ui: #525252;
24062
+ --cds-inverse-hover-ui: #e5e5e5;
24063
+ --cds-hover-danger: #b81921;
24064
+ --cds-active-danger: #750e13;
24065
+ --cds-hover-row: #353535;
24066
+ --cds-visited-link: #be95ff;
24067
+ --cds-disabled-01: #262626;
24068
+ --cds-disabled-02: #525252;
24069
+ --cds-disabled-03: #8d8d8d;
24070
+ --cds-highlight: #002d9c;
24071
+ --cds-decorative-01: #525252;
24072
+ --cds-button-separator: #161616;
24073
+ --cds-skeleton-01: #353535;
24074
+ --cds-skeleton-02: #525252;
24075
+ --cds-background: #161616;
24076
+ --cds-layer: #262626;
24077
+ --cds-layer-accent: #393939;
24078
+ --cds-layer-accent-hover: #474747;
24079
+ --cds-layer-accent-active: #6f6f6f;
24080
+ --cds-field: #262626;
24081
+ --cds-background-inverse: #f4f4f4;
24082
+ --cds-background-brand: #0f62fe;
24083
+ --cds-interactive: #4589ff;
24084
+ --cds-border-subtle: #393939;
24085
+ --cds-border-strong: #6f6f6f;
24086
+ --cds-border-inverse: #f4f4f4;
24087
+ --cds-border-interactive: #4589ff;
24088
+ --cds-text-primary: #f4f4f4;
24089
+ --cds-text-secondary: #c6c6c6;
24090
+ --cds-text-placeholder: #6f6f6f;
24091
+ --cds-text-helper: #8d8d8d;
24092
+ --cds-text-on-color: #ffffff;
24093
+ --cds-text-inverse: #161616;
24094
+ --cds-link-primary: #78a9ff;
24095
+ --cds-link-secondary: #a6c8ff;
24096
+ --cds-link-visited: #be95ff;
24097
+ --cds-link-inverse: #0f62fe;
24098
+ --cds-icon-primary: #f4f4f4;
24099
+ --cds-icon-secondary: #c6c6c6;
24100
+ --cds-icon-on-color: #ffffff;
24101
+ --cds-icon-inverse: #161616;
24102
+ --cds-support-error: #fa4d56;
24103
+ --cds-support-success: #42be65;
24104
+ --cds-support-warning: #f1c21b;
24105
+ --cds-support-info: #4589ff;
24106
+ --cds-support-error-inverse: #da1e28;
24107
+ --cds-support-success-inverse: #24a148;
24108
+ --cds-support-warning-inverse: #f1c21b;
24109
+ --cds-support-info-inverse: #0f62fe;
24110
+ --cds-overlay: rgba(0, 0, 0, 0.65);
24111
+ --cds-toggle-off: #6f6f6f;
24112
+ --cds-shadow: rgba(0, 0, 0, 0.8);
24113
+ --cds-button-primary: #0f62fe;
24114
+ --cds-button-secondary: #6f6f6f;
24115
+ --cds-button-tertiary: #ffffff;
24116
+ --cds-button-danger-primary: #da1e28;
24117
+ --cds-button-danger-secondary: #fa4d56;
24118
+ --cds-background-active: #525252;
24119
+ --cds-layer-active: #525252;
24120
+ --cds-button-danger-active: #750e13;
24121
+ --cds-button-primary-active: #002d9c;
24122
+ --cds-button-secondary-active: #393939;
24123
+ --cds-button-tertiary-active: #c6c6c6;
24124
+ --cds-focus-inset: #161616;
24125
+ --cds-focus-inverse: #0f62fe;
24126
+ --cds-background-hover: #353535;
24127
+ --cds-layer-hover: #353535;
24128
+ --cds-field-hover: #353535;
24129
+ --cds-background-inverse-hover: #e5e5e5;
24130
+ --cds-link-primary-hover: #a6c8ff;
24131
+ --cds-button-danger-hover: #b81921;
24132
+ --cds-button-primary-hover: #0353e9;
24133
+ --cds-button-secondary-hover: #606060;
24134
+ --cds-button-tertiary-hover: #f4f4f4;
24135
+ --cds-background-selected: #393939;
24136
+ --cds-background-selected-hover: #4c4c4c;
24137
+ --cds-layer-selected: #393939;
24138
+ --cds-layer-selected-hover: #4c4c4c;
24139
+ --cds-layer-selected-inverse: #f4f4f4;
24140
+ --cds-border-subtle-selected: #525252;
24141
+ --cds-border-disabled: #262626;
24142
+ --cds-text-disabled: #525252;
24143
+ --cds-button-disabled: #525252;
24144
+ --cds-icon-disabled: #525252;
24145
+ --cds-text-on-color-disabled: #8d8d8d;
24146
+ --cds-icon-on-color-disabled: #8d8d8d;
24147
+ --cds-layer-selected-disabled: #8d8d8d;
24148
+ --cds-skeleton-background: #353535;
24149
+ --cds-skeleton-element: #525252;
24150
+ --cds-brand-01: #0f62fe;
24151
+ --cds-brand-02: #6f6f6f;
24152
+ --cds-brand-03: #ffffff;
24153
+ --cds-active-01: #525252;
24154
+ --cds-hover-field: #353535;
24155
+ --cds-danger: #da1e28;
24156
+ --cds-caption-01-font-size: 0.75rem;
24157
+ --cds-caption-01-font-weight: 400;
24158
+ --cds-caption-01-line-height: 1.33333;
24159
+ --cds-caption-01-letter-spacing: 0.32px;
24160
+ --cds-caption-02-font-size: 0.875rem;
24161
+ --cds-caption-02-font-weight: 400;
24162
+ --cds-caption-02-line-height: 1.28572;
24163
+ --cds-caption-02-letter-spacing: 0.32px;
24164
+ --cds-label-01-font-size: 0.75rem;
24165
+ --cds-label-01-font-weight: 400;
24166
+ --cds-label-01-line-height: 1.33333;
24167
+ --cds-label-01-letter-spacing: 0.32px;
24168
+ --cds-label-02-font-size: 0.875rem;
24169
+ --cds-label-02-font-weight: 400;
24170
+ --cds-label-02-line-height: 1.28572;
24171
+ --cds-label-02-letter-spacing: 0.16px;
24172
+ --cds-helper-text-01-font-size: 0.75rem;
24173
+ --cds-helper-text-01-line-height: 1.33333;
24174
+ --cds-helper-text-01-letter-spacing: 0.32px;
24175
+ --cds-helper-text-02-font-size: 0.875rem;
24176
+ --cds-helper-text-02-line-height: 1.28572;
24177
+ --cds-helper-text-02-letter-spacing: 0.16px;
24178
+ --cds-body-short-01-font-size: 0.875rem;
24179
+ --cds-body-short-01-font-weight: 400;
24180
+ --cds-body-short-01-line-height: 1.28572;
24181
+ --cds-body-short-01-letter-spacing: 0.16px;
24182
+ --cds-body-long-01-font-size: 0.875rem;
24183
+ --cds-body-long-01-font-weight: 400;
24184
+ --cds-body-long-01-line-height: 1.42857;
24185
+ --cds-body-long-01-letter-spacing: 0.16px;
24186
+ --cds-body-short-02-font-size: 1rem;
24187
+ --cds-body-short-02-font-weight: 400;
24188
+ --cds-body-short-02-line-height: 1.375;
24189
+ --cds-body-short-02-letter-spacing: 0;
24190
+ --cds-body-long-02-font-size: 1rem;
24191
+ --cds-body-long-02-font-weight: 400;
24192
+ --cds-body-long-02-line-height: 1.5;
24193
+ --cds-body-long-02-letter-spacing: 0;
24194
+ --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
24195
+ --cds-code-01-font-size: 0.75rem;
24196
+ --cds-code-01-font-weight: 400;
24197
+ --cds-code-01-line-height: 1.33333;
24198
+ --cds-code-01-letter-spacing: 0.32px;
24199
+ --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
24200
+ --cds-code-02-font-size: 0.875rem;
24201
+ --cds-code-02-font-weight: 400;
24202
+ --cds-code-02-line-height: 1.42857;
24203
+ --cds-code-02-letter-spacing: 0.32px;
24204
+ --cds-heading-01-font-size: 0.875rem;
24205
+ --cds-heading-01-font-weight: 600;
24206
+ --cds-heading-01-line-height: 1.42857;
24207
+ --cds-heading-01-letter-spacing: 0.16px;
24208
+ --cds-productive-heading-01-font-size: 0.875rem;
24209
+ --cds-productive-heading-01-font-weight: 600;
24210
+ --cds-productive-heading-01-line-height: 1.28572;
24211
+ --cds-productive-heading-01-letter-spacing: 0.16px;
24212
+ --cds-heading-02-font-size: 1rem;
24213
+ --cds-heading-02-font-weight: 600;
24214
+ --cds-heading-02-line-height: 1.5;
24215
+ --cds-heading-02-letter-spacing: 0;
24216
+ --cds-productive-heading-02-font-size: 1rem;
24217
+ --cds-productive-heading-02-font-weight: 600;
24218
+ --cds-productive-heading-02-line-height: 1.375;
24219
+ --cds-productive-heading-02-letter-spacing: 0;
24220
+ --cds-productive-heading-03-font-size: 1.25rem;
24221
+ --cds-productive-heading-03-font-weight: 400;
24222
+ --cds-productive-heading-03-line-height: 1.4;
24223
+ --cds-productive-heading-03-letter-spacing: 0;
24224
+ --cds-productive-heading-04-font-size: 1.75rem;
24225
+ --cds-productive-heading-04-font-weight: 400;
24226
+ --cds-productive-heading-04-line-height: 1.28572;
24227
+ --cds-productive-heading-04-letter-spacing: 0;
24228
+ --cds-productive-heading-05-font-size: 2rem;
24229
+ --cds-productive-heading-05-font-weight: 400;
24230
+ --cds-productive-heading-05-line-height: 1.25;
24231
+ --cds-productive-heading-05-letter-spacing: 0;
24232
+ --cds-productive-heading-06-font-size: 2.625rem;
24233
+ --cds-productive-heading-06-font-weight: 300;
24234
+ --cds-productive-heading-06-line-height: 1.199;
24235
+ --cds-productive-heading-06-letter-spacing: 0;
24236
+ --cds-productive-heading-07-font-size: 3.375rem;
24237
+ --cds-productive-heading-07-font-weight: 300;
24238
+ --cds-productive-heading-07-line-height: 1.199;
24239
+ --cds-productive-heading-07-letter-spacing: 0;
24240
+ --cds-expressive-heading-01-font-size: 0.875rem;
24241
+ --cds-expressive-heading-01-font-weight: 600;
24242
+ --cds-expressive-heading-01-line-height: 1.25;
24243
+ --cds-expressive-heading-01-letter-spacing: 0.16px;
24244
+ --cds-expressive-heading-02-font-size: 1rem;
24245
+ --cds-expressive-heading-02-font-weight: 600;
24246
+ --cds-expressive-heading-02-line-height: 1.5;
24247
+ --cds-expressive-heading-02-letter-spacing: 0;
24248
+ --cds-expressive-heading-03-font-size: 1.25rem;
24249
+ --cds-expressive-heading-03-font-weight: 400;
24250
+ --cds-expressive-heading-03-line-height: 1.4;
24251
+ --cds-expressive-heading-03-letter-spacing: 0;
24252
+ --cds-expressive-heading-04-font-size: 1.75rem;
24253
+ --cds-expressive-heading-04-font-weight: 400;
24254
+ --cds-expressive-heading-04-line-height: 1.28572;
24255
+ --cds-expressive-heading-04-letter-spacing: 0;
24256
+ --cds-expressive-heading-05-font-size: 2rem;
24257
+ --cds-expressive-heading-05-font-weight: 400;
24258
+ --cds-expressive-heading-05-line-height: 1.25;
24259
+ --cds-expressive-heading-05-letter-spacing: 0;
24260
+ --cds-expressive-heading-06-font-size: 2rem;
24261
+ --cds-expressive-heading-06-font-weight: 600;
24262
+ --cds-expressive-heading-06-line-height: 1.25;
24263
+ --cds-expressive-heading-06-letter-spacing: 0;
24264
+ --cds-expressive-paragraph-01-font-size: 1.5rem;
24265
+ --cds-expressive-paragraph-01-font-weight: 300;
24266
+ --cds-expressive-paragraph-01-line-height: 1.334;
24267
+ --cds-expressive-paragraph-01-letter-spacing: 0;
24268
+ --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
24269
+ --cds-quotation-01-font-size: 1.25rem;
24270
+ --cds-quotation-01-font-weight: 400;
24271
+ --cds-quotation-01-line-height: 1.3;
24272
+ --cds-quotation-01-letter-spacing: 0;
24273
+ --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
24274
+ --cds-quotation-02-font-size: 2rem;
24275
+ --cds-quotation-02-font-weight: 300;
24276
+ --cds-quotation-02-line-height: 1.25;
24277
+ --cds-quotation-02-letter-spacing: 0;
24278
+ --cds-display-01-font-size: 2.625rem;
24279
+ --cds-display-01-font-weight: 300;
24280
+ --cds-display-01-line-height: 1.19;
24281
+ --cds-display-01-letter-spacing: 0;
24282
+ --cds-display-02-font-size: 2.625rem;
24283
+ --cds-display-02-font-weight: 600;
24284
+ --cds-display-02-line-height: 1.19;
24285
+ --cds-display-02-letter-spacing: 0;
24286
+ --cds-display-03-font-size: 2.625rem;
24287
+ --cds-display-03-font-weight: 300;
24288
+ --cds-display-03-line-height: 1.19;
24289
+ --cds-display-03-letter-spacing: 0;
24290
+ --cds-display-04-font-size: 2.625rem;
24291
+ --cds-display-04-font-weight: 300;
24292
+ --cds-display-04-line-height: 1.19;
24293
+ --cds-display-04-letter-spacing: 0;
24294
+ --cds-legal-01-font-size: 0.75rem;
24295
+ --cds-legal-01-font-weight: 400;
24296
+ --cds-legal-01-line-height: 1.33333;
24297
+ --cds-legal-01-letter-spacing: 0.32px;
24298
+ --cds-legal-02-font-size: 0.875rem;
24299
+ --cds-legal-02-font-weight: 400;
24300
+ --cds-legal-02-line-height: 1.28572;
24301
+ --cds-legal-02-letter-spacing: 0.16px;
24302
+ --cds-body-compact-01-font-size: 0.875rem;
24303
+ --cds-body-compact-01-font-weight: 400;
24304
+ --cds-body-compact-01-line-height: 1.28572;
24305
+ --cds-body-compact-01-letter-spacing: 0.16px;
24306
+ --cds-body-compact-02-font-size: 1rem;
24307
+ --cds-body-compact-02-font-weight: 400;
24308
+ --cds-body-compact-02-line-height: 1.375;
24309
+ --cds-body-compact-02-letter-spacing: 0;
24310
+ --cds-body-01-font-size: 0.875rem;
24311
+ --cds-body-01-font-weight: 400;
24312
+ --cds-body-01-line-height: 1.42857;
24313
+ --cds-body-01-letter-spacing: 0.16px;
24314
+ --cds-body-02-font-size: 1rem;
24315
+ --cds-body-02-font-weight: 400;
24316
+ --cds-body-02-line-height: 1.5;
24317
+ --cds-body-02-letter-spacing: 0;
24318
+ --cds-heading-compact-01-font-size: 0.875rem;
24319
+ --cds-heading-compact-01-font-weight: 600;
24320
+ --cds-heading-compact-01-line-height: 1.28572;
24321
+ --cds-heading-compact-01-letter-spacing: 0.16px;
24322
+ --cds-heading-compact-02-font-size: 1rem;
24323
+ --cds-heading-compact-02-font-weight: 600;
24324
+ --cds-heading-compact-02-line-height: 1.375;
24325
+ --cds-heading-compact-02-letter-spacing: 0;
24326
+ --cds-heading-03-font-size: 1.25rem;
24327
+ --cds-heading-03-font-weight: 400;
24328
+ --cds-heading-03-line-height: 1.4;
24329
+ --cds-heading-03-letter-spacing: 0;
24330
+ --cds-heading-04-font-size: 1.75rem;
24331
+ --cds-heading-04-font-weight: 400;
24332
+ --cds-heading-04-line-height: 1.28572;
24333
+ --cds-heading-04-letter-spacing: 0;
24334
+ --cds-heading-05-font-size: 2rem;
24335
+ --cds-heading-05-font-weight: 400;
24336
+ --cds-heading-05-line-height: 1.25;
24337
+ --cds-heading-05-letter-spacing: 0;
24338
+ --cds-heading-06-font-size: 2.625rem;
24339
+ --cds-heading-06-font-weight: 300;
24340
+ --cds-heading-06-line-height: 1.199;
24341
+ --cds-heading-06-letter-spacing: 0;
24342
+ --cds-heading-07-font-size: 3.375rem;
24343
+ --cds-heading-07-font-weight: 300;
24344
+ --cds-heading-07-line-height: 1.199;
24345
+ --cds-heading-07-letter-spacing: 0;
24346
+ --cds-fluid-heading-03-font-size: 1.25rem;
24347
+ --cds-fluid-heading-03-font-weight: 400;
24348
+ --cds-fluid-heading-03-line-height: 1.4;
24349
+ --cds-fluid-heading-03-letter-spacing: 0;
24350
+ --cds-fluid-heading-04-font-size: 1.75rem;
24351
+ --cds-fluid-heading-04-font-weight: 400;
24352
+ --cds-fluid-heading-04-line-height: 1.28572;
24353
+ --cds-fluid-heading-04-letter-spacing: 0;
24354
+ --cds-fluid-heading-05-font-size: 2rem;
24355
+ --cds-fluid-heading-05-font-weight: 400;
24356
+ --cds-fluid-heading-05-line-height: 1.25;
24357
+ --cds-fluid-heading-05-letter-spacing: 0;
24358
+ --cds-fluid-heading-06-font-size: 2rem;
24359
+ --cds-fluid-heading-06-font-weight: 600;
24360
+ --cds-fluid-heading-06-line-height: 1.25;
24361
+ --cds-fluid-heading-06-letter-spacing: 0;
24362
+ --cds-fluid-paragraph-01-font-size: 1.5rem;
24363
+ --cds-fluid-paragraph-01-font-weight: 300;
24364
+ --cds-fluid-paragraph-01-line-height: 1.334;
24365
+ --cds-fluid-paragraph-01-letter-spacing: 0;
24366
+ --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
24367
+ --cds-fluid-quotation-01-font-size: 1.25rem;
24368
+ --cds-fluid-quotation-01-font-weight: 400;
24369
+ --cds-fluid-quotation-01-line-height: 1.3;
24370
+ --cds-fluid-quotation-01-letter-spacing: 0;
24371
+ --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
24372
+ --cds-fluid-quotation-02-font-size: 2rem;
24373
+ --cds-fluid-quotation-02-font-weight: 300;
24374
+ --cds-fluid-quotation-02-line-height: 1.25;
24375
+ --cds-fluid-quotation-02-letter-spacing: 0;
24376
+ --cds-fluid-display-01-font-size: 2.625rem;
24377
+ --cds-fluid-display-01-font-weight: 300;
24378
+ --cds-fluid-display-01-line-height: 1.19;
24379
+ --cds-fluid-display-01-letter-spacing: 0;
24380
+ --cds-fluid-display-02-font-size: 2.625rem;
24381
+ --cds-fluid-display-02-font-weight: 600;
24382
+ --cds-fluid-display-02-line-height: 1.19;
24383
+ --cds-fluid-display-02-letter-spacing: 0;
24384
+ --cds-fluid-display-03-font-size: 2.625rem;
24385
+ --cds-fluid-display-03-font-weight: 300;
24386
+ --cds-fluid-display-03-line-height: 1.19;
24387
+ --cds-fluid-display-03-letter-spacing: 0;
24388
+ --cds-fluid-display-04-font-size: 2.625rem;
24389
+ --cds-fluid-display-04-font-weight: 300;
24390
+ --cds-fluid-display-04-line-height: 1.19;
24391
+ --cds-fluid-display-04-letter-spacing: 0;
24392
+ --cds-spacing-01: 0.125rem;
24393
+ --cds-spacing-02: 0.25rem;
24394
+ --cds-spacing-03: 0.5rem;
24395
+ --cds-spacing-04: 0.75rem;
24396
+ --cds-spacing-05: 1rem;
24397
+ --cds-spacing-06: 1.5rem;
24398
+ --cds-spacing-07: 2rem;
24399
+ --cds-spacing-08: 2.5rem;
24400
+ --cds-spacing-09: 3rem;
24401
+ --cds-spacing-10: 4rem;
24402
+ --cds-spacing-11: 5rem;
24403
+ --cds-spacing-12: 6rem;
24404
+ --cds-spacing-13: 10rem;
24405
+ --cds-fluid-spacing-01: 0;
24406
+ --cds-fluid-spacing-02: 2vw;
24407
+ --cds-fluid-spacing-03: 5vw;
24408
+ --cds-fluid-spacing-04: 10vw;
24409
+ --cds-layout-01: 1rem;
24410
+ --cds-layout-02: 1.5rem;
24411
+ --cds-layout-03: 2rem;
24412
+ --cds-layout-04: 3rem;
24413
+ --cds-layout-05: 4rem;
24414
+ --cds-layout-06: 6rem;
24415
+ --cds-layout-07: 10rem;
24416
+ --cds-container-01: 1.5rem;
24417
+ --cds-container-02: 2rem;
24418
+ --cds-container-03: 2.5rem;
24419
+ --cds-container-04: 3rem;
24420
+ --cds-container-05: 4rem;
24421
+ --cds-size-xsmall: 1.5rem;
24422
+ --cds-size-small: 2rem;
24423
+ --cds-size-medium: 2.5rem;
24424
+ --cds-size-large: 3rem;
24425
+ --cds-size-xlarge: 4rem;
24426
+ --cds-size-2XLarge: 5rem;
24427
+ --cds-icon-size-01: 1rem;
24428
+ --cds-icon-size-02: 1.25rem;
24429
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
24430
+ font-weight: var(--cds-body-long-01-font-weight, 400);
24431
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
24432
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
24433
+ display: block;
24434
+ padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
24435
+ border-left-width: 0.078125rem;
24436
+ border-left-style: solid;
24437
+ margin: var(--cds-spacing-02, 0.25rem) 0;
24438
+ animation: fade 600ms;
24439
+ border-left-color: #d4bbff;
24440
+ color: #d4bbff;
24441
+ }
24442
+
23073
24443
  @font-face {
23074
24444
  font-display: auto;
23075
24445
  font-family: "IBM Plex Mono";