@carbon/ibm-products 1.54.1 → 1.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. package/css/index-full-carbon.css +1309 -110
  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 +1304 -110
  6. package/css/index-without-carbon.css.map +1 -1
  7. package/css/index-without-carbon.min.css +2 -2
  8. package/css/index-without-carbon.min.css.map +1 -1
  9. package/css/index.css +1312 -113
  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/APIKeyModal/APIKeyModal.js +25 -21
  14. package/es/components/ActionBar/ActionBar.js +5 -5
  15. package/es/components/Carousel/Carousel.js +237 -0
  16. package/es/components/Carousel/CarouselItem.js +66 -0
  17. package/es/components/Carousel/index.js +9 -0
  18. package/es/components/Carousel/utils.js +98 -0
  19. package/es/components/CreateFullPage/CreateFullPage.js +4 -2
  20. package/es/components/CreateModal/CreateModal.js +2 -1
  21. package/es/components/CreateSidePanel/CreateSidePanel.js +6 -2
  22. package/es/components/CreateTearsheet/CreateTearsheet.js +3 -1
  23. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +6 -2
  24. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +1 -1
  25. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +3 -2
  26. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +2 -1
  27. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +13 -0
  28. package/es/components/Datagrid/index.js +2 -1
  29. package/es/components/Datagrid/useActionsColumn.js +13 -7
  30. package/es/components/Datagrid/useOnRowClick.js +20 -4
  31. package/es/components/Datagrid/useSortableColumns.js +27 -3
  32. package/es/components/Datagrid/useStickyColumn.js +10 -3
  33. package/es/components/Datagrid/utils/DatagridActions.js +6 -6
  34. package/es/components/Datagrid/utils/getArgTypes.js +4 -0
  35. package/es/components/EditSidePanel/EditSidePanel.js +7 -3
  36. package/es/components/FilterSummary/FilterSummary.js +7 -3
  37. package/es/components/Guidebanner/Guidebanner.js +229 -0
  38. package/es/components/Guidebanner/GuidebannerElement.js +71 -0
  39. package/es/components/Guidebanner/GuidebannerElementButton.js +76 -0
  40. package/es/components/Guidebanner/GuidebannerElementLink.js +56 -0
  41. package/es/components/Guidebanner/index.js +11 -0
  42. package/es/components/InlineTip/InlineTip.js +228 -0
  43. package/es/components/InlineTip/InlineTipButton.js +89 -0
  44. package/es/components/InlineTip/InlineTipLink.js +89 -0
  45. package/es/components/InlineTip/index.js +10 -0
  46. package/es/components/InlineTip/utils.js +36 -0
  47. package/es/components/SteppedAnimatedMedia/SteppedAnimatedMedia.js +164 -0
  48. package/es/components/SteppedAnimatedMedia/assets/index.js +4 -0
  49. package/es/components/SteppedAnimatedMedia/index.js +8 -0
  50. package/es/components/Tearsheet/TearsheetShell.js +2 -1
  51. package/es/components/index.js +4 -2
  52. package/es/global/js/hooks/useResizeObserver.js +1 -1
  53. package/es/global/js/package-settings.js +2 -0
  54. package/lib/components/APIKeyModal/APIKeyModal.js +25 -21
  55. package/lib/components/ActionBar/ActionBar.js +5 -5
  56. package/lib/components/Carousel/Carousel.js +238 -0
  57. package/lib/components/Carousel/CarouselItem.js +66 -0
  58. package/lib/components/Carousel/index.js +19 -0
  59. package/lib/components/Carousel/utils.js +108 -0
  60. package/lib/components/CreateFullPage/CreateFullPage.js +4 -2
  61. package/lib/components/CreateModal/CreateModal.js +2 -1
  62. package/lib/components/CreateSidePanel/CreateSidePanel.js +6 -2
  63. package/lib/components/CreateTearsheet/CreateTearsheet.js +3 -1
  64. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +6 -2
  65. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +1 -1
  66. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +3 -2
  67. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +8 -1
  68. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +20 -0
  69. package/lib/components/Datagrid/index.js +8 -1
  70. package/lib/components/Datagrid/useActionsColumn.js +13 -7
  71. package/lib/components/Datagrid/useOnRowClick.js +20 -4
  72. package/lib/components/Datagrid/useSortableColumns.js +27 -3
  73. package/lib/components/Datagrid/useStickyColumn.js +10 -3
  74. package/lib/components/Datagrid/utils/DatagridActions.js +6 -6
  75. package/lib/components/Datagrid/utils/getArgTypes.js +4 -0
  76. package/lib/components/EditSidePanel/EditSidePanel.js +7 -3
  77. package/lib/components/FilterSummary/FilterSummary.js +7 -3
  78. package/lib/components/Guidebanner/Guidebanner.js +229 -0
  79. package/lib/components/Guidebanner/GuidebannerElement.js +67 -0
  80. package/lib/components/Guidebanner/GuidebannerElementButton.js +71 -0
  81. package/lib/components/Guidebanner/GuidebannerElementLink.js +52 -0
  82. package/lib/components/Guidebanner/index.js +33 -0
  83. package/lib/components/InlineTip/InlineTip.js +228 -0
  84. package/lib/components/InlineTip/InlineTipButton.js +86 -0
  85. package/lib/components/InlineTip/InlineTipLink.js +86 -0
  86. package/lib/components/InlineTip/index.js +26 -0
  87. package/lib/components/InlineTip/utils.js +44 -0
  88. package/lib/components/SteppedAnimatedMedia/SteppedAnimatedMedia.js +165 -0
  89. package/lib/components/SteppedAnimatedMedia/assets/index.js +12 -0
  90. package/lib/components/SteppedAnimatedMedia/index.js +12 -0
  91. package/lib/components/Tearsheet/TearsheetShell.js +2 -1
  92. package/lib/components/index.js +21 -1
  93. package/lib/global/js/hooks/useResizeObserver.js +1 -1
  94. package/lib/global/js/package-settings.js +2 -0
  95. package/package.json +5 -5
  96. package/scss/components/Carousel/_carousel.scss +80 -0
  97. package/scss/components/Carousel/_index.scss +8 -0
  98. package/scss/components/Carousel/_storybook-styles.scss +10 -0
  99. package/scss/components/Datagrid/_storybook-styles.scss +13 -0
  100. package/scss/components/Datagrid/styles/_datagrid.scss +1 -6
  101. package/scss/components/Guidebanner/_guidebanner.scss +257 -0
  102. package/scss/components/Guidebanner/_index.scss +8 -0
  103. package/scss/components/Guidebanner/_storybook-styles.scss +20 -0
  104. package/scss/components/InlineTip/_index.scss +8 -0
  105. package/scss/components/InlineTip/_inline-tip.scss +231 -0
  106. package/scss/components/InlineTip/_storybook-styles.scss +21 -0
  107. package/scss/components/SteppedAnimatedMedia/_index.scss +8 -0
  108. package/scss/components/SteppedAnimatedMedia/_stepped-animated-media.scss +34 -0
  109. package/scss/components/SteppedAnimatedMedia/_storybook-styles.scss +12 -0
  110. package/scss/components/_index.scss +4 -0
