@dnb/eufemia 9.19.0 → 9.20.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.
Files changed (200) hide show
  1. package/CHANGELOG.md +20 -198
  2. package/cjs/components/avatar/Avatar.js +14 -12
  3. package/cjs/components/avatar/AvatarGroup.js +11 -11
  4. package/cjs/components/avatar/style/_avatar.scss +2 -0
  5. package/cjs/components/avatar/style/dnb-avatar.css +4 -1
  6. package/cjs/components/avatar/style/dnb-avatar.min.css +1 -1
  7. package/cjs/components/breadcrumb/Breadcrumb.js +27 -52
  8. package/cjs/components/breadcrumb/BreadcrumbItem.js +15 -29
  9. package/cjs/components/button/Button.d.ts +11 -7
  10. package/cjs/components/icon-primary/IconPrimary.d.ts +2 -1
  11. package/cjs/components/info-card/InfoCard.js +22 -22
  12. package/cjs/components/pagination/Pagination.d.ts +6 -6
  13. package/cjs/components/pagination/Pagination.js +2 -2
  14. package/cjs/components/skeleton/Skeleton.d.ts +1 -1
  15. package/cjs/components/skeleton/SkeletonHelper.d.ts +2 -1
  16. package/cjs/components/step-indicator/StepIndicatorTriggerButton.js +4 -4
  17. package/cjs/components/tag/Tag.js +17 -29
  18. package/cjs/components/tag/TagGroup.js +10 -24
  19. package/cjs/components/timeline/Timeline.js +24 -64
  20. package/cjs/components/timeline/TimelineItem.js +16 -29
  21. package/cjs/elements/Div.d.ts +1 -1
  22. package/cjs/elements/P.d.ts +2 -1
  23. package/cjs/shared/AnimateHeight.js +19 -13
  24. package/cjs/shared/helpers.js +16 -4
  25. package/cjs/shared/hooks/index.js +13 -0
  26. package/cjs/shared/hooks/usePropsWithContext.js +92 -0
  27. package/cjs/style/dnb-ui-components.css +4 -1
  28. package/cjs/style/dnb-ui-components.min.css +1 -1
  29. package/cjs/style/dnb-ui-elements.css +1 -3
  30. package/cjs/style/dnb-ui-elements.min.css +1 -1
  31. package/cjs/style/dnb-ui-tags.css +2 -6
  32. package/cjs/style/dnb-ui-tags.min.css +2 -2
  33. package/cjs/style/elements/code.scss +1 -3
  34. package/cjs/style/stylis.d.ts +38 -0
  35. package/cjs/style/themes/theme-open-banking/dnb-theme-open-banking.css +1 -3
  36. package/cjs/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +1 -1
  37. package/cjs/style/themes/theme-ui/dnb-theme-ui.css +1 -3
  38. package/cjs/style/themes/theme-ui/dnb-theme-ui.min.css +1 -1
  39. package/components/avatar/Avatar.js +14 -13
  40. package/components/avatar/Avatar.tsx +8 -9
  41. package/components/avatar/AvatarGroup.js +20 -20
  42. package/components/avatar/AvatarGroup.tsx +4 -8
  43. package/components/avatar/style/_avatar.scss +2 -0
  44. package/components/avatar/style/dnb-avatar.css +4 -1
  45. package/components/avatar/style/dnb-avatar.min.css +1 -1
  46. package/components/breadcrumb/Breadcrumb.js +22 -35
  47. package/components/breadcrumb/Breadcrumb.tsx +10 -10
  48. package/components/breadcrumb/BreadcrumbItem.js +14 -25
  49. package/components/breadcrumb/BreadcrumbItem.tsx +8 -11
  50. package/components/button/Button.d.ts +11 -7
  51. package/components/icon-primary/IconPrimary.d.ts +2 -1
  52. package/components/info-card/InfoCard.js +22 -22
  53. package/components/info-card/InfoCard.tsx +13 -12
  54. package/components/modal/Modal.tsx +1 -1
  55. package/components/modal/ModalContent.tsx +6 -2
  56. package/components/modal/components/ModalHeader.tsx +2 -2
  57. package/components/modal/types.ts +2 -2
  58. package/components/pagination/Pagination.d.ts +6 -6
  59. package/components/pagination/Pagination.js +2 -2
  60. package/components/skeleton/SkeletonHelper.d.ts +2 -1
  61. package/components/step-indicator/StepIndicatorTriggerButton.js +4 -4
  62. package/components/tag/Tag.js +17 -27
  63. package/components/tag/Tag.tsx +15 -13
  64. package/components/tag/TagGroup.js +9 -22
  65. package/components/tag/TagGroup.tsx +6 -10
  66. package/components/timeline/Timeline.js +23 -27
  67. package/components/timeline/Timeline.tsx +24 -20
  68. package/components/timeline/TimelineItem.js +15 -25
  69. package/components/timeline/TimelineItem.tsx +8 -10
  70. package/elements/P.d.ts +2 -1
  71. package/es/components/avatar/Avatar.js +7 -6
  72. package/es/components/avatar/Avatar.tsx +8 -9
  73. package/es/components/avatar/AvatarGroup.js +6 -6
  74. package/es/components/avatar/AvatarGroup.tsx +4 -8
  75. package/es/components/avatar/style/_avatar.scss +2 -0
  76. package/es/components/avatar/style/dnb-avatar.css +4 -1
  77. package/es/components/avatar/style/dnb-avatar.min.css +1 -1
  78. package/es/components/breadcrumb/Breadcrumb.js +8 -14
  79. package/es/components/breadcrumb/Breadcrumb.tsx +10 -10
  80. package/es/components/breadcrumb/BreadcrumbItem.js +9 -13
  81. package/es/components/breadcrumb/BreadcrumbItem.tsx +8 -11
  82. package/es/components/button/Button.d.ts +11 -7
  83. package/es/components/icon-primary/IconPrimary.d.ts +2 -1
  84. package/es/components/info-card/InfoCard.js +8 -8
  85. package/es/components/info-card/InfoCard.tsx +13 -12
  86. package/es/components/modal/Modal.tsx +1 -1
  87. package/es/components/modal/ModalContent.tsx +6 -2
  88. package/es/components/modal/components/ModalHeader.tsx +2 -2
  89. package/es/components/modal/types.ts +2 -2
  90. package/es/components/pagination/Pagination.d.ts +6 -6
  91. package/es/components/pagination/Pagination.js +2 -2
  92. package/es/components/skeleton/Skeleton.d.ts +1 -1
  93. package/es/components/skeleton/SkeletonHelper.d.ts +2 -1
  94. package/es/components/step-indicator/StepIndicatorTriggerButton.js +4 -4
  95. package/es/components/tag/Tag.js +11 -14
  96. package/es/components/tag/Tag.tsx +15 -13
  97. package/es/components/tag/TagGroup.js +7 -13
  98. package/es/components/tag/TagGroup.tsx +6 -10
  99. package/es/components/timeline/Timeline.js +21 -17
  100. package/es/components/timeline/Timeline.tsx +24 -20
  101. package/es/components/timeline/TimelineItem.js +9 -12
  102. package/es/components/timeline/TimelineItem.tsx +8 -10
  103. package/es/elements/Div.d.ts +1 -1
  104. package/es/elements/P.d.ts +2 -1
  105. package/es/shared/AnimateHeight.js +15 -13
  106. package/es/shared/helpers.js +9 -2
  107. package/es/shared/hooks/index.js +1 -0
  108. package/es/shared/hooks/index.ts +1 -0
  109. package/es/shared/hooks/usePropsWithContext.js +26 -0
  110. package/es/shared/hooks/usePropsWithContext.ts +45 -0
  111. package/es/shared/interfaces.tsx +0 -2
  112. package/es/style/dnb-ui-components.css +4 -1
  113. package/es/style/dnb-ui-components.min.css +1 -1
  114. package/es/style/dnb-ui-elements.css +1 -3
  115. package/es/style/dnb-ui-elements.min.css +1 -1
  116. package/es/style/dnb-ui-tags.css +2 -6
  117. package/es/style/dnb-ui-tags.min.css +2 -2
  118. package/es/style/elements/code.scss +1 -3
  119. package/es/style/stylis.d.ts +38 -0
  120. package/es/style/themes/theme-open-banking/dnb-theme-open-banking.css +1 -3
  121. package/es/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +1 -1
  122. package/es/style/themes/theme-ui/dnb-theme-ui.css +1 -3
  123. package/es/style/themes/theme-ui/dnb-theme-ui.min.css +1 -1
  124. package/esm/components/avatar/Avatar.js +14 -13
  125. package/esm/components/avatar/Avatar.tsx +8 -9
  126. package/esm/components/avatar/AvatarGroup.js +20 -20
  127. package/esm/components/avatar/AvatarGroup.tsx +4 -8
  128. package/esm/components/avatar/style/_avatar.scss +2 -0
  129. package/esm/components/avatar/style/dnb-avatar.css +4 -1
  130. package/esm/components/avatar/style/dnb-avatar.min.css +1 -1
  131. package/esm/components/breadcrumb/Breadcrumb.js +22 -35
  132. package/esm/components/breadcrumb/Breadcrumb.tsx +10 -10
  133. package/esm/components/breadcrumb/BreadcrumbItem.js +14 -25
  134. package/esm/components/breadcrumb/BreadcrumbItem.tsx +8 -11
  135. package/esm/components/button/Button.d.ts +11 -7
  136. package/esm/components/icon-primary/IconPrimary.d.ts +2 -1
  137. package/esm/components/info-card/InfoCard.js +22 -22
  138. package/esm/components/info-card/InfoCard.tsx +13 -12
  139. package/esm/components/modal/Modal.tsx +1 -1
  140. package/esm/components/modal/ModalContent.tsx +6 -2
  141. package/esm/components/modal/components/ModalHeader.tsx +2 -2
  142. package/esm/components/modal/types.ts +2 -2
  143. package/esm/components/pagination/Pagination.d.ts +6 -6
  144. package/esm/components/pagination/Pagination.js +2 -2
  145. package/esm/components/skeleton/SkeletonHelper.d.ts +2 -1
  146. package/esm/components/step-indicator/StepIndicatorTriggerButton.js +4 -4
  147. package/esm/components/tag/Tag.js +17 -27
  148. package/esm/components/tag/Tag.tsx +15 -13
  149. package/esm/components/tag/TagGroup.js +9 -22
  150. package/esm/components/tag/TagGroup.tsx +6 -10
  151. package/esm/components/timeline/Timeline.js +23 -27
  152. package/esm/components/timeline/Timeline.tsx +24 -20
  153. package/esm/components/timeline/TimelineItem.js +15 -25
  154. package/esm/components/timeline/TimelineItem.tsx +8 -10
  155. package/esm/dnb-ui-components.min.mjs +3 -3
  156. package/esm/dnb-ui-lib.min.mjs +3 -3
  157. package/esm/dnb-ui-web-components.min.mjs +4 -4
  158. package/esm/elements/P.d.ts +2 -1
  159. package/esm/shared/AnimateHeight.js +19 -13
  160. package/esm/shared/helpers.js +15 -4
  161. package/esm/shared/hooks/index.js +1 -0
  162. package/esm/shared/hooks/index.ts +1 -0
  163. package/esm/shared/hooks/usePropsWithContext.js +47 -0
  164. package/esm/shared/hooks/usePropsWithContext.ts +45 -0
  165. package/esm/shared/interfaces.tsx +0 -2
  166. package/esm/style/dnb-ui-components.css +4 -1
  167. package/esm/style/dnb-ui-components.min.css +1 -1
  168. package/esm/style/dnb-ui-elements.css +1 -3
  169. package/esm/style/dnb-ui-elements.min.css +1 -1
  170. package/esm/style/dnb-ui-tags.css +2 -6
  171. package/esm/style/dnb-ui-tags.min.css +2 -2
  172. package/esm/style/elements/code.scss +1 -3
  173. package/esm/style/stylis.d.ts +38 -0
  174. package/esm/style/themes/theme-open-banking/dnb-theme-open-banking.css +1 -3
  175. package/esm/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +1 -1
  176. package/esm/style/themes/theme-ui/dnb-theme-ui.css +1 -3
  177. package/esm/style/themes/theme-ui/dnb-theme-ui.min.css +1 -1
  178. package/package.json +1 -1
  179. package/shared/AnimateHeight.js +19 -13
  180. package/shared/helpers.js +15 -4
  181. package/shared/hooks/index.js +1 -0
  182. package/shared/hooks/index.ts +1 -0
  183. package/shared/hooks/usePropsWithContext.js +47 -0
  184. package/shared/hooks/usePropsWithContext.ts +45 -0
  185. package/shared/interfaces.tsx +0 -2
  186. package/style/dnb-ui-components.css +4 -1
  187. package/style/dnb-ui-components.min.css +1 -1
  188. package/style/dnb-ui-elements.css +1 -3
  189. package/style/dnb-ui-elements.min.css +1 -1
  190. package/style/dnb-ui-tags.css +2 -6
  191. package/style/dnb-ui-tags.min.css +2 -2
  192. package/style/elements/code.scss +1 -3
  193. package/style/stylis.d.ts +38 -0
  194. package/style/themes/theme-open-banking/dnb-theme-open-banking.css +1 -3
  195. package/style/themes/theme-open-banking/dnb-theme-open-banking.min.css +1 -1
  196. package/style/themes/theme-ui/dnb-theme-ui.css +1 -3
  197. package/style/themes/theme-ui/dnb-theme-ui.min.css +1 -1
  198. package/umd/dnb-ui-components.min.js +3 -3
  199. package/umd/dnb-ui-lib.min.js +4 -4
  200. package/umd/dnb-ui-web-components.min.js +3 -3
