@dnb/eufemia 9.32.0 → 9.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +39 -0
- package/assets/icons/eufemia-icons-pdf-categorized.tgz +0 -0
- package/assets/icons/eufemia-icons-pdf.tgz +0 -0
- package/assets/icons/hierarchy.svg +1 -0
- package/assets/icons/hierarchy_medium.svg +1 -0
- package/assets/icons/layout_card.svg +1 -0
- package/assets/icons/layout_card_medium.svg +1 -0
- package/assets/icons/unlock.svg +1 -0
- package/assets/icons/unlock_medium.svg +1 -0
- package/cjs/components/Upload.d.ts +3 -0
- package/cjs/components/Upload.js +52 -0
- package/cjs/components/accordion/Accordion.d.ts +5 -0
- package/cjs/components/accordion/Accordion.js +5 -5
- package/cjs/components/accordion/AccordionContent.d.ts +2 -7
- package/cjs/components/accordion/AccordionContent.js +124 -206
- package/cjs/components/accordion/AccordionHeader.d.ts +2 -0
- package/cjs/components/accordion/AccordionHeader.js +6 -3
- package/cjs/components/accordion/AccordionPropTypes.d.ts +2 -0
- package/cjs/components/accordion/AccordionPropTypes.js +2 -0
- package/cjs/components/accordion/AccordionProvider.d.ts +1 -0
- package/cjs/components/accordion/AccordionProvider.js +2 -1
- package/cjs/components/accordion/style/_accordion.scss +11 -27
- package/cjs/components/accordion/style/dnb-accordion.css +7 -19
- package/cjs/components/accordion/style/dnb-accordion.min.css +1 -1
- package/cjs/components/autocomplete/Autocomplete.d.ts +1 -1
- package/cjs/components/autocomplete/Autocomplete.js +2 -2
- package/cjs/components/autocomplete/style/_autocomplete.scss +0 -1
- package/cjs/components/autocomplete/style/dnb-autocomplete.css +57 -25
- package/cjs/components/autocomplete/style/dnb-autocomplete.min.css +1 -1
- package/cjs/components/avatar/Avatar.d.ts +2 -2
- package/cjs/components/breadcrumb/style/_breadcrumb.scss +3 -2
- package/cjs/components/breadcrumb/style/dnb-breadcrumb.css +29 -7
- package/cjs/components/breadcrumb/style/dnb-breadcrumb.min.css +1 -1
- package/cjs/components/button/style/dnb-button.css +18 -6
- package/cjs/components/button/style/dnb-button.min.css +1 -1
- package/cjs/components/button/style/themes/dnb-button-theme-ui.scss +1 -1
- package/cjs/components/checkbox/style/dnb-checkbox.css +3 -1
- package/cjs/components/checkbox/style/dnb-checkbox.min.css +1 -1
- package/cjs/components/date-picker/style/dnb-date-picker.css +84 -28
- package/cjs/components/date-picker/style/dnb-date-picker.min.css +2 -2
- package/cjs/components/dialog/parts/DialogBody.d.ts +2 -2
- package/cjs/components/dialog/parts/DialogHeader.d.ts +2 -2
- package/cjs/components/dialog/parts/DialogNavigation.d.ts +2 -2
- package/cjs/components/dialog/style/dnb-dialog.css +93 -52
- package/cjs/components/dialog/style/dnb-dialog.min.css +1 -1
- package/cjs/components/drawer/Drawer.d.ts +1 -1
- package/cjs/components/drawer/Drawer.js +5 -1
- package/cjs/components/drawer/DrawerContent.js +29 -11
- package/cjs/components/drawer/parts/DrawerBody.d.ts +2 -2
- package/cjs/components/drawer/parts/DrawerContentContext.d.ts +2 -0
- package/cjs/components/drawer/parts/DrawerContentContext.js +11 -0
- package/cjs/components/drawer/parts/DrawerHeader.d.ts +2 -2
- package/cjs/components/drawer/parts/DrawerHeader.js +8 -0
- package/cjs/components/drawer/parts/DrawerNavigation.d.ts +2 -2
- package/cjs/components/drawer/parts/DrawerNavigation.js +8 -0
- package/cjs/components/drawer/style/_drawer.scss +26 -28
- package/cjs/components/drawer/style/dnb-drawer.css +167 -98
- package/cjs/components/drawer/style/dnb-drawer.min.css +1 -1
- package/cjs/components/dropdown/Dropdown.d.ts +1 -1
- package/cjs/components/dropdown/style/_dropdown.scss +0 -1
- package/cjs/components/dropdown/style/dnb-dropdown.css +21 -10
- package/cjs/components/dropdown/style/dnb-dropdown.min.css +1 -1
- package/cjs/components/form-status/FormStatus.js +2 -2
- package/cjs/components/form-status/style/_form-status.scss +3 -3
- package/cjs/components/form-status/style/dnb-form-status.css +3 -1
- package/cjs/components/form-status/style/dnb-form-status.min.css +1 -1
- package/cjs/components/global-error/style/dnb-global-error.css +18 -6
- package/cjs/components/global-error/style/dnb-global-error.min.css +1 -1
- package/cjs/components/global-status/GlobalStatus.js +2 -2
- package/cjs/components/global-status/style/_global-status.scss +1 -1
- package/cjs/components/global-status/style/dnb-global-status.css +19 -7
- package/cjs/components/global-status/style/dnb-global-status.min.css +1 -1
- package/cjs/components/height-animation/HeightAnimation.d.ts +9 -3
- package/cjs/components/height-animation/HeightAnimation.js +8 -4
- package/cjs/components/height-animation/HeightAnimationInstance.d.ts +58 -0
- package/cjs/{shared/AnimateHeight.js → components/height-animation/HeightAnimationInstance.js} +28 -68
- package/cjs/components/height-animation/style/_height-animation.scss +3 -0
- package/cjs/components/height-animation/style/dnb-height-animation.css +2 -0
- package/cjs/components/height-animation/style/dnb-height-animation.min.css +1 -1
- package/cjs/components/height-animation/useHeightAnimation.d.ts +4 -4
- package/cjs/components/height-animation/useHeightAnimation.js +3 -3
- package/cjs/components/help-button/style/dnb-help-button.css +18 -6
- package/cjs/components/help-button/style/dnb-help-button.min.css +1 -1
- package/cjs/components/icon/Icon.js +1 -1
- package/cjs/components/index.d.ts +2 -1
- package/cjs/components/index.js +8 -0
- package/cjs/components/input/Input.js +1 -1
- package/cjs/components/input/style/dnb-input.css +36 -12
- package/cjs/components/input/style/dnb-input.min.css +1 -1
- package/cjs/components/input-masked/style/dnb-input-masked.css +36 -12
- package/cjs/components/input-masked/style/dnb-input-masked.min.css +1 -1
- package/cjs/components/lib.d.ts +22 -17
- package/cjs/components/lib.js +9 -0
- package/cjs/components/modal/ModalContent.js +2 -2
- package/cjs/components/modal/parts/ModalHeader.d.ts +2 -2
- package/cjs/components/modal/parts/ModalHeaderBar.d.ts +1 -1
- package/cjs/components/modal/parts/ModalInner.d.ts +1 -1
- package/cjs/components/modal/style/dnb-modal.css +93 -52
- package/cjs/components/modal/style/dnb-modal.min.css +1 -1
- package/cjs/components/number-format/style/dnb-number-format.css +15 -5
- package/cjs/components/number-format/style/dnb-number-format.min.css +1 -1
- package/cjs/components/pagination/PaginationBar.d.ts +8 -6
- package/cjs/components/pagination/PaginationBar.js +21 -22
- package/cjs/components/pagination/style/dnb-pagination.css +18 -6
- package/cjs/components/pagination/style/dnb-pagination.min.css +1 -1
- package/cjs/components/radio/style/dnb-radio.css +3 -1
- package/cjs/components/radio/style/dnb-radio.min.css +1 -1
- package/cjs/components/section/Section.d.ts +4 -3
- package/cjs/components/slider/SliderThumb.js +17 -4
- package/cjs/components/slider/SliderTrack.js +3 -6
- package/cjs/components/slider/hooks/useSliderEvents.d.ts +2 -2
- package/cjs/components/slider/hooks/useSliderEvents.js +3 -2
- package/cjs/components/slider/style/_slider.scss +4 -3
- package/cjs/components/slider/style/dnb-slider.css +41 -13
- package/cjs/components/slider/style/dnb-slider.min.css +1 -1
- package/cjs/components/space/Space.d.ts +83 -80
- package/cjs/components/space/Space.js +59 -54
- package/cjs/components/space/SpacingHelper.d.ts +4 -39
- package/cjs/components/space/SpacingHelper.js +21 -369
- package/cjs/components/space/SpacingUtils.d.ts +38 -0
- package/cjs/components/space/SpacingUtils.js +375 -0
- package/cjs/components/space/types.d.ts +34 -0
- package/cjs/components/space/types.js +1 -0
- package/cjs/components/step-indicator/StepIndicatorItem.js +2 -2
- package/cjs/components/step-indicator/StepIndicatorTriggerButton.js +2 -2
- package/cjs/components/step-indicator/style/_step-indicator.scss +1 -1
- package/cjs/components/step-indicator/style/dnb-step-indicator.css +21 -7
- package/cjs/components/step-indicator/style/dnb-step-indicator.min.css +1 -1
- package/cjs/components/switch/style/dnb-switch.css +3 -1
- package/cjs/components/switch/style/dnb-switch.min.css +1 -1
- package/cjs/components/tabs/style/_tabs.scss +1 -1
- package/cjs/components/tabs/style/dnb-tabs.css +3 -1
- package/cjs/components/tabs/style/dnb-tabs.min.css +1 -1
- package/cjs/components/tag/Tag.d.ts +2 -2
- package/cjs/components/tag/style/dnb-tag.css +18 -6
- package/cjs/components/tag/style/dnb-tag.min.css +1 -1
- package/cjs/components/textarea/style/dnb-textarea.css +3 -1
- package/cjs/components/textarea/style/dnb-textarea.min.css +1 -1
- package/cjs/components/toggle-button/style/dnb-toggle-button.css +27 -9
- package/cjs/components/toggle-button/style/dnb-toggle-button.min.css +2 -2
- package/cjs/components/tooltip/Tooltip.js +21 -18
- package/cjs/components/tooltip/TooltipContainer.js +48 -19
- package/cjs/components/tooltip/TooltipHelpers.d.ts +1 -1
- package/cjs/components/tooltip/TooltipHelpers.js +5 -9
- package/cjs/components/tooltip/TooltipPortal.d.ts +1 -1
- package/cjs/components/tooltip/TooltipPortal.js +54 -31
- package/cjs/components/tooltip/TooltipWithEvents.d.ts +1 -1
- package/cjs/components/tooltip/TooltipWithEvents.js +67 -43
- package/cjs/components/tooltip/style/_tooltip.scss +6 -6
- package/cjs/components/tooltip/style/dnb-tooltip.css +15 -5
- package/cjs/components/tooltip/style/dnb-tooltip.min.css +1 -1
- package/cjs/components/tooltip/types.d.ts +1 -0
- package/cjs/components/upload/Upload.d.ts +10 -0
- package/cjs/components/upload/Upload.js +201 -0
- package/cjs/components/upload/UploadContext.d.ts +7 -0
- package/cjs/components/upload/UploadContext.js +16 -0
- package/cjs/components/upload/UploadDropzone.d.ts +3 -0
- package/cjs/components/upload/UploadDropzone.js +147 -0
- package/cjs/components/upload/UploadFileInput.d.ts +3 -0
- package/cjs/components/upload/UploadFileInput.js +123 -0
- package/cjs/components/upload/UploadFileList.d.ts +3 -0
- package/cjs/components/upload/UploadFileList.js +79 -0
- package/cjs/components/upload/UploadFileListCell.d.ts +19 -0
- package/cjs/components/upload/UploadFileListCell.js +171 -0
- package/cjs/components/upload/UploadInfo.d.ts +3 -0
- package/cjs/components/upload/UploadInfo.js +71 -0
- package/cjs/components/upload/UploadStatus.d.ts +3 -0
- package/cjs/components/upload/UploadStatus.js +43 -0
- package/cjs/components/upload/UploadVerify.d.ts +2 -0
- package/cjs/components/upload/UploadVerify.js +58 -0
- package/cjs/components/upload/index.d.ts +3 -0
- package/cjs/components/upload/index.js +52 -0
- package/cjs/components/upload/style/_upload.scss +91 -0
- package/cjs/components/upload/style/dnb-upload.css +1210 -0
- package/cjs/components/upload/style/dnb-upload.min.css +1 -0
- package/cjs/components/upload/style/dnb-upload.scss +16 -0
- package/cjs/components/upload/style/index.d.ts +1 -0
- package/cjs/components/upload/style/index.js +3 -0
- package/cjs/components/upload/style/themes/dnb-upload-theme-ui.css +38 -0
- package/cjs/components/upload/style/themes/dnb-upload-theme-ui.min.css +1 -0
- package/cjs/components/upload/style/themes/dnb-upload-theme-ui.scss +46 -0
- package/cjs/components/upload/style.d.ts +1 -0
- package/cjs/components/upload/style.js +3 -0
- package/cjs/components/upload/types.d.ts +67 -0
- package/cjs/components/upload/types.js +1 -0
- package/cjs/components/upload/useUpload.d.ts +14 -0
- package/cjs/components/upload/useUpload.js +36 -0
- package/cjs/elements/Anchor.d.ts +3 -2
- package/cjs/elements/Anchor.js +4 -2
- package/cjs/elements/Blockquote.js +1 -1
- package/cjs/elements/Code.js +1 -1
- package/cjs/elements/Dd.js +1 -1
- package/cjs/elements/Div.js +1 -1
- package/cjs/elements/Dl.d.ts +3 -3
- package/cjs/elements/Dl.js +10 -5
- package/cjs/elements/Dt.d.ts +1 -4
- package/cjs/elements/Dt.js +2 -2
- package/cjs/elements/Element.d.ts +33 -8
- package/cjs/elements/Element.js +5 -3
- package/cjs/elements/H.d.ts +1 -0
- package/cjs/elements/H.js +6 -4
- package/cjs/elements/H1.js +1 -1
- package/cjs/elements/H2.js +1 -1
- package/cjs/elements/H3.js +1 -1
- package/cjs/elements/H4.js +1 -1
- package/cjs/elements/H5.js +1 -1
- package/cjs/elements/H6.js +1 -1
- package/cjs/elements/Hr.js +1 -1
- package/cjs/elements/Img.js +2 -2
- package/cjs/elements/Li.js +1 -1
- package/cjs/elements/Link.d.ts +1 -1
- package/cjs/elements/Ol.js +1 -1
- package/cjs/elements/P.js +1 -1
- package/cjs/elements/Span.js +1 -1
- package/cjs/elements/Ul.js +1 -1
- package/cjs/elements/lib.d.ts +5 -3
- package/cjs/fragments/drawer-list/DrawerListPortal.js +14 -9
- package/cjs/fragments/drawer-list/DrawerListProvider.js +47 -44
- package/cjs/fragments/drawer-list/style/_drawer-list.scss +10 -0
- package/cjs/icons/hierarchy.d.ts +2 -0
- package/cjs/icons/hierarchy.js +42 -0
- package/cjs/icons/hierarchy_medium.d.ts +2 -0
- package/cjs/icons/hierarchy_medium.js +42 -0
- package/cjs/icons/icons-meta.json +42 -0
- package/cjs/icons/icons-pdf.lock +78 -0
- package/cjs/icons/icons-svg.lock +78 -0
- package/cjs/icons/index.d.ts +7 -1
- package/cjs/icons/index.js +48 -0
- package/cjs/icons/layout_card.d.ts +2 -0
- package/cjs/icons/layout_card.js +43 -0
- package/cjs/icons/layout_card_medium.d.ts +2 -0
- package/cjs/icons/layout_card_medium.js +43 -0
- package/cjs/icons/secondary_icons.d.ts +4 -1
- package/cjs/icons/secondary_icons.js +24 -0
- package/cjs/icons/secondary_icons_medium.d.ts +4 -1
- package/cjs/icons/secondary_icons_medium.js +24 -0
- package/cjs/icons/unlock.d.ts +2 -0
- package/cjs/icons/unlock.js +42 -0
- package/cjs/icons/unlock_medium.d.ts +2 -0
- package/cjs/icons/unlock_medium.js +42 -0
- package/cjs/index.d.ts +2 -1
- package/cjs/index.js +8 -0
- package/cjs/shared/Context.d.ts +2 -0
- package/cjs/shared/Eufemia.js +1 -1
- package/cjs/shared/component-helper.d.ts +1 -1
- package/cjs/shared/component-helper.js +6 -12
- package/cjs/shared/locales/en-GB.d.ts +15 -0
- package/cjs/shared/locales/en-GB.js +15 -0
- package/cjs/shared/locales/en-US.d.ts +15 -0
- package/cjs/shared/locales/index.d.ts +30 -0
- package/cjs/shared/locales/nb-NO.d.ts +15 -0
- package/cjs/shared/locales/nb-NO.js +15 -0
- package/cjs/shared/types.d.ts +4 -21
- package/cjs/shared/types.js +24 -1
- package/cjs/style/core/helper-classes/helper-classes.scss +1 -1
- package/cjs/style/core/utilities.scss +0 -2
- package/cjs/style/dnb-ui-components.css +238 -82
- package/cjs/style/dnb-ui-components.min.css +4 -4
- package/cjs/style/dnb-ui-components.scss +1 -0
- package/cjs/style/dnb-ui-elements.css +55 -35
- package/cjs/style/dnb-ui-elements.min.css +1 -1
- package/cjs/style/dnb-ui-fragments.css +15 -0
- package/cjs/style/dnb-ui-fragments.min.css +1 -1
- package/cjs/style/dnb-ui-tags.css +108 -69
- package/cjs/style/dnb-ui-tags.min.css +1 -1
- package/cjs/style/elements/lists.scss +28 -16
- package/cjs/style/elements/ui-spacing.scss +3 -1
- package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.css +94 -35
- package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
- package/cjs/style/themes/theme-ui/dnb-theme-ui.css +94 -35
- package/cjs/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/cjs/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
- package/components/Upload.d.ts +3 -0
- package/components/Upload.js +3 -0
- package/components/accordion/Accordion.d.ts +5 -0
- package/components/accordion/Accordion.js +5 -5
- package/components/accordion/AccordionContent.d.ts +2 -7
- package/components/accordion/AccordionContent.js +121 -184
- package/components/accordion/AccordionHeader.d.ts +2 -0
- package/components/accordion/AccordionHeader.js +6 -3
- package/components/accordion/AccordionPropTypes.d.ts +2 -0
- package/components/accordion/AccordionPropTypes.js +2 -0
- package/components/accordion/AccordionProvider.d.ts +1 -0
- package/components/accordion/AccordionProvider.js +2 -1
- package/components/accordion/style/_accordion.scss +11 -27
- package/components/accordion/style/dnb-accordion.css +7 -19
- package/components/accordion/style/dnb-accordion.min.css +1 -1
- package/components/autocomplete/Autocomplete.d.ts +1 -1
- package/components/autocomplete/Autocomplete.js +2 -2
- package/components/autocomplete/style/_autocomplete.scss +0 -1
- package/components/autocomplete/style/dnb-autocomplete.css +57 -25
- package/components/autocomplete/style/dnb-autocomplete.min.css +1 -1
- package/components/avatar/Avatar.d.ts +2 -2
- package/components/breadcrumb/style/_breadcrumb.scss +3 -2
- package/components/breadcrumb/style/dnb-breadcrumb.css +29 -7
- package/components/breadcrumb/style/dnb-breadcrumb.min.css +1 -1
- package/components/button/style/dnb-button.css +18 -6
- package/components/button/style/dnb-button.min.css +1 -1
- package/components/button/style/themes/dnb-button-theme-ui.scss +1 -1
- package/components/checkbox/style/dnb-checkbox.css +3 -1
- package/components/checkbox/style/dnb-checkbox.min.css +1 -1
- package/components/date-picker/style/dnb-date-picker.css +84 -28
- package/components/date-picker/style/dnb-date-picker.min.css +2 -2
- package/components/dialog/parts/DialogBody.d.ts +2 -2
- package/components/dialog/parts/DialogHeader.d.ts +2 -2
- package/components/dialog/parts/DialogNavigation.d.ts +2 -2
- package/components/dialog/style/dnb-dialog.css +93 -52
- package/components/dialog/style/dnb-dialog.min.css +1 -1
- package/components/drawer/Drawer.d.ts +1 -1
- package/components/drawer/Drawer.js +5 -1
- package/components/drawer/DrawerContent.js +22 -7
- package/components/drawer/parts/DrawerBody.d.ts +2 -2
- package/components/drawer/parts/DrawerContentContext.d.ts +2 -0
- package/components/drawer/parts/DrawerContentContext.js +2 -0
- package/components/drawer/parts/DrawerHeader.d.ts +2 -2
- package/components/drawer/parts/DrawerHeader.js +7 -0
- package/components/drawer/parts/DrawerNavigation.d.ts +2 -2
- package/components/drawer/parts/DrawerNavigation.js +7 -0
- package/components/drawer/style/_drawer.scss +26 -28
- package/components/drawer/style/dnb-drawer.css +167 -98
- package/components/drawer/style/dnb-drawer.min.css +1 -1
- package/components/dropdown/Dropdown.d.ts +1 -1
- package/components/dropdown/style/_dropdown.scss +0 -1
- package/components/dropdown/style/dnb-dropdown.css +21 -10
- package/components/dropdown/style/dnb-dropdown.min.css +1 -1
- package/components/form-status/FormStatus.js +2 -2
- package/components/form-status/style/_form-status.scss +3 -3
- package/components/form-status/style/dnb-form-status.css +3 -1
- package/components/form-status/style/dnb-form-status.min.css +1 -1
- package/components/global-error/style/dnb-global-error.css +18 -6
- package/components/global-error/style/dnb-global-error.min.css +1 -1
- package/components/global-status/GlobalStatus.js +2 -2
- package/components/global-status/style/_global-status.scss +1 -1
- package/components/global-status/style/dnb-global-status.css +19 -7
- package/components/global-status/style/dnb-global-status.min.css +1 -1
- package/components/height-animation/HeightAnimation.d.ts +9 -3
- package/components/height-animation/HeightAnimation.js +7 -4
- package/components/height-animation/HeightAnimationInstance.d.ts +58 -0
- package/{shared/AnimateHeight.js → components/height-animation/HeightAnimationInstance.js} +28 -68
- package/components/height-animation/style/_height-animation.scss +3 -0
- package/components/height-animation/style/dnb-height-animation.css +2 -0
- package/components/height-animation/style/dnb-height-animation.min.css +1 -1
- package/components/height-animation/useHeightAnimation.d.ts +4 -4
- package/components/height-animation/useHeightAnimation.js +3 -3
- package/components/help-button/style/dnb-help-button.css +18 -6
- package/components/help-button/style/dnb-help-button.min.css +1 -1
- package/components/icon/Icon.js +1 -1
- package/components/index.d.ts +2 -1
- package/components/index.js +2 -1
- package/components/input/Input.js +1 -1
- package/components/input/style/dnb-input.css +36 -12
- package/components/input/style/dnb-input.min.css +1 -1
- package/components/input-masked/style/dnb-input-masked.css +36 -12
- package/components/input-masked/style/dnb-input-masked.min.css +1 -1
- package/components/lib.d.ts +22 -17
- package/components/lib.js +3 -1
- package/components/modal/ModalContent.js +2 -2
- package/components/modal/parts/ModalHeader.d.ts +2 -2
- package/components/modal/parts/ModalHeaderBar.d.ts +1 -1
- package/components/modal/parts/ModalInner.d.ts +1 -1
- package/components/modal/style/dnb-modal.css +93 -52
- package/components/modal/style/dnb-modal.min.css +1 -1
- package/components/number-format/style/dnb-number-format.css +15 -5
- package/components/number-format/style/dnb-number-format.min.css +1 -1
- package/components/pagination/PaginationBar.d.ts +8 -6
- package/components/pagination/PaginationBar.js +21 -22
- package/components/pagination/style/dnb-pagination.css +18 -6
- package/components/pagination/style/dnb-pagination.min.css +1 -1
- package/components/radio/style/dnb-radio.css +3 -1
- package/components/radio/style/dnb-radio.min.css +1 -1
- package/components/section/Section.d.ts +4 -3
- package/components/slider/SliderThumb.js +18 -5
- package/components/slider/SliderTrack.js +3 -6
- package/components/slider/hooks/useSliderEvents.d.ts +2 -2
- package/components/slider/hooks/useSliderEvents.js +3 -2
- package/components/slider/style/_slider.scss +4 -3
- package/components/slider/style/dnb-slider.css +41 -13
- package/components/slider/style/dnb-slider.min.css +1 -1
- package/components/space/Space.d.ts +83 -80
- package/components/space/Space.js +44 -41
- package/components/space/SpacingHelper.d.ts +4 -39
- package/components/space/SpacingHelper.js +2 -277
- package/components/space/SpacingUtils.d.ts +38 -0
- package/components/space/SpacingUtils.js +277 -0
- package/components/space/types.d.ts +34 -0
- package/components/space/types.js +1 -0
- package/components/step-indicator/StepIndicatorItem.js +2 -2
- package/components/step-indicator/StepIndicatorTriggerButton.js +2 -2
- package/components/step-indicator/style/_step-indicator.scss +1 -1
- package/components/step-indicator/style/dnb-step-indicator.css +21 -7
- package/components/step-indicator/style/dnb-step-indicator.min.css +1 -1
- package/components/switch/style/dnb-switch.css +3 -1
- package/components/switch/style/dnb-switch.min.css +1 -1
- package/components/tabs/style/_tabs.scss +1 -1
- package/components/tabs/style/dnb-tabs.css +3 -1
- package/components/tabs/style/dnb-tabs.min.css +1 -1
- package/components/tag/Tag.d.ts +2 -2
- package/components/tag/style/dnb-tag.css +18 -6
- package/components/tag/style/dnb-tag.min.css +1 -1
- package/components/textarea/style/dnb-textarea.css +3 -1
- package/components/textarea/style/dnb-textarea.min.css +1 -1
- package/components/toggle-button/style/dnb-toggle-button.css +27 -9
- package/components/toggle-button/style/dnb-toggle-button.min.css +2 -2
- package/components/tooltip/Tooltip.js +21 -18
- package/components/tooltip/TooltipContainer.js +47 -20
- package/components/tooltip/TooltipHelpers.d.ts +1 -1
- package/components/tooltip/TooltipHelpers.js +5 -9
- package/components/tooltip/TooltipPortal.d.ts +1 -1
- package/components/tooltip/TooltipPortal.js +53 -30
- package/components/tooltip/TooltipWithEvents.d.ts +1 -1
- package/components/tooltip/TooltipWithEvents.js +66 -43
- package/components/tooltip/style/_tooltip.scss +6 -6
- package/components/tooltip/style/dnb-tooltip.css +15 -5
- package/components/tooltip/style/dnb-tooltip.min.css +1 -1
- package/components/tooltip/types.d.ts +1 -0
- package/components/upload/Upload.d.ts +10 -0
- package/components/upload/Upload.js +129 -0
- package/components/upload/UploadContext.d.ts +7 -0
- package/components/upload/UploadContext.js +6 -0
- package/components/upload/UploadDropzone.d.ts +3 -0
- package/components/upload/UploadDropzone.js +90 -0
- package/components/upload/UploadFileInput.d.ts +3 -0
- package/components/upload/UploadFileInput.js +79 -0
- package/components/upload/UploadFileList.d.ts +3 -0
- package/components/upload/UploadFileList.js +62 -0
- package/components/upload/UploadFileListCell.d.ts +19 -0
- package/components/upload/UploadFileListCell.js +128 -0
- package/components/upload/UploadInfo.d.ts +3 -0
- package/components/upload/UploadInfo.js +48 -0
- package/components/upload/UploadStatus.d.ts +3 -0
- package/components/upload/UploadStatus.js +26 -0
- package/components/upload/UploadVerify.d.ts +2 -0
- package/components/upload/UploadVerify.js +42 -0
- package/components/upload/index.d.ts +3 -0
- package/components/upload/index.js +3 -0
- package/components/upload/style/_upload.scss +91 -0
- package/components/upload/style/dnb-upload.css +1210 -0
- package/components/upload/style/dnb-upload.min.css +1 -0
- package/components/upload/style/dnb-upload.scss +16 -0
- package/components/upload/style/index.d.ts +1 -0
- package/components/upload/style/index.js +1 -0
- package/components/upload/style/themes/dnb-upload-theme-ui.css +38 -0
- package/components/upload/style/themes/dnb-upload-theme-ui.min.css +1 -0
- package/components/upload/style/themes/dnb-upload-theme-ui.scss +46 -0
- package/components/upload/style.d.ts +1 -0
- package/components/upload/style.js +1 -0
- package/components/upload/types.d.ts +67 -0
- package/components/upload/types.js +1 -0
- package/components/upload/useUpload.d.ts +14 -0
- package/components/upload/useUpload.js +28 -0
- package/elements/Anchor.d.ts +3 -2
- package/elements/Anchor.js +4 -2
- package/elements/Blockquote.js +1 -1
- package/elements/Code.js +1 -1
- package/elements/Dd.js +1 -1
- package/elements/Div.js +1 -1
- package/elements/Dl.d.ts +3 -3
- package/elements/Dl.js +10 -5
- package/elements/Dt.d.ts +1 -4
- package/elements/Dt.js +2 -2
- package/elements/Element.d.ts +33 -8
- package/elements/Element.js +5 -3
- package/elements/H.d.ts +1 -0
- package/elements/H.js +6 -4
- package/elements/H1.js +1 -1
- package/elements/H2.js +1 -1
- package/elements/H3.js +1 -1
- package/elements/H4.js +1 -1
- package/elements/H5.js +1 -1
- package/elements/H6.js +1 -1
- package/elements/Hr.js +1 -1
- package/elements/Img.js +2 -2
- package/elements/Li.js +1 -1
- package/elements/Link.d.ts +1 -1
- package/elements/Ol.js +1 -1
- package/elements/P.js +1 -1
- package/elements/Span.js +1 -1
- package/elements/Ul.js +1 -1
- package/elements/lib.d.ts +5 -3
- package/es/components/Upload.d.ts +3 -0
- package/es/components/Upload.js +3 -0
- package/es/components/accordion/Accordion.d.ts +5 -0
- package/es/components/accordion/Accordion.js +6 -8
- package/es/components/accordion/AccordionContent.d.ts +2 -7
- package/es/components/accordion/AccordionContent.js +112 -135
- package/es/components/accordion/AccordionHeader.d.ts +2 -0
- package/es/components/accordion/AccordionHeader.js +6 -3
- package/es/components/accordion/AccordionPropTypes.d.ts +2 -0
- package/es/components/accordion/AccordionPropTypes.js +2 -0
- package/es/components/accordion/AccordionProvider.d.ts +1 -0
- package/es/components/accordion/AccordionProvider.js +2 -1
- package/es/components/accordion/style/_accordion.scss +11 -27
- package/es/components/accordion/style/dnb-accordion.css +7 -19
- package/es/components/accordion/style/dnb-accordion.min.css +1 -1
- package/es/components/autocomplete/Autocomplete.d.ts +1 -1
- package/es/components/autocomplete/Autocomplete.js +2 -2
- package/es/components/autocomplete/style/_autocomplete.scss +0 -1
- package/es/components/autocomplete/style/dnb-autocomplete.css +57 -25
- package/es/components/autocomplete/style/dnb-autocomplete.min.css +1 -1
- package/es/components/avatar/Avatar.d.ts +2 -2
- package/es/components/breadcrumb/style/_breadcrumb.scss +3 -2
- package/es/components/breadcrumb/style/dnb-breadcrumb.css +29 -7
- package/es/components/breadcrumb/style/dnb-breadcrumb.min.css +1 -1
- package/es/components/button/style/dnb-button.css +18 -6
- package/es/components/button/style/dnb-button.min.css +1 -1
- package/es/components/button/style/themes/dnb-button-theme-ui.scss +1 -1
- package/es/components/checkbox/style/dnb-checkbox.css +3 -1
- package/es/components/checkbox/style/dnb-checkbox.min.css +1 -1
- package/es/components/date-picker/style/dnb-date-picker.css +84 -28
- package/es/components/date-picker/style/dnb-date-picker.min.css +2 -2
- package/es/components/dialog/parts/DialogBody.d.ts +2 -2
- package/es/components/dialog/parts/DialogHeader.d.ts +2 -2
- package/es/components/dialog/parts/DialogNavigation.d.ts +2 -2
- package/es/components/dialog/style/dnb-dialog.css +93 -52
- package/es/components/dialog/style/dnb-dialog.min.css +1 -1
- package/es/components/drawer/Drawer.d.ts +1 -1
- package/es/components/drawer/Drawer.js +5 -1
- package/es/components/drawer/DrawerContent.js +22 -7
- package/es/components/drawer/parts/DrawerBody.d.ts +2 -2
- package/es/components/drawer/parts/DrawerContentContext.d.ts +2 -0
- package/es/components/drawer/parts/DrawerContentContext.js +2 -0
- package/es/components/drawer/parts/DrawerHeader.d.ts +2 -2
- package/es/components/drawer/parts/DrawerHeader.js +7 -0
- package/es/components/drawer/parts/DrawerNavigation.d.ts +2 -2
- package/es/components/drawer/parts/DrawerNavigation.js +7 -0
- package/es/components/drawer/style/_drawer.scss +26 -28
- package/es/components/drawer/style/dnb-drawer.css +167 -98
- package/es/components/drawer/style/dnb-drawer.min.css +1 -1
- package/es/components/dropdown/Dropdown.d.ts +1 -1
- package/es/components/dropdown/style/_dropdown.scss +0 -1
- package/es/components/dropdown/style/dnb-dropdown.css +21 -10
- package/es/components/dropdown/style/dnb-dropdown.min.css +1 -1
- package/es/components/form-status/FormStatus.js +2 -2
- package/es/components/form-status/style/_form-status.scss +3 -3
- package/es/components/form-status/style/dnb-form-status.css +3 -1
- package/es/components/form-status/style/dnb-form-status.min.css +1 -1
- package/es/components/global-error/style/dnb-global-error.css +18 -6
- package/es/components/global-error/style/dnb-global-error.min.css +1 -1
- package/es/components/global-status/GlobalStatus.js +2 -2
- package/es/components/global-status/style/_global-status.scss +1 -1
- package/es/components/global-status/style/dnb-global-status.css +19 -7
- package/es/components/global-status/style/dnb-global-status.min.css +1 -1
- package/es/components/height-animation/HeightAnimation.d.ts +9 -3
- package/es/components/height-animation/HeightAnimation.js +6 -4
- package/es/components/height-animation/HeightAnimationInstance.d.ts +58 -0
- package/es/{shared/AnimateHeight.js → components/height-animation/HeightAnimationInstance.js} +3 -36
- package/es/components/height-animation/style/_height-animation.scss +3 -0
- package/es/components/height-animation/style/dnb-height-animation.css +2 -0
- package/es/components/height-animation/style/dnb-height-animation.min.css +1 -1
- package/es/components/height-animation/useHeightAnimation.d.ts +4 -4
- package/es/components/height-animation/useHeightAnimation.js +3 -3
- package/es/components/help-button/style/dnb-help-button.css +18 -6
- package/es/components/help-button/style/dnb-help-button.min.css +1 -1
- package/es/components/icon/Icon.js +1 -1
- package/es/components/index.d.ts +2 -1
- package/es/components/index.js +2 -1
- package/es/components/input/Input.js +1 -1
- package/es/components/input/style/dnb-input.css +36 -12
- package/es/components/input/style/dnb-input.min.css +1 -1
- package/es/components/input-masked/style/dnb-input-masked.css +36 -12
- package/es/components/input-masked/style/dnb-input-masked.min.css +1 -1
- package/es/components/lib.d.ts +22 -17
- package/es/components/lib.js +3 -1
- package/es/components/modal/ModalContent.js +2 -2
- package/es/components/modal/parts/ModalHeader.d.ts +2 -2
- package/es/components/modal/parts/ModalHeaderBar.d.ts +1 -1
- package/es/components/modal/parts/ModalInner.d.ts +1 -1
- package/es/components/modal/style/dnb-modal.css +93 -52
- package/es/components/modal/style/dnb-modal.min.css +1 -1
- package/es/components/number-format/style/dnb-number-format.css +15 -5
- package/es/components/number-format/style/dnb-number-format.min.css +1 -1
- package/es/components/pagination/PaginationBar.d.ts +8 -6
- package/es/components/pagination/PaginationBar.js +17 -18
- package/es/components/pagination/style/dnb-pagination.css +18 -6
- package/es/components/pagination/style/dnb-pagination.min.css +1 -1
- package/es/components/radio/style/dnb-radio.css +3 -1
- package/es/components/radio/style/dnb-radio.min.css +1 -1
- package/es/components/section/Section.d.ts +4 -3
- package/es/components/slider/SliderThumb.js +18 -5
- package/es/components/slider/SliderTrack.js +3 -6
- package/es/components/slider/hooks/useSliderEvents.d.ts +2 -2
- package/es/components/slider/hooks/useSliderEvents.js +3 -2
- package/es/components/slider/style/_slider.scss +4 -3
- package/es/components/slider/style/dnb-slider.css +41 -13
- package/es/components/slider/style/dnb-slider.min.css +1 -1
- package/es/components/space/Space.d.ts +83 -80
- package/es/components/space/Space.js +35 -31
- package/es/components/space/SpacingHelper.d.ts +4 -39
- package/es/components/space/SpacingHelper.js +2 -225
- package/es/components/space/SpacingUtils.d.ts +38 -0
- package/es/components/space/SpacingUtils.js +225 -0
- package/es/components/space/types.d.ts +34 -0
- package/es/components/space/types.js +1 -0
- package/es/components/step-indicator/StepIndicatorItem.js +2 -2
- package/es/components/step-indicator/StepIndicatorTriggerButton.js +2 -2
- package/es/components/step-indicator/style/_step-indicator.scss +1 -1
- package/es/components/step-indicator/style/dnb-step-indicator.css +21 -7
- package/es/components/step-indicator/style/dnb-step-indicator.min.css +1 -1
- package/es/components/switch/style/dnb-switch.css +3 -1
- package/es/components/switch/style/dnb-switch.min.css +1 -1
- package/es/components/tabs/style/_tabs.scss +1 -1
- package/es/components/tabs/style/dnb-tabs.css +3 -1
- package/es/components/tabs/style/dnb-tabs.min.css +1 -1
- package/es/components/tag/Tag.d.ts +2 -2
- package/es/components/tag/style/dnb-tag.css +18 -6
- package/es/components/tag/style/dnb-tag.min.css +1 -1
- package/es/components/textarea/style/dnb-textarea.css +3 -1
- package/es/components/textarea/style/dnb-textarea.min.css +1 -1
- package/es/components/toggle-button/style/dnb-toggle-button.css +27 -9
- package/es/components/toggle-button/style/dnb-toggle-button.min.css +2 -2
- package/es/components/tooltip/Tooltip.js +13 -15
- package/es/components/tooltip/TooltipContainer.js +43 -22
- package/es/components/tooltip/TooltipHelpers.d.ts +1 -1
- package/es/components/tooltip/TooltipHelpers.js +5 -9
- package/es/components/tooltip/TooltipPortal.d.ts +1 -1
- package/es/components/tooltip/TooltipPortal.js +51 -30
- package/es/components/tooltip/TooltipWithEvents.d.ts +1 -1
- package/es/components/tooltip/TooltipWithEvents.js +68 -44
- package/es/components/tooltip/style/_tooltip.scss +6 -6
- package/es/components/tooltip/style/dnb-tooltip.css +15 -5
- package/es/components/tooltip/style/dnb-tooltip.min.css +1 -1
- package/es/components/tooltip/types.d.ts +1 -0
- package/es/components/upload/Upload.d.ts +10 -0
- package/es/components/upload/Upload.js +116 -0
- package/es/components/upload/UploadContext.d.ts +7 -0
- package/es/components/upload/UploadContext.js +6 -0
- package/es/components/upload/UploadDropzone.d.ts +3 -0
- package/es/components/upload/UploadDropzone.js +82 -0
- package/es/components/upload/UploadFileInput.d.ts +3 -0
- package/es/components/upload/UploadFileInput.js +76 -0
- package/es/components/upload/UploadFileList.d.ts +3 -0
- package/es/components/upload/UploadFileList.js +59 -0
- package/es/components/upload/UploadFileListCell.d.ts +19 -0
- package/es/components/upload/UploadFileListCell.js +124 -0
- package/es/components/upload/UploadInfo.d.ts +3 -0
- package/es/components/upload/UploadInfo.js +45 -0
- package/es/components/upload/UploadStatus.d.ts +3 -0
- package/es/components/upload/UploadStatus.js +25 -0
- package/es/components/upload/UploadVerify.d.ts +2 -0
- package/es/components/upload/UploadVerify.js +39 -0
- package/es/components/upload/index.d.ts +3 -0
- package/es/components/upload/index.js +3 -0
- package/es/components/upload/style/_upload.scss +91 -0
- package/es/components/upload/style/dnb-upload.css +1210 -0
- package/es/components/upload/style/dnb-upload.min.css +1 -0
- package/es/components/upload/style/dnb-upload.scss +16 -0
- package/es/components/upload/style/index.d.ts +1 -0
- package/es/components/upload/style/index.js +1 -0
- package/es/components/upload/style/themes/dnb-upload-theme-ui.css +38 -0
- package/es/components/upload/style/themes/dnb-upload-theme-ui.min.css +1 -0
- package/es/components/upload/style/themes/dnb-upload-theme-ui.scss +46 -0
- package/es/components/upload/style.d.ts +1 -0
- package/es/components/upload/style.js +1 -0
- package/es/components/upload/types.d.ts +67 -0
- package/es/components/upload/types.js +1 -0
- package/es/components/upload/useUpload.d.ts +14 -0
- package/es/components/upload/useUpload.js +29 -0
- package/es/elements/Anchor.d.ts +3 -2
- package/es/elements/Anchor.js +4 -2
- package/es/elements/Blockquote.js +1 -1
- package/es/elements/Code.js +1 -1
- package/es/elements/Dd.js +1 -1
- package/es/elements/Div.js +1 -1
- package/es/elements/Dl.d.ts +3 -3
- package/es/elements/Dl.js +14 -8
- package/es/elements/Dt.d.ts +1 -4
- package/es/elements/Dt.js +2 -2
- package/es/elements/Element.d.ts +33 -8
- package/es/elements/Element.js +5 -3
- package/es/elements/H.d.ts +1 -0
- package/es/elements/H.js +6 -4
- package/es/elements/H1.js +1 -1
- package/es/elements/H2.js +1 -1
- package/es/elements/H3.js +1 -1
- package/es/elements/H4.js +1 -1
- package/es/elements/H5.js +1 -1
- package/es/elements/H6.js +1 -1
- package/es/elements/Hr.js +1 -1
- package/es/elements/Img.js +2 -2
- package/es/elements/Li.js +1 -1
- package/es/elements/Link.d.ts +1 -1
- package/es/elements/Ol.js +1 -1
- package/es/elements/P.js +1 -1
- package/es/elements/Span.js +1 -1
- package/es/elements/Ul.js +1 -1
- package/es/elements/lib.d.ts +5 -3
- package/es/fragments/drawer-list/DrawerListPortal.js +17 -12
- package/es/fragments/drawer-list/DrawerListProvider.js +47 -43
- package/es/fragments/drawer-list/style/_drawer-list.scss +10 -0
- package/es/icons/hierarchy.d.ts +2 -0
- package/es/icons/hierarchy.js +28 -0
- package/es/icons/hierarchy_medium.d.ts +2 -0
- package/es/icons/hierarchy_medium.js +28 -0
- package/es/icons/icons-meta.json +42 -0
- package/es/icons/icons-pdf.lock +78 -0
- package/es/icons/icons-svg.lock +78 -0
- package/es/icons/index.d.ts +7 -1
- package/es/icons/index.js +7 -1
- package/es/icons/layout_card.d.ts +2 -0
- package/es/icons/layout_card.js +29 -0
- package/es/icons/layout_card_medium.d.ts +2 -0
- package/es/icons/layout_card_medium.js +29 -0
- package/es/icons/secondary_icons.d.ts +4 -1
- package/es/icons/secondary_icons.js +4 -1
- package/es/icons/secondary_icons_medium.d.ts +4 -1
- package/es/icons/secondary_icons_medium.js +4 -1
- package/es/icons/unlock.d.ts +2 -0
- package/es/icons/unlock.js +28 -0
- package/es/icons/unlock_medium.d.ts +2 -0
- package/es/icons/unlock_medium.js +28 -0
- package/es/index.d.ts +2 -1
- package/es/index.js +2 -1
- package/es/shared/Context.d.ts +2 -0
- package/es/shared/Eufemia.js +1 -1
- package/es/shared/component-helper.d.ts +1 -1
- package/es/shared/component-helper.js +3 -9
- package/es/shared/locales/en-GB.d.ts +15 -0
- package/es/shared/locales/en-GB.js +15 -0
- package/es/shared/locales/en-US.d.ts +15 -0
- package/es/shared/locales/index.d.ts +30 -0
- package/es/shared/locales/nb-NO.d.ts +15 -0
- package/es/shared/locales/nb-NO.js +15 -0
- package/es/shared/types.d.ts +4 -21
- package/es/shared/types.js +1 -0
- package/es/style/core/helper-classes/helper-classes.scss +1 -1
- package/es/style/core/utilities.scss +0 -2
- package/es/style/dnb-ui-components.css +238 -82
- package/es/style/dnb-ui-components.min.css +4 -4
- package/es/style/dnb-ui-components.scss +1 -0
- package/es/style/dnb-ui-elements.css +55 -35
- package/es/style/dnb-ui-elements.min.css +1 -1
- package/es/style/dnb-ui-fragments.css +15 -0
- package/es/style/dnb-ui-fragments.min.css +1 -1
- package/es/style/dnb-ui-tags.css +108 -69
- package/es/style/dnb-ui-tags.min.css +1 -1
- package/es/style/elements/lists.scss +28 -16
- package/es/style/elements/ui-spacing.scss +3 -1
- package/es/style/themes/theme-eiendom/dnb-theme-eiendom.css +94 -35
- package/es/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
- package/es/style/themes/theme-ui/dnb-theme-ui.css +94 -35
- package/es/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/es/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
- package/esm/dnb-ui-basis.min.mjs +1 -1
- package/esm/dnb-ui-components.min.mjs +4 -4
- package/esm/dnb-ui-elements.min.mjs +3 -3
- package/esm/dnb-ui-extensions.min.mjs +4 -4
- package/esm/dnb-ui-lib.min.mjs +4 -4
- package/esm/dnb-ui-web-components.min.mjs +4 -4
- package/fragments/drawer-list/DrawerListPortal.js +15 -10
- package/fragments/drawer-list/DrawerListProvider.js +48 -45
- package/fragments/drawer-list/style/_drawer-list.scss +10 -0
- package/icons/hierarchy.d.ts +2 -0
- package/icons/hierarchy.js +30 -0
- package/icons/hierarchy_medium.d.ts +2 -0
- package/icons/hierarchy_medium.js +30 -0
- package/icons/icons-meta.json +42 -0
- package/icons/icons-pdf.lock +78 -0
- package/icons/icons-svg.lock +78 -0
- package/icons/index.d.ts +7 -1
- package/icons/index.js +7 -1
- package/icons/layout_card.d.ts +2 -0
- package/icons/layout_card.js +31 -0
- package/icons/layout_card_medium.d.ts +2 -0
- package/icons/layout_card_medium.js +31 -0
- package/icons/secondary_icons.d.ts +4 -1
- package/icons/secondary_icons.js +4 -1
- package/icons/secondary_icons_medium.d.ts +4 -1
- package/icons/secondary_icons_medium.js +4 -1
- package/icons/unlock.d.ts +2 -0
- package/icons/unlock.js +30 -0
- package/icons/unlock_medium.d.ts +2 -0
- package/icons/unlock_medium.js +30 -0
- package/index.d.ts +2 -1
- package/index.js +2 -1
- package/package.json +1 -1
- package/shared/Context.d.ts +2 -0
- package/shared/Eufemia.js +1 -1
- package/shared/component-helper.d.ts +1 -1
- package/shared/component-helper.js +3 -10
- package/shared/locales/en-GB.d.ts +15 -0
- package/shared/locales/en-GB.js +15 -0
- package/shared/locales/en-US.d.ts +15 -0
- package/shared/locales/index.d.ts +30 -0
- package/shared/locales/nb-NO.d.ts +15 -0
- package/shared/locales/nb-NO.js +15 -0
- package/shared/types.d.ts +4 -21
- package/shared/types.js +1 -0
- package/style/core/helper-classes/helper-classes.scss +1 -1
- package/style/core/utilities.scss +0 -2
- package/style/dnb-ui-components.css +238 -82
- package/style/dnb-ui-components.min.css +4 -4
- package/style/dnb-ui-components.scss +1 -0
- package/style/dnb-ui-elements.css +55 -35
- package/style/dnb-ui-elements.min.css +1 -1
- package/style/dnb-ui-fragments.css +15 -0
- package/style/dnb-ui-fragments.min.css +1 -1
- package/style/dnb-ui-tags.css +108 -69
- package/style/dnb-ui-tags.min.css +1 -1
- package/style/elements/lists.scss +28 -16
- package/style/elements/ui-spacing.scss +3 -1
- package/style/themes/theme-eiendom/dnb-theme-eiendom.css +94 -35
- package/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
- package/style/themes/theme-ui/dnb-theme-ui.css +94 -35
- package/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
- package/style/themes/theme-ui/dnb-theme-ui.scss +1 -0
- package/umd/dnb-ui-basis.min.js +1 -1
- package/umd/dnb-ui-components.min.js +5 -5
- package/umd/dnb-ui-elements.min.js +4 -4
- package/umd/dnb-ui-extensions.min.js +5 -5
- package/umd/dnb-ui-lib.min.js +5 -5
- package/umd/dnb-ui-web-components.min.js +5 -5
- package/cjs/shared/AnimateHeight.d.ts +0 -60
- package/es/shared/AnimateHeight.d.ts +0 -60
- package/shared/AnimateHeight.d.ts +0 -60
package/es/style/dnb-ui-tags.css
CHANGED
|
@@ -681,9 +681,12 @@ a.dnb-button {
|
|
|
681
681
|
.dnb-core-style .dnb-spacing .dnb-h--x-small:not([class*='space__bottom']) {
|
|
682
682
|
margin-bottom: 1rem; }
|
|
683
683
|
|
|
684
|
-
.dnb-spacing .dnb-p:not([class*='dnb-
|
|
685
|
-
.dnb-core-style .dnb-spacing .dnb-p:not([class*='dnb-
|
|
686
|
-
margin-top: 0;
|
|
684
|
+
.dnb-spacing .dnb-p:not([class*='dnb-space__top']),
|
|
685
|
+
.dnb-core-style .dnb-spacing .dnb-p:not([class*='dnb-space__top']) {
|
|
686
|
+
margin-top: 0; }
|
|
687
|
+
|
|
688
|
+
.dnb-spacing .dnb-p:not([class*='dnb-space__bottom']),
|
|
689
|
+
.dnb-core-style .dnb-spacing .dnb-p:not([class*='dnb-space__bottom']) {
|
|
687
690
|
margin-bottom: 1.5rem; }
|
|
688
691
|
|
|
689
692
|
/*
|
|
@@ -812,8 +815,10 @@ a.dnb-button {
|
|
|
812
815
|
color: #a5e1d2;
|
|
813
816
|
color: var(--color-mint-green); }
|
|
814
817
|
|
|
815
|
-
.dnb-spacing .dnb-blockquote:not([class*='dnb-
|
|
816
|
-
margin-top: 0;
|
|
818
|
+
.dnb-spacing .dnb-blockquote:not([class*='dnb-space__top']) {
|
|
819
|
+
margin-top: 0; }
|
|
820
|
+
|
|
821
|
+
.dnb-spacing .dnb-blockquote:not([class*='dnb-space__bottom']) {
|
|
817
822
|
margin-bottom: 1.5rem; }
|
|
818
823
|
|
|
819
824
|
.dnb-spacing .dnb-blockquote p:last-child {
|
|
@@ -958,8 +963,10 @@ a.dnb-button {
|
|
|
958
963
|
line-height: var(--line-height-basis);
|
|
959
964
|
color: currentColor;
|
|
960
965
|
color: var(--theme-color-black-80, currentColor); }
|
|
961
|
-
.dnb-dl:not([class*='dnb-
|
|
962
|
-
margin: 0; }
|
|
966
|
+
.dnb-dl:not([class*='dnb-space__top']) {
|
|
967
|
+
margin-top: 0; }
|
|
968
|
+
.dnb-dl:not([class*='dnb-space__bottom']) {
|
|
969
|
+
margin-bottom: 0; }
|
|
963
970
|
.dnb-dl dt {
|
|
964
971
|
margin-top: 1rem;
|
|
965
972
|
padding: 0;
|
|
@@ -970,8 +977,8 @@ a.dnb-button {
|
|
|
970
977
|
.dnb-dl dd {
|
|
971
978
|
padding: 0;
|
|
972
979
|
margin: 0.5rem 0 1rem; }
|
|
973
|
-
.dnb-dl > dl,
|
|
974
|
-
.dnb-dl:not([class*='dnb-space']) > dl {
|
|
980
|
+
.dnb-dl > dd > dl,
|
|
981
|
+
.dnb-dl:not([class*='dnb-space']) > dd > dl {
|
|
975
982
|
margin-top: 1.5rem;
|
|
976
983
|
margin-left: 2rem; }
|
|
977
984
|
@media screen and (min-width: 40em) {
|
|
@@ -979,27 +986,33 @@ a.dnb-button {
|
|
|
979
986
|
display: -webkit-box;
|
|
980
987
|
display: -ms-flexbox;
|
|
981
988
|
display: flex;
|
|
982
|
-
-
|
|
983
|
-
|
|
984
|
-
-ms-flex-direction: column;
|
|
985
|
-
flex-direction: column;
|
|
986
|
-
grid-gap: 0.5rem;
|
|
987
|
-
gap: 0.5rem; }
|
|
988
|
-
.dnb-dl__direction--horizontal dt,
|
|
989
|
-
.dnb-dl__direction--horizontal dd {
|
|
990
|
-
margin-top: 0;
|
|
991
|
-
margin-bottom: 0; }
|
|
989
|
+
-ms-flex-wrap: wrap;
|
|
990
|
+
flex-wrap: wrap; }
|
|
992
991
|
.dnb-dl__direction--horizontal dt {
|
|
993
992
|
margin-right: 1rem;
|
|
994
|
-
max-width:
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
993
|
+
max-width: 40%; }
|
|
994
|
+
.dnb-dl__direction--horizontal dd {
|
|
995
|
+
width: calc(60% - 1rem); }
|
|
996
|
+
.dnb-dl__direction--horizontal dt,
|
|
997
|
+
.dnb-dl__direction--horizontal dd,
|
|
998
|
+
.dnb-dl__direction--horizontal dd ~ dt {
|
|
999
|
+
margin-top: 0.5rem;
|
|
1000
|
+
margin-bottom: 0; }
|
|
1001
|
+
.dnb-dl__direction--horizontal dt:first-of-type,
|
|
1002
|
+
.dnb-dl__direction--horizontal dd:first-of-type,
|
|
1003
|
+
.dnb-dl__direction--horizontal dd ~ dt:first-of-type {
|
|
1004
|
+
margin-top: 0; }
|
|
1005
|
+
.dnb-dl dd.dnb-dl__item {
|
|
1006
|
+
width: 100%;
|
|
1007
|
+
height: 0;
|
|
1008
|
+
margin: 0; } }
|
|
1009
|
+
|
|
1010
|
+
.dnb-spacing .dnb-ul:not([class*='dnb-space__top']),
|
|
1011
|
+
.dnb-spacing .dnb-ol:not([class*='dnb-space__top']) {
|
|
1012
|
+
margin-top: 0; }
|
|
999
1013
|
|
|
1000
|
-
.dnb-spacing .dnb-ul:not([class*='dnb-
|
|
1001
|
-
.dnb-spacing .dnb-ol:not([class*='dnb-
|
|
1002
|
-
margin-top: 0;
|
|
1014
|
+
.dnb-spacing .dnb-ul:not([class*='dnb-space__bottom']),
|
|
1015
|
+
.dnb-spacing .dnb-ol:not([class*='dnb-space__bottom']) {
|
|
1003
1016
|
margin-bottom: 1.5rem; }
|
|
1004
1017
|
|
|
1005
1018
|
.dnb-spacing .dnb-ul > li,
|
|
@@ -1021,8 +1034,10 @@ a.dnb-button {
|
|
|
1021
1034
|
.dnb-spacing .dnb-ol:not([class*='dnb-space']) li > ol {
|
|
1022
1035
|
margin-top: -0.5rem; }
|
|
1023
1036
|
|
|
1024
|
-
.dnb-spacing .dnb-dl:not([class*='dnb-
|
|
1025
|
-
margin-top: 0;
|
|
1037
|
+
.dnb-spacing .dnb-dl:not([class*='dnb-space__top']) {
|
|
1038
|
+
margin-top: 0; }
|
|
1039
|
+
|
|
1040
|
+
.dnb-spacing .dnb-dl:not([class*='dnb-space__bottom']) {
|
|
1026
1041
|
margin-bottom: 1.5rem; }
|
|
1027
1042
|
|
|
1028
1043
|
.dnb-unstyled-list {
|
|
@@ -1117,8 +1132,9 @@ a.dnb-button {
|
|
|
1117
1132
|
margin: 0; }
|
|
1118
1133
|
.dnb-pre pre {
|
|
1119
1134
|
padding: 1rem; }
|
|
1120
|
-
.dnb-pre .dnb-spacing pre:not([class*='dnb-
|
|
1121
|
-
margin-top: 0;
|
|
1135
|
+
.dnb-pre .dnb-spacing pre:not([class*='dnb-space__top']) {
|
|
1136
|
+
margin-top: 0; }
|
|
1137
|
+
.dnb-pre .dnb-spacing pre:not([class*='dnb-space__bottom']) {
|
|
1122
1138
|
margin-bottom: 1.5rem; }
|
|
1123
1139
|
.dnb-pre.dnb-pre--focus {
|
|
1124
1140
|
--border-color: var(--color-sea-green);
|
|
@@ -1132,8 +1148,10 @@ a.dnb-button {
|
|
|
1132
1148
|
-webkit-box-shadow: 0 0 0 0.25rem var(--color-sea-green);
|
|
1133
1149
|
box-shadow: 0 0 0 0.25rem var(--color-sea-green); } }
|
|
1134
1150
|
|
|
1135
|
-
.dnb-spacing .dnb-pre:not([class*='dnb-
|
|
1136
|
-
margin-top: 0;
|
|
1151
|
+
.dnb-spacing .dnb-pre:not([class*='dnb-space__top']) {
|
|
1152
|
+
margin-top: 0; }
|
|
1153
|
+
|
|
1154
|
+
.dnb-spacing .dnb-pre:not([class*='dnb-space__bottom']) {
|
|
1137
1155
|
margin-bottom: 1.5rem; }
|
|
1138
1156
|
|
|
1139
1157
|
.dnb-skeleton > .dnb-code {
|
|
@@ -1250,8 +1268,10 @@ a.dnb-button {
|
|
|
1250
1268
|
background-size: 100% 3px;
|
|
1251
1269
|
background-color: transparent; }
|
|
1252
1270
|
|
|
1253
|
-
.dnb-spacing .dnb-hr:not([class*='dnb-
|
|
1254
|
-
margin-top: 0;
|
|
1271
|
+
.dnb-spacing .dnb-hr:not([class*='dnb-space__top']) {
|
|
1272
|
+
margin-top: 0; }
|
|
1273
|
+
|
|
1274
|
+
.dnb-spacing .dnb-hr:not([class*='dnb-space__bottom']) {
|
|
1255
1275
|
margin-bottom: 1.5rem; }
|
|
1256
1276
|
|
|
1257
1277
|
.dnb-core-style a {
|
|
@@ -1513,8 +1533,10 @@ a.dnb-button {
|
|
|
1513
1533
|
color: #a5e1d2;
|
|
1514
1534
|
color: var(--color-mint-green); }
|
|
1515
1535
|
|
|
1516
|
-
.dnb-core-style .dnb-spacing blockquote:not([class*='dnb-
|
|
1517
|
-
margin-top: 0;
|
|
1536
|
+
.dnb-core-style .dnb-spacing blockquote:not([class*='dnb-space__top']) {
|
|
1537
|
+
margin-top: 0; }
|
|
1538
|
+
|
|
1539
|
+
.dnb-core-style .dnb-spacing blockquote:not([class*='dnb-space__bottom']) {
|
|
1518
1540
|
margin-bottom: 1.5rem; }
|
|
1519
1541
|
|
|
1520
1542
|
.dnb-core-style .dnb-spacing blockquote p:last-child {
|
|
@@ -1545,8 +1567,10 @@ a.dnb-button {
|
|
|
1545
1567
|
background-color: currentColor;
|
|
1546
1568
|
border-radius: 0.5px; }
|
|
1547
1569
|
|
|
1548
|
-
.dnb-core-style .dnb-spacing hr:not([class*='dnb-
|
|
1549
|
-
margin-top: 0;
|
|
1570
|
+
.dnb-core-style .dnb-spacing hr:not([class*='dnb-space__top']) {
|
|
1571
|
+
margin-top: 0; }
|
|
1572
|
+
|
|
1573
|
+
.dnb-core-style .dnb-spacing hr:not([class*='dnb-space__bottom']) {
|
|
1550
1574
|
margin-bottom: 1.5rem; }
|
|
1551
1575
|
|
|
1552
1576
|
.dnb-core-style p {
|
|
@@ -1791,9 +1815,12 @@ a.dnb-button {
|
|
|
1791
1815
|
.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*='space__bottom']) {
|
|
1792
1816
|
margin-bottom: 1rem; }
|
|
1793
1817
|
|
|
1794
|
-
.dnb-core-style .dnb-spacing p:not([class*='dnb-
|
|
1795
|
-
.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*='dnb-
|
|
1796
|
-
margin-top: 0;
|
|
1818
|
+
.dnb-core-style .dnb-spacing p:not([class*='dnb-space__top']),
|
|
1819
|
+
.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*='dnb-space__top']) {
|
|
1820
|
+
margin-top: 0; }
|
|
1821
|
+
|
|
1822
|
+
.dnb-core-style .dnb-spacing p:not([class*='dnb-space__bottom']),
|
|
1823
|
+
.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*='dnb-space__bottom']) {
|
|
1797
1824
|
margin-bottom: 1.5rem; }
|
|
1798
1825
|
|
|
1799
1826
|
.dnb-core-style ul {
|
|
@@ -1837,8 +1864,10 @@ a.dnb-button {
|
|
|
1837
1864
|
margin-top: 0.5rem;
|
|
1838
1865
|
margin-bottom: 0.5rem; }
|
|
1839
1866
|
|
|
1840
|
-
.dnb-core-style .dnb-spacing ul:not([class*='dnb-
|
|
1841
|
-
margin-top: 0;
|
|
1867
|
+
.dnb-core-style .dnb-spacing ul:not([class*='dnb-space__top']) {
|
|
1868
|
+
margin-top: 0; }
|
|
1869
|
+
|
|
1870
|
+
.dnb-core-style .dnb-spacing ul:not([class*='dnb-space__bottom']) {
|
|
1842
1871
|
margin-bottom: 1.5rem; }
|
|
1843
1872
|
|
|
1844
1873
|
.dnb-core-style .dnb-spacing ul > li {
|
|
@@ -1940,8 +1969,10 @@ a.dnb-button {
|
|
|
1940
1969
|
.dnb-core-style ol[type] li li::before {
|
|
1941
1970
|
content: none; }
|
|
1942
1971
|
|
|
1943
|
-
.dnb-core-style .dnb-spacing ol:not([class*='dnb-
|
|
1944
|
-
margin-top: 0;
|
|
1972
|
+
.dnb-core-style .dnb-spacing ol:not([class*='dnb-space__top']) {
|
|
1973
|
+
margin-top: 0; }
|
|
1974
|
+
|
|
1975
|
+
.dnb-core-style .dnb-spacing ol:not([class*='dnb-space__bottom']) {
|
|
1945
1976
|
margin-bottom: 1.5rem; }
|
|
1946
1977
|
|
|
1947
1978
|
.dnb-core-style .dnb-spacing ol > li {
|
|
@@ -1965,8 +1996,10 @@ a.dnb-button {
|
|
|
1965
1996
|
line-height: var(--line-height-basis);
|
|
1966
1997
|
color: currentColor;
|
|
1967
1998
|
color: var(--theme-color-black-80, currentColor); }
|
|
1968
|
-
.dnb-core-style dl:not([class*='dnb-
|
|
1969
|
-
margin: 0; }
|
|
1999
|
+
.dnb-core-style dl:not([class*='dnb-space__top']) {
|
|
2000
|
+
margin-top: 0; }
|
|
2001
|
+
.dnb-core-style dl:not([class*='dnb-space__bottom']) {
|
|
2002
|
+
margin-bottom: 0; }
|
|
1970
2003
|
.dnb-core-style dl dt {
|
|
1971
2004
|
margin-top: 1rem;
|
|
1972
2005
|
padding: 0;
|
|
@@ -1977,8 +2010,8 @@ a.dnb-button {
|
|
|
1977
2010
|
.dnb-core-style dl dd {
|
|
1978
2011
|
padding: 0;
|
|
1979
2012
|
margin: 0.5rem 0 1rem; }
|
|
1980
|
-
.dnb-core-style dl > dl,
|
|
1981
|
-
.dnb-core-style dl:not([class*='dnb-space']) > dl {
|
|
2013
|
+
.dnb-core-style dl > dd > dl,
|
|
2014
|
+
.dnb-core-style dl:not([class*='dnb-space']) > dd > dl {
|
|
1982
2015
|
margin-top: 1.5rem;
|
|
1983
2016
|
margin-left: 2rem; }
|
|
1984
2017
|
@media screen and (min-width: 40em) {
|
|
@@ -1986,26 +2019,31 @@ a.dnb-button {
|
|
|
1986
2019
|
display: -webkit-box;
|
|
1987
2020
|
display: -ms-flexbox;
|
|
1988
2021
|
display: flex;
|
|
1989
|
-
-
|
|
1990
|
-
|
|
1991
|
-
-ms-flex-direction: column;
|
|
1992
|
-
flex-direction: column;
|
|
1993
|
-
grid-gap: 0.5rem;
|
|
1994
|
-
gap: 0.5rem; }
|
|
1995
|
-
.dnb-core-style dl__direction--horizontal dt,
|
|
1996
|
-
.dnb-core-style dl__direction--horizontal dd {
|
|
1997
|
-
margin-top: 0;
|
|
1998
|
-
margin-bottom: 0; }
|
|
2022
|
+
-ms-flex-wrap: wrap;
|
|
2023
|
+
flex-wrap: wrap; }
|
|
1999
2024
|
.dnb-core-style dl__direction--horizontal dt {
|
|
2000
2025
|
margin-right: 1rem;
|
|
2001
|
-
max-width:
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2026
|
+
max-width: 40%; }
|
|
2027
|
+
.dnb-core-style dl__direction--horizontal dd {
|
|
2028
|
+
width: calc(60% - 1rem); }
|
|
2029
|
+
.dnb-core-style dl__direction--horizontal dt,
|
|
2030
|
+
.dnb-core-style dl__direction--horizontal dd,
|
|
2031
|
+
.dnb-core-style dl__direction--horizontal dd ~ dt {
|
|
2032
|
+
margin-top: 0.5rem;
|
|
2033
|
+
margin-bottom: 0; }
|
|
2034
|
+
.dnb-core-style dl__direction--horizontal dt:first-of-type,
|
|
2035
|
+
.dnb-core-style dl__direction--horizontal dd:first-of-type,
|
|
2036
|
+
.dnb-core-style dl__direction--horizontal dd ~ dt:first-of-type {
|
|
2037
|
+
margin-top: 0; }
|
|
2038
|
+
.dnb-core-style dl dd.dnb-core-style dl__item {
|
|
2039
|
+
width: 100%;
|
|
2040
|
+
height: 0;
|
|
2041
|
+
margin: 0; } }
|
|
2042
|
+
|
|
2043
|
+
.dnb-core-style .dnb-spacing dl:not([class*='dnb-space__top']) {
|
|
2044
|
+
margin-top: 0; }
|
|
2006
2045
|
|
|
2007
|
-
.dnb-core-style .dnb-spacing dl:not([class*='dnb-
|
|
2008
|
-
margin-top: 0;
|
|
2046
|
+
.dnb-core-style .dnb-spacing dl:not([class*='dnb-space__bottom']) {
|
|
2009
2047
|
margin-bottom: 1.5rem; }
|
|
2010
2048
|
|
|
2011
2049
|
.dnb-core-style form {
|
|
@@ -2070,8 +2108,9 @@ a.dnb-button {
|
|
|
2070
2108
|
margin: 0; }
|
|
2071
2109
|
.dnb-core-style pre pre {
|
|
2072
2110
|
padding: 1rem; }
|
|
2073
|
-
.dnb-core-style pre .dnb-spacing pre:not([class*='dnb-
|
|
2074
|
-
margin-top: 0;
|
|
2111
|
+
.dnb-core-style pre .dnb-spacing pre:not([class*='dnb-space__top']) {
|
|
2112
|
+
margin-top: 0; }
|
|
2113
|
+
.dnb-core-style pre .dnb-spacing pre:not([class*='dnb-space__bottom']) {
|
|
2075
2114
|
margin-bottom: 1.5rem; }
|
|
2076
2115
|
.dnb-core-style pre.dnb-pre--focus {
|
|
2077
2116
|
--border-color: var(--color-sea-green);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";:root{--font-family-default:"DNB",sans-serif;--font-family-monospace:"DNBMono","Menlo","Consolas","Roboto Mono","Ubuntu Monospace","Noto Mono","Oxygen Mono","Liberation Mono",monospace;--font-weight-default:normal;--font-weight-basis:normal;--font-weight-regular:normal;--font-weight-medium:500;--font-weight-bold:600;--font-size-x-small:0.875rem;--font-size-small:1rem;--font-size-basis:1.125rem;--font-size-basis--em:1em;--font-size-medium:1.25rem;--font-size-large:1.625rem;--font-size-x-large:2.125rem;--font-size-xx-large:3rem;--line-height-xx-small--em:1em;--line-height-x-small:1.125rem;--line-height-small:1.25rem;--line-height-basis:1.5rem;--line-height-basis--em:1.333em;--line-height-medium:2rem;--line-height-large:2.5rem;--line-height-x-large:3.5rem;--color-mint-green-50:#d2f0e9;--color-mint-green-25:#e9f8f4;--color-mint-green-12:#f4fbf9;--color-sea-green-30:#b3dada;--color-accent-yellow-30:#feebc1;--color-signal-orange:#ff5400;--color-fire-red:#dc2a2a;--color-success-green:#007b5e;--color-fire-red-8:#fdeeee;--color-black:#000;--color-black-80:#333;--color-black-55:#737373;--color-black-20:#ccc;--color-black-8:#ebebeb;--color-black-3:#f8f8f8;--color-white:#fff;--color-black-border:#cdcdcd;--color-black-background:#fafafa;--color-sea-green:#007272;--color-mint-green:#a5e1d2;--color-summer-green:#28b482;--color-emerald-green:#14555a;--color-ocean-green:#00343e;--color-accent-yellow:#fdbb31;--color-indigo:#23195a;--color-violet:#6e2382;--color-sky-blue:#4bbed2;--color-lavender:#f2f2f5;--color-sand-yellow:#fbf6ec;--color-pistachio:#f2f4ec;--color-mint-green-alt:#ebfffa;--color-indigo-medium:#6e6491;--color-indigo-light:#b9afc8;--color-violet-medium:#a06eaf;--color-violet-light:#cfb9d7;--color-sky-blue-medium:#87d2e1;--color-sky-blue-light:#c3ebf0;--spacing-xx-small:0.25rem;--spacing-x-small:0.5rem;--spacing-small:1rem;--spacing-medium:1.5rem;--spacing-large:2rem;--spacing-x-large:3rem;--spacing-xx-large:3.5rem;--layout-small:40em;--layout-medium:50em;--layout-large:60em;--layout-x-large:72em;--layout-xx-large:80em;--layout-xxx-large:90em;--shadow-default:0 8px 16px rgba(51,51,51,.08);--shadow-default-x:0;--shadow-default-y:8px;--shadow-default-blur-radius:16px;--shadow-default-color:rgba(51,51,51,.08)}button.dnb-anchor{appearance:none;-moz-appearance:none;-webkit-appearance:none;background:none;border:none;cursor:pointer;line-height:1.625rem;line-height:calc(var(--line-height-basis) + .125rem)}.dnb-anchor{border-radius:0;-webkit-box-shadow:0 .09375rem 0 0 currentColor;box-shadow:0 .09375rem 0 0 currentColor;color:#007272;color:var(--color-sea-green);display:inline;font-size:1.125rem;font-size:var(--font-size-basis);padding:.05575em .125em;text-decoration:none;-webkit-transition:background-color .2s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out;transition:background-color .2s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .18s ease-in-out,border-radius .2s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .18s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out}.dnb-h--basis .dnb-anchor,.dnb-h--large .dnb-anchor,.dnb-h--medium .dnb-anchor,.dnb-h--small .dnb-anchor,.dnb-h--x-large .dnb-anchor,.dnb-h--x-small .dnb-anchor,.dnb-h--xx-large .dnb-anchor,.dnb-lead .dnb-anchor,.dnb-p .dnb-anchor{font-size:inherit}.dnb-anchor:focus{border-radius:.25em;outline:none}.dnb-anchor:focus:not(:active){background-color:transparent;color:#007272;color:var(--color-sea-green);-webkit-transition:none;transition:none}.dnb-anchor:focus:not(:active),.dnb-section .dnb-anchor:focus:not(:active).dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}html[data-whatinput=keyboard] .dnb-anchor:focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-anchor:focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-anchor:active,.dnb-anchor:hover{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-radius:.25em;color:#007272;color:var(--color-sea-green)}.dnb-anchor:active,.dnb-anchor:hover,.dnb-section .dnb-anchor:active.dnb-anchor,.dnb-section .dnb-anchor:hover.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor:active{background-color:#14555a;background-color:var(--color-emerald-green);border-radius:.25em;color:#a5e1d2;color:var(--color-mint-green)}.dnb-anchor:active,.dnb-section .dnb-anchor:active.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor[target=_blank]:not(:empty):not(.dnb-anchor--no-icon){background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiMwMDcyNzIiLz48L3N2Zz4=);background-size:0;position:relative}.dnb-anchor[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{background-image:inherit;background-size:cover;color:inherit;content:"";display:inline-block;height:.889em;margin-left:.3em;margin-right:.125em;position:relative;-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-transition:-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;transition:-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;transition:transform .3s ease-out,filter 1s ease-in-out;transition:transform .3s ease-out,filter 1s ease-in-out,-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;width:.889em}.dnb-anchor[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):active{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiNhNWUxZDIiLz48L3N2Zz4=)}.dnb-anchor[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{top:.125em}[data-visual-test-wrapper] .dnb-anchor{-webkit-transition:none;transition:none}.dnb-anchor .dnb-icon{display:inline-block;-webkit-transform:translateY(-.0625em);transform:translateY(-.0625em)}.dnb-anchor--hover{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-radius:.25em;color:#007272;color:var(--color-sea-green)}.dnb-anchor--hover,.dnb-section .dnb-anchor--hover.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--active{background-color:#14555a;background-color:var(--color-emerald-green);border-radius:.25em;color:#a5e1d2;color:var(--color-mint-green)}.dnb-anchor--active,.dnb-section .dnb-anchor--active.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--focus{border-radius:.25em;outline:none}.dnb-anchor--focus:not(:active){background-color:transparent;color:#007272;color:var(--color-sea-green);-webkit-transition:none;transition:none}.dnb-anchor--focus:not(:active),.dnb-section .dnb-anchor--focus:not(:active).dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}html[data-whatinput=mouse] .dnb-anchor--focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=mouse] .dnb-anchor--focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-anchor--no-style{color:inherit;-webkit-transition:none;transition:none}.dnb-anchor--no-style,.dnb-section .dnb-anchor--no-style.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--no-style:hover{background-color:transparent;color:inherit}.dnb-anchor--no-underline,.dnb-section .dnb-anchor--no-underline.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--no-hover:hover{background-color:transparent;color:inherit}.dnb-anchor--no-radius,.dnb-anchor--no-radius:active,.dnb-anchor--no-radius:focus,.dnb-anchor--no-radius:hover{border-radius:0}.dnb-anchor--no-animation{-webkit-transition:none;transition:none}.dnb-anchor--contrast{-webkit-box-shadow:0 .09375rem 0 0 #fff;box-shadow:0 .09375rem 0 0 #fff;-webkit-box-shadow:0 .09375rem 0 0 var(--color-white);box-shadow:0 .09375rem 0 0 var(--color-white);color:#fff;color:var(--color-white)}.dnb-anchor--contrast:active,.dnb-anchor--contrast:hover{-webkit-box-shadow:none;box-shadow:none}.dnb-anchor--contrast:active,.dnb-anchor--contrast:hover{background-color:#fff;background-color:var(--color-white);color:#14555a;color:var(--color-emerald-green)}.dnb-anchor--contrast:not(:disabled):focus{background-color:transparent;color:#fff;color:var(--color-white);outline:none}html[data-whatinput=keyboard] .dnb-anchor--contrast:not(:disabled):focus{--border-color:var(--color-white);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-anchor--contrast:not(:disabled):focus{-webkit-box-shadow:0 0 0 .125rem #fff;box-shadow:0 0 0 .125rem #fff;-webkit-box-shadow:0 0 0 .125rem var(--color-white);box-shadow:0 0 0 .125rem var(--color-white)}}a.dnb-button{-webkit-transition:none;transition:none}.dnb-anchor.dnb-skeleton,.dnb-skeleton>.dnb-anchor{-webkit-box-shadow:none;box-shadow:none}.dnb-anchor.dnb-skeleton:after,.dnb-skeleton>.dnb-anchor:after{-webkit-filter:grayscale(100%) opacity(.3);filter:grayscale(100%) opacity(.3)}.dnb-small{font-size:1rem;font-size:var(--font-size-small)}.dnb-p{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);padding:0}.dnb-p:not([class*=space__top]){margin-top:0}.dnb-p:not([class*=space__bottom]){margin-bottom:0}.dnb-p--lead{font-size:1.25rem;font-size:var(--font-size-medium);font-weight:500;font-weight:var(--font-weight-medium);line-height:1.75rem;line-height:calc(var(--line-height-medium) - .25rem)}.dnb-p--lead>small{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-p--ingress,.dnb-p--medium,.dnb-p b,.dnb-p strong{font-weight:500;font-weight:var(--font-weight-medium)}.dnb-p--bold{font-weight:600;font-weight:var(--font-weight-bold)}.dnb-p__size--xx-large{font-size:3rem;font-size:var(--font-size-xx-large)}.dnb-p__size--x-large,.dnb-p__size--xx-large{line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-p__size--x-large{font-size:2.125rem;font-size:var(--font-size-x-large)}.dnb-p__size--large{font-size:1.625rem;font-size:var(--font-size-large);line-height:2.5rem;line-height:var(--line-height-large)}.dnb-p__size--basis{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-p__size--medium{font-size:1.25rem;font-size:var(--font-size-medium);line-height:2rem;line-height:var(--line-height-medium)}.dnb-p--small,.dnb-p>small,.dnb-p__size--small{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-p--x-small,.dnb-p__size--x-small{font-size:.875rem;font-size:var(--font-size-x-small);line-height:1.125rem;line-height:var(--line-height-x-small)}.dnb-p>cite{font-style:italic;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-h--xx-large{font-size:3rem;font-size:var(--font-size-xx-large);line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-h--xx-large>small{display:block}.dnb-h--x-large,.dnb-h--x-large>small,.dnb-h--xx-large>small{font-size:2.125rem;font-size:var(--font-size-x-large);line-height:2.5rem;line-height:var(--line-height-large)}.dnb-h--x-large>small{display:block}.dnb-h--large{font-size:1.625rem;font-size:var(--font-size-large);line-height:2rem;line-height:var(--line-height-medium)}.dnb-h--large>small{line-height:1.875rem;line-height:calc(var(--line-height-medium) - .125rem)}.dnb-h--large>small,.dnb-h--medium,.dnb-lead{font-size:1.25rem;font-size:var(--font-size-medium)}.dnb-h--medium,.dnb-lead{font-weight:500;font-weight:var(--font-weight-medium);line-height:1.75rem;line-height:calc(var(--line-height-medium) - .25rem)}.dnb-h--basis,.dnb-h--medium>small,.dnb-lead>small{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-h--basis>small,.dnb-h--small{font-size:1rem;font-size:var(--font-size-small)}.dnb-h--basis>small,.dnb-h--small,.dnb-h--small>small{line-height:1.25rem;line-height:var(--line-height-small)}.dnb-h--small>small,.dnb-h--x-small{font-size:.875rem;font-size:var(--font-size-x-small)}.dnb-h--x-small{line-height:1.125rem;line-height:var(--line-height-x-small)}.dnb-core-style .dnb-h--basis,.dnb-core-style .dnb-h--large,.dnb-core-style .dnb-h--medium,.dnb-core-style .dnb-h--small,.dnb-core-style .dnb-h--x-large,.dnb-core-style .dnb-h--x-small,.dnb-core-style .dnb-h--xx-large,.dnb-core-style .dnb-lead,.dnb-h--basis,.dnb-h--large,.dnb-h--medium,.dnb-h--small,.dnb-h--x-large,.dnb-h--x-small,.dnb-h--xx-large,.dnb-lead{color:currentColor;color:var(--theme-color-black-80,currentColor);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-weight:500;font-weight:var(--font-weight-medium);padding:0}.dnb-core-style .dnb-h--basis:not([class*=dnb-space]),.dnb-core-style .dnb-h--large:not([class*=dnb-space]),.dnb-core-style .dnb-h--medium:not([class*=dnb-space]),.dnb-core-style .dnb-h--small:not([class*=dnb-space]),.dnb-core-style .dnb-h--x-large:not([class*=dnb-space]),.dnb-core-style .dnb-h--x-small:not([class*=dnb-space]),.dnb-core-style .dnb-h--xx-large:not([class*=dnb-space]),.dnb-core-style .dnb-lead:not([class*=dnb-space]),.dnb-h--basis:not([class*=dnb-space]),.dnb-h--large:not([class*=dnb-space]),.dnb-h--medium:not([class*=dnb-space]),.dnb-h--small:not([class*=dnb-space]),.dnb-h--x-large:not([class*=dnb-space]),.dnb-h--x-small:not([class*=dnb-space]),.dnb-h--xx-large:not([class*=dnb-space]),.dnb-lead:not([class*=dnb-space]){margin:0}.dnb-core-style .dnb-h--basis .dnb-icon--default,.dnb-core-style .dnb-h--large .dnb-icon--default,.dnb-core-style .dnb-h--medium .dnb-icon--default,.dnb-core-style .dnb-h--small .dnb-icon--default,.dnb-core-style .dnb-h--x-large .dnb-icon--default,.dnb-core-style .dnb-h--x-small .dnb-icon--default,.dnb-core-style .dnb-h--xx-large .dnb-icon--default,.dnb-core-style .dnb-lead .dnb-icon--default,.dnb-h--basis .dnb-icon--default,.dnb-h--large .dnb-icon--default,.dnb-h--medium .dnb-icon--default,.dnb-h--small .dnb-icon--default,.dnb-h--x-large .dnb-icon--default,.dnb-h--x-small .dnb-icon--default,.dnb-h--xx-large .dnb-icon--default,.dnb-lead .dnb-icon--default{font-size:1em}.dnb-core-style .dnb-h--basis .dnb-icon--medium,.dnb-core-style .dnb-h--large .dnb-icon--medium,.dnb-core-style .dnb-h--medium .dnb-icon--medium,.dnb-core-style .dnb-h--small .dnb-icon--medium,.dnb-core-style .dnb-h--x-large .dnb-icon--medium,.dnb-core-style .dnb-h--x-small .dnb-icon--medium,.dnb-core-style .dnb-h--xx-large .dnb-icon--medium,.dnb-core-style .dnb-lead .dnb-icon--medium,.dnb-h--basis .dnb-icon--medium,.dnb-h--large .dnb-icon--medium,.dnb-h--medium .dnb-icon--medium,.dnb-h--small .dnb-icon--medium,.dnb-h--x-large .dnb-icon--medium,.dnb-h--x-small .dnb-icon--medium,.dnb-h--xx-large .dnb-icon--medium,.dnb-lead .dnb-icon--medium{font-size:1.5em}.dnb-core-style .dnb-h--basis .dnb-anchor,.dnb-core-style .dnb-h--basis a,.dnb-core-style .dnb-h--large .dnb-anchor,.dnb-core-style .dnb-h--large a,.dnb-core-style .dnb-h--medium .dnb-anchor,.dnb-core-style .dnb-h--medium a,.dnb-core-style .dnb-h--small .dnb-anchor,.dnb-core-style .dnb-h--small a,.dnb-core-style .dnb-h--x-large .dnb-anchor,.dnb-core-style .dnb-h--x-large a,.dnb-core-style .dnb-h--x-small .dnb-anchor,.dnb-core-style .dnb-h--x-small a,.dnb-core-style .dnb-h--xx-large .dnb-anchor,.dnb-core-style .dnb-h--xx-large a,.dnb-core-style .dnb-lead .dnb-anchor,.dnb-core-style .dnb-lead a,.dnb-h--basis .dnb-anchor,.dnb-h--basis a,.dnb-h--large .dnb-anchor,.dnb-h--large a,.dnb-h--medium .dnb-anchor,.dnb-h--medium a,.dnb-h--small .dnb-anchor,.dnb-h--small a,.dnb-h--x-large .dnb-anchor,.dnb-h--x-large a,.dnb-h--x-small .dnb-anchor,.dnb-h--x-small a,.dnb-h--xx-large .dnb-anchor,.dnb-h--xx-large a,.dnb-lead .dnb-anchor,.dnb-lead a{padding-bottom:.03125rem;padding-top:0}.dnb-core-style .dnb-spacing .dnb-h--xx-large:not([class*=space__top]),.dnb-spacing .dnb-h--xx-large:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-spacing .dnb-h--xx-large:not([class*=space__bottom]),.dnb-spacing .dnb-h--xx-large:not([class*=space__bottom]){margin-bottom:2.5rem}.dnb-core-style .dnb-spacing .dnb-h--x-large:not([class*=space__top]),.dnb-spacing .dnb-h--x-large:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-spacing .dnb-h--x-large:not([class*=space__bottom]),.dnb-spacing .dnb-h--x-large:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-spacing .dnb-h--large:not([class*=space__top]),.dnb-spacing .dnb-h--large:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-spacing .dnb-h--large:not([class*=space__bottom]),.dnb-spacing .dnb-h--large:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-spacing .dnb-h--basis:not([class*=space__top]),.dnb-core-style .dnb-spacing .dnb-h--medium:not([class*=space__top]),.dnb-core-style .dnb-spacing .dnb-h--small:not([class*=space__top]),.dnb-core-style .dnb-spacing .dnb-h--x-small:not([class*=space__top]),.dnb-core-style .dnb-spacing .dnb-lead:not([class*=space__top]),.dnb-spacing .dnb-h--basis:not([class*=space__top]),.dnb-spacing .dnb-h--medium:not([class*=space__top]),.dnb-spacing .dnb-h--small:not([class*=space__top]),.dnb-spacing .dnb-h--x-small:not([class*=space__top]),.dnb-spacing .dnb-lead:not([class*=space__top]){margin-top:2rem}.dnb-core-style .dnb-spacing .dnb-h--basis:not([class*=space__bottom]),.dnb-core-style .dnb-spacing .dnb-h--medium:not([class*=space__bottom]),.dnb-core-style .dnb-spacing .dnb-h--small:not([class*=space__bottom]),.dnb-core-style .dnb-spacing .dnb-h--x-small:not([class*=space__bottom]),.dnb-core-style .dnb-spacing .dnb-lead:not([class*=space__bottom]),.dnb-spacing .dnb-h--basis:not([class*=space__bottom]),.dnb-spacing .dnb-h--medium:not([class*=space__bottom]),.dnb-spacing .dnb-h--small:not([class*=space__bottom]),.dnb-spacing .dnb-h--x-small:not([class*=space__bottom]),.dnb-spacing .dnb-lead:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-spacing .dnb-p:not([class*=dnb-space]),.dnb-spacing .dnb-p:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-blockquote{background-color:#00343e;background-color:var(--color-ocean-green);border-radius:1rem;color:#a5e1d2;color:var(--color-mint-green);display:inline-block;font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small);padding:1.5rem;position:relative;width:auto}.dnb-blockquote:not([class*=dnb-space]){margin:0}.dnb-blockquote:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0E1RTFEMiIgc3Ryb2tlPSIjQTVFMUQyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMzcuNSAyNy41YTkgOSAwIDEgMCAwLTE4IDkgOSAwIDAgMCAwIDE4eiIvPjxwYXRoIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTQ2LjUgMTguNWEyMSAyMSAwIDAgMS0yMSAyMSIvPjxwYXRoIGZpbGw9IiNBNUUxRDIiIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTEzLjUgMjcuNWE5IDkgMCAxIDAgMC0xOCA5IDkgMCAwIDAgMCAxOHoiLz48cGF0aCBzdHJva2U9IiNBNUUxRDIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0yMi41IDE4LjVhMjEgMjEgMCAwIDEtMjEgMjEiLz48L3N2Zz4=);background-size:cover;content:"";height:3em;left:1.5rem;position:absolute;top:2rem;width:3em}.dnb-blockquote,.dnb-blockquote.dnb-blockquote--left{padding-bottom:3rem;padding-left:6rem;padding-top:2rem}.dnb-blockquote.dnb-blockquote--top{padding-bottom:3rem;padding-left:1.5rem;padding-top:6rem}.dnb-blockquote.dnb-blockquote--no-background{background-color:transparent;color:currentColor;color:var(--theme-color-black-80,currentColor)}.dnb-blockquote.dnb-blockquote--no-background:before{-webkit-filter:grayscale(1) brightness(24%);filter:grayscale(1) brightness(24%)}.dnb-blockquote .dnb-cite,.dnb-blockquote .dnb-figcaption,.dnb-blockquote cite,.dnb-blockquote figcaption,.dnb-blockquote footer{display:block;font-style:italic;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis);margin-top:1rem}.dnb-blockquote .dnb-cite:before,.dnb-blockquote .dnb-figcaption:before,.dnb-blockquote cite:before,.dnb-blockquote figcaption:before,.dnb-blockquote footer:before{content:"—";display:inline-block;padding-right:.5rem}.dnb-spacing .dnb-blockquote .dnb-h--large,.dnb-spacing .dnb-blockquote .dnb-h--medium,.dnb-spacing .dnb-blockquote .dnb-h--xx-large,.dnb-spacing .dnb-blockquote .dnb-lead,.dnb-spacing .dnb-blockquote h1,.dnb-spacing .dnb-blockquote h2,.dnb-spacing .dnb-blockquote h3{margin:0}.dnb-blockquote .dnb-anchor{font-size:inherit}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor,.dnb-blockquote:not(.dnb-blockquote--no-background) a{-webkit-box-shadow:0 .09375rem 0 0 #fff;box-shadow:0 .09375rem 0 0 #fff;-webkit-box-shadow:0 .09375rem 0 0 var(--color-white);box-shadow:0 .09375rem 0 0 var(--color-white);color:#fff;color:var(--color-white)}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:active,.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:hover,.dnb-blockquote:not(.dnb-blockquote--no-background) a:active,.dnb-blockquote:not(.dnb-blockquote--no-background) a:hover{background-color:#fff;background-color:var(--color-white);-webkit-box-shadow:none;box-shadow:none;color:#14555a;color:var(--color-emerald-green)}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:active,.dnb-blockquote:not(.dnb-blockquote--no-background) a:active{background-color:#fff;background-color:var(--color-white);color:#14555a;color:var(--color-emerald-green)}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,.dnb-blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{background-color:transparent;color:#fff;color:var(--color-white);outline:none}html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{--border-color:var(--color-white);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{-webkit-box-shadow:0 0 0 .125rem #fff;box-shadow:0 0 0 .125rem #fff;-webkit-box-shadow:0 0 0 .125rem var(--color-white);box-shadow:0 0 0 .125rem var(--color-white)}}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-h--large,.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-h--medium,.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-h--xx-large,.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-lead,.dnb-blockquote:not(.dnb-blockquote--no-background) h1,.dnb-blockquote:not(.dnb-blockquote--no-background) h2,.dnb-blockquote:not(.dnb-blockquote--no-background) h3{color:#a5e1d2;color:var(--color-mint-green)}.dnb-spacing .dnb-blockquote:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-spacing .dnb-blockquote p:last-child{margin-bottom:0}.dnb-ul{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-ul:not([class*=dnb-space]){margin:0}.dnb-ul:not([class*=dnb-space__left]){padding-left:2rem}.dnb-ul ol,.dnb-ul ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-ul--outside li,.dnb-ul li{position:relative}.dnb-ul--outside li:before,.dnb-ul li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-ul--inside li:before{left:0;padding-right:0;position:relative;text-align:left;text-align:initial;width:auto}.dnb-ul .dnb-anchor{font-size:inherit}.dnb-ul li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-ol{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-ol:not([class*=dnb-space]){margin:0}.dnb-ol:not([class*=dnb-space__left]){padding-left:2rem}.dnb-ol li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-ol ol,.dnb-ol ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-ol--outside li,.dnb-ol li{position:relative}.dnb-ol--outside li:before,.dnb-ol li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-ol--inside li:before{left:0;padding-right:0;position:relative;text-align:left;text-align:initial;width:auto}.dnb-ol .dnb-anchor{font-size:inherit}.dnb-ol li{list-style-type:decimal}.dnb-ol--nested,.dnb-ol--nested ol{counter-reset:item}.dnb-ol--nested li{display:block}.dnb-ol--nested li:before{content:counters(item,".") ". ";counter-increment:item}.dnb-ol--nested li li:before{content:counters(item,".") " ";counter-increment:item}.dnb-ol[type] li{display:list-item;list-style-type:inherit}.dnb-ol[type] li:before,.dnb-ol[type] li li:before{content:none}.dnb-dl{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-dl:not([class*=dnb-space]){margin:0}.dnb-dl dt{font-weight:500;font-weight:var(--font-weight-medium);margin-top:1rem;padding:0}.dnb-dl dd~dt{margin-top:1.5rem}.dnb-dl dd{margin:.5rem 0 1rem;padding:0}.dnb-dl:not([class*=dnb-space])>dl,.dnb-dl>dl{margin-left:2rem;margin-top:1.5rem}@media screen and (min-width:40em){.dnb-dl__direction--horizontal{-webkit-box-orient:vertical;-webkit-box-direction:normal;grid-gap:.5rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:.5rem}.dnb-dl__direction--horizontal dd,.dnb-dl__direction--horizontal dt{margin-bottom:0;margin-top:0}.dnb-dl__direction--horizontal dt{margin-right:1rem;max-width:60ch}.dnb-dl__item{display:-webkit-box;display:-ms-flexbox;display:flex}}.dnb-spacing .dnb-ol:not([class*=dnb-space]),.dnb-spacing .dnb-ul:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-spacing .dnb-ol>li,.dnb-spacing .dnb-ul>li{margin-bottom:1rem;margin-top:1rem}.dnb-spacing .dnb-ol>li>p,.dnb-spacing .dnb-ul>li>p{margin-top:1rem}.dnb-spacing .dnb-ol:not([class*=dnb-space]) li>ol,.dnb-spacing .dnb-ol:not([class*=dnb-space]) li>ul,.dnb-spacing .dnb-ol li>ol,.dnb-spacing .dnb-ol li>ul,.dnb-spacing .dnb-ul:not([class*=dnb-space]) li>ol,.dnb-spacing .dnb-ul:not([class*=dnb-space]) li>ul,.dnb-spacing .dnb-ul li>ol,.dnb-spacing .dnb-ul li>ul{margin-top:-.5rem}.dnb-spacing .dnb-dl:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-unstyled-list{list-style-type:none}.dnb-unstyled-list:not([class*=dnb-space]){margin:0}.dnb-unstyled-list:not([class*=dnb-space__left]){padding-left:0}.dnb-unstyled-list>li{list-style-type:none}.dnb-unstyled-list>li:before{content:none}.dnb-unstyled-list>dd,.dnb-unstyled-list>dl{margin-left:0}.dnb-label{word-wrap:break-word;color:#333;color:var(--color-black-80);cursor:pointer}.dnb-label[disabled]{cursor:not-allowed}.dnb-form{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-code{background-color:#e9f8f4;background-color:var(--color-mint-green-25);border-radius:.1875em;color:inherit;display:inline-block;font-size:inherit;line-height:1em;line-height:var(--line-height-xx-small--em);padding:.25em;text-decoration:inherit}del .dnb-code{text-decoration:line-through}.dnb-code:not([class*=dnb-space]){margin:-.25em 0}.dnb-pre{word-wrap:normal;background-color:#222;border-radius:.5rem;color:#f4fbf9;color:var(--color-mint-green-12);display:block;font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-size:inherit;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;outline:none;overflow:auto;padding:1rem;-moz-tab-size:2;-o-tab-size:2;tab-size:2;text-align:left;text-shadow:none;vertical-align:baseline;white-space:pre;word-break:normal;word-spacing:normal}.dnb-pre:not([class*=dnb-space]){margin:0}.dnb-pre pre{padding:1rem}.dnb-pre .dnb-spacing pre:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-pre.dnb-pre--focus{--border-color:var(--color-sea-green);border-color:transparent;-webkit-box-shadow:0 0 0 .25rem var(--border-color);box-shadow:0 0 0 .25rem var(--border-color)}@media screen and (-ms-high-contrast:none){.dnb-pre.dnb-pre--focus{-webkit-box-shadow:0 0 0 .25rem #007272;box-shadow:0 0 0 .25rem #007272;-webkit-box-shadow:0 0 0 .25rem var(--color-sea-green);box-shadow:0 0 0 .25rem var(--color-sea-green)}}.dnb-spacing .dnb-pre:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-skeleton>.dnb-code{background-color:transparent}.dnb-img{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;padding:0;text-align:center}.dnb-img:not([class*=dnb-space]){margin:0}.dnb-img figcaption,.dnb-img img{font-size:1.125rem;font-size:var(--font-size-basis)}.dnb-img img{border-radius:inherit;border-style:none;-webkit-box-sizing:content-box;box-sizing:content-box;max-width:100%;position:relative;z-index:2}.dnb-img img[alt]:after{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;background-color:#ebebeb;background-color:var(--color-black-8);border-radius:inherit;color:#333;color:var(--color-black-80);content:attr(alt);display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:3}.dnb-img figcaption{margin-top:.5rem}.dnb-img__img--error{background-color:#ebebeb;background-color:var(--color-black-8)}.dnb-hr,.dnb-img__img--error{color:#333;color:var(--color-black-80)}.dnb-hr{border:0;display:-webkit-box;display:-ms-flexbox;display:flex;height:0;padding:0;position:relative}.dnb-hr:not([class*=dnb-space]){margin:0}.dnb-hr:after{background-color:currentColor;border-radius:.5px;color:inherit;content:"";height:1px;left:0;position:absolute;right:0;top:0;width:100%;z-index:1}.dnb-hr--fullscreen:after{left:-100vw;width:200vw}.dnb-hr--light:after{background-color:transparent;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(60%,currentColor),color-stop(65%,transparent));background-image:linear-gradient(180deg,currentColor 60%,transparent 65%);background-size:100% 1px;border-radius:.25px}.dnb-hr--medium:after{background-color:transparent;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(51%,currentColor),color-stop(51%,transparent));background-image:linear-gradient(180deg,currentColor 51%,transparent 0);background-size:100% 3px;border-radius:.75px;height:2px}.dnb-spacing .dnb-hr:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style a{border-radius:0;-webkit-box-shadow:0 .09375rem 0 0 currentColor;box-shadow:0 .09375rem 0 0 currentColor;color:#007272;color:var(--color-sea-green);display:inline;font-size:1.125rem;font-size:var(--font-size-basis);padding:.05575em .125em;text-decoration:none;-webkit-transition:background-color .2s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out;transition:background-color .2s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .18s ease-in-out,border-radius .2s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .18s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out}.dnb-h--basis .dnb-core-style a,.dnb-h--large .dnb-core-style a,.dnb-h--medium .dnb-core-style a,.dnb-h--small .dnb-core-style a,.dnb-h--x-large .dnb-core-style a,.dnb-h--x-small .dnb-core-style a,.dnb-h--xx-large .dnb-core-style a,.dnb-lead .dnb-core-style a,.dnb-p .dnb-core-style a{font-size:inherit}.dnb-core-style a:focus{border-radius:.25em;outline:none}.dnb-core-style a:focus:not(:active){background-color:transparent;color:#007272;color:var(--color-sea-green);-webkit-transition:none;transition:none}.dnb-core-style a:focus:not(:active),.dnb-section .dnb-core-style a:focus:not(:active).dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}html[data-whatinput=keyboard] .dnb-core-style a:focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-core-style a:focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-core-style a:active,.dnb-core-style a:hover{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-radius:.25em;color:#007272;color:var(--color-sea-green)}.dnb-core-style a:active,.dnb-core-style a:hover,.dnb-section .dnb-core-style a:active.dnb-anchor,.dnb-section .dnb-core-style a:hover.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-core-style a:active{background-color:#14555a;background-color:var(--color-emerald-green);border-radius:.25em;color:#a5e1d2;color:var(--color-mint-green)}.dnb-core-style a:active,.dnb-section .dnb-core-style a:active.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon){background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiMwMDcyNzIiLz48L3N2Zz4=);background-size:0;position:relative}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{background-image:inherit;background-size:cover;color:inherit;content:"";display:inline-block;height:.889em;margin-left:.3em;margin-right:.125em;position:relative;-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-transition:-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;transition:-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;transition:transform .3s ease-out,filter 1s ease-in-out;transition:transform .3s ease-out,filter 1s ease-in-out,-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;width:.889em}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):active{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiNhNWUxZDIiLz48L3N2Zz4=)}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{top:.125em}[data-visual-test-wrapper] .dnb-core-style a{-webkit-transition:none;transition:none}.dnb-core-style a .dnb-icon{display:inline-block;-webkit-transform:translateY(-.0625em);transform:translateY(-.0625em)}.dnb-core-style img{border-radius:inherit;border-style:none;-webkit-box-sizing:content-box;box-sizing:content-box;max-width:100%;position:relative;z-index:2}.dnb-core-style img[alt]:after{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;background-color:#ebebeb;background-color:var(--color-black-8);border-radius:inherit;color:#333;color:var(--color-black-80);content:attr(alt);display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:3}.dnb-core-style blockquote{background-color:#00343e;background-color:var(--color-ocean-green);border-radius:1rem;color:#a5e1d2;color:var(--color-mint-green);display:inline-block;font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small);padding:1.5rem;position:relative;width:auto}.dnb-core-style blockquote:not([class*=dnb-space]){margin:0}.dnb-core-style blockquote:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0E1RTFEMiIgc3Ryb2tlPSIjQTVFMUQyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMzcuNSAyNy41YTkgOSAwIDEgMCAwLTE4IDkgOSAwIDAgMCAwIDE4eiIvPjxwYXRoIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTQ2LjUgMTguNWEyMSAyMSAwIDAgMS0yMSAyMSIvPjxwYXRoIGZpbGw9IiNBNUUxRDIiIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTEzLjUgMjcuNWE5IDkgMCAxIDAgMC0xOCA5IDkgMCAwIDAgMCAxOHoiLz48cGF0aCBzdHJva2U9IiNBNUUxRDIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0yMi41IDE4LjVhMjEgMjEgMCAwIDEtMjEgMjEiLz48L3N2Zz4=);background-size:cover;content:"";height:3em;left:1.5rem;position:absolute;top:2rem;width:3em}.dnb-core-style blockquote,.dnb-core-style blockquote.dnb-blockquote--left{padding-bottom:3rem;padding-left:6rem;padding-top:2rem}.dnb-core-style blockquote.dnb-blockquote--top{padding-bottom:3rem;padding-left:1.5rem;padding-top:6rem}.dnb-core-style blockquote.dnb-blockquote--no-background{background-color:transparent;color:currentColor;color:var(--theme-color-black-80,currentColor)}.dnb-core-style blockquote.dnb-blockquote--no-background:before{-webkit-filter:grayscale(1) brightness(24%);filter:grayscale(1) brightness(24%)}.dnb-core-style blockquote .dnb-cite,.dnb-core-style blockquote .dnb-figcaption,.dnb-core-style blockquote cite,.dnb-core-style blockquote figcaption,.dnb-core-style blockquote footer{display:block;font-style:italic;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis);margin-top:1rem}.dnb-core-style blockquote .dnb-cite:before,.dnb-core-style blockquote .dnb-figcaption:before,.dnb-core-style blockquote cite:before,.dnb-core-style blockquote figcaption:before,.dnb-core-style blockquote footer:before{content:"—";display:inline-block;padding-right:.5rem}.dnb-spacing .dnb-core-style blockquote .dnb-h--large,.dnb-spacing .dnb-core-style blockquote .dnb-h--medium,.dnb-spacing .dnb-core-style blockquote .dnb-h--xx-large,.dnb-spacing .dnb-core-style blockquote .dnb-lead,.dnb-spacing .dnb-core-style blockquote h1,.dnb-spacing .dnb-core-style blockquote h2,.dnb-spacing .dnb-core-style blockquote h3{margin:0}.dnb-core-style blockquote .dnb-anchor{font-size:inherit}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a{-webkit-box-shadow:0 .09375rem 0 0 #fff;box-shadow:0 .09375rem 0 0 #fff;-webkit-box-shadow:0 .09375rem 0 0 var(--color-white);box-shadow:0 .09375rem 0 0 var(--color-white);color:#fff;color:var(--color-white)}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:active,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:hover,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:active,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:hover{background-color:#fff;background-color:var(--color-white);-webkit-box-shadow:none;box-shadow:none;color:#14555a;color:var(--color-emerald-green)}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:active,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:active{background-color:#fff;background-color:var(--color-white);color:#14555a;color:var(--color-emerald-green)}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{background-color:transparent;color:#fff;color:var(--color-white);outline:none}html[data-whatinput=keyboard] .dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,html[data-whatinput=keyboard] .dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{--border-color:var(--color-white);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,html[data-whatinput=keyboard] .dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{-webkit-box-shadow:0 0 0 .125rem #fff;box-shadow:0 0 0 .125rem #fff;-webkit-box-shadow:0 0 0 .125rem var(--color-white);box-shadow:0 0 0 .125rem var(--color-white)}}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-h--large,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-h--medium,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-h--xx-large,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-lead,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) h1,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) h2,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) h3{color:#a5e1d2;color:var(--color-mint-green)}.dnb-core-style .dnb-spacing blockquote:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style .dnb-spacing blockquote p:last-child{margin-bottom:0}.dnb-core-style hr{border:0;color:#333;color:var(--color-black-80);display:-webkit-box;display:-ms-flexbox;display:flex;height:0;padding:0;position:relative}.dnb-core-style hr:not([class*=dnb-space]){margin:0}.dnb-core-style hr:after{background-color:currentColor;border-radius:.5px;color:inherit;content:"";height:1px;left:0;position:absolute;right:0;top:0;width:100%;z-index:1}.dnb-core-style .dnb-spacing hr:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style p{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);padding:0}.dnb-core-style p:not([class*=space__top]){margin-top:0}.dnb-core-style p:not([class*=space__bottom]){margin-bottom:0}.dnb-core-style p--lead{font-size:1.25rem;font-size:var(--font-size-medium);font-weight:500;font-weight:var(--font-weight-medium);line-height:1.75rem;line-height:calc(var(--line-height-medium) - .25rem)}.dnb-core-style p--lead>small{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style p--ingress,.dnb-core-style p--medium,.dnb-core-style p b,.dnb-core-style p strong{font-weight:500;font-weight:var(--font-weight-medium)}.dnb-core-style p--bold{font-weight:600;font-weight:var(--font-weight-bold)}.dnb-core-style p__size--xx-large{font-size:3rem;font-size:var(--font-size-xx-large);line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-core-style p__size--x-large{font-size:2.125rem;font-size:var(--font-size-x-large);line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-core-style p__size--large{font-size:1.625rem;font-size:var(--font-size-large);line-height:2.5rem;line-height:var(--line-height-large)}.dnb-core-style p__size--basis{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style p__size--medium{font-size:1.25rem;font-size:var(--font-size-medium);line-height:2rem;line-height:var(--line-height-medium)}.dnb-core-style p--small,.dnb-core-style p>small,.dnb-core-style p__size--small{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-core-style p--x-small,.dnb-core-style p__size--x-small{font-size:.875rem;font-size:var(--font-size-x-small);line-height:1.125rem;line-height:var(--line-height-x-small)}.dnb-core-style p>cite{font-style:italic;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style b,.dnb-core-style strong{font-weight:600;font-weight:var(--font-weight-bold)}.dnb-core-style small{font-size:1rem;font-size:var(--font-size-small)}.dnb-core-style h1,.dnb-core-style h2,.dnb-core-style h3,.dnb-core-style h4,.dnb-core-style h5,.dnb-core-style h6{color:currentColor;color:var(--theme-color-black-80,currentColor);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-weight:500;font-weight:var(--font-weight-medium);padding:0}.dnb-core-style h1:not([class*=dnb-space]),.dnb-core-style h2:not([class*=dnb-space]),.dnb-core-style h3:not([class*=dnb-space]),.dnb-core-style h4:not([class*=dnb-space]),.dnb-core-style h5:not([class*=dnb-space]),.dnb-core-style h6:not([class*=dnb-space]){margin:0}.dnb-core-style h1 .dnb-icon--default,.dnb-core-style h2 .dnb-icon--default,.dnb-core-style h3 .dnb-icon--default,.dnb-core-style h4 .dnb-icon--default,.dnb-core-style h5 .dnb-icon--default,.dnb-core-style h6 .dnb-icon--default{font-size:1em}.dnb-core-style h1 .dnb-icon--medium,.dnb-core-style h2 .dnb-icon--medium,.dnb-core-style h3 .dnb-icon--medium,.dnb-core-style h4 .dnb-icon--medium,.dnb-core-style h5 .dnb-icon--medium,.dnb-core-style h6 .dnb-icon--medium{font-size:1.5em}.dnb-core-style h1 .dnb-anchor,.dnb-core-style h1 a,.dnb-core-style h2 .dnb-anchor,.dnb-core-style h2 a,.dnb-core-style h3 .dnb-anchor,.dnb-core-style h3 a,.dnb-core-style h4 .dnb-anchor,.dnb-core-style h4 a,.dnb-core-style h5 .dnb-anchor,.dnb-core-style h5 a,.dnb-core-style h6 .dnb-anchor,.dnb-core-style h6 a{padding-bottom:.03125rem;padding-top:0}.dnb-core-style h1{font-size:3rem;font-size:var(--font-size-xx-large);line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-core-style h1>small{display:block;font-size:2.125rem;font-size:var(--font-size-x-large);line-height:2.5rem;line-height:var(--line-height-large)}.dnb-core-style h2{font-size:1.625rem;font-size:var(--font-size-large);line-height:2rem;line-height:var(--line-height-medium)}.dnb-core-style h2>small{line-height:1.875rem;line-height:calc(var(--line-height-medium) - .125rem)}.dnb-core-style h2>small,.dnb-core-style h3{font-size:1.25rem;font-size:var(--font-size-medium)}.dnb-core-style h3{line-height:1.75rem;line-height:calc(var(--line-height-medium) - .25rem)}.dnb-core-style h3>small,.dnb-core-style h4{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style h4>small,.dnb-core-style h5{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-core-style h5>small{line-height:1.25rem;line-height:var(--line-height-small)}.dnb-core-style h5>small,.dnb-core-style h6{font-size:.875rem;font-size:var(--font-size-x-small)}.dnb-core-style h6{line-height:1.125rem;line-height:var(--line-height-x-small)}.dnb-core-style h2>small,.dnb-core-style h3>small,.dnb-core-style h4>small,.dnb-core-style h5>small,.dnb-core-style h6>small{line-height:1em;line-height:var(--line-height-xx-small--em)}.dnb-core-style .dnb-core-style .dnb-spacing h1:not([class*=space__top]),.dnb-core-style .dnb-spacing h1:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-core-style .dnb-spacing h1:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h1:not([class*=space__bottom]){margin-bottom:2.5rem}.dnb-core-style .dnb-core-style .dnb-spacing h2:not([class*=space__top]),.dnb-core-style .dnb-spacing h2:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-core-style .dnb-spacing h2:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h2:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-core-style .dnb-spacing h3:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h4:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h5:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*=space__top]),.dnb-core-style .dnb-spacing h3:not([class*=space__top]),.dnb-core-style .dnb-spacing h4:not([class*=space__top]),.dnb-core-style .dnb-spacing h5:not([class*=space__top]),.dnb-core-style .dnb-spacing h6:not([class*=space__top]){margin-top:2rem}.dnb-core-style .dnb-core-style .dnb-spacing h3:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h4:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h5:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h3:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h4:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h5:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h6:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*=dnb-space]),.dnb-core-style .dnb-spacing p:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style ul{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-core-style ul:not([class*=dnb-space]){margin:0}.dnb-core-style ul:not([class*=dnb-space__left]){padding-left:2rem}.dnb-core-style ul ol,.dnb-core-style ul ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-core-style ul--outside li,.dnb-core-style ul li{position:relative}.dnb-core-style ul--outside li:before,.dnb-core-style ul li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-core-style ul--inside li:before{left:0;padding-right:0;position:relative;text-align:left;text-align:initial;width:auto}.dnb-core-style ul .dnb-anchor{font-size:inherit}.dnb-core-style ul li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style .dnb-spacing ul>li{margin-bottom:1rem;margin-top:1rem}.dnb-core-style .dnb-spacing ul>li>p{margin-top:1rem}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]) li>ol,.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]) li>ul,.dnb-core-style .dnb-spacing ul li>ol,.dnb-core-style .dnb-spacing ul li>ul{margin-top:-.5rem}.dnb-core-style ol{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-core-style ol:not([class*=dnb-space]){margin:0}.dnb-core-style ol:not([class*=dnb-space__left]){padding-left:2rem}.dnb-core-style ol li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-core-style ol ol,.dnb-core-style ol ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-core-style ol--outside li,.dnb-core-style ol li{position:relative}.dnb-core-style ol--outside li:before,.dnb-core-style ol li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-core-style ol--inside li:before{left:0;padding-right:0;position:relative;text-align:left;text-align:initial;width:auto}.dnb-core-style ol .dnb-anchor{font-size:inherit}.dnb-core-style ol li{list-style-type:decimal}.dnb-core-style ol--nested,.dnb-core-style ol--nested ol{counter-reset:item}.dnb-core-style ol--nested li{display:block}.dnb-core-style ol--nested li:before{content:counters(item,".") ". ";counter-increment:item}.dnb-core-style ol--nested li li:before{content:counters(item,".") " ";counter-increment:item}.dnb-core-style ol[type] li{display:list-item;list-style-type:inherit}.dnb-core-style ol[type] li:before,.dnb-core-style ol[type] li li:before{content:none}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style .dnb-spacing ol>li{margin-bottom:1rem;margin-top:1rem}.dnb-core-style .dnb-spacing ol>li>p{margin-top:1rem}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]) li>ol,.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]) li>ul,.dnb-core-style .dnb-spacing ol li>ol,.dnb-core-style .dnb-spacing ol li>ul{margin-top:-.5rem}.dnb-core-style dl{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-core-style dl:not([class*=dnb-space]){margin:0}.dnb-core-style dl dt{font-weight:500;font-weight:var(--font-weight-medium);margin-top:1rem;padding:0}.dnb-core-style dl dd~dt{margin-top:1.5rem}.dnb-core-style dl dd{margin:.5rem 0 1rem;padding:0}.dnb-core-style dl:not([class*=dnb-space])>dl,.dnb-core-style dl>dl{margin-left:2rem;margin-top:1.5rem}@media screen and (min-width:40em){.dnb-core-style dl__direction--horizontal{-webkit-box-orient:vertical;-webkit-box-direction:normal;grid-gap:.5rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:.5rem}.dnb-core-style dl__direction--horizontal dd,.dnb-core-style dl__direction--horizontal dt{margin-bottom:0;margin-top:0}.dnb-core-style dl__direction--horizontal dt{margin-right:1rem;max-width:60ch}.dnb-core-style dl__item{display:-webkit-box;display:-ms-flexbox;display:flex}}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style form{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style label{word-wrap:break-word;color:#333;color:var(--color-black-80);cursor:pointer}.dnb-core-style label[disabled]{cursor:not-allowed}.dnb-core-style code{background-color:#e9f8f4;background-color:var(--color-mint-green-25);border-radius:.1875em;color:inherit;display:inline-block;font-size:inherit;line-height:1em;line-height:var(--line-height-xx-small--em);padding:.25em;text-decoration:inherit}del .dnb-core-style code{text-decoration:line-through}.dnb-core-style code:not([class*=dnb-space]){margin:-.25em 0}.dnb-core-style pre{word-wrap:normal;background-color:#222;border-radius:.5rem;color:#f4fbf9;color:var(--color-mint-green-12);display:block;font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-size:inherit;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;outline:none;overflow:auto;padding:1rem;-moz-tab-size:2;-o-tab-size:2;tab-size:2;text-align:left;text-shadow:none;vertical-align:baseline;white-space:pre;word-break:normal;word-spacing:normal}.dnb-core-style pre:not([class*=dnb-space]){margin:0}.dnb-core-style pre pre{padding:1rem}.dnb-core-style pre .dnb-spacing pre:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style pre.dnb-pre--focus{--border-color:var(--color-sea-green);border-color:transparent;-webkit-box-shadow:0 0 0 .25rem var(--border-color);box-shadow:0 0 0 .25rem var(--border-color)}@media screen and (-ms-high-contrast:none){.dnb-core-style pre.dnb-pre--focus{-webkit-box-shadow:0 0 0 .25rem #007272;box-shadow:0 0 0 .25rem #007272;-webkit-box-shadow:0 0 0 .25rem var(--color-sea-green);box-shadow:0 0 0 .25rem var(--color-sea-green)}}
|
|
1
|
+
@charset "UTF-8";:root{--font-family-default:"DNB",sans-serif;--font-family-monospace:"DNBMono","Menlo","Consolas","Roboto Mono","Ubuntu Monospace","Noto Mono","Oxygen Mono","Liberation Mono",monospace;--font-weight-default:normal;--font-weight-basis:normal;--font-weight-regular:normal;--font-weight-medium:500;--font-weight-bold:600;--font-size-x-small:0.875rem;--font-size-small:1rem;--font-size-basis:1.125rem;--font-size-basis--em:1em;--font-size-medium:1.25rem;--font-size-large:1.625rem;--font-size-x-large:2.125rem;--font-size-xx-large:3rem;--line-height-xx-small--em:1em;--line-height-x-small:1.125rem;--line-height-small:1.25rem;--line-height-basis:1.5rem;--line-height-basis--em:1.333em;--line-height-medium:2rem;--line-height-large:2.5rem;--line-height-x-large:3.5rem;--color-mint-green-50:#d2f0e9;--color-mint-green-25:#e9f8f4;--color-mint-green-12:#f4fbf9;--color-sea-green-30:#b3dada;--color-accent-yellow-30:#feebc1;--color-signal-orange:#ff5400;--color-fire-red:#dc2a2a;--color-success-green:#007b5e;--color-fire-red-8:#fdeeee;--color-black:#000;--color-black-80:#333;--color-black-55:#737373;--color-black-20:#ccc;--color-black-8:#ebebeb;--color-black-3:#f8f8f8;--color-white:#fff;--color-black-border:#cdcdcd;--color-black-background:#fafafa;--color-sea-green:#007272;--color-mint-green:#a5e1d2;--color-summer-green:#28b482;--color-emerald-green:#14555a;--color-ocean-green:#00343e;--color-accent-yellow:#fdbb31;--color-indigo:#23195a;--color-violet:#6e2382;--color-sky-blue:#4bbed2;--color-lavender:#f2f2f5;--color-sand-yellow:#fbf6ec;--color-pistachio:#f2f4ec;--color-mint-green-alt:#ebfffa;--color-indigo-medium:#6e6491;--color-indigo-light:#b9afc8;--color-violet-medium:#a06eaf;--color-violet-light:#cfb9d7;--color-sky-blue-medium:#87d2e1;--color-sky-blue-light:#c3ebf0;--spacing-xx-small:0.25rem;--spacing-x-small:0.5rem;--spacing-small:1rem;--spacing-medium:1.5rem;--spacing-large:2rem;--spacing-x-large:3rem;--spacing-xx-large:3.5rem;--layout-small:40em;--layout-medium:50em;--layout-large:60em;--layout-x-large:72em;--layout-xx-large:80em;--layout-xxx-large:90em;--shadow-default:0 8px 16px rgba(51,51,51,.08);--shadow-default-x:0;--shadow-default-y:8px;--shadow-default-blur-radius:16px;--shadow-default-color:rgba(51,51,51,.08)}button.dnb-anchor{appearance:none;-moz-appearance:none;-webkit-appearance:none;background:none;border:none;cursor:pointer;line-height:1.625rem;line-height:calc(var(--line-height-basis) + .125rem)}.dnb-anchor{border-radius:0;-webkit-box-shadow:0 .09375rem 0 0 currentColor;box-shadow:0 .09375rem 0 0 currentColor;color:#007272;color:var(--color-sea-green);display:inline;font-size:1.125rem;font-size:var(--font-size-basis);padding:.05575em .125em;text-decoration:none;-webkit-transition:background-color .2s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out;transition:background-color .2s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .18s ease-in-out,border-radius .2s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .18s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out}.dnb-h--basis .dnb-anchor,.dnb-h--large .dnb-anchor,.dnb-h--medium .dnb-anchor,.dnb-h--small .dnb-anchor,.dnb-h--x-large .dnb-anchor,.dnb-h--x-small .dnb-anchor,.dnb-h--xx-large .dnb-anchor,.dnb-lead .dnb-anchor,.dnb-p .dnb-anchor{font-size:inherit}.dnb-anchor:focus{border-radius:.25em;outline:none}.dnb-anchor:focus:not(:active){background-color:transparent;color:#007272;color:var(--color-sea-green);-webkit-transition:none;transition:none}.dnb-anchor:focus:not(:active),.dnb-section .dnb-anchor:focus:not(:active).dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}html[data-whatinput=keyboard] .dnb-anchor:focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-anchor:focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-anchor:active,.dnb-anchor:hover{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-radius:.25em;color:#007272;color:var(--color-sea-green)}.dnb-anchor:active,.dnb-anchor:hover,.dnb-section .dnb-anchor:active.dnb-anchor,.dnb-section .dnb-anchor:hover.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor:active{background-color:#14555a;background-color:var(--color-emerald-green);border-radius:.25em;color:#a5e1d2;color:var(--color-mint-green)}.dnb-anchor:active,.dnb-section .dnb-anchor:active.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor[target=_blank]:not(:empty):not(.dnb-anchor--no-icon){background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiMwMDcyNzIiLz48L3N2Zz4=);background-size:0;position:relative}.dnb-anchor[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{background-image:inherit;background-size:cover;color:inherit;content:"";display:inline-block;height:.889em;margin-left:.3em;margin-right:.125em;position:relative;-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-transition:-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;transition:-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;transition:transform .3s ease-out,filter 1s ease-in-out;transition:transform .3s ease-out,filter 1s ease-in-out,-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;width:.889em}.dnb-anchor[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):active{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiNhNWUxZDIiLz48L3N2Zz4=)}.dnb-anchor[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{top:.125em}[data-visual-test-wrapper] .dnb-anchor{-webkit-transition:none;transition:none}.dnb-anchor .dnb-icon{display:inline-block;-webkit-transform:translateY(-.0625em);transform:translateY(-.0625em)}.dnb-anchor--hover{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-radius:.25em;color:#007272;color:var(--color-sea-green)}.dnb-anchor--hover,.dnb-section .dnb-anchor--hover.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--active{background-color:#14555a;background-color:var(--color-emerald-green);border-radius:.25em;color:#a5e1d2;color:var(--color-mint-green)}.dnb-anchor--active,.dnb-section .dnb-anchor--active.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--focus{border-radius:.25em;outline:none}.dnb-anchor--focus:not(:active){background-color:transparent;color:#007272;color:var(--color-sea-green);-webkit-transition:none;transition:none}.dnb-anchor--focus:not(:active),.dnb-section .dnb-anchor--focus:not(:active).dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}html[data-whatinput=mouse] .dnb-anchor--focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=mouse] .dnb-anchor--focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-anchor--no-style{color:inherit;-webkit-transition:none;transition:none}.dnb-anchor--no-style,.dnb-section .dnb-anchor--no-style.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--no-style:hover{background-color:transparent;color:inherit}.dnb-anchor--no-underline,.dnb-section .dnb-anchor--no-underline.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--no-hover:hover{background-color:transparent;color:inherit}.dnb-anchor--no-radius,.dnb-anchor--no-radius:active,.dnb-anchor--no-radius:focus,.dnb-anchor--no-radius:hover{border-radius:0}.dnb-anchor--no-animation{-webkit-transition:none;transition:none}.dnb-anchor--contrast{-webkit-box-shadow:0 .09375rem 0 0 #fff;box-shadow:0 .09375rem 0 0 #fff;-webkit-box-shadow:0 .09375rem 0 0 var(--color-white);box-shadow:0 .09375rem 0 0 var(--color-white);color:#fff;color:var(--color-white)}.dnb-anchor--contrast:active,.dnb-anchor--contrast:hover{-webkit-box-shadow:none;box-shadow:none}.dnb-anchor--contrast:active,.dnb-anchor--contrast:hover{background-color:#fff;background-color:var(--color-white);color:#14555a;color:var(--color-emerald-green)}.dnb-anchor--contrast:not(:disabled):focus{background-color:transparent;color:#fff;color:var(--color-white);outline:none}html[data-whatinput=keyboard] .dnb-anchor--contrast:not(:disabled):focus{--border-color:var(--color-white);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-anchor--contrast:not(:disabled):focus{-webkit-box-shadow:0 0 0 .125rem #fff;box-shadow:0 0 0 .125rem #fff;-webkit-box-shadow:0 0 0 .125rem var(--color-white);box-shadow:0 0 0 .125rem var(--color-white)}}a.dnb-button{-webkit-transition:none;transition:none}.dnb-anchor.dnb-skeleton,.dnb-skeleton>.dnb-anchor{-webkit-box-shadow:none;box-shadow:none}.dnb-anchor.dnb-skeleton:after,.dnb-skeleton>.dnb-anchor:after{-webkit-filter:grayscale(100%) opacity(.3);filter:grayscale(100%) opacity(.3)}.dnb-small{font-size:1rem;font-size:var(--font-size-small)}.dnb-p{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);padding:0}.dnb-p:not([class*=space__top]){margin-top:0}.dnb-p:not([class*=space__bottom]){margin-bottom:0}.dnb-p--lead{font-size:1.25rem;font-size:var(--font-size-medium);font-weight:500;font-weight:var(--font-weight-medium);line-height:1.75rem;line-height:calc(var(--line-height-medium) - .25rem)}.dnb-p--lead>small{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-p--ingress,.dnb-p--medium,.dnb-p b,.dnb-p strong{font-weight:500;font-weight:var(--font-weight-medium)}.dnb-p--bold{font-weight:600;font-weight:var(--font-weight-bold)}.dnb-p__size--xx-large{font-size:3rem;font-size:var(--font-size-xx-large)}.dnb-p__size--x-large,.dnb-p__size--xx-large{line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-p__size--x-large{font-size:2.125rem;font-size:var(--font-size-x-large)}.dnb-p__size--large{font-size:1.625rem;font-size:var(--font-size-large);line-height:2.5rem;line-height:var(--line-height-large)}.dnb-p__size--basis{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-p__size--medium{font-size:1.25rem;font-size:var(--font-size-medium);line-height:2rem;line-height:var(--line-height-medium)}.dnb-p--small,.dnb-p>small,.dnb-p__size--small{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-p--x-small,.dnb-p__size--x-small{font-size:.875rem;font-size:var(--font-size-x-small);line-height:1.125rem;line-height:var(--line-height-x-small)}.dnb-p>cite{font-style:italic;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-h--xx-large{font-size:3rem;font-size:var(--font-size-xx-large);line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-h--xx-large>small{display:block}.dnb-h--x-large,.dnb-h--x-large>small,.dnb-h--xx-large>small{font-size:2.125rem;font-size:var(--font-size-x-large);line-height:2.5rem;line-height:var(--line-height-large)}.dnb-h--x-large>small{display:block}.dnb-h--large{font-size:1.625rem;font-size:var(--font-size-large);line-height:2rem;line-height:var(--line-height-medium)}.dnb-h--large>small{line-height:1.875rem;line-height:calc(var(--line-height-medium) - .125rem)}.dnb-h--large>small,.dnb-h--medium,.dnb-lead{font-size:1.25rem;font-size:var(--font-size-medium)}.dnb-h--medium,.dnb-lead{font-weight:500;font-weight:var(--font-weight-medium);line-height:1.75rem;line-height:calc(var(--line-height-medium) - .25rem)}.dnb-h--basis,.dnb-h--medium>small,.dnb-lead>small{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-h--basis>small,.dnb-h--small{font-size:1rem;font-size:var(--font-size-small)}.dnb-h--basis>small,.dnb-h--small,.dnb-h--small>small{line-height:1.25rem;line-height:var(--line-height-small)}.dnb-h--small>small,.dnb-h--x-small{font-size:.875rem;font-size:var(--font-size-x-small)}.dnb-h--x-small{line-height:1.125rem;line-height:var(--line-height-x-small)}.dnb-core-style .dnb-h--basis,.dnb-core-style .dnb-h--large,.dnb-core-style .dnb-h--medium,.dnb-core-style .dnb-h--small,.dnb-core-style .dnb-h--x-large,.dnb-core-style .dnb-h--x-small,.dnb-core-style .dnb-h--xx-large,.dnb-core-style .dnb-lead,.dnb-h--basis,.dnb-h--large,.dnb-h--medium,.dnb-h--small,.dnb-h--x-large,.dnb-h--x-small,.dnb-h--xx-large,.dnb-lead{color:currentColor;color:var(--theme-color-black-80,currentColor);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-weight:500;font-weight:var(--font-weight-medium);padding:0}.dnb-core-style .dnb-h--basis:not([class*=dnb-space]),.dnb-core-style .dnb-h--large:not([class*=dnb-space]),.dnb-core-style .dnb-h--medium:not([class*=dnb-space]),.dnb-core-style .dnb-h--small:not([class*=dnb-space]),.dnb-core-style .dnb-h--x-large:not([class*=dnb-space]),.dnb-core-style .dnb-h--x-small:not([class*=dnb-space]),.dnb-core-style .dnb-h--xx-large:not([class*=dnb-space]),.dnb-core-style .dnb-lead:not([class*=dnb-space]),.dnb-h--basis:not([class*=dnb-space]),.dnb-h--large:not([class*=dnb-space]),.dnb-h--medium:not([class*=dnb-space]),.dnb-h--small:not([class*=dnb-space]),.dnb-h--x-large:not([class*=dnb-space]),.dnb-h--x-small:not([class*=dnb-space]),.dnb-h--xx-large:not([class*=dnb-space]),.dnb-lead:not([class*=dnb-space]){margin:0}.dnb-core-style .dnb-h--basis .dnb-icon--default,.dnb-core-style .dnb-h--large .dnb-icon--default,.dnb-core-style .dnb-h--medium .dnb-icon--default,.dnb-core-style .dnb-h--small .dnb-icon--default,.dnb-core-style .dnb-h--x-large .dnb-icon--default,.dnb-core-style .dnb-h--x-small .dnb-icon--default,.dnb-core-style .dnb-h--xx-large .dnb-icon--default,.dnb-core-style .dnb-lead .dnb-icon--default,.dnb-h--basis .dnb-icon--default,.dnb-h--large .dnb-icon--default,.dnb-h--medium .dnb-icon--default,.dnb-h--small .dnb-icon--default,.dnb-h--x-large .dnb-icon--default,.dnb-h--x-small .dnb-icon--default,.dnb-h--xx-large .dnb-icon--default,.dnb-lead .dnb-icon--default{font-size:1em}.dnb-core-style .dnb-h--basis .dnb-icon--medium,.dnb-core-style .dnb-h--large .dnb-icon--medium,.dnb-core-style .dnb-h--medium .dnb-icon--medium,.dnb-core-style .dnb-h--small .dnb-icon--medium,.dnb-core-style .dnb-h--x-large .dnb-icon--medium,.dnb-core-style .dnb-h--x-small .dnb-icon--medium,.dnb-core-style .dnb-h--xx-large .dnb-icon--medium,.dnb-core-style .dnb-lead .dnb-icon--medium,.dnb-h--basis .dnb-icon--medium,.dnb-h--large .dnb-icon--medium,.dnb-h--medium .dnb-icon--medium,.dnb-h--small .dnb-icon--medium,.dnb-h--x-large .dnb-icon--medium,.dnb-h--x-small .dnb-icon--medium,.dnb-h--xx-large .dnb-icon--medium,.dnb-lead .dnb-icon--medium{font-size:1.5em}.dnb-core-style .dnb-h--basis .dnb-anchor,.dnb-core-style .dnb-h--basis a,.dnb-core-style .dnb-h--large .dnb-anchor,.dnb-core-style .dnb-h--large a,.dnb-core-style .dnb-h--medium .dnb-anchor,.dnb-core-style .dnb-h--medium a,.dnb-core-style .dnb-h--small .dnb-anchor,.dnb-core-style .dnb-h--small a,.dnb-core-style .dnb-h--x-large .dnb-anchor,.dnb-core-style .dnb-h--x-large a,.dnb-core-style .dnb-h--x-small .dnb-anchor,.dnb-core-style .dnb-h--x-small a,.dnb-core-style .dnb-h--xx-large .dnb-anchor,.dnb-core-style .dnb-h--xx-large a,.dnb-core-style .dnb-lead .dnb-anchor,.dnb-core-style .dnb-lead a,.dnb-h--basis .dnb-anchor,.dnb-h--basis a,.dnb-h--large .dnb-anchor,.dnb-h--large a,.dnb-h--medium .dnb-anchor,.dnb-h--medium a,.dnb-h--small .dnb-anchor,.dnb-h--small a,.dnb-h--x-large .dnb-anchor,.dnb-h--x-large a,.dnb-h--x-small .dnb-anchor,.dnb-h--x-small a,.dnb-h--xx-large .dnb-anchor,.dnb-h--xx-large a,.dnb-lead .dnb-anchor,.dnb-lead a{padding-bottom:.03125rem;padding-top:0}.dnb-core-style .dnb-spacing .dnb-h--xx-large:not([class*=space__top]),.dnb-spacing .dnb-h--xx-large:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-spacing .dnb-h--xx-large:not([class*=space__bottom]),.dnb-spacing .dnb-h--xx-large:not([class*=space__bottom]){margin-bottom:2.5rem}.dnb-core-style .dnb-spacing .dnb-h--x-large:not([class*=space__top]),.dnb-spacing .dnb-h--x-large:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-spacing .dnb-h--x-large:not([class*=space__bottom]),.dnb-spacing .dnb-h--x-large:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-spacing .dnb-h--large:not([class*=space__top]),.dnb-spacing .dnb-h--large:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-spacing .dnb-h--large:not([class*=space__bottom]),.dnb-spacing .dnb-h--large:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-spacing .dnb-h--basis:not([class*=space__top]),.dnb-core-style .dnb-spacing .dnb-h--medium:not([class*=space__top]),.dnb-core-style .dnb-spacing .dnb-h--small:not([class*=space__top]),.dnb-core-style .dnb-spacing .dnb-h--x-small:not([class*=space__top]),.dnb-core-style .dnb-spacing .dnb-lead:not([class*=space__top]),.dnb-spacing .dnb-h--basis:not([class*=space__top]),.dnb-spacing .dnb-h--medium:not([class*=space__top]),.dnb-spacing .dnb-h--small:not([class*=space__top]),.dnb-spacing .dnb-h--x-small:not([class*=space__top]),.dnb-spacing .dnb-lead:not([class*=space__top]){margin-top:2rem}.dnb-core-style .dnb-spacing .dnb-h--basis:not([class*=space__bottom]),.dnb-core-style .dnb-spacing .dnb-h--medium:not([class*=space__bottom]),.dnb-core-style .dnb-spacing .dnb-h--small:not([class*=space__bottom]),.dnb-core-style .dnb-spacing .dnb-h--x-small:not([class*=space__bottom]),.dnb-core-style .dnb-spacing .dnb-lead:not([class*=space__bottom]),.dnb-spacing .dnb-h--basis:not([class*=space__bottom]),.dnb-spacing .dnb-h--medium:not([class*=space__bottom]),.dnb-spacing .dnb-h--small:not([class*=space__bottom]),.dnb-spacing .dnb-h--x-small:not([class*=space__bottom]),.dnb-spacing .dnb-lead:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-spacing .dnb-p:not([class*=dnb-space__top]),.dnb-spacing .dnb-p:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing .dnb-p:not([class*=dnb-space__bottom]),.dnb-spacing .dnb-p:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-blockquote{background-color:#00343e;background-color:var(--color-ocean-green);border-radius:1rem;color:#a5e1d2;color:var(--color-mint-green);display:inline-block;font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small);padding:1.5rem;position:relative;width:auto}.dnb-blockquote:not([class*=dnb-space]){margin:0}.dnb-blockquote:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0E1RTFEMiIgc3Ryb2tlPSIjQTVFMUQyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMzcuNSAyNy41YTkgOSAwIDEgMCAwLTE4IDkgOSAwIDAgMCAwIDE4eiIvPjxwYXRoIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTQ2LjUgMTguNWEyMSAyMSAwIDAgMS0yMSAyMSIvPjxwYXRoIGZpbGw9IiNBNUUxRDIiIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTEzLjUgMjcuNWE5IDkgMCAxIDAgMC0xOCA5IDkgMCAwIDAgMCAxOHoiLz48cGF0aCBzdHJva2U9IiNBNUUxRDIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0yMi41IDE4LjVhMjEgMjEgMCAwIDEtMjEgMjEiLz48L3N2Zz4=);background-size:cover;content:"";height:3em;left:1.5rem;position:absolute;top:2rem;width:3em}.dnb-blockquote,.dnb-blockquote.dnb-blockquote--left{padding-bottom:3rem;padding-left:6rem;padding-top:2rem}.dnb-blockquote.dnb-blockquote--top{padding-bottom:3rem;padding-left:1.5rem;padding-top:6rem}.dnb-blockquote.dnb-blockquote--no-background{background-color:transparent;color:currentColor;color:var(--theme-color-black-80,currentColor)}.dnb-blockquote.dnb-blockquote--no-background:before{-webkit-filter:grayscale(1) brightness(24%);filter:grayscale(1) brightness(24%)}.dnb-blockquote .dnb-cite,.dnb-blockquote .dnb-figcaption,.dnb-blockquote cite,.dnb-blockquote figcaption,.dnb-blockquote footer{display:block;font-style:italic;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis);margin-top:1rem}.dnb-blockquote .dnb-cite:before,.dnb-blockquote .dnb-figcaption:before,.dnb-blockquote cite:before,.dnb-blockquote figcaption:before,.dnb-blockquote footer:before{content:"—";display:inline-block;padding-right:.5rem}.dnb-spacing .dnb-blockquote .dnb-h--large,.dnb-spacing .dnb-blockquote .dnb-h--medium,.dnb-spacing .dnb-blockquote .dnb-h--xx-large,.dnb-spacing .dnb-blockquote .dnb-lead,.dnb-spacing .dnb-blockquote h1,.dnb-spacing .dnb-blockquote h2,.dnb-spacing .dnb-blockquote h3{margin:0}.dnb-blockquote .dnb-anchor{font-size:inherit}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor,.dnb-blockquote:not(.dnb-blockquote--no-background) a{-webkit-box-shadow:0 .09375rem 0 0 #fff;box-shadow:0 .09375rem 0 0 #fff;-webkit-box-shadow:0 .09375rem 0 0 var(--color-white);box-shadow:0 .09375rem 0 0 var(--color-white);color:#fff;color:var(--color-white)}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:active,.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:hover,.dnb-blockquote:not(.dnb-blockquote--no-background) a:active,.dnb-blockquote:not(.dnb-blockquote--no-background) a:hover{background-color:#fff;background-color:var(--color-white);-webkit-box-shadow:none;box-shadow:none;color:#14555a;color:var(--color-emerald-green)}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:active,.dnb-blockquote:not(.dnb-blockquote--no-background) a:active{background-color:#fff;background-color:var(--color-white);color:#14555a;color:var(--color-emerald-green)}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,.dnb-blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{background-color:transparent;color:#fff;color:var(--color-white);outline:none}html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{--border-color:var(--color-white);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,html[data-whatinput=keyboard] .dnb-blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{-webkit-box-shadow:0 0 0 .125rem #fff;box-shadow:0 0 0 .125rem #fff;-webkit-box-shadow:0 0 0 .125rem var(--color-white);box-shadow:0 0 0 .125rem var(--color-white)}}.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-h--large,.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-h--medium,.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-h--xx-large,.dnb-blockquote:not(.dnb-blockquote--no-background) .dnb-lead,.dnb-blockquote:not(.dnb-blockquote--no-background) h1,.dnb-blockquote:not(.dnb-blockquote--no-background) h2,.dnb-blockquote:not(.dnb-blockquote--no-background) h3{color:#a5e1d2;color:var(--color-mint-green)}.dnb-spacing .dnb-blockquote:not([class*=dnb-space__top]){margin-top:0}.dnb-spacing .dnb-blockquote:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-spacing .dnb-blockquote p:last-child{margin-bottom:0}.dnb-ul{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-ul:not([class*=dnb-space]){margin:0}.dnb-ul:not([class*=dnb-space__left]){padding-left:2rem}.dnb-ul ol,.dnb-ul ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-ul--outside li,.dnb-ul li{position:relative}.dnb-ul--outside li:before,.dnb-ul li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-ul--inside li:before{left:0;padding-right:0;position:relative;text-align:left;text-align:initial;width:auto}.dnb-ul .dnb-anchor{font-size:inherit}.dnb-ul li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-ol{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-ol:not([class*=dnb-space]){margin:0}.dnb-ol:not([class*=dnb-space__left]){padding-left:2rem}.dnb-ol li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-ol ol,.dnb-ol ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-ol--outside li,.dnb-ol li{position:relative}.dnb-ol--outside li:before,.dnb-ol li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-ol--inside li:before{left:0;padding-right:0;position:relative;text-align:left;text-align:initial;width:auto}.dnb-ol .dnb-anchor{font-size:inherit}.dnb-ol li{list-style-type:decimal}.dnb-ol--nested,.dnb-ol--nested ol{counter-reset:item}.dnb-ol--nested li{display:block}.dnb-ol--nested li:before{content:counters(item,".") ". ";counter-increment:item}.dnb-ol--nested li li:before{content:counters(item,".") " ";counter-increment:item}.dnb-ol[type] li{display:list-item;list-style-type:inherit}.dnb-ol[type] li:before,.dnb-ol[type] li li:before{content:none}.dnb-dl{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-dl:not([class*=dnb-space__top]){margin-top:0}.dnb-dl:not([class*=dnb-space__bottom]){margin-bottom:0}.dnb-dl dt{font-weight:500;font-weight:var(--font-weight-medium);margin-top:1rem;padding:0}.dnb-dl dd~dt{margin-top:1.5rem}.dnb-dl dd{margin:.5rem 0 1rem;padding:0}.dnb-dl:not([class*=dnb-space])>dd>dl,.dnb-dl>dd>dl{margin-left:2rem;margin-top:1.5rem}@media screen and (min-width:40em){.dnb-dl__direction--horizontal{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.dnb-dl__direction--horizontal dt{margin-right:1rem;max-width:40%}.dnb-dl__direction--horizontal dd{width:calc(60% - 1rem)}.dnb-dl__direction--horizontal dd,.dnb-dl__direction--horizontal dd~dt,.dnb-dl__direction--horizontal dt{margin-bottom:0;margin-top:.5rem}.dnb-dl__direction--horizontal dd:first-of-type,.dnb-dl__direction--horizontal dd~dt:first-of-type,.dnb-dl__direction--horizontal dt:first-of-type{margin-top:0}.dnb-dl dd.dnb-dl__item{height:0;margin:0;width:100%}}.dnb-spacing .dnb-ol:not([class*=dnb-space__top]),.dnb-spacing .dnb-ul:not([class*=dnb-space__top]){margin-top:0}.dnb-spacing .dnb-ol:not([class*=dnb-space__bottom]),.dnb-spacing .dnb-ul:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-spacing .dnb-ol>li,.dnb-spacing .dnb-ul>li{margin-bottom:1rem;margin-top:1rem}.dnb-spacing .dnb-ol>li>p,.dnb-spacing .dnb-ul>li>p{margin-top:1rem}.dnb-spacing .dnb-ol:not([class*=dnb-space]) li>ol,.dnb-spacing .dnb-ol:not([class*=dnb-space]) li>ul,.dnb-spacing .dnb-ol li>ol,.dnb-spacing .dnb-ol li>ul,.dnb-spacing .dnb-ul:not([class*=dnb-space]) li>ol,.dnb-spacing .dnb-ul:not([class*=dnb-space]) li>ul,.dnb-spacing .dnb-ul li>ol,.dnb-spacing .dnb-ul li>ul{margin-top:-.5rem}.dnb-spacing .dnb-dl:not([class*=dnb-space__top]){margin-top:0}.dnb-spacing .dnb-dl:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-unstyled-list{list-style-type:none}.dnb-unstyled-list:not([class*=dnb-space]){margin:0}.dnb-unstyled-list:not([class*=dnb-space__left]){padding-left:0}.dnb-unstyled-list>li{list-style-type:none}.dnb-unstyled-list>li:before{content:none}.dnb-unstyled-list>dd,.dnb-unstyled-list>dl{margin-left:0}.dnb-label{word-wrap:break-word;color:#333;color:var(--color-black-80);cursor:pointer}.dnb-label[disabled]{cursor:not-allowed}.dnb-form{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-code{background-color:#e9f8f4;background-color:var(--color-mint-green-25);border-radius:.1875em;color:inherit;display:inline-block;font-size:inherit;line-height:1em;line-height:var(--line-height-xx-small--em);padding:.25em;text-decoration:inherit}del .dnb-code{text-decoration:line-through}.dnb-code:not([class*=dnb-space]){margin:-.25em 0}.dnb-pre{word-wrap:normal;background-color:#222;border-radius:.5rem;color:#f4fbf9;color:var(--color-mint-green-12);display:block;font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-size:inherit;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;outline:none;overflow:auto;padding:1rem;-moz-tab-size:2;-o-tab-size:2;tab-size:2;text-align:left;text-shadow:none;vertical-align:baseline;white-space:pre;word-break:normal;word-spacing:normal}.dnb-pre:not([class*=dnb-space]){margin:0}.dnb-pre pre{padding:1rem}.dnb-pre .dnb-spacing pre:not([class*=dnb-space__top]){margin-top:0}.dnb-pre .dnb-spacing pre:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-pre.dnb-pre--focus{--border-color:var(--color-sea-green);border-color:transparent;-webkit-box-shadow:0 0 0 .25rem var(--border-color);box-shadow:0 0 0 .25rem var(--border-color)}@media screen and (-ms-high-contrast:none){.dnb-pre.dnb-pre--focus{-webkit-box-shadow:0 0 0 .25rem #007272;box-shadow:0 0 0 .25rem #007272;-webkit-box-shadow:0 0 0 .25rem var(--color-sea-green);box-shadow:0 0 0 .25rem var(--color-sea-green)}}.dnb-spacing .dnb-pre:not([class*=dnb-space__top]){margin-top:0}.dnb-spacing .dnb-pre:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-skeleton>.dnb-code{background-color:transparent}.dnb-img{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;padding:0;text-align:center}.dnb-img:not([class*=dnb-space]){margin:0}.dnb-img figcaption,.dnb-img img{font-size:1.125rem;font-size:var(--font-size-basis)}.dnb-img img{border-radius:inherit;border-style:none;-webkit-box-sizing:content-box;box-sizing:content-box;max-width:100%;position:relative;z-index:2}.dnb-img img[alt]:after{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;background-color:#ebebeb;background-color:var(--color-black-8);border-radius:inherit;color:#333;color:var(--color-black-80);content:attr(alt);display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:3}.dnb-img figcaption{margin-top:.5rem}.dnb-img__img--error{background-color:#ebebeb;background-color:var(--color-black-8)}.dnb-hr,.dnb-img__img--error{color:#333;color:var(--color-black-80)}.dnb-hr{border:0;display:-webkit-box;display:-ms-flexbox;display:flex;height:0;padding:0;position:relative}.dnb-hr:not([class*=dnb-space]){margin:0}.dnb-hr:after{background-color:currentColor;border-radius:.5px;color:inherit;content:"";height:1px;left:0;position:absolute;right:0;top:0;width:100%;z-index:1}.dnb-hr--fullscreen:after{left:-100vw;width:200vw}.dnb-hr--light:after{background-color:transparent;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(60%,currentColor),color-stop(65%,transparent));background-image:linear-gradient(180deg,currentColor 60%,transparent 65%);background-size:100% 1px;border-radius:.25px}.dnb-hr--medium:after{background-color:transparent;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(51%,currentColor),color-stop(51%,transparent));background-image:linear-gradient(180deg,currentColor 51%,transparent 0);background-size:100% 3px;border-radius:.75px;height:2px}.dnb-spacing .dnb-hr:not([class*=dnb-space__top]){margin-top:0}.dnb-spacing .dnb-hr:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style a{border-radius:0;-webkit-box-shadow:0 .09375rem 0 0 currentColor;box-shadow:0 .09375rem 0 0 currentColor;color:#007272;color:var(--color-sea-green);display:inline;font-size:1.125rem;font-size:var(--font-size-basis);padding:.05575em .125em;text-decoration:none;-webkit-transition:background-color .2s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out;transition:background-color .2s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .18s ease-in-out,border-radius .2s ease-in-out;transition:background-color .2s ease-in-out,box-shadow .18s ease-in-out,border-radius .2s ease-in-out,-webkit-box-shadow .18s ease-in-out}.dnb-h--basis .dnb-core-style a,.dnb-h--large .dnb-core-style a,.dnb-h--medium .dnb-core-style a,.dnb-h--small .dnb-core-style a,.dnb-h--x-large .dnb-core-style a,.dnb-h--x-small .dnb-core-style a,.dnb-h--xx-large .dnb-core-style a,.dnb-lead .dnb-core-style a,.dnb-p .dnb-core-style a{font-size:inherit}.dnb-core-style a:focus{border-radius:.25em;outline:none}.dnb-core-style a:focus:not(:active){background-color:transparent;color:#007272;color:var(--color-sea-green);-webkit-transition:none;transition:none}.dnb-core-style a:focus:not(:active),.dnb-section .dnb-core-style a:focus:not(:active).dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}html[data-whatinput=keyboard] .dnb-core-style a:focus{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-core-style a:focus{-webkit-box-shadow:0 0 0 .125rem #14555a;box-shadow:0 0 0 .125rem #14555a;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green);box-shadow:0 0 0 .125rem var(--color-emerald-green)}}.dnb-core-style a:active,.dnb-core-style a:hover{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-radius:.25em;color:#007272;color:var(--color-sea-green)}.dnb-core-style a:active,.dnb-core-style a:hover,.dnb-section .dnb-core-style a:active.dnb-anchor,.dnb-section .dnb-core-style a:hover.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-core-style a:active{background-color:#14555a;background-color:var(--color-emerald-green);border-radius:.25em;color:#a5e1d2;color:var(--color-mint-green)}.dnb-core-style a:active,.dnb-section .dnb-core-style a:active.dnb-anchor{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon){background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiMwMDcyNzIiLz48L3N2Zz4=);background-size:0;position:relative}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{background-image:inherit;background-size:cover;color:inherit;content:"";display:inline-block;height:.889em;margin-left:.3em;margin-right:.125em;position:relative;-webkit-transform-origin:bottom;transform-origin:bottom;-webkit-transition:-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;transition:-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;transition:transform .3s ease-out,filter 1s ease-in-out;transition:transform .3s ease-out,filter 1s ease-in-out,-webkit-transform .3s ease-out,-webkit-filter 1s ease-in-out;width:.889em}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):active{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDBhLjc1Ljc1IDAgMCAwIDAgMS41VjB6bTQgLjc1aC43NUEuNzUuNzUgMCAwIDAgMTUgMHYuNzV6bS0uNzUgNGEuNzUuNzUgMCAwIDAgMS41IDBoLTEuNXptMS41IDRhLjc1Ljc1IDAgMCAwLTEuNSAwaDEuNXptLS43NSA2LjVWMTZjLjQxIDAgLjc1LS4zNC43NS0uNzVIMTV6bS0xNCAwSC4yNWMwIC40MS4zNC43NS43NS43NXYtLjc1ek0xIC43NVYwYS43NS43NSAwIDAgMC0uNzUuNzVIMXptNS43NS43NWEuNzUuNzUgMCAwIDAgMC0xLjV2MS41em0yLjcyIDMuNzJhLjc1Ljc1IDAgMCAwIDEuMDYgMS4wNkw5LjQ3IDUuMjJ6TTE0LjI1Ljc1djRoMS41di00aC0xLjV6bTAgOHY2LjVoMS41di02LjVoLTEuNXpNMTUgMTQuNUgxVjE2aDE0di0xLjV6bS0xMy4yNS43NVYuNzVILjI1djE0LjVoMS41ek0xIDEuNWg1Ljc1VjBIMXYxLjV6bTEwIDBoNFYwaC00djEuNXptLS40NyA0Ljc4IDUtNUwxNC40Ny4yMmwtNSA1IDEuMDYgMS4wNnoiIGZpbGw9IiNhNWUxZDIiLz48L3N2Zz4=)}.dnb-core-style a[target=_blank]:not(:empty):not(.dnb-anchor--no-icon):after{top:.125em}[data-visual-test-wrapper] .dnb-core-style a{-webkit-transition:none;transition:none}.dnb-core-style a .dnb-icon{display:inline-block;-webkit-transform:translateY(-.0625em);transform:translateY(-.0625em)}.dnb-core-style img{border-radius:inherit;border-style:none;-webkit-box-sizing:content-box;box-sizing:content-box;max-width:100%;position:relative;z-index:2}.dnb-core-style img[alt]:after{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;background-color:#ebebeb;background-color:var(--color-black-8);border-radius:inherit;color:#333;color:var(--color-black-80);content:attr(alt);display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:3}.dnb-core-style blockquote{background-color:#00343e;background-color:var(--color-ocean-green);border-radius:1rem;color:#a5e1d2;color:var(--color-mint-green);display:inline-block;font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small);padding:1.5rem;position:relative;width:auto}.dnb-core-style blockquote:not([class*=dnb-space]){margin:0}.dnb-core-style blockquote:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI0E1RTFEMiIgc3Ryb2tlPSIjQTVFMUQyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMzcuNSAyNy41YTkgOSAwIDEgMCAwLTE4IDkgOSAwIDAgMCAwIDE4eiIvPjxwYXRoIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTQ2LjUgMTguNWEyMSAyMSAwIDAgMS0yMSAyMSIvPjxwYXRoIGZpbGw9IiNBNUUxRDIiIHN0cm9rZT0iI0E1RTFEMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTEzLjUgMjcuNWE5IDkgMCAxIDAgMC0xOCA5IDkgMCAwIDAgMCAxOHoiLz48cGF0aCBzdHJva2U9IiNBNUUxRDIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik0yMi41IDE4LjVhMjEgMjEgMCAwIDEtMjEgMjEiLz48L3N2Zz4=);background-size:cover;content:"";height:3em;left:1.5rem;position:absolute;top:2rem;width:3em}.dnb-core-style blockquote,.dnb-core-style blockquote.dnb-blockquote--left{padding-bottom:3rem;padding-left:6rem;padding-top:2rem}.dnb-core-style blockquote.dnb-blockquote--top{padding-bottom:3rem;padding-left:1.5rem;padding-top:6rem}.dnb-core-style blockquote.dnb-blockquote--no-background{background-color:transparent;color:currentColor;color:var(--theme-color-black-80,currentColor)}.dnb-core-style blockquote.dnb-blockquote--no-background:before{-webkit-filter:grayscale(1) brightness(24%);filter:grayscale(1) brightness(24%)}.dnb-core-style blockquote .dnb-cite,.dnb-core-style blockquote .dnb-figcaption,.dnb-core-style blockquote cite,.dnb-core-style blockquote figcaption,.dnb-core-style blockquote footer{display:block;font-style:italic;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis);margin-top:1rem}.dnb-core-style blockquote .dnb-cite:before,.dnb-core-style blockquote .dnb-figcaption:before,.dnb-core-style blockquote cite:before,.dnb-core-style blockquote figcaption:before,.dnb-core-style blockquote footer:before{content:"—";display:inline-block;padding-right:.5rem}.dnb-spacing .dnb-core-style blockquote .dnb-h--large,.dnb-spacing .dnb-core-style blockquote .dnb-h--medium,.dnb-spacing .dnb-core-style blockquote .dnb-h--xx-large,.dnb-spacing .dnb-core-style blockquote .dnb-lead,.dnb-spacing .dnb-core-style blockquote h1,.dnb-spacing .dnb-core-style blockquote h2,.dnb-spacing .dnb-core-style blockquote h3{margin:0}.dnb-core-style blockquote .dnb-anchor{font-size:inherit}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a{-webkit-box-shadow:0 .09375rem 0 0 #fff;box-shadow:0 .09375rem 0 0 #fff;-webkit-box-shadow:0 .09375rem 0 0 var(--color-white);box-shadow:0 .09375rem 0 0 var(--color-white);color:#fff;color:var(--color-white)}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:active,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:hover,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:active,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:hover{background-color:#fff;background-color:var(--color-white);-webkit-box-shadow:none;box-shadow:none;color:#14555a;color:var(--color-emerald-green)}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:active,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:active{background-color:#fff;background-color:var(--color-white);color:#14555a;color:var(--color-emerald-green)}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{background-color:transparent;color:#fff;color:var(--color-white);outline:none}html[data-whatinput=keyboard] .dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,html[data-whatinput=keyboard] .dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{--border-color:var(--color-white);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color);box-shadow:0 0 0 .125rem var(--border-color)}@media screen and (-ms-high-contrast:none){html[data-whatinput=keyboard] .dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-anchor:not(:disabled):focus,html[data-whatinput=keyboard] .dnb-core-style blockquote:not(.dnb-blockquote--no-background) a:not(:disabled):focus{-webkit-box-shadow:0 0 0 .125rem #fff;box-shadow:0 0 0 .125rem #fff;-webkit-box-shadow:0 0 0 .125rem var(--color-white);box-shadow:0 0 0 .125rem var(--color-white)}}.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-h--large,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-h--medium,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-h--xx-large,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) .dnb-lead,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) h1,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) h2,.dnb-core-style blockquote:not(.dnb-blockquote--no-background) h3{color:#a5e1d2;color:var(--color-mint-green)}.dnb-core-style .dnb-spacing blockquote:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing blockquote:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing blockquote p:last-child{margin-bottom:0}.dnb-core-style hr{border:0;color:#333;color:var(--color-black-80);display:-webkit-box;display:-ms-flexbox;display:flex;height:0;padding:0;position:relative}.dnb-core-style hr:not([class*=dnb-space]){margin:0}.dnb-core-style hr:after{background-color:currentColor;border-radius:.5px;color:inherit;content:"";height:1px;left:0;position:absolute;right:0;top:0;width:100%;z-index:1}.dnb-core-style .dnb-spacing hr:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing hr:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style p{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);padding:0}.dnb-core-style p:not([class*=space__top]){margin-top:0}.dnb-core-style p:not([class*=space__bottom]){margin-bottom:0}.dnb-core-style p--lead{font-size:1.25rem;font-size:var(--font-size-medium);font-weight:500;font-weight:var(--font-weight-medium);line-height:1.75rem;line-height:calc(var(--line-height-medium) - .25rem)}.dnb-core-style p--lead>small{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style p--ingress,.dnb-core-style p--medium,.dnb-core-style p b,.dnb-core-style p strong{font-weight:500;font-weight:var(--font-weight-medium)}.dnb-core-style p--bold{font-weight:600;font-weight:var(--font-weight-bold)}.dnb-core-style p__size--xx-large{font-size:3rem;font-size:var(--font-size-xx-large);line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-core-style p__size--x-large{font-size:2.125rem;font-size:var(--font-size-x-large);line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-core-style p__size--large{font-size:1.625rem;font-size:var(--font-size-large);line-height:2.5rem;line-height:var(--line-height-large)}.dnb-core-style p__size--basis{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style p__size--medium{font-size:1.25rem;font-size:var(--font-size-medium);line-height:2rem;line-height:var(--line-height-medium)}.dnb-core-style p--small,.dnb-core-style p>small,.dnb-core-style p__size--small{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-core-style p--x-small,.dnb-core-style p__size--x-small{font-size:.875rem;font-size:var(--font-size-x-small);line-height:1.125rem;line-height:var(--line-height-x-small)}.dnb-core-style p>cite{font-style:italic;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style b,.dnb-core-style strong{font-weight:600;font-weight:var(--font-weight-bold)}.dnb-core-style small{font-size:1rem;font-size:var(--font-size-small)}.dnb-core-style h1,.dnb-core-style h2,.dnb-core-style h3,.dnb-core-style h4,.dnb-core-style h5,.dnb-core-style h6{color:currentColor;color:var(--theme-color-black-80,currentColor);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-weight:500;font-weight:var(--font-weight-medium);padding:0}.dnb-core-style h1:not([class*=dnb-space]),.dnb-core-style h2:not([class*=dnb-space]),.dnb-core-style h3:not([class*=dnb-space]),.dnb-core-style h4:not([class*=dnb-space]),.dnb-core-style h5:not([class*=dnb-space]),.dnb-core-style h6:not([class*=dnb-space]){margin:0}.dnb-core-style h1 .dnb-icon--default,.dnb-core-style h2 .dnb-icon--default,.dnb-core-style h3 .dnb-icon--default,.dnb-core-style h4 .dnb-icon--default,.dnb-core-style h5 .dnb-icon--default,.dnb-core-style h6 .dnb-icon--default{font-size:1em}.dnb-core-style h1 .dnb-icon--medium,.dnb-core-style h2 .dnb-icon--medium,.dnb-core-style h3 .dnb-icon--medium,.dnb-core-style h4 .dnb-icon--medium,.dnb-core-style h5 .dnb-icon--medium,.dnb-core-style h6 .dnb-icon--medium{font-size:1.5em}.dnb-core-style h1 .dnb-anchor,.dnb-core-style h1 a,.dnb-core-style h2 .dnb-anchor,.dnb-core-style h2 a,.dnb-core-style h3 .dnb-anchor,.dnb-core-style h3 a,.dnb-core-style h4 .dnb-anchor,.dnb-core-style h4 a,.dnb-core-style h5 .dnb-anchor,.dnb-core-style h5 a,.dnb-core-style h6 .dnb-anchor,.dnb-core-style h6 a{padding-bottom:.03125rem;padding-top:0}.dnb-core-style h1{font-size:3rem;font-size:var(--font-size-xx-large);line-height:3.5rem;line-height:var(--line-height-x-large)}.dnb-core-style h1>small{display:block;font-size:2.125rem;font-size:var(--font-size-x-large);line-height:2.5rem;line-height:var(--line-height-large)}.dnb-core-style h2{font-size:1.625rem;font-size:var(--font-size-large);line-height:2rem;line-height:var(--line-height-medium)}.dnb-core-style h2>small{line-height:1.875rem;line-height:calc(var(--line-height-medium) - .125rem)}.dnb-core-style h2>small,.dnb-core-style h3{font-size:1.25rem;font-size:var(--font-size-medium)}.dnb-core-style h3{line-height:1.75rem;line-height:calc(var(--line-height-medium) - .25rem)}.dnb-core-style h3>small,.dnb-core-style h4{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style h4>small,.dnb-core-style h5{font-size:1rem;font-size:var(--font-size-small);line-height:1.25rem;line-height:var(--line-height-small)}.dnb-core-style h5>small{line-height:1.25rem;line-height:var(--line-height-small)}.dnb-core-style h5>small,.dnb-core-style h6{font-size:.875rem;font-size:var(--font-size-x-small)}.dnb-core-style h6{line-height:1.125rem;line-height:var(--line-height-x-small)}.dnb-core-style h2>small,.dnb-core-style h3>small,.dnb-core-style h4>small,.dnb-core-style h5>small,.dnb-core-style h6>small{line-height:1em;line-height:var(--line-height-xx-small--em)}.dnb-core-style .dnb-core-style .dnb-spacing h1:not([class*=space__top]),.dnb-core-style .dnb-spacing h1:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-core-style .dnb-spacing h1:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h1:not([class*=space__bottom]){margin-bottom:2.5rem}.dnb-core-style .dnb-core-style .dnb-spacing h2:not([class*=space__top]),.dnb-core-style .dnb-spacing h2:not([class*=space__top]){margin-top:3rem}.dnb-core-style .dnb-core-style .dnb-spacing h2:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h2:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-core-style .dnb-spacing h3:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h4:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h5:not([class*=space__top]),.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*=space__top]),.dnb-core-style .dnb-spacing h3:not([class*=space__top]),.dnb-core-style .dnb-spacing h4:not([class*=space__top]),.dnb-core-style .dnb-spacing h5:not([class*=space__top]),.dnb-core-style .dnb-spacing h6:not([class*=space__top]){margin-top:2rem}.dnb-core-style .dnb-core-style .dnb-spacing h3:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h4:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h5:not([class*=space__bottom]),.dnb-core-style .dnb-core-style .dnb-spacing h6:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h3:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h4:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h5:not([class*=space__bottom]),.dnb-core-style .dnb-spacing h6:not([class*=space__bottom]){margin-bottom:1rem}.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*=dnb-space__top]),.dnb-core-style .dnb-spacing p:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-core-style .dnb-spacing p:not([class*=dnb-space__bottom]),.dnb-core-style .dnb-spacing p:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style ul{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-core-style ul:not([class*=dnb-space]){margin:0}.dnb-core-style ul:not([class*=dnb-space__left]){padding-left:2rem}.dnb-core-style ul ol,.dnb-core-style ul ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-core-style ul--outside li,.dnb-core-style ul li{position:relative}.dnb-core-style ul--outside li:before,.dnb-core-style ul li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-core-style ul--inside li:before{left:0;padding-right:0;position:relative;text-align:left;text-align:initial;width:auto}.dnb-core-style ul .dnb-anchor{font-size:inherit}.dnb-core-style ul li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing ul>li{margin-bottom:1rem;margin-top:1rem}.dnb-core-style .dnb-spacing ul>li>p{margin-top:1rem}.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]) li>ol,.dnb-core-style .dnb-spacing ul:not([class*=dnb-space]) li>ul,.dnb-core-style .dnb-spacing ul li>ol,.dnb-core-style .dnb-spacing ul li>ul{margin-top:-.5rem}.dnb-core-style ol{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-core-style ol:not([class*=dnb-space]){margin:0}.dnb-core-style ol:not([class*=dnb-space__left]){padding-left:2rem}.dnb-core-style ol li{display:list-item;margin-bottom:.5rem;margin-top:.5rem}.dnb-core-style ol ol,.dnb-core-style ol ul{margin-bottom:1.5rem;margin-top:0;padding-left:2rem}.dnb-core-style ol--outside li,.dnb-core-style ol li{position:relative}.dnb-core-style ol--outside li:before,.dnb-core-style ol li:before{left:-10rem;padding-right:.25rem;position:absolute;text-align:right;width:10rem}.dnb-core-style ol--inside li:before{left:0;padding-right:0;position:relative;text-align:left;text-align:initial;width:auto}.dnb-core-style ol .dnb-anchor{font-size:inherit}.dnb-core-style ol li{list-style-type:decimal}.dnb-core-style ol--nested,.dnb-core-style ol--nested ol{counter-reset:item}.dnb-core-style ol--nested li{display:block}.dnb-core-style ol--nested li:before{content:counters(item,".") ". ";counter-increment:item}.dnb-core-style ol--nested li li:before{content:counters(item,".") " ";counter-increment:item}.dnb-core-style ol[type] li{display:list-item;list-style-type:inherit}.dnb-core-style ol[type] li:before,.dnb-core-style ol[type] li li:before{content:none}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style .dnb-spacing ol>li{margin-bottom:1rem;margin-top:1rem}.dnb-core-style .dnb-spacing ol>li>p{margin-top:1rem}.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]) li>ol,.dnb-core-style .dnb-spacing ol:not([class*=dnb-space]) li>ul,.dnb-core-style .dnb-spacing ol li>ol,.dnb-core-style .dnb-spacing ol li>ul{margin-top:-.5rem}.dnb-core-style dl{color:currentColor;color:var(--theme-color-black-80,currentColor);font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding:0}.dnb-core-style dl:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style dl:not([class*=dnb-space__bottom]){margin-bottom:0}.dnb-core-style dl dt{font-weight:500;font-weight:var(--font-weight-medium);margin-top:1rem;padding:0}.dnb-core-style dl dd~dt{margin-top:1.5rem}.dnb-core-style dl dd{margin:.5rem 0 1rem;padding:0}.dnb-core-style dl:not([class*=dnb-space])>dd>dl,.dnb-core-style dl>dd>dl{margin-left:2rem;margin-top:1.5rem}@media screen and (min-width:40em){.dnb-core-style dl__direction--horizontal{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.dnb-core-style dl__direction--horizontal dt{margin-right:1rem;max-width:40%}.dnb-core-style dl__direction--horizontal dd{width:calc(60% - 1rem)}.dnb-core-style dl__direction--horizontal dd,.dnb-core-style dl__direction--horizontal dd~dt,.dnb-core-style dl__direction--horizontal dt{margin-bottom:0;margin-top:.5rem}.dnb-core-style dl__direction--horizontal dd:first-of-type,.dnb-core-style dl__direction--horizontal dd~dt:first-of-type,.dnb-core-style dl__direction--horizontal dt:first-of-type{margin-top:0}.dnb-core-style dl dd.dnb-core-style dl__item{height:0;margin:0;width:100%}}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style form{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis)}.dnb-core-style label{word-wrap:break-word;color:#333;color:var(--color-black-80);cursor:pointer}.dnb-core-style label[disabled]{cursor:not-allowed}.dnb-core-style code{background-color:#e9f8f4;background-color:var(--color-mint-green-25);border-radius:.1875em;color:inherit;display:inline-block;font-size:inherit;line-height:1em;line-height:var(--line-height-xx-small--em);padding:.25em;text-decoration:inherit}del .dnb-core-style code{text-decoration:line-through}.dnb-core-style code:not([class*=dnb-space]){margin:-.25em 0}.dnb-core-style pre{word-wrap:normal;background-color:#222;border-radius:.5rem;color:#f4fbf9;color:var(--color-mint-green-12);display:block;font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-size:inherit;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;outline:none;overflow:auto;padding:1rem;-moz-tab-size:2;-o-tab-size:2;tab-size:2;text-align:left;text-shadow:none;vertical-align:baseline;white-space:pre;word-break:normal;word-spacing:normal}.dnb-core-style pre:not([class*=dnb-space]){margin:0}.dnb-core-style pre pre{padding:1rem}.dnb-core-style pre .dnb-spacing pre:not([class*=dnb-space__top]){margin-top:0}.dnb-core-style pre .dnb-spacing pre:not([class*=dnb-space__bottom]){margin-bottom:1.5rem}.dnb-core-style pre.dnb-pre--focus{--border-color:var(--color-sea-green);border-color:transparent;-webkit-box-shadow:0 0 0 .25rem var(--border-color);box-shadow:0 0 0 .25rem var(--border-color)}@media screen and (-ms-high-contrast:none){.dnb-core-style pre.dnb-pre--focus{-webkit-box-shadow:0 0 0 .25rem #007272;box-shadow:0 0 0 .25rem #007272;-webkit-box-shadow:0 0 0 .25rem var(--color-sea-green);box-shadow:0 0 0 .25rem var(--color-sea-green)}}
|