package/css/index.css CHANGED
@@ -2982,9 +2982,14 @@ em {
2982
2982
  .bx--modal .bx--dropdown-list,
2983
2983
  .bx--modal .bx--number input[type=number],
2984
2984
  .bx--modal .bx--date-picker__input,
2985
- .bx--modal .bx--multi-select {
2985
+ .bx--modal .bx--multi-select,
2986
+ .bx--modal .bx--number__control-btn::before,
2987
+ .bx--modal .bx--number__control-btn::after {
2986
2988
  background-color: var(--cds-field-02, #ffffff);
2987
2989
  }
2990
+ .bx--modal .bx--number__rule-divider {
2991
+ background-color: var(--cds-decorative-01, #e0e0e0);
2992
+ }
2988
2993
 
2989
2994
  .bx--modal.is-visible .bx--modal-container {
2990
2995
  transform: translate3d(0, 0, 0);
@@ -21406,7 +21411,7 @@ button.c4p--add-select__global-filter-toggle--open {
21406
21411
  position: relative;
21407
21412
  }
21408
21413
 
21409
- .c4p--datagrid .bx--data-table--selected:not(.c4p--datagrid__active-row) ::before {
21414
+ .c4p--datagrid .bx--data-table--selected:not(.c4p--datagrid__active-row) :first-child:not(.bx--checkbox--inline)::before {
21410
21415
  position: absolute;
21411
21416
  top: 0;
21412
21417
  left: 0;
@@ -21473,11 +21478,6 @@ button.c4p--add-select__global-filter-toggle--open {
21473
21478
  width: 100%;
21474
21479
  }
21475
21480
 
21476
- .bx--body--with-modal-open .c4p--datagrid__grid-container {
21477
- overflow: hidden;
21478
- height: 100vh;
21479
- }
21480
-
21481
21481
  .bx--overflow-menu.c4p--datagrid__toolbar-menu__trigger {
21482
21482
  flex-shrink: 0;
21483
21483
  background-color: var(--cds-interactive-01, #0f62fe);
@@ -23123,81 +23123,83 @@ th.c4p--datagrid__select-all-toggle-on.button {
23123
23123
  animation: slide-in 150ms cubic-bezier(0, 0, 0.38, 0.9);
23124
23124
  }
23125
23125
 
23126
- @keyframes fade {
23127
- 0% {
23128
- opacity: 0;
23129
- }
23130
- 15% {
23131
- opacity: 0;
23132
- }
23133
- 100% {
23134
- opacity: 1;
23135
- }
23126
+ .c4p--carousel {
23127
+ position: relative;
23136
23128
  }
23137
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed {
23138
- height: 1.25rem;
23139
- padding-top: 0;
23140
- padding-right: 0.1875rem;
23141
- border-width: 0.0625rem;
23142
- border-style: solid;
23143
- border-radius: var(--cds-spacing-04, 0.75rem);
23144
- white-space: nowrap;
23145
- border-color: var(--cds-interactive-03, #0f62fe);
23146
- background-color: transparent;
23147
- color: var(--cds-interactive-03, #0f62fe);
23129
+ .c4p--carousel:focus {
23130
+ outline: none;
23148
23131
  }
23149
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
23150
- cursor: pointer;
23132
+ .c4p--carousel__elements-container {
23133
+ overflow-x: hidden;
23151
23134
  }
23152
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed svg {
23153
- margin: 0.0625rem 0 0 0;
23154
- vertical-align: text-top;
23135
+ .c4p--carousel__elements-container--scrolled, .c4p--carousel__elements-container--scroll-max {
23136
+ position: absolute;
23137
+ z-index: 1;
23138
+ top: 0;
23139
+ bottom: 0;
23140
+ width: var(--cds-spacing-07, 2rem);
23141
+ pointer-events: none;
23155
23142
  }
23156
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
23157
- background-color: var(--cds-interactive-03, #0f62fe);
23158
- color: var(--cds-inverse-01, #ffffff);
23143
+ .c4p--carousel__elements-container--scrolled {
23144
+ left: 0;
23159
23145
  }
23160
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open {
23161
- height: 1.25rem;
23162
- padding-top: 0;
23163
- padding-right: 0.1875rem;
23164
- border-width: 0.0625rem;
23165
- border-style: solid;
23166
- border-radius: var(--cds-spacing-04, 0.75rem);
23167
- white-space: nowrap;
23168
- border-color: var(--cds-interactive-03, #0f62fe);
23169
- background-color: var(--cds-interactive-03, #0f62fe);
23170
- color: var(--cds-inverse-01, #ffffff);
23146
+ .c4p--carousel__elements-container--scroll-max {
23147
+ right: 0;
23171
23148
  }
23172
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
23173
- cursor: pointer;
23149
+ .c4p--carousel__elements {
23150
+ display: flex;
23151
+ -ms-overflow-style: none;
23152
+ overflow-x: scroll;
23153
+ overflow-y: hidden;
23154
+ scroll-behavior: smooth;
23155
+ scroll-snap-type: x mandatory;
23156
+ scrollbar-width: none;
23157
+ -webkit-touch-callout: none;
23158
+ -webkit-user-select: none;
23159
+ -khtml-user-select: none;
23160
+ -moz-user-select: none;
23161
+ -ms-user-select: none;
23162
+ user-select: none;
23174
23163
  }
23175
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
23176
- margin: 0.0625rem 0 0 0;
23177
- vertical-align: text-top;
23164
+ .c4p--carousel__elements::-webkit-scrollbar {
23165
+ display: none;
23178
23166
  }
23179
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
23180
- transform: rotate(180deg);
23167
+
23168
+ /**
23169
+ * The Guidebanner specifically is theme-agnostic, and so we have to
23170
+ * use color tokens to keep the colors static instead of theme tokens
23171
+ * that will change depending on the selected theme.
23172
+ *
23173
+ * Because of this, we are triggering a *large* amount of linting errors.
23174
+ * So, we're adding 4 "disable" rules for the file instead of 50
23175
+ * individual rules.
23176
+ */
23177
+ /* stylelint-disable carbon/layout-token-use */
23178
+ /* stylelint-disable carbon/motion-duration-use */
23179
+ /* stylelint-disable carbon/theme-token-use */
23180
+ /* stylelint-disable declaration-no-important */
23181
+ .c4p--guidebanner {
23182
+ position: relative;
23183
+ background: linear-gradient(90deg, #001d6c 0%, #6929c4 100%);
23184
+ background-color: #001d6c;
23181
23185
  }
23182
- .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
23183
- background-color: transparent;
23184
- color: var(--cds-interactive-03, #0f62fe);
23186
+ .c4p--guidebanner__icon-idea {
23187
+ position: absolute;
23188
+ top: var(--cds-spacing-05, 1rem);
23189
+ left: var(--cds-spacing-05, 1rem);
23185
23190
  }
23186
- .c4p--non-linear-reading__light .c4p--non-linear-reading__body {
23187
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
23188
- font-weight: var(--cds-body-long-01-font-weight, 400);
23189
- line-height: var(--cds-body-long-01-line-height, 1.42857);
23190
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
23191
- display: block;
23192
- padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
23193
- border-left-width: 0.078125rem;
23194
- border-left-style: solid;
23195
- margin: var(--cds-spacing-02, 0.25rem) 0;
23196
- animation: fade 600ms;
23197
- border-left-color: var(--cds-text-01, #161616);
23191
+ .c4p--guidebanner__icon-idea path {
23192
+ fill: #f4f4f4;
23198
23193
  }
23199
-
23200
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
23194
+ .c4p--guidebanner__title {
23195
+ font-size: var(--cds-productive-heading-02-font-size, 1rem);
23196
+ font-weight: var(--cds-productive-heading-02-font-weight, 600);
23197
+ line-height: var(--cds-productive-heading-02-line-height, 1.375);
23198
+ letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
23199
+ padding: var(--cds-spacing-05, 1rem) 10.9375rem 0 3.25rem;
23200
+ color: #f4f4f4;
23201
+ }
23202
+ .c4p--guidebanner__close-button {
23201
23203
  --cds-interactive-01: #0f62fe;
23202
23204
  --cds-interactive-02: #6f6f6f;
23203
23205
  --cds-interactive-03: #ffffff;
@@ -23618,29 +23620,110 @@ th.c4p--datagrid__select-all-toggle-on.button {
23618
23620
  --cds-size-2XLarge: 5rem;
23619
23621
  --cds-icon-size-01: 1rem;
23620
23622
  --cds-icon-size-02: 1.25rem;
23621
- height: 1.25rem;
23622
- padding-top: 0;
23623
- padding-right: 0.1875rem;
23624
- border-width: 0.0625rem;
23625
- border-style: solid;
23626
- border-radius: var(--cds-spacing-04, 0.75rem);
23627
- white-space: nowrap;
23628
- border-color: var(--cds-icon-03, #ffffff);
23629
- background-color: transparent;
23630
- color: var(--cds-text-01, #161616);
23623
+ position: absolute !important;
23624
+ top: 0;
23625
+ right: 0;
23626
+ width: var(--cds-spacing-07, 2rem);
23627
+ height: var(--cds-spacing-07, 2rem);
23628
+ min-height: var(--cds-spacing-07, 2rem) !important;
23631
23629
  }
23632
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
23633
- cursor: pointer;
23630
+ .c4p--guidebanner__close-button:active, .c4p--guidebanner__close-button:hover {
23631
+ background-color: #7433e3 !important;
23634
23632
  }
23635
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed svg {
23636
- margin: 0.0625rem 0 0 0;
23637
- vertical-align: text-top;
23633
+ .c4p--guidebanner__close-button svg {
23634
+ margin-left: -0.25rem !important;
23638
23635
  }
23639
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
23640
- background-color: var(--cds-icon-03, #ffffff);
23641
- color: var(--cds-inverse-01, #ffffff);
23636
+ .c4p--guidebanner__close-button svg path {
23637
+ fill: #ffffff !important;
23642
23638
  }
23643
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open {
23639
+ .c4p--guidebanner__carousel {
23640
+ padding: 0 0 var(--cds-spacing-05, 1rem) 0;
23641
+ color: #f4f4f4;
23642
+ }
23643
+ .c4p--guidebanner__collapsible-collapsed .c4p--guidebanner__carousel {
23644
+ margin-bottom: 0;
23645
+ }
23646
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element {
23647
+ display: flex;
23648
+ width: 25rem;
23649
+ max-height: 32rem;
23650
+ flex-flow: column;
23651
+ flex-shrink: 0;
23652
+ padding-left: 3.25rem;
23653
+ margin: var(--cds-spacing-05, 1rem) 0 0 0;
23654
+ opacity: 1;
23655
+ scroll-snap-align: start;
23656
+ transition: max-height 50ms cubic-bezier(0.2, 0, 1, 0.9), margin-top 50ms cubic-bezier(0.2, 0, 1, 0.9), opacity 300ms cubic-bezier(0.2, 0, 1, 0.9);
23657
+ }
23658
+ .c4p--guidebanner__collapsible-collapsed .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element {
23659
+ max-height: var(--cds-spacing-03, 0.5rem);
23660
+ margin-top: 0;
23661
+ opacity: 0;
23662
+ }
23663
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-title {
23664
+ font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
23665
+ font-weight: var(--cds-productive-heading-01-font-weight, 600);
23666
+ line-height: var(--cds-productive-heading-01-line-height, 1.28572);
23667
+ letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
23668
+ margin: var(--cds-spacing-05, 1rem) 0 0 0;
23669
+ }
23670
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-content {
23671
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
23672
+ font-weight: var(--cds-body-long-01-font-weight, 400);
23673
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
23674
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
23675
+ margin-bottom: var(--cds-spacing-05, 1rem);
23676
+ }
23677
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .bx--btn--tertiary {
23678
+ border-color: #ffffff;
23679
+ color: #ffffff;
23680
+ }
23681
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .bx--btn--tertiary:active, .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .bx--btn--tertiary:hover {
23682
+ border-color: #ffffff;
23683
+ background-color: #ffffff;
23684
+ color: #161616;
23685
+ }
23686
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .bx--btn:not(.bx--btn--tertiary) {
23687
+ margin-left: calc(-1 * var(--cds-spacing-05, 1rem));
23688
+ color: #a6c8ff;
23689
+ }
23690
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .bx--btn:not(.bx--btn--tertiary):active, .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .bx--btn:not(.bx--btn--tertiary):hover {
23691
+ background-color: #7f3ae7;
23692
+ color: #f4f4f4;
23693
+ }
23694
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .c4p--guidebanner__element-link {
23695
+ color: #a6c8ff;
23696
+ }
23697
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .c4p--guidebanner__element-link:visited {
23698
+ color: #a6c8ff;
23699
+ }
23700
+ .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .c4p--guidebanner__element-link:active, .c4p--guidebanner__carousel .c4p--carousel__item .c4p--guidebanner__element-buttons .c4p--guidebanner__element-link:hover {
23701
+ color: #d0e2ff;
23702
+ }
23703
+ .c4p--guidebanner__carousel .c4p--carousel__item:last-child .c4p--guidebanner__element {
23704
+ width: 28rem;
23705
+ padding-right: 3.25rem;
23706
+ }
23707
+ .c4p--guidebanner__navigation {
23708
+ display: flex;
23709
+ border-top: 0.0625rem solid #8a3ffc;
23710
+ }
23711
+ .c4p--guidebanner__collapsible-collapsed .c4p--guidebanner__navigation {
23712
+ border-top: none;
23713
+ }
23714
+ .c4p--guidebanner__navigation .c4p--guidebanner__toggle-button {
23715
+ margin-left: 2.125rem;
23716
+ color: #a6c8ff;
23717
+ }
23718
+ .c4p--guidebanner__navigation .c4p--guidebanner__toggle-button:active, .c4p--guidebanner__navigation .c4p--guidebanner__toggle-button:hover {
23719
+ background-color: #7433e3;
23720
+ color: #f4f4f4;
23721
+ }
23722
+ .c4p--guidebanner__navigation .c4p--guidebanner__back-button {
23723
+ margin-left: auto;
23724
+ }
23725
+ .c4p--guidebanner__navigation .c4p--guidebanner__back-button,
23726
+ .c4p--guidebanner__navigation .c4p--guidebanner__next-button {
23644
23727
  --cds-interactive-01: #0f62fe;
23645
23728
  --cds-interactive-02: #6f6f6f;
23646
23729
  --cds-interactive-03: #ffffff;
@@ -24061,6 +24144,40 @@ th.c4p--datagrid__select-all-toggle-on.button {
24061
24144
  --cds-size-2XLarge: 5rem;
24062
24145
  --cds-icon-size-01: 1rem;
24063
24146
  --cds-icon-size-02: 1.25rem;
24147
+ }
24148
+ .c4p--guidebanner__collapsible-collapsed .c4p--guidebanner__navigation .c4p--guidebanner__back-button,
24149
+ .c4p--guidebanner__collapsible-collapsed .c4p--guidebanner__navigation .c4p--guidebanner__next-button {
24150
+ display: none !important;
24151
+ }
24152
+ .c4p--guidebanner__navigation .c4p--guidebanner__back-button:active, .c4p--guidebanner__navigation .c4p--guidebanner__back-button:hover,
24153
+ .c4p--guidebanner__navigation .c4p--guidebanner__next-button:active,
24154
+ .c4p--guidebanner__navigation .c4p--guidebanner__next-button:hover {
24155
+ background-color: #7433e3;
24156
+ }
24157
+ .c4p--guidebanner__navigation .c4p--guidebanner__back-button svg path,
24158
+ .c4p--guidebanner__navigation .c4p--guidebanner__next-button svg path {
24159
+ fill: #ffffff !important;
24160
+ }
24161
+ .c4p--guidebanner__navigation .c4p--guidebanner__back-button--disabled svg path,
24162
+ .c4p--guidebanner__navigation .c4p--guidebanner__next-button--disabled svg path {
24163
+ fill: #9b63ff !important;
24164
+ }
24165
+ .c4p--guidebanner__close-button::before, .c4p--guidebanner__back-button::before, .c4p--guidebanner__next-button::before {
24166
+ z-index: 6001 !important;
24167
+ }
24168
+
24169
+ @keyframes fade {
24170
+ 0% {
24171
+ opacity: 0;
24172
+ }
24173
+ 15% {
24174
+ opacity: 0;
24175
+ }
24176
+ 100% {
24177
+ opacity: 1;
24178
+ }
24179
+ }
24180
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed {
24064
24181
  height: 1.25rem;
24065
24182
  padding-top: 0;
24066
24183
  padding-right: 0.1875rem;
@@ -24068,25 +24185,62 @@ th.c4p--datagrid__select-all-toggle-on.button {
24068
24185
  border-style: solid;
24069
24186
  border-radius: var(--cds-spacing-04, 0.75rem);
24070
24187
  white-space: nowrap;
24071
- border-color: var(--cds-icon-03, #ffffff);
24072
- background-color: var(--cds-icon-03, #ffffff);
24188
+ border-color: var(--cds-interactive-03, #0f62fe);
24189
+ background-color: transparent;
24190
+ color: var(--cds-interactive-03, #0f62fe);
24191
+ }
24192
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
24193
+ cursor: pointer;
24194
+ }
24195
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed svg {
24196
+ margin: 0.0625rem 0 0 0;
24197
+ vertical-align: text-top;
24198
+ }
24199
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-closed:hover {
24200
+ background-color: var(--cds-interactive-03, #0f62fe);
24073
24201
  color: var(--cds-inverse-01, #ffffff);
24074
24202
  }
24075
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
24203
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open {
24204
+ height: 1.25rem;
24205
+ padding-top: 0;
24206
+ padding-right: 0.1875rem;
24207
+ border-width: 0.0625rem;
24208
+ border-style: solid;
24209
+ border-radius: var(--cds-spacing-04, 0.75rem);
24210
+ white-space: nowrap;
24211
+ border-color: var(--cds-interactive-03, #0f62fe);
24212
+ background-color: var(--cds-interactive-03, #0f62fe);
24213
+ color: var(--cds-inverse-01, #ffffff);
24214
+ }
24215
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
24076
24216
  cursor: pointer;
24077
24217
  }
24078
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
24218
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24079
24219
  margin: 0.0625rem 0 0 0;
24080
24220
  vertical-align: text-top;
24081
24221
  }
24082
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
24222
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open svg {
24083
24223
  transform: rotate(180deg);
24084
24224
  }
24085
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
24225
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__keyword-open:hover {
24086
24226
  background-color: transparent;
24087
- color: var(--cds-text-01, #161616);
24227
+ color: var(--cds-interactive-03, #0f62fe);
24088
24228
  }
24089
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
24229
+ .c4p--non-linear-reading__light .c4p--non-linear-reading__body {
24230
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
24231
+ font-weight: var(--cds-body-long-01-font-weight, 400);
24232
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
24233
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
24234
+ display: block;
24235
+ padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
24236
+ border-left-width: 0.078125rem;
24237
+ border-left-style: solid;
24238
+ margin: var(--cds-spacing-02, 0.25rem) 0;
24239
+ animation: fade 600ms;
24240
+ border-left-color: var(--cds-text-01, #161616);
24241
+ }
24242
+
24243
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed {
24090
24244
  --cds-interactive-01: #0f62fe;
24091
24245
  --cds-interactive-02: #6f6f6f;
24092
24246
  --cds-interactive-03: #ffffff;
@@ -24507,21 +24661,1066 @@ th.c4p--datagrid__select-all-toggle-on.button {
24507
24661
  --cds-size-2XLarge: 5rem;
24508
24662
  --cds-icon-size-01: 1rem;
24509
24663
  --cds-icon-size-02: 1.25rem;
24510
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
24511
- font-weight: var(--cds-body-long-01-font-weight, 400);
24512
- line-height: var(--cds-body-long-01-line-height, 1.42857);
24513
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
24514
- display: block;
24515
- padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
24516
- border-left-width: 0.078125rem;
24517
- border-left-style: solid;
24518
- margin: var(--cds-spacing-02, 0.25rem) 0;
24519
- animation: fade 600ms;
24520
- border-left-color: var(--cds-text-01, #161616);
24521
- color: var(--cds-text-01, #161616);
24522
- }
24523
- .c4p--non-linear-reading__dark .c4p--non-linear-reading__body a {
24524
- color: var(--cds-link-01, #0f62fe);
24664
+ height: 1.25rem;
24665
+ padding-top: 0;
24666
+ padding-right: 0.1875rem;
24667
+ border-width: 0.0625rem;
24668
+ border-style: solid;
24669
+ border-radius: var(--cds-spacing-04, 0.75rem);
24670
+ white-space: nowrap;
24671
+ border-color: var(--cds-icon-03, #ffffff);
24672
+ background-color: transparent;
24673
+ color: var(--cds-text-01, #161616);
24674
+ }
24675
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
24676
+ cursor: pointer;
24677
+ }
24678
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed svg {
24679
+ margin: 0.0625rem 0 0 0;
24680
+ vertical-align: text-top;
24681
+ }
24682
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-closed:hover {
24683
+ background-color: var(--cds-icon-03, #ffffff);
24684
+ color: var(--cds-inverse-01, #ffffff);
24685
+ }
24686
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open {
24687
+ --cds-interactive-01: #0f62fe;
24688
+ --cds-interactive-02: #6f6f6f;
24689
+ --cds-interactive-03: #ffffff;
24690
+ --cds-interactive-04: #4589ff;
24691
+ --cds-ui-background: #161616;
24692
+ --cds-ui-01: #262626;
24693
+ --cds-ui-02: #393939;
24694
+ --cds-ui-03: #393939;
24695
+ --cds-ui-04: #6f6f6f;
24696
+ --cds-ui-05: #f4f4f4;
24697
+ --cds-text-01: #f4f4f4;
24698
+ --cds-text-02: #c6c6c6;
24699
+ --cds-text-03: #6f6f6f;
24700
+ --cds-text-04: #ffffff;
24701
+ --cds-text-05: #8d8d8d;
24702
+ --cds-text-error: #ff8389;
24703
+ --cds-icon-01: #f4f4f4;
24704
+ --cds-icon-02: #c6c6c6;
24705
+ --cds-icon-03: #ffffff;
24706
+ --cds-link-01: #78a9ff;
24707
+ --cds-link-02: #a6c8ff;
24708
+ --cds-inverse-link: #0f62fe;
24709
+ --cds-field-01: #262626;
24710
+ --cds-field-02: #393939;
24711
+ --cds-inverse-01: #161616;
24712
+ --cds-inverse-02: #f4f4f4;
24713
+ --cds-support-01: #fa4d56;
24714
+ --cds-support-02: #42be65;
24715
+ --cds-support-03: #f1c21b;
24716
+ --cds-support-04: #4589ff;
24717
+ --cds-inverse-support-01: #da1e28;
24718
+ --cds-inverse-support-02: #24a148;
24719
+ --cds-inverse-support-03: #f1c21b;
24720
+ --cds-inverse-support-04: #0f62fe;
24721
+ --cds-overlay-01: rgba(0, 0, 0, 0.65);
24722
+ --cds-danger-01: #da1e28;
24723
+ --cds-danger-02: #fa4d56;
24724
+ --cds-focus: #ffffff;
24725
+ --cds-inverse-focus-ui: #0f62fe;
24726
+ --cds-hover-primary: #0353e9;
24727
+ --cds-active-primary: #002d9c;
24728
+ --cds-hover-primary-text: #a6c8ff;
24729
+ --cds-hover-secondary: #606060;
24730
+ --cds-active-secondary: #393939;
24731
+ --cds-hover-tertiary: #f4f4f4;
24732
+ --cds-active-tertiary: #c6c6c6;
24733
+ --cds-hover-ui: #353535;
24734
+ --cds-hover-light-ui: #4c4c4c;
24735
+ --cds-hover-selected-ui: #4c4c4c;
24736
+ --cds-active-ui: #525252;
24737
+ --cds-active-light-ui: #6f6f6f;
24738
+ --cds-selected-ui: #393939;
24739
+ --cds-selected-light-ui: #525252;
24740
+ --cds-inverse-hover-ui: #e5e5e5;
24741
+ --cds-hover-danger: #b81921;
24742
+ --cds-active-danger: #750e13;
24743
+ --cds-hover-row: #353535;
24744
+ --cds-visited-link: #be95ff;
24745
+ --cds-disabled-01: #262626;
24746
+ --cds-disabled-02: #525252;
24747
+ --cds-disabled-03: #8d8d8d;
24748
+ --cds-highlight: #002d9c;
24749
+ --cds-decorative-01: #525252;
24750
+ --cds-button-separator: #161616;
24751
+ --cds-skeleton-01: #353535;
24752
+ --cds-skeleton-02: #525252;
24753
+ --cds-background: #161616;
24754
+ --cds-layer: #262626;
24755
+ --cds-layer-accent: #393939;
24756
+ --cds-layer-accent-hover: #474747;
24757
+ --cds-layer-accent-active: #6f6f6f;
24758
+ --cds-field: #262626;
24759
+ --cds-background-inverse: #f4f4f4;
24760
+ --cds-background-brand: #0f62fe;
24761
+ --cds-interactive: #4589ff;
24762
+ --cds-border-subtle: #393939;
24763
+ --cds-border-strong: #6f6f6f;
24764
+ --cds-border-inverse: #f4f4f4;
24765
+ --cds-border-interactive: #4589ff;
24766
+ --cds-text-primary: #f4f4f4;
24767
+ --cds-text-secondary: #c6c6c6;
24768
+ --cds-text-placeholder: #6f6f6f;
24769
+ --cds-text-helper: #8d8d8d;
24770
+ --cds-text-on-color: #ffffff;
24771
+ --cds-text-inverse: #161616;
24772
+ --cds-link-primary: #78a9ff;
24773
+ --cds-link-secondary: #a6c8ff;
24774
+ --cds-link-visited: #be95ff;
24775
+ --cds-link-inverse: #0f62fe;
24776
+ --cds-icon-primary: #f4f4f4;
24777
+ --cds-icon-secondary: #c6c6c6;
24778
+ --cds-icon-on-color: #ffffff;
24779
+ --cds-icon-inverse: #161616;
24780
+ --cds-support-error: #fa4d56;
24781
+ --cds-support-success: #42be65;
24782
+ --cds-support-warning: #f1c21b;
24783
+ --cds-support-info: #4589ff;
24784
+ --cds-support-error-inverse: #da1e28;
24785
+ --cds-support-success-inverse: #24a148;
24786
+ --cds-support-warning-inverse: #f1c21b;
24787
+ --cds-support-info-inverse: #0f62fe;
24788
+ --cds-overlay: rgba(0, 0, 0, 0.65);
24789
+ --cds-toggle-off: #6f6f6f;
24790
+ --cds-shadow: rgba(0, 0, 0, 0.8);
24791
+ --cds-button-primary: #0f62fe;
24792
+ --cds-button-secondary: #6f6f6f;
24793
+ --cds-button-tertiary: #ffffff;
24794
+ --cds-button-danger-primary: #da1e28;
24795
+ --cds-button-danger-secondary: #fa4d56;
24796
+ --cds-background-active: #525252;
24797
+ --cds-layer-active: #525252;
24798
+ --cds-button-danger-active: #750e13;
24799
+ --cds-button-primary-active: #002d9c;
24800
+ --cds-button-secondary-active: #393939;
24801
+ --cds-button-tertiary-active: #c6c6c6;
24802
+ --cds-focus-inset: #161616;
24803
+ --cds-focus-inverse: #0f62fe;
24804
+ --cds-background-hover: #353535;
24805
+ --cds-layer-hover: #353535;
24806
+ --cds-field-hover: #353535;
24807
+ --cds-background-inverse-hover: #e5e5e5;
24808
+ --cds-link-primary-hover: #a6c8ff;
24809
+ --cds-button-danger-hover: #b81921;
24810
+ --cds-button-primary-hover: #0353e9;
24811
+ --cds-button-secondary-hover: #606060;
24812
+ --cds-button-tertiary-hover: #f4f4f4;
24813
+ --cds-background-selected: #393939;
24814
+ --cds-background-selected-hover: #4c4c4c;
24815
+ --cds-layer-selected: #393939;
24816
+ --cds-layer-selected-hover: #4c4c4c;
24817
+ --cds-layer-selected-inverse: #f4f4f4;
24818
+ --cds-border-subtle-selected: #525252;
24819
+ --cds-border-disabled: #262626;
24820
+ --cds-text-disabled: #525252;
24821
+ --cds-button-disabled: #525252;
24822
+ --cds-icon-disabled: #525252;
24823
+ --cds-text-on-color-disabled: #8d8d8d;
24824
+ --cds-icon-on-color-disabled: #8d8d8d;
24825
+ --cds-layer-selected-disabled: #8d8d8d;
24826
+ --cds-skeleton-background: #353535;
24827
+ --cds-skeleton-element: #525252;
24828
+ --cds-brand-01: #0f62fe;
24829
+ --cds-brand-02: #6f6f6f;
24830
+ --cds-brand-03: #ffffff;
24831
+ --cds-active-01: #525252;
24832
+ --cds-hover-field: #353535;
24833
+ --cds-danger: #da1e28;
24834
+ --cds-caption-01-font-size: 0.75rem;
24835
+ --cds-caption-01-font-weight: 400;
24836
+ --cds-caption-01-line-height: 1.33333;
24837
+ --cds-caption-01-letter-spacing: 0.32px;
24838
+ --cds-caption-02-font-size: 0.875rem;
24839
+ --cds-caption-02-font-weight: 400;
24840
+ --cds-caption-02-line-height: 1.28572;
24841
+ --cds-caption-02-letter-spacing: 0.32px;
24842
+ --cds-label-01-font-size: 0.75rem;
24843
+ --cds-label-01-font-weight: 400;
24844
+ --cds-label-01-line-height: 1.33333;
24845
+ --cds-label-01-letter-spacing: 0.32px;
24846
+ --cds-label-02-font-size: 0.875rem;
24847
+ --cds-label-02-font-weight: 400;
24848
+ --cds-label-02-line-height: 1.28572;
24849
+ --cds-label-02-letter-spacing: 0.16px;
24850
+ --cds-helper-text-01-font-size: 0.75rem;
24851
+ --cds-helper-text-01-line-height: 1.33333;
24852
+ --cds-helper-text-01-letter-spacing: 0.32px;
24853
+ --cds-helper-text-02-font-size: 0.875rem;
24854
+ --cds-helper-text-02-line-height: 1.28572;
24855
+ --cds-helper-text-02-letter-spacing: 0.16px;
24856
+ --cds-body-short-01-font-size: 0.875rem;
24857
+ --cds-body-short-01-font-weight: 400;
24858
+ --cds-body-short-01-line-height: 1.28572;
24859
+ --cds-body-short-01-letter-spacing: 0.16px;
24860
+ --cds-body-long-01-font-size: 0.875rem;
24861
+ --cds-body-long-01-font-weight: 400;
24862
+ --cds-body-long-01-line-height: 1.42857;
24863
+ --cds-body-long-01-letter-spacing: 0.16px;
24864
+ --cds-body-short-02-font-size: 1rem;
24865
+ --cds-body-short-02-font-weight: 400;
24866
+ --cds-body-short-02-line-height: 1.375;
24867
+ --cds-body-short-02-letter-spacing: 0;
24868
+ --cds-body-long-02-font-size: 1rem;
24869
+ --cds-body-long-02-font-weight: 400;
24870
+ --cds-body-long-02-line-height: 1.5;
24871
+ --cds-body-long-02-letter-spacing: 0;
24872
+ --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
24873
+ --cds-code-01-font-size: 0.75rem;
24874
+ --cds-code-01-font-weight: 400;
24875
+ --cds-code-01-line-height: 1.33333;
24876
+ --cds-code-01-letter-spacing: 0.32px;
24877
+ --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
24878
+ --cds-code-02-font-size: 0.875rem;
24879
+ --cds-code-02-font-weight: 400;
24880
+ --cds-code-02-line-height: 1.42857;
24881
+ --cds-code-02-letter-spacing: 0.32px;
24882
+ --cds-heading-01-font-size: 0.875rem;
24883
+ --cds-heading-01-font-weight: 600;
24884
+ --cds-heading-01-line-height: 1.42857;
24885
+ --cds-heading-01-letter-spacing: 0.16px;
24886
+ --cds-productive-heading-01-font-size: 0.875rem;
24887
+ --cds-productive-heading-01-font-weight: 600;
24888
+ --cds-productive-heading-01-line-height: 1.28572;
24889
+ --cds-productive-heading-01-letter-spacing: 0.16px;
24890
+ --cds-heading-02-font-size: 1rem;
24891
+ --cds-heading-02-font-weight: 600;
24892
+ --cds-heading-02-line-height: 1.5;
24893
+ --cds-heading-02-letter-spacing: 0;
24894
+ --cds-productive-heading-02-font-size: 1rem;
24895
+ --cds-productive-heading-02-font-weight: 600;
24896
+ --cds-productive-heading-02-line-height: 1.375;
24897
+ --cds-productive-heading-02-letter-spacing: 0;
24898
+ --cds-productive-heading-03-font-size: 1.25rem;
24899
+ --cds-productive-heading-03-font-weight: 400;
24900
+ --cds-productive-heading-03-line-height: 1.4;
24901
+ --cds-productive-heading-03-letter-spacing: 0;
24902
+ --cds-productive-heading-04-font-size: 1.75rem;
24903
+ --cds-productive-heading-04-font-weight: 400;
24904
+ --cds-productive-heading-04-line-height: 1.28572;
24905
+ --cds-productive-heading-04-letter-spacing: 0;
24906
+ --cds-productive-heading-05-font-size: 2rem;
24907
+ --cds-productive-heading-05-font-weight: 400;
24908
+ --cds-productive-heading-05-line-height: 1.25;
24909
+ --cds-productive-heading-05-letter-spacing: 0;
24910
+ --cds-productive-heading-06-font-size: 2.625rem;
24911
+ --cds-productive-heading-06-font-weight: 300;
24912
+ --cds-productive-heading-06-line-height: 1.199;
24913
+ --cds-productive-heading-06-letter-spacing: 0;
24914
+ --cds-productive-heading-07-font-size: 3.375rem;
24915
+ --cds-productive-heading-07-font-weight: 300;
24916
+ --cds-productive-heading-07-line-height: 1.199;
24917
+ --cds-productive-heading-07-letter-spacing: 0;
24918
+ --cds-expressive-heading-01-font-size: 0.875rem;
24919
+ --cds-expressive-heading-01-font-weight: 600;
24920
+ --cds-expressive-heading-01-line-height: 1.25;
24921
+ --cds-expressive-heading-01-letter-spacing: 0.16px;
24922
+ --cds-expressive-heading-02-font-size: 1rem;
24923
+ --cds-expressive-heading-02-font-weight: 600;
24924
+ --cds-expressive-heading-02-line-height: 1.5;
24925
+ --cds-expressive-heading-02-letter-spacing: 0;
24926
+ --cds-expressive-heading-03-font-size: 1.25rem;
24927
+ --cds-expressive-heading-03-font-weight: 400;
24928
+ --cds-expressive-heading-03-line-height: 1.4;
24929
+ --cds-expressive-heading-03-letter-spacing: 0;
24930
+ --cds-expressive-heading-04-font-size: 1.75rem;
24931
+ --cds-expressive-heading-04-font-weight: 400;
24932
+ --cds-expressive-heading-04-line-height: 1.28572;
24933
+ --cds-expressive-heading-04-letter-spacing: 0;
24934
+ --cds-expressive-heading-05-font-size: 2rem;
24935
+ --cds-expressive-heading-05-font-weight: 400;
24936
+ --cds-expressive-heading-05-line-height: 1.25;
24937
+ --cds-expressive-heading-05-letter-spacing: 0;
24938
+ --cds-expressive-heading-06-font-size: 2rem;
24939
+ --cds-expressive-heading-06-font-weight: 600;
24940
+ --cds-expressive-heading-06-line-height: 1.25;
24941
+ --cds-expressive-heading-06-letter-spacing: 0;
24942
+ --cds-expressive-paragraph-01-font-size: 1.5rem;
24943
+ --cds-expressive-paragraph-01-font-weight: 300;
24944
+ --cds-expressive-paragraph-01-line-height: 1.334;
24945
+ --cds-expressive-paragraph-01-letter-spacing: 0;
24946
+ --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
24947
+ --cds-quotation-01-font-size: 1.25rem;
24948
+ --cds-quotation-01-font-weight: 400;
24949
+ --cds-quotation-01-line-height: 1.3;
24950
+ --cds-quotation-01-letter-spacing: 0;
24951
+ --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
24952
+ --cds-quotation-02-font-size: 2rem;
24953
+ --cds-quotation-02-font-weight: 300;
24954
+ --cds-quotation-02-line-height: 1.25;
24955
+ --cds-quotation-02-letter-spacing: 0;
24956
+ --cds-display-01-font-size: 2.625rem;
24957
+ --cds-display-01-font-weight: 300;
24958
+ --cds-display-01-line-height: 1.19;
24959
+ --cds-display-01-letter-spacing: 0;
24960
+ --cds-display-02-font-size: 2.625rem;
24961
+ --cds-display-02-font-weight: 600;
24962
+ --cds-display-02-line-height: 1.19;
24963
+ --cds-display-02-letter-spacing: 0;
24964
+ --cds-display-03-font-size: 2.625rem;
24965
+ --cds-display-03-font-weight: 300;
24966
+ --cds-display-03-line-height: 1.19;
24967
+ --cds-display-03-letter-spacing: 0;
24968
+ --cds-display-04-font-size: 2.625rem;
24969
+ --cds-display-04-font-weight: 300;
24970
+ --cds-display-04-line-height: 1.19;
24971
+ --cds-display-04-letter-spacing: 0;
24972
+ --cds-legal-01-font-size: 0.75rem;
24973
+ --cds-legal-01-font-weight: 400;
24974
+ --cds-legal-01-line-height: 1.33333;
24975
+ --cds-legal-01-letter-spacing: 0.32px;
24976
+ --cds-legal-02-font-size: 0.875rem;
24977
+ --cds-legal-02-font-weight: 400;
24978
+ --cds-legal-02-line-height: 1.28572;
24979
+ --cds-legal-02-letter-spacing: 0.16px;
24980
+ --cds-body-compact-01-font-size: 0.875rem;
24981
+ --cds-body-compact-01-font-weight: 400;
24982
+ --cds-body-compact-01-line-height: 1.28572;
24983
+ --cds-body-compact-01-letter-spacing: 0.16px;
24984
+ --cds-body-compact-02-font-size: 1rem;
24985
+ --cds-body-compact-02-font-weight: 400;
24986
+ --cds-body-compact-02-line-height: 1.375;
24987
+ --cds-body-compact-02-letter-spacing: 0;
24988
+ --cds-body-01-font-size: 0.875rem;
24989
+ --cds-body-01-font-weight: 400;
24990
+ --cds-body-01-line-height: 1.42857;
24991
+ --cds-body-01-letter-spacing: 0.16px;
24992
+ --cds-body-02-font-size: 1rem;
24993
+ --cds-body-02-font-weight: 400;
24994
+ --cds-body-02-line-height: 1.5;
24995
+ --cds-body-02-letter-spacing: 0;
24996
+ --cds-heading-compact-01-font-size: 0.875rem;
24997
+ --cds-heading-compact-01-font-weight: 600;
24998
+ --cds-heading-compact-01-line-height: 1.28572;
24999
+ --cds-heading-compact-01-letter-spacing: 0.16px;
25000
+ --cds-heading-compact-02-font-size: 1rem;
25001
+ --cds-heading-compact-02-font-weight: 600;
25002
+ --cds-heading-compact-02-line-height: 1.375;
25003
+ --cds-heading-compact-02-letter-spacing: 0;
25004
+ --cds-heading-03-font-size: 1.25rem;
25005
+ --cds-heading-03-font-weight: 400;
25006
+ --cds-heading-03-line-height: 1.4;
25007
+ --cds-heading-03-letter-spacing: 0;
25008
+ --cds-heading-04-font-size: 1.75rem;
25009
+ --cds-heading-04-font-weight: 400;
25010
+ --cds-heading-04-line-height: 1.28572;
25011
+ --cds-heading-04-letter-spacing: 0;
25012
+ --cds-heading-05-font-size: 2rem;
25013
+ --cds-heading-05-font-weight: 400;
25014
+ --cds-heading-05-line-height: 1.25;
25015
+ --cds-heading-05-letter-spacing: 0;
25016
+ --cds-heading-06-font-size: 2.625rem;
25017
+ --cds-heading-06-font-weight: 300;
25018
+ --cds-heading-06-line-height: 1.199;
25019
+ --cds-heading-06-letter-spacing: 0;
25020
+ --cds-heading-07-font-size: 3.375rem;
25021
+ --cds-heading-07-font-weight: 300;
25022
+ --cds-heading-07-line-height: 1.199;
25023
+ --cds-heading-07-letter-spacing: 0;
25024
+ --cds-fluid-heading-03-font-size: 1.25rem;
25025
+ --cds-fluid-heading-03-font-weight: 400;
25026
+ --cds-fluid-heading-03-line-height: 1.4;
25027
+ --cds-fluid-heading-03-letter-spacing: 0;
25028
+ --cds-fluid-heading-04-font-size: 1.75rem;
25029
+ --cds-fluid-heading-04-font-weight: 400;
25030
+ --cds-fluid-heading-04-line-height: 1.28572;
25031
+ --cds-fluid-heading-04-letter-spacing: 0;
25032
+ --cds-fluid-heading-05-font-size: 2rem;
25033
+ --cds-fluid-heading-05-font-weight: 400;
25034
+ --cds-fluid-heading-05-line-height: 1.25;
25035
+ --cds-fluid-heading-05-letter-spacing: 0;
25036
+ --cds-fluid-heading-06-font-size: 2rem;
25037
+ --cds-fluid-heading-06-font-weight: 600;
25038
+ --cds-fluid-heading-06-line-height: 1.25;
25039
+ --cds-fluid-heading-06-letter-spacing: 0;
25040
+ --cds-fluid-paragraph-01-font-size: 1.5rem;
25041
+ --cds-fluid-paragraph-01-font-weight: 300;
25042
+ --cds-fluid-paragraph-01-line-height: 1.334;
25043
+ --cds-fluid-paragraph-01-letter-spacing: 0;
25044
+ --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25045
+ --cds-fluid-quotation-01-font-size: 1.25rem;
25046
+ --cds-fluid-quotation-01-font-weight: 400;
25047
+ --cds-fluid-quotation-01-line-height: 1.3;
25048
+ --cds-fluid-quotation-01-letter-spacing: 0;
25049
+ --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25050
+ --cds-fluid-quotation-02-font-size: 2rem;
25051
+ --cds-fluid-quotation-02-font-weight: 300;
25052
+ --cds-fluid-quotation-02-line-height: 1.25;
25053
+ --cds-fluid-quotation-02-letter-spacing: 0;
25054
+ --cds-fluid-display-01-font-size: 2.625rem;
25055
+ --cds-fluid-display-01-font-weight: 300;
25056
+ --cds-fluid-display-01-line-height: 1.19;
25057
+ --cds-fluid-display-01-letter-spacing: 0;
25058
+ --cds-fluid-display-02-font-size: 2.625rem;
25059
+ --cds-fluid-display-02-font-weight: 600;
25060
+ --cds-fluid-display-02-line-height: 1.19;
25061
+ --cds-fluid-display-02-letter-spacing: 0;
25062
+ --cds-fluid-display-03-font-size: 2.625rem;
25063
+ --cds-fluid-display-03-font-weight: 300;
25064
+ --cds-fluid-display-03-line-height: 1.19;
25065
+ --cds-fluid-display-03-letter-spacing: 0;
25066
+ --cds-fluid-display-04-font-size: 2.625rem;
25067
+ --cds-fluid-display-04-font-weight: 300;
25068
+ --cds-fluid-display-04-line-height: 1.19;
25069
+ --cds-fluid-display-04-letter-spacing: 0;
25070
+ --cds-spacing-01: 0.125rem;
25071
+ --cds-spacing-02: 0.25rem;
25072
+ --cds-spacing-03: 0.5rem;
25073
+ --cds-spacing-04: 0.75rem;
25074
+ --cds-spacing-05: 1rem;
25075
+ --cds-spacing-06: 1.5rem;
25076
+ --cds-spacing-07: 2rem;
25077
+ --cds-spacing-08: 2.5rem;
25078
+ --cds-spacing-09: 3rem;
25079
+ --cds-spacing-10: 4rem;
25080
+ --cds-spacing-11: 5rem;
25081
+ --cds-spacing-12: 6rem;
25082
+ --cds-spacing-13: 10rem;
25083
+ --cds-fluid-spacing-01: 0;
25084
+ --cds-fluid-spacing-02: 2vw;
25085
+ --cds-fluid-spacing-03: 5vw;
25086
+ --cds-fluid-spacing-04: 10vw;
25087
+ --cds-layout-01: 1rem;
25088
+ --cds-layout-02: 1.5rem;
25089
+ --cds-layout-03: 2rem;
25090
+ --cds-layout-04: 3rem;
25091
+ --cds-layout-05: 4rem;
25092
+ --cds-layout-06: 6rem;
25093
+ --cds-layout-07: 10rem;
25094
+ --cds-container-01: 1.5rem;
25095
+ --cds-container-02: 2rem;
25096
+ --cds-container-03: 2.5rem;
25097
+ --cds-container-04: 3rem;
25098
+ --cds-container-05: 4rem;
25099
+ --cds-size-xsmall: 1.5rem;
25100
+ --cds-size-small: 2rem;
25101
+ --cds-size-medium: 2.5rem;
25102
+ --cds-size-large: 3rem;
25103
+ --cds-size-xlarge: 4rem;
25104
+ --cds-size-2XLarge: 5rem;
25105
+ --cds-icon-size-01: 1rem;
25106
+ --cds-icon-size-02: 1.25rem;
25107
+ height: 1.25rem;
25108
+ padding-top: 0;
25109
+ padding-right: 0.1875rem;
25110
+ border-width: 0.0625rem;
25111
+ border-style: solid;
25112
+ border-radius: var(--cds-spacing-04, 0.75rem);
25113
+ white-space: nowrap;
25114
+ border-color: var(--cds-icon-03, #ffffff);
25115
+ background-color: var(--cds-icon-03, #ffffff);
25116
+ color: var(--cds-inverse-01, #ffffff);
25117
+ }
25118
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
25119
+ cursor: pointer;
25120
+ }
25121
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
25122
+ margin: 0.0625rem 0 0 0;
25123
+ vertical-align: text-top;
25124
+ }
25125
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open svg {
25126
+ transform: rotate(180deg);
25127
+ }
25128
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__keyword-open:hover {
25129
+ background-color: transparent;
25130
+ color: var(--cds-text-01, #161616);
25131
+ }
25132
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__body {
25133
+ --cds-interactive-01: #0f62fe;
25134
+ --cds-interactive-02: #6f6f6f;
25135
+ --cds-interactive-03: #ffffff;
25136
+ --cds-interactive-04: #4589ff;
25137
+ --cds-ui-background: #161616;
25138
+ --cds-ui-01: #262626;
25139
+ --cds-ui-02: #393939;
25140
+ --cds-ui-03: #393939;
25141
+ --cds-ui-04: #6f6f6f;
25142
+ --cds-ui-05: #f4f4f4;
25143
+ --cds-text-01: #f4f4f4;
25144
+ --cds-text-02: #c6c6c6;
25145
+ --cds-text-03: #6f6f6f;
25146
+ --cds-text-04: #ffffff;
25147
+ --cds-text-05: #8d8d8d;
25148
+ --cds-text-error: #ff8389;
25149
+ --cds-icon-01: #f4f4f4;
25150
+ --cds-icon-02: #c6c6c6;
25151
+ --cds-icon-03: #ffffff;
25152
+ --cds-link-01: #78a9ff;
25153
+ --cds-link-02: #a6c8ff;
25154
+ --cds-inverse-link: #0f62fe;
25155
+ --cds-field-01: #262626;
25156
+ --cds-field-02: #393939;
25157
+ --cds-inverse-01: #161616;
25158
+ --cds-inverse-02: #f4f4f4;
25159
+ --cds-support-01: #fa4d56;
25160
+ --cds-support-02: #42be65;
25161
+ --cds-support-03: #f1c21b;
25162
+ --cds-support-04: #4589ff;
25163
+ --cds-inverse-support-01: #da1e28;
25164
+ --cds-inverse-support-02: #24a148;
25165
+ --cds-inverse-support-03: #f1c21b;
25166
+ --cds-inverse-support-04: #0f62fe;
25167
+ --cds-overlay-01: rgba(0, 0, 0, 0.65);
25168
+ --cds-danger-01: #da1e28;
25169
+ --cds-danger-02: #fa4d56;
25170
+ --cds-focus: #ffffff;
25171
+ --cds-inverse-focus-ui: #0f62fe;
25172
+ --cds-hover-primary: #0353e9;
25173
+ --cds-active-primary: #002d9c;
25174
+ --cds-hover-primary-text: #a6c8ff;
25175
+ --cds-hover-secondary: #606060;
25176
+ --cds-active-secondary: #393939;
25177
+ --cds-hover-tertiary: #f4f4f4;
25178
+ --cds-active-tertiary: #c6c6c6;
25179
+ --cds-hover-ui: #353535;
25180
+ --cds-hover-light-ui: #4c4c4c;
25181
+ --cds-hover-selected-ui: #4c4c4c;
25182
+ --cds-active-ui: #525252;
25183
+ --cds-active-light-ui: #6f6f6f;
25184
+ --cds-selected-ui: #393939;
25185
+ --cds-selected-light-ui: #525252;
25186
+ --cds-inverse-hover-ui: #e5e5e5;
25187
+ --cds-hover-danger: #b81921;
25188
+ --cds-active-danger: #750e13;
25189
+ --cds-hover-row: #353535;
25190
+ --cds-visited-link: #be95ff;
25191
+ --cds-disabled-01: #262626;
25192
+ --cds-disabled-02: #525252;
25193
+ --cds-disabled-03: #8d8d8d;
25194
+ --cds-highlight: #002d9c;
25195
+ --cds-decorative-01: #525252;
25196
+ --cds-button-separator: #161616;
25197
+ --cds-skeleton-01: #353535;
25198
+ --cds-skeleton-02: #525252;
25199
+ --cds-background: #161616;
25200
+ --cds-layer: #262626;
25201
+ --cds-layer-accent: #393939;
25202
+ --cds-layer-accent-hover: #474747;
25203
+ --cds-layer-accent-active: #6f6f6f;
25204
+ --cds-field: #262626;
25205
+ --cds-background-inverse: #f4f4f4;
25206
+ --cds-background-brand: #0f62fe;
25207
+ --cds-interactive: #4589ff;
25208
+ --cds-border-subtle: #393939;
25209
+ --cds-border-strong: #6f6f6f;
25210
+ --cds-border-inverse: #f4f4f4;
25211
+ --cds-border-interactive: #4589ff;
25212
+ --cds-text-primary: #f4f4f4;
25213
+ --cds-text-secondary: #c6c6c6;
25214
+ --cds-text-placeholder: #6f6f6f;
25215
+ --cds-text-helper: #8d8d8d;
25216
+ --cds-text-on-color: #ffffff;
25217
+ --cds-text-inverse: #161616;
25218
+ --cds-link-primary: #78a9ff;
25219
+ --cds-link-secondary: #a6c8ff;
25220
+ --cds-link-visited: #be95ff;
25221
+ --cds-link-inverse: #0f62fe;
25222
+ --cds-icon-primary: #f4f4f4;
25223
+ --cds-icon-secondary: #c6c6c6;
25224
+ --cds-icon-on-color: #ffffff;
25225
+ --cds-icon-inverse: #161616;
25226
+ --cds-support-error: #fa4d56;
25227
+ --cds-support-success: #42be65;
25228
+ --cds-support-warning: #f1c21b;
25229
+ --cds-support-info: #4589ff;
25230
+ --cds-support-error-inverse: #da1e28;
25231
+ --cds-support-success-inverse: #24a148;
25232
+ --cds-support-warning-inverse: #f1c21b;
25233
+ --cds-support-info-inverse: #0f62fe;
25234
+ --cds-overlay: rgba(0, 0, 0, 0.65);
25235
+ --cds-toggle-off: #6f6f6f;
25236
+ --cds-shadow: rgba(0, 0, 0, 0.8);
25237
+ --cds-button-primary: #0f62fe;
25238
+ --cds-button-secondary: #6f6f6f;
25239
+ --cds-button-tertiary: #ffffff;
25240
+ --cds-button-danger-primary: #da1e28;
25241
+ --cds-button-danger-secondary: #fa4d56;
25242
+ --cds-background-active: #525252;
25243
+ --cds-layer-active: #525252;
25244
+ --cds-button-danger-active: #750e13;
25245
+ --cds-button-primary-active: #002d9c;
25246
+ --cds-button-secondary-active: #393939;
25247
+ --cds-button-tertiary-active: #c6c6c6;
25248
+ --cds-focus-inset: #161616;
25249
+ --cds-focus-inverse: #0f62fe;
25250
+ --cds-background-hover: #353535;
25251
+ --cds-layer-hover: #353535;
25252
+ --cds-field-hover: #353535;
25253
+ --cds-background-inverse-hover: #e5e5e5;
25254
+ --cds-link-primary-hover: #a6c8ff;
25255
+ --cds-button-danger-hover: #b81921;
25256
+ --cds-button-primary-hover: #0353e9;
25257
+ --cds-button-secondary-hover: #606060;
25258
+ --cds-button-tertiary-hover: #f4f4f4;
25259
+ --cds-background-selected: #393939;
25260
+ --cds-background-selected-hover: #4c4c4c;
25261
+ --cds-layer-selected: #393939;
25262
+ --cds-layer-selected-hover: #4c4c4c;
25263
+ --cds-layer-selected-inverse: #f4f4f4;
25264
+ --cds-border-subtle-selected: #525252;
25265
+ --cds-border-disabled: #262626;
25266
+ --cds-text-disabled: #525252;
25267
+ --cds-button-disabled: #525252;
25268
+ --cds-icon-disabled: #525252;
25269
+ --cds-text-on-color-disabled: #8d8d8d;
25270
+ --cds-icon-on-color-disabled: #8d8d8d;
25271
+ --cds-layer-selected-disabled: #8d8d8d;
25272
+ --cds-skeleton-background: #353535;
25273
+ --cds-skeleton-element: #525252;
25274
+ --cds-brand-01: #0f62fe;
25275
+ --cds-brand-02: #6f6f6f;
25276
+ --cds-brand-03: #ffffff;
25277
+ --cds-active-01: #525252;
25278
+ --cds-hover-field: #353535;
25279
+ --cds-danger: #da1e28;
25280
+ --cds-caption-01-font-size: 0.75rem;
25281
+ --cds-caption-01-font-weight: 400;
25282
+ --cds-caption-01-line-height: 1.33333;
25283
+ --cds-caption-01-letter-spacing: 0.32px;
25284
+ --cds-caption-02-font-size: 0.875rem;
25285
+ --cds-caption-02-font-weight: 400;
25286
+ --cds-caption-02-line-height: 1.28572;
25287
+ --cds-caption-02-letter-spacing: 0.32px;
25288
+ --cds-label-01-font-size: 0.75rem;
25289
+ --cds-label-01-font-weight: 400;
25290
+ --cds-label-01-line-height: 1.33333;
25291
+ --cds-label-01-letter-spacing: 0.32px;
25292
+ --cds-label-02-font-size: 0.875rem;
25293
+ --cds-label-02-font-weight: 400;
25294
+ --cds-label-02-line-height: 1.28572;
25295
+ --cds-label-02-letter-spacing: 0.16px;
25296
+ --cds-helper-text-01-font-size: 0.75rem;
25297
+ --cds-helper-text-01-line-height: 1.33333;
25298
+ --cds-helper-text-01-letter-spacing: 0.32px;
25299
+ --cds-helper-text-02-font-size: 0.875rem;
25300
+ --cds-helper-text-02-line-height: 1.28572;
25301
+ --cds-helper-text-02-letter-spacing: 0.16px;
25302
+ --cds-body-short-01-font-size: 0.875rem;
25303
+ --cds-body-short-01-font-weight: 400;
25304
+ --cds-body-short-01-line-height: 1.28572;
25305
+ --cds-body-short-01-letter-spacing: 0.16px;
25306
+ --cds-body-long-01-font-size: 0.875rem;
25307
+ --cds-body-long-01-font-weight: 400;
25308
+ --cds-body-long-01-line-height: 1.42857;
25309
+ --cds-body-long-01-letter-spacing: 0.16px;
25310
+ --cds-body-short-02-font-size: 1rem;
25311
+ --cds-body-short-02-font-weight: 400;
25312
+ --cds-body-short-02-line-height: 1.375;
25313
+ --cds-body-short-02-letter-spacing: 0;
25314
+ --cds-body-long-02-font-size: 1rem;
25315
+ --cds-body-long-02-font-weight: 400;
25316
+ --cds-body-long-02-line-height: 1.5;
25317
+ --cds-body-long-02-letter-spacing: 0;
25318
+ --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
25319
+ --cds-code-01-font-size: 0.75rem;
25320
+ --cds-code-01-font-weight: 400;
25321
+ --cds-code-01-line-height: 1.33333;
25322
+ --cds-code-01-letter-spacing: 0.32px;
25323
+ --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
25324
+ --cds-code-02-font-size: 0.875rem;
25325
+ --cds-code-02-font-weight: 400;
25326
+ --cds-code-02-line-height: 1.42857;
25327
+ --cds-code-02-letter-spacing: 0.32px;
25328
+ --cds-heading-01-font-size: 0.875rem;
25329
+ --cds-heading-01-font-weight: 600;
25330
+ --cds-heading-01-line-height: 1.42857;
25331
+ --cds-heading-01-letter-spacing: 0.16px;
25332
+ --cds-productive-heading-01-font-size: 0.875rem;
25333
+ --cds-productive-heading-01-font-weight: 600;
25334
+ --cds-productive-heading-01-line-height: 1.28572;
25335
+ --cds-productive-heading-01-letter-spacing: 0.16px;
25336
+ --cds-heading-02-font-size: 1rem;
25337
+ --cds-heading-02-font-weight: 600;
25338
+ --cds-heading-02-line-height: 1.5;
25339
+ --cds-heading-02-letter-spacing: 0;
25340
+ --cds-productive-heading-02-font-size: 1rem;
25341
+ --cds-productive-heading-02-font-weight: 600;
25342
+ --cds-productive-heading-02-line-height: 1.375;
25343
+ --cds-productive-heading-02-letter-spacing: 0;
25344
+ --cds-productive-heading-03-font-size: 1.25rem;
25345
+ --cds-productive-heading-03-font-weight: 400;
25346
+ --cds-productive-heading-03-line-height: 1.4;
25347
+ --cds-productive-heading-03-letter-spacing: 0;
25348
+ --cds-productive-heading-04-font-size: 1.75rem;
25349
+ --cds-productive-heading-04-font-weight: 400;
25350
+ --cds-productive-heading-04-line-height: 1.28572;
25351
+ --cds-productive-heading-04-letter-spacing: 0;
25352
+ --cds-productive-heading-05-font-size: 2rem;
25353
+ --cds-productive-heading-05-font-weight: 400;
25354
+ --cds-productive-heading-05-line-height: 1.25;
25355
+ --cds-productive-heading-05-letter-spacing: 0;
25356
+ --cds-productive-heading-06-font-size: 2.625rem;
25357
+ --cds-productive-heading-06-font-weight: 300;
25358
+ --cds-productive-heading-06-line-height: 1.199;
25359
+ --cds-productive-heading-06-letter-spacing: 0;
25360
+ --cds-productive-heading-07-font-size: 3.375rem;
25361
+ --cds-productive-heading-07-font-weight: 300;
25362
+ --cds-productive-heading-07-line-height: 1.199;
25363
+ --cds-productive-heading-07-letter-spacing: 0;
25364
+ --cds-expressive-heading-01-font-size: 0.875rem;
25365
+ --cds-expressive-heading-01-font-weight: 600;
25366
+ --cds-expressive-heading-01-line-height: 1.25;
25367
+ --cds-expressive-heading-01-letter-spacing: 0.16px;
25368
+ --cds-expressive-heading-02-font-size: 1rem;
25369
+ --cds-expressive-heading-02-font-weight: 600;
25370
+ --cds-expressive-heading-02-line-height: 1.5;
25371
+ --cds-expressive-heading-02-letter-spacing: 0;
25372
+ --cds-expressive-heading-03-font-size: 1.25rem;
25373
+ --cds-expressive-heading-03-font-weight: 400;
25374
+ --cds-expressive-heading-03-line-height: 1.4;
25375
+ --cds-expressive-heading-03-letter-spacing: 0;
25376
+ --cds-expressive-heading-04-font-size: 1.75rem;
25377
+ --cds-expressive-heading-04-font-weight: 400;
25378
+ --cds-expressive-heading-04-line-height: 1.28572;
25379
+ --cds-expressive-heading-04-letter-spacing: 0;
25380
+ --cds-expressive-heading-05-font-size: 2rem;
25381
+ --cds-expressive-heading-05-font-weight: 400;
25382
+ --cds-expressive-heading-05-line-height: 1.25;
25383
+ --cds-expressive-heading-05-letter-spacing: 0;
25384
+ --cds-expressive-heading-06-font-size: 2rem;
25385
+ --cds-expressive-heading-06-font-weight: 600;
25386
+ --cds-expressive-heading-06-line-height: 1.25;
25387
+ --cds-expressive-heading-06-letter-spacing: 0;
25388
+ --cds-expressive-paragraph-01-font-size: 1.5rem;
25389
+ --cds-expressive-paragraph-01-font-weight: 300;
25390
+ --cds-expressive-paragraph-01-line-height: 1.334;
25391
+ --cds-expressive-paragraph-01-letter-spacing: 0;
25392
+ --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25393
+ --cds-quotation-01-font-size: 1.25rem;
25394
+ --cds-quotation-01-font-weight: 400;
25395
+ --cds-quotation-01-line-height: 1.3;
25396
+ --cds-quotation-01-letter-spacing: 0;
25397
+ --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25398
+ --cds-quotation-02-font-size: 2rem;
25399
+ --cds-quotation-02-font-weight: 300;
25400
+ --cds-quotation-02-line-height: 1.25;
25401
+ --cds-quotation-02-letter-spacing: 0;
25402
+ --cds-display-01-font-size: 2.625rem;
25403
+ --cds-display-01-font-weight: 300;
25404
+ --cds-display-01-line-height: 1.19;
25405
+ --cds-display-01-letter-spacing: 0;
25406
+ --cds-display-02-font-size: 2.625rem;
25407
+ --cds-display-02-font-weight: 600;
25408
+ --cds-display-02-line-height: 1.19;
25409
+ --cds-display-02-letter-spacing: 0;
25410
+ --cds-display-03-font-size: 2.625rem;
25411
+ --cds-display-03-font-weight: 300;
25412
+ --cds-display-03-line-height: 1.19;
25413
+ --cds-display-03-letter-spacing: 0;
25414
+ --cds-display-04-font-size: 2.625rem;
25415
+ --cds-display-04-font-weight: 300;
25416
+ --cds-display-04-line-height: 1.19;
25417
+ --cds-display-04-letter-spacing: 0;
25418
+ --cds-legal-01-font-size: 0.75rem;
25419
+ --cds-legal-01-font-weight: 400;
25420
+ --cds-legal-01-line-height: 1.33333;
25421
+ --cds-legal-01-letter-spacing: 0.32px;
25422
+ --cds-legal-02-font-size: 0.875rem;
25423
+ --cds-legal-02-font-weight: 400;
25424
+ --cds-legal-02-line-height: 1.28572;
25425
+ --cds-legal-02-letter-spacing: 0.16px;
25426
+ --cds-body-compact-01-font-size: 0.875rem;
25427
+ --cds-body-compact-01-font-weight: 400;
25428
+ --cds-body-compact-01-line-height: 1.28572;
25429
+ --cds-body-compact-01-letter-spacing: 0.16px;
25430
+ --cds-body-compact-02-font-size: 1rem;
25431
+ --cds-body-compact-02-font-weight: 400;
25432
+ --cds-body-compact-02-line-height: 1.375;
25433
+ --cds-body-compact-02-letter-spacing: 0;
25434
+ --cds-body-01-font-size: 0.875rem;
25435
+ --cds-body-01-font-weight: 400;
25436
+ --cds-body-01-line-height: 1.42857;
25437
+ --cds-body-01-letter-spacing: 0.16px;
25438
+ --cds-body-02-font-size: 1rem;
25439
+ --cds-body-02-font-weight: 400;
25440
+ --cds-body-02-line-height: 1.5;
25441
+ --cds-body-02-letter-spacing: 0;
25442
+ --cds-heading-compact-01-font-size: 0.875rem;
25443
+ --cds-heading-compact-01-font-weight: 600;
25444
+ --cds-heading-compact-01-line-height: 1.28572;
25445
+ --cds-heading-compact-01-letter-spacing: 0.16px;
25446
+ --cds-heading-compact-02-font-size: 1rem;
25447
+ --cds-heading-compact-02-font-weight: 600;
25448
+ --cds-heading-compact-02-line-height: 1.375;
25449
+ --cds-heading-compact-02-letter-spacing: 0;
25450
+ --cds-heading-03-font-size: 1.25rem;
25451
+ --cds-heading-03-font-weight: 400;
25452
+ --cds-heading-03-line-height: 1.4;
25453
+ --cds-heading-03-letter-spacing: 0;
25454
+ --cds-heading-04-font-size: 1.75rem;
25455
+ --cds-heading-04-font-weight: 400;
25456
+ --cds-heading-04-line-height: 1.28572;
25457
+ --cds-heading-04-letter-spacing: 0;
25458
+ --cds-heading-05-font-size: 2rem;
25459
+ --cds-heading-05-font-weight: 400;
25460
+ --cds-heading-05-line-height: 1.25;
25461
+ --cds-heading-05-letter-spacing: 0;
25462
+ --cds-heading-06-font-size: 2.625rem;
25463
+ --cds-heading-06-font-weight: 300;
25464
+ --cds-heading-06-line-height: 1.199;
25465
+ --cds-heading-06-letter-spacing: 0;
25466
+ --cds-heading-07-font-size: 3.375rem;
25467
+ --cds-heading-07-font-weight: 300;
25468
+ --cds-heading-07-line-height: 1.199;
25469
+ --cds-heading-07-letter-spacing: 0;
25470
+ --cds-fluid-heading-03-font-size: 1.25rem;
25471
+ --cds-fluid-heading-03-font-weight: 400;
25472
+ --cds-fluid-heading-03-line-height: 1.4;
25473
+ --cds-fluid-heading-03-letter-spacing: 0;
25474
+ --cds-fluid-heading-04-font-size: 1.75rem;
25475
+ --cds-fluid-heading-04-font-weight: 400;
25476
+ --cds-fluid-heading-04-line-height: 1.28572;
25477
+ --cds-fluid-heading-04-letter-spacing: 0;
25478
+ --cds-fluid-heading-05-font-size: 2rem;
25479
+ --cds-fluid-heading-05-font-weight: 400;
25480
+ --cds-fluid-heading-05-line-height: 1.25;
25481
+ --cds-fluid-heading-05-letter-spacing: 0;
25482
+ --cds-fluid-heading-06-font-size: 2rem;
25483
+ --cds-fluid-heading-06-font-weight: 600;
25484
+ --cds-fluid-heading-06-line-height: 1.25;
25485
+ --cds-fluid-heading-06-letter-spacing: 0;
25486
+ --cds-fluid-paragraph-01-font-size: 1.5rem;
25487
+ --cds-fluid-paragraph-01-font-weight: 300;
25488
+ --cds-fluid-paragraph-01-line-height: 1.334;
25489
+ --cds-fluid-paragraph-01-letter-spacing: 0;
25490
+ --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25491
+ --cds-fluid-quotation-01-font-size: 1.25rem;
25492
+ --cds-fluid-quotation-01-font-weight: 400;
25493
+ --cds-fluid-quotation-01-line-height: 1.3;
25494
+ --cds-fluid-quotation-01-letter-spacing: 0;
25495
+ --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
25496
+ --cds-fluid-quotation-02-font-size: 2rem;
25497
+ --cds-fluid-quotation-02-font-weight: 300;
25498
+ --cds-fluid-quotation-02-line-height: 1.25;
25499
+ --cds-fluid-quotation-02-letter-spacing: 0;
25500
+ --cds-fluid-display-01-font-size: 2.625rem;
25501
+ --cds-fluid-display-01-font-weight: 300;
25502
+ --cds-fluid-display-01-line-height: 1.19;
25503
+ --cds-fluid-display-01-letter-spacing: 0;
25504
+ --cds-fluid-display-02-font-size: 2.625rem;
25505
+ --cds-fluid-display-02-font-weight: 600;
25506
+ --cds-fluid-display-02-line-height: 1.19;
25507
+ --cds-fluid-display-02-letter-spacing: 0;
25508
+ --cds-fluid-display-03-font-size: 2.625rem;
25509
+ --cds-fluid-display-03-font-weight: 300;
25510
+ --cds-fluid-display-03-line-height: 1.19;
25511
+ --cds-fluid-display-03-letter-spacing: 0;
25512
+ --cds-fluid-display-04-font-size: 2.625rem;
25513
+ --cds-fluid-display-04-font-weight: 300;
25514
+ --cds-fluid-display-04-line-height: 1.19;
25515
+ --cds-fluid-display-04-letter-spacing: 0;
25516
+ --cds-spacing-01: 0.125rem;
25517
+ --cds-spacing-02: 0.25rem;
25518
+ --cds-spacing-03: 0.5rem;
25519
+ --cds-spacing-04: 0.75rem;
25520
+ --cds-spacing-05: 1rem;
25521
+ --cds-spacing-06: 1.5rem;
25522
+ --cds-spacing-07: 2rem;
25523
+ --cds-spacing-08: 2.5rem;
25524
+ --cds-spacing-09: 3rem;
25525
+ --cds-spacing-10: 4rem;
25526
+ --cds-spacing-11: 5rem;
25527
+ --cds-spacing-12: 6rem;
25528
+ --cds-spacing-13: 10rem;
25529
+ --cds-fluid-spacing-01: 0;
25530
+ --cds-fluid-spacing-02: 2vw;
25531
+ --cds-fluid-spacing-03: 5vw;
25532
+ --cds-fluid-spacing-04: 10vw;
25533
+ --cds-layout-01: 1rem;
25534
+ --cds-layout-02: 1.5rem;
25535
+ --cds-layout-03: 2rem;
25536
+ --cds-layout-04: 3rem;
25537
+ --cds-layout-05: 4rem;
25538
+ --cds-layout-06: 6rem;
25539
+ --cds-layout-07: 10rem;
25540
+ --cds-container-01: 1.5rem;
25541
+ --cds-container-02: 2rem;
25542
+ --cds-container-03: 2.5rem;
25543
+ --cds-container-04: 3rem;
25544
+ --cds-container-05: 4rem;
25545
+ --cds-size-xsmall: 1.5rem;
25546
+ --cds-size-small: 2rem;
25547
+ --cds-size-medium: 2.5rem;
25548
+ --cds-size-large: 3rem;
25549
+ --cds-size-xlarge: 4rem;
25550
+ --cds-size-2XLarge: 5rem;
25551
+ --cds-icon-size-01: 1rem;
25552
+ --cds-icon-size-02: 1.25rem;
25553
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
25554
+ font-weight: var(--cds-body-long-01-font-weight, 400);
25555
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
25556
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
25557
+ display: block;
25558
+ padding: var(--cds-spacing-03, 0.5rem) var(--cds-spacing-04, 0.75rem);
25559
+ border-left-width: 0.078125rem;
25560
+ border-left-style: solid;
25561
+ margin: var(--cds-spacing-02, 0.25rem) 0;
25562
+ animation: fade 600ms;
25563
+ border-left-color: var(--cds-text-01, #161616);
25564
+ color: var(--cds-text-01, #161616);
25565
+ }
25566
+ .c4p--non-linear-reading__dark .c4p--non-linear-reading__body a {
25567
+ color: var(--cds-link-01, #0f62fe);
25568
+ }
25569
+
25570
+ /**
25571
+ * The InlineTip specifically is theme-agnostic, and so we have to
25572
+ * use color tokens to keep the colors static instead of theme tokens
25573
+ * that will change depending on the selected theme.
25574
+ *
25575
+ * We are triggering a *large* amount of linting errors.
25576
+ * So, we're adding 2 "disable" rules for the file instead of 25
25577
+ * individual rules.
25578
+ */
25579
+ /* stylelint-disable declaration-no-important */
25580
+ /* stylelint-disable carbon/theme-token-use */
25581
+ .c4p--inline-tip {
25582
+ position: relative;
25583
+ display: flex;
25584
+ background: linear-gradient(90deg, #001d6c 0%, #6929c4 100%);
25585
+ }
25586
+ .c4p--inline-tip__wide {
25587
+ padding: var(--cds-spacing-05, 1rem) var(--cds-spacing-10, 4rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-09, 3rem);
25588
+ }
25589
+ .c4p--inline-tip__wide.c4p--inline-tip__has-media {
25590
+ padding-right: var(--cds-spacing-09, 3rem);
25591
+ }
25592
+ .c4p--inline-tip__wide.c4p--inline-tip__has-media .c4p--inline-tip__media {
25593
+ padding-left: var(--cds-spacing-10, 4rem);
25594
+ }
25595
+ .c4p--inline-tip__wide.c4p--inline-tip__has-media .c4p--inline-tip__media img {
25596
+ display: block;
25597
+ height: 7.375rem;
25598
+ }
25599
+ .c4p--inline-tip__wide.c4p--inline-tip__has-media .c4p--inline-tip__media svg {
25600
+ width: calc(7.375rem * 2) !important;
25601
+ height: 7.375rem !important;
25602
+ }
25603
+ .c4p--inline-tip__narrow {
25604
+ flex-direction: column-reverse;
25605
+ /* stylelint-disable-next-line carbon/layout-token-use */
25606
+ padding: 3.25rem var(--cds-spacing-07, 2rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-05, 1rem);
25607
+ }
25608
+ .c4p--inline-tip__narrow.c4p--inline-tip__has-media {
25609
+ padding-top: var(--cds-spacing-07, 2rem);
25610
+ padding-right: var(--cds-spacing-05, 1rem);
25611
+ }
25612
+ .c4p--inline-tip__narrow .c4p--inline-tip__media {
25613
+ padding-bottom: var(--cds-spacing-05, 1rem);
25614
+ }
25615
+ .c4p--inline-tip__narrow .c4p--inline-tip__media img {
25616
+ width: 100%;
25617
+ }
25618
+ .c4p--inline-tip__narrow .c4p--inline-tip__content {
25619
+ padding-right: var(--cds-spacing-05, 1rem);
25620
+ }
25621
+ .c4p--inline-tip__narrow .c4p--inline-tip__footer {
25622
+ justify-content: space-between;
25623
+ }
25624
+ .c4p--inline-tip__narrow .c4p--inline-tip__footer .c4p--inline-tip__close-btn {
25625
+ margin-right: calc(-1 * var(--cds-spacing-05, 1rem));
25626
+ }
25627
+ .c4p--inline-tip a {
25628
+ color: #a6c8ff;
25629
+ }
25630
+ .c4p--inline-tip a:visited, .c4p--inline-tip a:hover, .c4p--inline-tip a:visited:hover {
25631
+ color: #a6c8ff;
25632
+ }
25633
+ .c4p--inline-tip__title {
25634
+ font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
25635
+ font-weight: var(--cds-productive-heading-01-font-weight, 600);
25636
+ line-height: var(--cds-productive-heading-01-line-height, 1.28572);
25637
+ letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
25638
+ color: #ffffff;
25639
+ }
25640
+ .c4p--inline-tip__body {
25641
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25642
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25643
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25644
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25645
+ color: #f4f4f4;
25646
+ }
25647
+ .c4p--inline-tip__body p {
25648
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
25649
+ font-weight: var(--cds-body-short-01-font-weight, 400);
25650
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
25651
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
25652
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
25653
+ font-size: inherit;
25654
+ line-height: inherit;
25655
+ }
25656
+ .c4p--inline-tip__body p:last-of-type {
25657
+ margin-bottom: 0;
25658
+ }
25659
+ .c4p--inline-tip__body .c4p--inline-tip__secondary-btn {
25660
+ margin-top: var(--cds-spacing-03, 0.5rem);
25661
+ }
25662
+ .c4p--inline-tip__body .c4p--inline-tip__secondary-btn .c4p--inline-tip__button {
25663
+ margin-left: calc(-1 * var(--cds-spacing-05, 1rem));
25664
+ color: #a6c8ff;
25665
+ }
25666
+ .c4p--inline-tip__body .c4p--inline-tip__secondary-btn .c4p--inline-tip__button:active, .c4p--inline-tip__body .c4p--inline-tip__secondary-btn .c4p--inline-tip__button:hover {
25667
+ background-color: #7f3ae7;
25668
+ color: #f4f4f4;
25669
+ }
25670
+ .c4p--inline-tip__footer {
25671
+ display: flex;
25672
+ padding-top: var(--cds-spacing-05, 1rem);
25673
+ }
25674
+ .c4p--inline-tip__footer:empty {
25675
+ display: none;
25676
+ }
25677
+ .c4p--inline-tip__preview-text {
25678
+ display: -webkit-box;
25679
+ overflow: hidden;
25680
+ -webkit-box-orient: vertical;
25681
+ -webkit-line-clamp: 1;
25682
+ }
25683
+ .c4p--inline-tip__icon-idea {
25684
+ position: absolute;
25685
+ width: 1.25rem;
25686
+ color: #ffffff;
25687
+ inset: var(--cds-spacing-05, 1rem) 0 0 var(--cds-spacing-05, 1rem);
25688
+ }
25689
+ .c4p--inline-tip__close-icon {
25690
+ position: absolute !important;
25691
+ top: 0;
25692
+ right: 0;
25693
+ width: var(--cds-spacing-07, 2rem);
25694
+ height: var(--cds-spacing-07, 2rem);
25695
+ min-height: var(--cds-spacing-07, 2rem) !important;
25696
+ /* stylelint-disable-next-line carbon/layout-token-use */
25697
+ padding: 0 0 0 0.375rem !important;
25698
+ color: #ffffff;
25699
+ }
25700
+ .c4p--inline-tip__close-icon:active, .c4p--inline-tip__close-icon:hover {
25701
+ background-color: #7f3ae7 !important;
25702
+ color: var(--cds-text-01, #161616) !important;
25703
+ }
25704
+ .c4p--inline-tip__close-icon svg > path {
25705
+ margin: 0;
25706
+ fill: #ffffff !important;
25707
+ }
25708
+ .c4p--inline-tip__toggle-btn {
25709
+ border: none;
25710
+ margin: 0 var(--cds-spacing-05, 1rem) 0 calc(-1 * var(--cds-spacing-05, 1rem)) !important;
25711
+ color: #a6c8ff !important;
25712
+ }
25713
+ .c4p--inline-tip__toggle-btn:hover {
25714
+ background-color: #7c3dd6 !important;
25715
+ color: #f4f4f4 !important;
25716
+ }
25717
+ .c4p--inline-tip__close-btn {
25718
+ border: 0.0625rem solid #ffffff !important;
25719
+ color: #ffffff !important;
25720
+ }
25721
+ .c4p--inline-tip__close-btn:active, .c4p--inline-tip__close-btn:hover {
25722
+ background-color: #f4f4f4 !important;
25723
+ color: #161616 !important;
24525
25724
  }
24526
25725
 
24527
25726
  /*# sourceMappingURL=index.css.map */