@@ -1,3 +1,3 @@
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;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green);text-decoration:none;-webkit-transition:none;transition: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);color:#007272;color:var(--color-sea-green)}.dnb-anchor:active,.dnb-anchor:hover{border-radius:.25em;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor:active{background-color:#14555a;background-color:var(--color-emerald-green);color:#a5e1d2;color:var(--color-mint-green)}.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);color:#007272;color:var(--color-sea-green)}.dnb-anchor--active,.dnb-anchor--hover{border-radius:.25em;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-anchor--active{background-color:#14555a;background-color:var(--color-emerald-green);color:#a5e1d2;color:var(--color-mint-green)}.dnb-anchor--focus{border-radius:.25em;outline:none}.dnb-anchor--focus:not(:active){background-color:transparent;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green);text-decoration:none;-webkit-transition:none;transition: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{-webkit-box-shadow:none;box-shadow:none;color:inherit;text-decoration:none;-webkit-transition:none;transition:none}.dnb-anchor--no-style:hover{background-color:transparent;color:inherit}.dnb-anchor--no-underline{-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);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{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);padding:0}.dnb-dl dt{margin-top:1rem}.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}.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-table{border-collapse:collapse;border-spacing:0;display:table;margin-bottom:1rem;margin-bottom:var(--spacing-small);margin-top:0;overflow:auto;table-layout:auto;width:100%}.dnb-table--fixed{table-layout:fixed}.dnb-table__sticky-helper>td{display:block;height:0;overflow:hidden;padding:0!important}.dnb-table .dnb-table__td,.dnb-table .dnb-table__th,.dnb-table>tbody>tr>td,.dnb-table>thead>tr>th,.dnb-table>tr>td,.dnb-table>tr>th{border-bottom:1px solid transparent;border-spacing:0;font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);word-break:keep-all}.dnb-table .dnb-table__th,.dnb-table>thead>tr>th,.dnb-table>tr>th{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-bottom:1px solid #a5e1d2;border-bottom:1px solid var(--color-mint-green);color:#14555a;color:var(--color-emerald-green);font-weight:500;font-weight:var(--font-weight-medium);padding:3rem 1rem .5rem;padding:var(--spacing-x-large) var(--spacing-small) var(--spacing-x-small);vertical-align:bottom}.dnb-table .dnb-table__th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),.dnb-table>thead>tr>th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),.dnb-table>tr>th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center){text-align:inherit}@supports (-moz-appearance:meterbar) and (background-blend-mode:difference,normal){.dnb-table .dnb-table__th,.dnb-table>thead>tr>th,.dnb-table>tr>th{padding-bottom:calc(.5rem - .5px);padding-bottom:calc(var(--spacing-x-small) - .5px)}}.dnb-table .dnb-table__th.dnb-table--sortable,.dnb-table>thead>tr>th.dnb-table--sortable{color:#14555a;color:var(--color-emerald-green)}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-shadow:none;box-shadow:none;color:inherit;font-size:inherit;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis);margin:0;padding:0 .5rem 0 0;position:relative;text-align:inherit;z-index:1}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor>.dnb-icon,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button>.dnb-icon,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor>.dnb-icon,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button>.dnb-icon{opacity:0;-webkit-transition:opacity .2s ease-out,-webkit-transform .5s ease-out;transition:opacity .2s ease-out,-webkit-transform .5s ease-out;transition:opacity .2s ease-out,transform .5s ease-out;transition:opacity .2s ease-out,transform .5s ease-out,-webkit-transform .5s ease-out}[data-visual-test-wrapper] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor>.dnb-icon,[data-visual-test-wrapper] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button>.dnb-icon,[data-visual-test-wrapper] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor>.dnb-icon,[data-visual-test-wrapper] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button>.dnb-icon{-webkit-transition:none;transition:none}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor .dnb-button__text,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button .dnb-button__text,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor .dnb-button__text,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button .dnb-button__text{font-size:inherit;margin:0}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor .dnb-button__text:after,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button .dnb-button__text:after{right:1rem}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor .dnb-button__icon,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button .dnb-button__icon,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor .dnb-button__icon,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button .dnb-button__icon{-ms-flex-item-align:end;align-self:flex-end;margin-bottom:.25rem;margin-top:auto}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:not(:focus) .dnb-button__text:after,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:not(:focus) .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:not(:focus) .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:not(:focus) .dnb-button__text:after{color:#14555a;color:var(--color-emerald-green);opacity:1}html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover[disabled],html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:hover[disabled]{cursor:not-allowed}html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:hover:not([disabled]){color:#007272;color:var(--color-sea-green)}html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon{opacity:1}html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text:after{opacity:0}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus[disabled],.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus[disabled],.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:focus[disabled],.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:focus[disabled],html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus[disabled],html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus[disabled],html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:focus[disabled],html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:focus[disabled]{cursor:not-allowed}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled]):before,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled]):before,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:focus:not([disabled]):before,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:focus:not([disabled]):before{bottom:-.5rem;content:"";left:-1rem;position:absolute;right:.5rem;right:-.5rem;top:-.5rem}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:focus:not([disabled]) .dnb-icon{opacity:1}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active[disabled],.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active[disabled],.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active[disabled],.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active[disabled],html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active[disabled],html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active[disabled],html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active[disabled],html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active[disabled]{cursor:not-allowed}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]),.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]),.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]),.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]){color:#14555a;color:var(--color-emerald-green)}html[data-whatinput=mouse] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before{--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-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before{-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-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before{border-radius:inherit;bottom:0;height:inherit;left:-.5rem;outline:none;top:0;z-index:1}html[data-whatinput=touch] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before{--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=touch] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before{-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-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:active:not([disabled]):before{bottom:-.5rem;content:"";left:-1rem;position:absolute;right:.5rem;right:-.5rem;top:-.5rem}.dnb-table .dnb-table__th.dnb-table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-table .dnb-table__th.dnb-table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text:after{visibility:hidden}.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:not(:hover) .dnb-button__text:after,.dnb-table .dnb-table__th.dnb-table--active .dnb-button:not(:hover) .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--active .dnb-anchor:not(:hover) .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--active .dnb-button:not(:hover) .dnb-button__text:after{opacity:0}.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor .dnb-icon,.dnb-table .dnb-table__th.dnb-table--active .dnb-button .dnb-icon,.dnb-table>thead>tr>th.dnb-table--active .dnb-anchor .dnb-icon,.dnb-table>thead>tr>th.dnb-table--active .dnb-button .dnb-icon{opacity:1}html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--active .dnb-button:hover[disabled],html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--active .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--active .dnb-button:hover[disabled]{cursor:not-allowed}html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-table .dnb-table__th.dnb-table--active .dnb-button:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-table>thead>tr>th.dnb-table--active .dnb-button:hover:not([disabled]) .dnb-button__text:after{color:#007272;color:var(--color-sea-green);opacity:1}.dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-table .dnb-table__th.dnb-table--active .dnb-button:hover:focus:not(:active) .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-table>thead>tr>th.dnb-table--active .dnb-button:hover:focus:not(:active) .dnb-button__text:after{visibility:visible}html[data-whatinput=keyboard] .dnb-table .dnb-table__th.dnb-table--active .dnb-anchor:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard] .dnb-table .dnb-table__th.dnb-table--active .dnb-button:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard]
2
- .dnb-table>thead>tr>th.dnb-table--active .dnb-anchor:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard] .dnb-table>thead>tr>th.dnb-table--active .dnb-button:hover:focus .dnb-button__text:after{visibility:hidden}.dnb-table .dnb-table__th.dnb-table--reversed .dnb-anchor .dnb-icon,.dnb-table .dnb-table__th.dnb-table--reversed .dnb-button .dnb-icon,.dnb-table>thead>tr>th.dnb-table--reversed .dnb-anchor .dnb-icon,.dnb-table>thead>tr>th.dnb-table--reversed .dnb-button .dnb-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.dnb-table .dnb-table__th.dnb-table--no-wrap,.dnb-table>tbody>tr>th.dnb-table--no-wrap,.dnb-table>thead>tr>th.dnb-table--no-wrap{white-space:nowrap}.dnb-table .dnb-table__td,.dnb-table>tbody>tr>td,.dnb-table>tr>td,.dnb-table>tr>th[scope=row]{color:currentColor;color:var(--theme-color-black-80,currentColor);padding:1rem;padding:var(--spacing-small);padding-bottom:1.188rem;padding-bottom:calc(var(--spacing-small)*1.188);padding-top:1.25rem;padding-top:calc(var(--spacing-small)*1.25)}.dnb-table .dnb-table--odd:not(.dnb-table--ignore),.dnb-table .dnb-table__tr:not(.dnb-table--ignore),.dnb-table>tbody>tr:not(.dnb-table--ignore){background-color:#fff;background-color:var(--color-white)}.dnb-table .dnb-table--even:not(.dnb-table--ignore),.dnb-table .dnb-table__tr:not(.dnb-table--odd):nth-of-type(2n):not(.dnb-table--ignore),.dnb-table>tbody>tr:not(.dnb-table--odd):nth-of-type(2n):not(.dnb-table--ignore){background-color:#f4fbf9;background-color:var(--color-mint-green-12)}.dnb-table .dnb-table__tr:last-of-type .dnb-table__td,.dnb-table>tbody>tr:last-of-type>td{border-bottom:1px solid #d2f0e9;border-bottom:1px solid var(--color-mint-green-50)}.dnb-table,.dnb-table--left{text-align:left}.dnb-table--right{text-align:right}.dnb-table--center{text-align:center}.dnb-table>caption{caption-side:bottom;font-size:1rem;font-size:var(--font-size-small);margin-top:.5rem;margin-top:var(--spacing-x-small)}.dnb-table tr.sticky{top:0}.dnb-table tr.sticky th{position:sticky;top:inherit;z-index:2}.dnb-table tr.sticky th:after{bottom:0;-webkit-box-shadow:0 -2px 12px 8px rgba(51,51,51,.08);box-shadow:0 -2px 12px 8px rgba(51,51,51,.08);-webkit-box-shadow:var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);box-shadow:var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);-webkit-clip-path:inset(6px 0 -48px 0);clip-path:inset(6px 0 -48px 0);content:"";height:6px;left:0;opacity:0;position:absolute;right:0;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out}[data-visual-test-wrapper] .dnb-table tr.sticky th:after{-webkit-transition:none;transition:none}.dnb-table tr.sticky.show-shadow th:after{opacity:1}.dnb-table--small,.dnb-table--small>tbody>tr>td,.dnb-table--small>thead>tr>th,.dnb-table--small>tr>td,.dnb-table--small>tr>th,.dnb-table>tbody>tr.dnb-table--small>td,.dnb-table>tbody>tr>td.dnb-table--small,.dnb-table>thead>tr.dnb-table--small>th,.dnb-table>thead>tr>th.dnb-table--small,.dnb-table>tr.dnb-table--small>td,.dnb-table>tr.dnb-table--small>th,.dnb-table>tr>td.dnb-table--small,.dnb-table>tr>th.dnb-table--small,.dnb-table__td.dnb-table--small,.dnb-table__th.dnb-table--small{font-size:1rem;font-size:var(--font-size-small)}.dnb-table--x-small,.dnb-table--x-small>tbody>tr>td,.dnb-table--x-small>thead>tr>th,.dnb-table--x-small>tr>td,.dnb-table--x-small>tr>th,.dnb-table>tbody>tr.dnb-table--x-small>td,.dnb-table>tbody>tr>td.dnb-table--x-small,.dnb-table>thead>tr.dnb-table--x-small>th,.dnb-table>thead>tr>th.dnb-table--x-small,.dnb-table>tr.dnb-table--x-small>td,.dnb-table>tr.dnb-table--x-small>th,.dnb-table>tr>td.dnb-table--x-small,.dnb-table>tr>th.dnb-table--x-small,.dnb-table__td.dnb-table--x-small,.dnb-table__th.dnb-table--x-small{font-size:.875rem;font-size:var(--font-size-x-small)}.dnb-table.dnb-skeleton>*{-webkit-text-fill-color:#ebebeb;-webkit-text-fill-color:var(--skeleton-color)}.dnb-spacing .dnb-table dl,.dnb-spacing .dnb-table ol,.dnb-spacing .dnb-table p,.dnb-spacing .dnb-table pre,.dnb-spacing .dnb-table ul{margin-bottom:0;margin-top: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);margin:-.25em 0;overflow:auto;padding:.25em;text-decoration:inherit;-webkit-transform:translateY(.1875rem);transform:translateY(.1875rem)}del .dnb-code{text-decoration:line-through}.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;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:-50vw;right:-50vw;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;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green);text-decoration:none;-webkit-transition:none;transition: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);color:#007272;color:var(--color-sea-green)}.dnb-core-style a:active,.dnb-core-style a:hover{border-radius:.25em;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-core-style a:active{background-color:#14555a;background-color:var(--color-emerald-green);color:#a5e1d2;color:var(--color-mint-green)}.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);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);padding:0}.dnb-core-style dl dt{margin-top:1rem}.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}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style table{border-collapse:collapse;border-spacing:0;display:table;margin-bottom:1rem;margin-bottom:var(--spacing-small);margin-top:0;overflow:auto;table-layout:auto;width:100%}.dnb-core-style table--fixed{table-layout:fixed}.dnb-core-style table__sticky-helper>td{display:block;height:0;overflow:hidden;padding:0!important}.dnb-core-style table .dnb-core-style table__td,.dnb-core-style table .dnb-core-style table__th,.dnb-core-style table>tbody>tr>td,.dnb-core-style table>thead>tr>th,.dnb-core-style table>tr>td,.dnb-core-style table>tr>th{border-bottom:1px solid transparent;border-spacing:0;font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);word-break:keep-all}.dnb-core-style table .dnb-core-style table__th,.dnb-core-style table>thead>tr>th,.dnb-core-style table>tr>th{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-bottom:1px solid #a5e1d2;border-bottom:1px solid var(--color-mint-green);color:#14555a;color:var(--color-emerald-green);font-weight:500;font-weight:var(--font-weight-medium);padding:3rem 1rem .5rem;padding:var(--spacing-x-large) var(--spacing-small) var(--spacing-x-small);vertical-align:bottom}.dnb-core-style table .dnb-core-style table__th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),.dnb-core-style table>thead>tr>th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),.dnb-core-style table>tr>th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center){text-align:inherit}@supports (-moz-appearance:meterbar) and (background-blend-mode:difference,normal){.dnb-core-style table .dnb-core-style table__th,.dnb-core-style table>thead>tr>th,.dnb-core-style table>tr>th{padding-bottom:calc(.5rem - .5px);padding-bottom:calc(var(--spacing-x-small) - .5px)}}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable{color:#14555a;color:var(--color-emerald-green)}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-shadow:none;box-shadow:none;color:inherit;font-size:inherit;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis);margin:0;padding:0 .5rem 0 0;position:relative;text-align:inherit;z-index:1}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor>.dnb-icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button>.dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor>.dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button>.dnb-icon{opacity:0;-webkit-transition:opacity .2s ease-out,-webkit-transform .5s ease-out;transition:opacity .2s ease-out,-webkit-transform .5s ease-out;transition:opacity .2s ease-out,transform .5s ease-out;transition:opacity .2s ease-out,transform .5s ease-out,-webkit-transform .5s ease-out}[data-visual-test-wrapper] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor>.dnb-icon,[data-visual-test-wrapper] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button>.dnb-icon,[data-visual-test-wrapper] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor>.dnb-icon,[data-visual-test-wrapper] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button>.dnb-icon{-webkit-transition:none;transition:none}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__text,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button .dnb-button__text{font-size:inherit;margin:0}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button .dnb-button__text:after{right:1rem}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor .dnb-button__icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button .dnb-button__icon{-ms-flex-item-align:end;align-self:flex-end;margin-bottom:.25rem;margin-top:auto}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:not(:focus) .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:not(:focus) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:not(:focus) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:not(:focus) .dnb-button__text:after{color:#14555a;color:var(--color-emerald-green);opacity:1}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover[disabled]{cursor:not-allowed}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]){color:#007272;color:var(--color-sea-green)}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon{opacity:1}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text:after{opacity:0}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus[disabled],.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus[disabled]{cursor:not-allowed}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]):before,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]):before{bottom:-.5rem;content:"";left:-1rem;position:absolute;right:.5rem;right:-.5rem;top:-.5rem}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon{opacity:1}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active[disabled],.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active[disabled],.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active[disabled],.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active[disabled]{cursor:not-allowed}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]){color:#14555a;color:var(--color-emerald-green)}html[data-whatinput=mouse] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{--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-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{-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 table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{border-radius:inherit;bottom:0;height:inherit;left:-.5rem;outline:none;top:0;z-index:1}html[data-whatinput=touch] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{--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=touch] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{-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 table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{bottom:-.5rem;content:"";left:-1rem;position:absolute;right:.5rem;right:-.5rem;top:-.5rem}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text:after{visibility:hidden}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:not(:hover) .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:not(:hover) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:not(:hover) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:not(:hover) .dnb-button__text:after{opacity:0}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor .dnb-icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button .dnb-icon{opacity:1}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:hover[disabled]{cursor:not-allowed}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:hover:not([disabled]) .dnb-button__text:after{color:#007272;color:var(--color-sea-green);opacity:1}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:hover:focus:not(:active) .dnb-button__text:after{visibility:visible}html[data-whatinput=keyboard] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard]
3
- .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard] .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:hover:focus .dnb-button__text:after{visibility:hidden}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--reversed .dnb-anchor .dnb-icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--reversed .dnb-button .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--reversed .dnb-anchor .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--reversed .dnb-button .dnb-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--no-wrap,.dnb-core-style table>tbody>tr>th.dnb-core-style table--no-wrap,.dnb-core-style table>thead>tr>th.dnb-core-style table--no-wrap{white-space:nowrap}.dnb-core-style table .dnb-core-style table__td,.dnb-core-style table>tbody>tr>td,.dnb-core-style table>tr>td,.dnb-core-style table>tr>th[scope=row]{color:currentColor;color:var(--theme-color-black-80,currentColor);padding:1rem;padding:var(--spacing-small);padding-bottom:1.188rem;padding-bottom:calc(var(--spacing-small)*1.188);padding-top:1.25rem;padding-top:calc(var(--spacing-small)*1.25)}.dnb-core-style table .dnb-core-style table--odd,.dnb-core-style table .dnb-core-style table__tr,.dnb-core-style table>tbody>tr{background-color:#fff;background-color:var(--color-white)}.dnb-core-style table .dnb-core-style table--even,.dnb-core-style table .dnb-core-style table__tr:nth-of-type(2n),.dnb-core-style table>tbody>tr:nth-of-type(2n){background-color:#f4fbf9;background-color:var(--color-mint-green-12)}.dnb-core-style table .dnb-core-style table__tr:last-of-type .dnb-core-style table__td,.dnb-core-style table>tbody>tr:last-of-type>td{border-bottom:1px solid #d2f0e9;border-bottom:1px solid var(--color-mint-green-50)}.dnb-core-style table,.dnb-core-style table--left{text-align:left}.dnb-core-style table--right{text-align:right}.dnb-core-style table--center{text-align:center}.dnb-core-style table>caption{caption-side:bottom;font-size:1rem;font-size:var(--font-size-small);margin-top:.5rem;margin-top:var(--spacing-x-small)}.dnb-core-style table tr.sticky{top:0}.dnb-core-style table tr.sticky th{position:sticky;top:inherit;z-index:2}.dnb-core-style table tr.sticky th:after{bottom:0;-webkit-box-shadow:0 -2px 12px 8px rgba(51,51,51,.08);box-shadow:0 -2px 12px 8px rgba(51,51,51,.08);-webkit-box-shadow:var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);box-shadow:var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);-webkit-clip-path:inset(6px 0 -48px 0);clip-path:inset(6px 0 -48px 0);content:"";height:6px;left:0;opacity:0;position:absolute;right:0;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out}[data-visual-test-wrapper] .dnb-core-style table tr.sticky th:after{-webkit-transition:none;transition:none}.dnb-core-style table tr.sticky.show-shadow th:after{opacity:1}.dnb-core-style table--small,.dnb-core-style table--small>tbody>tr>td,.dnb-core-style table--small>thead>tr>th,.dnb-core-style table--small>tr>td,.dnb-core-style table--small>tr>th,.dnb-core-style table>tbody>tr.dnb-core-style table--small>td,.dnb-core-style table>tbody>tr>td.dnb-core-style table--small,.dnb-core-style table>thead>tr.dnb-core-style table--small>th,.dnb-core-style table>thead>tr>th.dnb-core-style table--small,.dnb-core-style table>tr.dnb-core-style table--small>td,.dnb-core-style table>tr.dnb-core-style table--small>th,.dnb-core-style table>tr>td.dnb-core-style table--small,.dnb-core-style table>tr>th.dnb-core-style table--small,.dnb-core-style table__td.dnb-core-style table--small,.dnb-core-style table__th.dnb-core-style table--small{font-size:1rem;font-size:var(--font-size-small)}.dnb-core-style table--x-small,.dnb-core-style table--x-small>tbody>tr>td,.dnb-core-style table--x-small>thead>tr>th,.dnb-core-style table--x-small>tr>td,.dnb-core-style table--x-small>tr>th,.dnb-core-style table>tbody>tr.dnb-core-style table--x-small>td,.dnb-core-style table>tbody>tr>td.dnb-core-style table--x-small,.dnb-core-style table>thead>tr.dnb-core-style table--x-small>th,.dnb-core-style table>thead>tr>th.dnb-core-style table--x-small,.dnb-core-style table>tr.dnb-core-style table--x-small>td,.dnb-core-style table>tr.dnb-core-style table--x-small>th,.dnb-core-style table>tr>td.dnb-core-style table--x-small,.dnb-core-style table>tr>th.dnb-core-style table--x-small,.dnb-core-style table__td.dnb-core-style table--x-small,.dnb-core-style table__th.dnb-core-style table--x-small{font-size:.875rem;font-size:var(--font-size-x-small)}.dnb-core-style table.dnb-skeleton>*{-webkit-text-fill-color:#ebebeb;-webkit-text-fill-color:var(--skeleton-color)}.dnb-core-style .dnb-spacing table dl,.dnb-core-style .dnb-spacing table ol,.dnb-core-style .dnb-spacing table p,.dnb-core-style .dnb-spacing table pre,.dnb-core-style .dnb-spacing table ul{margin-bottom:0;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);margin:-.25em 0;overflow:auto;padding:.25em;text-decoration:inherit;-webkit-transform:translateY(.1875rem);transform:translateY(.1875rem)}del .dnb-core-style code{text-decoration:line-through}.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;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)}}
2
+ .dnb-table>thead>tr>th.dnb-table--active .dnb-anchor:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard] .dnb-table>thead>tr>th.dnb-table--active .dnb-button:hover:focus .dnb-button__text:after{visibility:hidden}.dnb-table .dnb-table__th.dnb-table--reversed .dnb-anchor .dnb-icon,.dnb-table .dnb-table__th.dnb-table--reversed .dnb-button .dnb-icon,.dnb-table>thead>tr>th.dnb-table--reversed .dnb-anchor .dnb-icon,.dnb-table>thead>tr>th.dnb-table--reversed .dnb-button .dnb-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.dnb-table .dnb-table__th.dnb-table--no-wrap,.dnb-table>tbody>tr>th.dnb-table--no-wrap,.dnb-table>thead>tr>th.dnb-table--no-wrap{white-space:nowrap}.dnb-table .dnb-table__td,.dnb-table>tbody>tr>td,.dnb-table>tr>td,.dnb-table>tr>th[scope=row]{color:currentColor;color:var(--theme-color-black-80,currentColor);padding:1rem;padding:var(--spacing-small);padding-bottom:1.188rem;padding-bottom:calc(var(--spacing-small)*1.188);padding-top:1.25rem;padding-top:calc(var(--spacing-small)*1.25)}.dnb-table .dnb-table--odd:not(.dnb-table--ignore),.dnb-table .dnb-table__tr:not(.dnb-table--ignore),.dnb-table>tbody>tr:not(.dnb-table--ignore){background-color:#fff;background-color:var(--color-white)}.dnb-table .dnb-table--even:not(.dnb-table--ignore),.dnb-table .dnb-table__tr:not(.dnb-table--odd):nth-of-type(2n):not(.dnb-table--ignore),.dnb-table>tbody>tr:not(.dnb-table--odd):nth-of-type(2n):not(.dnb-table--ignore){background-color:#f4fbf9;background-color:var(--color-mint-green-12)}.dnb-table .dnb-table__tr:last-of-type .dnb-table__td,.dnb-table>tbody>tr:last-of-type>td{border-bottom:1px solid #d2f0e9;border-bottom:1px solid var(--color-mint-green-50)}.dnb-table,.dnb-table--left{text-align:left}.dnb-table--right{text-align:right}.dnb-table--center{text-align:center}.dnb-table>caption{caption-side:bottom;font-size:1rem;font-size:var(--font-size-small);margin-top:.5rem;margin-top:var(--spacing-x-small)}.dnb-table tr.sticky{top:0}.dnb-table tr.sticky th{position:sticky;top:inherit;z-index:2}.dnb-table tr.sticky th:after{bottom:0;-webkit-box-shadow:0 -2px 12px 8px rgba(51,51,51,.08);box-shadow:0 -2px 12px 8px rgba(51,51,51,.08);-webkit-box-shadow:var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);box-shadow:var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);-webkit-clip-path:inset(6px 0 -48px 0);clip-path:inset(6px 0 -48px 0);content:"";height:6px;left:0;opacity:0;position:absolute;right:0;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out}[data-visual-test-wrapper] .dnb-table tr.sticky th:after{-webkit-transition:none;transition:none}.dnb-table tr.sticky.show-shadow th:after{opacity:1}.dnb-table--small,.dnb-table--small>tbody>tr>td,.dnb-table--small>thead>tr>th,.dnb-table--small>tr>td,.dnb-table--small>tr>th,.dnb-table>tbody>tr.dnb-table--small>td,.dnb-table>tbody>tr>td.dnb-table--small,.dnb-table>thead>tr.dnb-table--small>th,.dnb-table>thead>tr>th.dnb-table--small,.dnb-table>tr.dnb-table--small>td,.dnb-table>tr.dnb-table--small>th,.dnb-table>tr>td.dnb-table--small,.dnb-table>tr>th.dnb-table--small,.dnb-table__td.dnb-table--small,.dnb-table__th.dnb-table--small{font-size:1rem;font-size:var(--font-size-small)}.dnb-table--x-small,.dnb-table--x-small>tbody>tr>td,.dnb-table--x-small>thead>tr>th,.dnb-table--x-small>tr>td,.dnb-table--x-small>tr>th,.dnb-table>tbody>tr.dnb-table--x-small>td,.dnb-table>tbody>tr>td.dnb-table--x-small,.dnb-table>thead>tr.dnb-table--x-small>th,.dnb-table>thead>tr>th.dnb-table--x-small,.dnb-table>tr.dnb-table--x-small>td,.dnb-table>tr.dnb-table--x-small>th,.dnb-table>tr>td.dnb-table--x-small,.dnb-table>tr>th.dnb-table--x-small,.dnb-table__td.dnb-table--x-small,.dnb-table__th.dnb-table--x-small{font-size:.875rem;font-size:var(--font-size-x-small)}.dnb-table.dnb-skeleton>*{-webkit-text-fill-color:#ebebeb;-webkit-text-fill-color:var(--skeleton-color)}.dnb-spacing .dnb-table dl,.dnb-spacing .dnb-table ol,.dnb-spacing .dnb-table p,.dnb-spacing .dnb-table pre,.dnb-spacing .dnb-table ul{margin-bottom:0;margin-top: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);margin:-.25em 0;padding:.25em;text-decoration:inherit}del .dnb-code{text-decoration:line-through}.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:-50vw;right:-50vw;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;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green);text-decoration:none;-webkit-transition:none;transition: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);color:#007272;color:var(--color-sea-green)}.dnb-core-style a:active,.dnb-core-style a:hover{border-radius:.25em;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.dnb-core-style a:active{background-color:#14555a;background-color:var(--color-emerald-green);color:#a5e1d2;color:var(--color-mint-green)}.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);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);padding:0}.dnb-core-style dl dt{margin-top:1rem}.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}.dnb-core-style .dnb-spacing dl:not([class*=dnb-space]){margin-bottom:1.5rem;margin-top:0}.dnb-core-style table{border-collapse:collapse;border-spacing:0;display:table;margin-bottom:1rem;margin-bottom:var(--spacing-small);margin-top:0;overflow:auto;table-layout:auto;width:100%}.dnb-core-style table--fixed{table-layout:fixed}.dnb-core-style table__sticky-helper>td{display:block;height:0;overflow:hidden;padding:0!important}.dnb-core-style table .dnb-core-style table__td,.dnb-core-style table .dnb-core-style table__th,.dnb-core-style table>tbody>tr>td,.dnb-core-style table>thead>tr>th,.dnb-core-style table>tr>td,.dnb-core-style table>tr>th{border-bottom:1px solid transparent;border-spacing:0;font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);word-break:keep-all}.dnb-core-style table .dnb-core-style table__th,.dnb-core-style table>thead>tr>th,.dnb-core-style table>tr>th{background-color:#d2f0e9;background-color:var(--color-mint-green-50);border-bottom:1px solid #a5e1d2;border-bottom:1px solid var(--color-mint-green);color:#14555a;color:var(--color-emerald-green);font-weight:500;font-weight:var(--font-weight-medium);padding:3rem 1rem .5rem;padding:var(--spacing-x-large) var(--spacing-small) var(--spacing-x-small);vertical-align:bottom}.dnb-core-style table .dnb-core-style table__th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),.dnb-core-style table>thead>tr>th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center),.dnb-core-style table>tr>th:not([align]):not(.dnb-table--left):not(.dnb-table--right):not(.dnb-table--center){text-align:inherit}@supports (-moz-appearance:meterbar) and (background-blend-mode:difference,normal){.dnb-core-style table .dnb-core-style table__th,.dnb-core-style table>thead>tr>th,.dnb-core-style table>tr>th{padding-bottom:calc(.5rem - .5px);padding-bottom:calc(var(--spacing-x-small) - .5px)}}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable{color:#14555a;color:var(--color-emerald-green)}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-shadow:none;box-shadow:none;color:inherit;font-size:inherit;font-weight:500;font-weight:var(--font-weight-medium);line-height:1.5rem;line-height:var(--line-height-basis);margin:0;padding:0 .5rem 0 0;position:relative;text-align:inherit;z-index:1}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor>.dnb-icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button>.dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor>.dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button>.dnb-icon{opacity:0;-webkit-transition:opacity .2s ease-out,-webkit-transform .5s ease-out;transition:opacity .2s ease-out,-webkit-transform .5s ease-out;transition:opacity .2s ease-out,transform .5s ease-out;transition:opacity .2s ease-out,transform .5s ease-out,-webkit-transform .5s ease-out}[data-visual-test-wrapper] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor>.dnb-icon,[data-visual-test-wrapper] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button>.dnb-icon,[data-visual-test-wrapper] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor>.dnb-icon,[data-visual-test-wrapper] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button>.dnb-icon{-webkit-transition:none;transition:none}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__text,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button .dnb-button__text{font-size:inherit;margin:0}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button .dnb-button__text:after{right:1rem}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor .dnb-button__icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button .dnb-button__icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor .dnb-button__icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button .dnb-button__icon{-ms-flex-item-align:end;align-self:flex-end;margin-bottom:.25rem;margin-top:auto}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:not(:focus) .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:not(:focus) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:not(:focus) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:not(:focus) .dnb-button__text:after{color:#14555a;color:var(--color-emerald-green);opacity:1}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover[disabled]{cursor:not-allowed}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]){color:#007272;color:var(--color-sea-green)}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]):not(:focus) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]):not(:focus) .dnb-icon{opacity:1}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover:not([disabled]) .dnb-button__text:after{opacity:0}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus[disabled],.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus[disabled]{cursor:not-allowed}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]):before,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]):before{bottom:-.5rem;content:"";left:-1rem;position:absolute;right:.5rem;right:-.5rem;top:-.5rem}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:focus:not([disabled]) .dnb-icon,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:focus:not([disabled]) .dnb-icon{opacity:1}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active[disabled],.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active[disabled],.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active[disabled],.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active[disabled]{cursor:not-allowed}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]),html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]){color:#14555a;color:var(--color-emerald-green)}html[data-whatinput=mouse] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{--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-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=mouse] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{-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 table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{border-radius:inherit;bottom:0;height:inherit;left:-.5rem;outline:none;top:0;z-index:1}html[data-whatinput=touch] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{--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=touch] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html[data-whatinput=touch] html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{-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 table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:active:not([disabled]):before,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:active:not([disabled]):before{bottom:-.5rem;content:"";left:-1rem;position:absolute;right:.5rem;right:-.5rem;top:-.5rem}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--sortable .dnb-button:hover:focus:not(:active) .dnb-button__text:after{visibility:hidden}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:not(:hover) .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:not(:hover) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:not(:hover) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:not(:hover) .dnb-button__text:after{opacity:0}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor .dnb-icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button .dnb-icon{opacity:1}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:hover[disabled],html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:hover[disabled]{cursor:not-allowed}html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:hover:not([disabled]) .dnb-button__text:after,html:not([data-whatintent=touch]) .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:hover:not([disabled]) .dnb-button__text:after{color:#007272;color:var(--color-sea-green);opacity:1}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:hover:focus:not(:active) .dnb-button__text:after,.dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:hover:focus:not(:active) .dnb-button__text:after{visibility:visible}html[data-whatinput=keyboard] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-anchor:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard] .dnb-core-style table .dnb-core-style table__th.dnb-core-style table--active .dnb-button:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard]
3
+ .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-anchor:hover:focus .dnb-button__text:after,html[data-whatinput=keyboard] .dnb-core-style table>thead>tr>th.dnb-core-style table--active .dnb-button:hover:focus .dnb-button__text:after{visibility:hidden}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--reversed .dnb-anchor .dnb-icon,.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--reversed .dnb-button .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--reversed .dnb-anchor .dnb-icon,.dnb-core-style table>thead>tr>th.dnb-core-style table--reversed .dnb-button .dnb-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.dnb-core-style table .dnb-core-style table__th.dnb-core-style table--no-wrap,.dnb-core-style table>tbody>tr>th.dnb-core-style table--no-wrap,.dnb-core-style table>thead>tr>th.dnb-core-style table--no-wrap{white-space:nowrap}.dnb-core-style table .dnb-core-style table__td,.dnb-core-style table>tbody>tr>td,.dnb-core-style table>tr>td,.dnb-core-style table>tr>th[scope=row]{color:currentColor;color:var(--theme-color-black-80,currentColor);padding:1rem;padding:var(--spacing-small);padding-bottom:1.188rem;padding-bottom:calc(var(--spacing-small)*1.188);padding-top:1.25rem;padding-top:calc(var(--spacing-small)*1.25)}.dnb-core-style table .dnb-core-style table--odd,.dnb-core-style table .dnb-core-style table__tr,.dnb-core-style table>tbody>tr{background-color:#fff;background-color:var(--color-white)}.dnb-core-style table .dnb-core-style table--even,.dnb-core-style table .dnb-core-style table__tr:nth-of-type(2n),.dnb-core-style table>tbody>tr:nth-of-type(2n){background-color:#f4fbf9;background-color:var(--color-mint-green-12)}.dnb-core-style table .dnb-core-style table__tr:last-of-type .dnb-core-style table__td,.dnb-core-style table>tbody>tr:last-of-type>td{border-bottom:1px solid #d2f0e9;border-bottom:1px solid var(--color-mint-green-50)}.dnb-core-style table,.dnb-core-style table--left{text-align:left}.dnb-core-style table--right{text-align:right}.dnb-core-style table--center{text-align:center}.dnb-core-style table>caption{caption-side:bottom;font-size:1rem;font-size:var(--font-size-small);margin-top:.5rem;margin-top:var(--spacing-x-small)}.dnb-core-style table tr.sticky{top:0}.dnb-core-style table tr.sticky th{position:sticky;top:inherit;z-index:2}.dnb-core-style table tr.sticky th:after{bottom:0;-webkit-box-shadow:0 -2px 12px 8px rgba(51,51,51,.08);box-shadow:0 -2px 12px 8px rgba(51,51,51,.08);-webkit-box-shadow:var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);box-shadow:var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);-webkit-clip-path:inset(6px 0 -48px 0);clip-path:inset(6px 0 -48px 0);content:"";height:6px;left:0;opacity:0;position:absolute;right:0;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out}[data-visual-test-wrapper] .dnb-core-style table tr.sticky th:after{-webkit-transition:none;transition:none}.dnb-core-style table tr.sticky.show-shadow th:after{opacity:1}.dnb-core-style table--small,.dnb-core-style table--small>tbody>tr>td,.dnb-core-style table--small>thead>tr>th,.dnb-core-style table--small>tr>td,.dnb-core-style table--small>tr>th,.dnb-core-style table>tbody>tr.dnb-core-style table--small>td,.dnb-core-style table>tbody>tr>td.dnb-core-style table--small,.dnb-core-style table>thead>tr.dnb-core-style table--small>th,.dnb-core-style table>thead>tr>th.dnb-core-style table--small,.dnb-core-style table>tr.dnb-core-style table--small>td,.dnb-core-style table>tr.dnb-core-style table--small>th,.dnb-core-style table>tr>td.dnb-core-style table--small,.dnb-core-style table>tr>th.dnb-core-style table--small,.dnb-core-style table__td.dnb-core-style table--small,.dnb-core-style table__th.dnb-core-style table--small{font-size:1rem;font-size:var(--font-size-small)}.dnb-core-style table--x-small,.dnb-core-style table--x-small>tbody>tr>td,.dnb-core-style table--x-small>thead>tr>th,.dnb-core-style table--x-small>tr>td,.dnb-core-style table--x-small>tr>th,.dnb-core-style table>tbody>tr.dnb-core-style table--x-small>td,.dnb-core-style table>tbody>tr>td.dnb-core-style table--x-small,.dnb-core-style table>thead>tr.dnb-core-style table--x-small>th,.dnb-core-style table>thead>tr>th.dnb-core-style table--x-small,.dnb-core-style table>tr.dnb-core-style table--x-small>td,.dnb-core-style table>tr.dnb-core-style table--x-small>th,.dnb-core-style table>tr>td.dnb-core-style table--x-small,.dnb-core-style table>tr>th.dnb-core-style table--x-small,.dnb-core-style table__td.dnb-core-style table--x-small,.dnb-core-style table__th.dnb-core-style table--x-small{font-size:.875rem;font-size:var(--font-size-x-small)}.dnb-core-style table.dnb-skeleton>*{-webkit-text-fill-color:#ebebeb;-webkit-text-fill-color:var(--skeleton-color)}.dnb-core-style .dnb-spacing table dl,.dnb-core-style .dnb-spacing table ol,.dnb-core-style .dnb-spacing table p,.dnb-core-style .dnb-spacing table pre,.dnb-core-style .dnb-spacing table ul{margin-bottom:0;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);margin:-.25em 0;padding:.25em;text-decoration:inherit}del .dnb-core-style code{text-decoration:line-through}.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)}}
@@ -8,9 +8,6 @@
8
8
  margin: -0.25em 0;
9
9
  padding: 0.25em 0.25em; /* 2px 4px */
10
10
 
11
- overflow: auto; // adding auto to overflow, moves the element 3px up
12
- transform: translateY(0.1875rem); // therefore we correct it back again
13
-
14
11
  font-size: inherit;
15
12
  text-decoration: inherit;
16
13
  line-height: var(--line-height-xx-small--em); // 1.5rem - 0.25em - 0.25em
@@ -27,6 +24,7 @@
27
24
  }
28
25
  @mixin preStyle() {
29
26
  display: block;
27
+ overflow: auto;
30
28
 
31
29
  &:not([class*='dnb-space']) {
32
30
  margin: 0;
@@ -0,0 +1,38 @@
1
+ export interface StylisElement {
2
+ type: string;
3
+ value: string;
4
+ props: Array<string> | string;
5
+ root: StylisElement | null;
6
+ parent: StylisElement | null;
7
+ children: Array<StylisElement> | string;
8
+ line: number;
9
+ column: number;
10
+ length: number;
11
+ return: string;
12
+ }
13
+ export type StylisPluginCallback = (
14
+ element: StylisElement,
15
+ index: number,
16
+ children: Array<StylisElement>,
17
+ callback: StylisPluginCallback
18
+ ) => string | void;
19
+
20
+ export type StylisPlugin = (
21
+ element: StylisElement,
22
+ index: number,
23
+ children: Array<StylisElement>,
24
+ callback: StylisPluginCallback
25
+ ) => string | void;
26
+
27
+ export interface Options {
28
+ nonce?: string;
29
+ stylisPlugins?: Array<StylisPlugin>;
30
+ key: string;
31
+ container?: HTMLElement;
32
+ speedy?: boolean;
33
+ prepend?: boolean;
34
+ }
35
+
36
+ export type Properties = Record<string, unknown>;
37
+
38
+ export function withProperties(properties: Properties): StylisPlugin;
@@ -1579,9 +1579,6 @@ thead > tr > th.dnb-table--active .dnb-button:hover:focus .dnb-button__text::aft
1579
1579
  margin: -0.25em 0;
1580
1580
  padding: 0.25em 0.25em;
1581
1581
  /* 2px 4px */
1582
- overflow: auto;
1583
- -webkit-transform: translateY(0.1875rem);
1584
- transform: translateY(0.1875rem);
1585
1582
  font-size: inherit;
1586
1583
  text-decoration: inherit;
1587
1584
  line-height: 1em;
@@ -1595,6 +1592,7 @@ thead > tr > th.dnb-table--active .dnb-button:hover:focus .dnb-button__text::aft
1595
1592
 
1596
1593
  .dnb-pre {
1597
1594
  display: block;
1595
+ overflow: auto;
1598
1596
  padding: 1rem;
1599
1597
  border-radius: 0.5rem;
1600
1598
  color: #f4fbf9;