@dnb/eufemia 9.39.0 → 9.40.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 (197) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/cjs/components/accordion/style/_accordion.scss +2 -2
  3. package/cjs/components/accordion/style/dnb-accordion.css +3 -3
  4. package/cjs/components/accordion/style/dnb-accordion.min.css +1 -1
  5. package/cjs/components/dialog/Dialog.d.ts +1 -1
  6. package/cjs/components/dialog/parts/DialogAction.d.ts +5 -4
  7. package/cjs/components/dialog/parts/DialogAction.js +23 -4
  8. package/cjs/components/dialog/style/_dialog.scss +7 -30
  9. package/cjs/components/dialog/style/dnb-dialog.css +21 -44
  10. package/cjs/components/dialog/style/dnb-dialog.min.css +1 -1
  11. package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.css +20 -0
  12. package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -1
  13. package/cjs/components/dialog/style/themes/dnb-dialog-theme-ui.scss +29 -0
  14. package/cjs/components/drawer/style/_drawer.scss +1 -0
  15. package/cjs/components/drawer/style/dnb-drawer.css +12 -22
  16. package/cjs/components/drawer/style/dnb-drawer.min.css +1 -1
  17. package/cjs/components/height-animation/useHeightAnimation.js +5 -5
  18. package/cjs/components/lib.d.ts +1 -1
  19. package/cjs/components/modal/style/dnb-modal.css +11 -22
  20. package/cjs/components/modal/style/dnb-modal.min.css +1 -1
  21. package/cjs/components/number-format/NumberFormat.js +1 -1
  22. package/cjs/components/table/Table.js +1 -1
  23. package/cjs/components/table/TableContainer.js +3 -1
  24. package/cjs/components/table/TableStickyHeader.d.ts +4 -1
  25. package/cjs/components/table/TableStickyHeader.js +112 -83
  26. package/cjs/components/table/TableTh.d.ts +1 -1
  27. package/cjs/components/table/TableTh.js +4 -1
  28. package/cjs/components/table/style/_table-cell.scss +4 -4
  29. package/cjs/components/table/style/_table-container.scss +7 -17
  30. package/cjs/components/table/style/_table-deprecated.scss +74 -0
  31. package/cjs/components/table/style/_table-header-buttons.scss +2 -1
  32. package/cjs/components/table/style/_table-sticky.scss +24 -23
  33. package/cjs/components/table/style/_table-td.scss +27 -46
  34. package/cjs/components/table/style/_table-th.scss +44 -0
  35. package/cjs/components/table/style/_table.scss +13 -71
  36. package/cjs/components/table/style/dnb-table.css +181 -132
  37. package/cjs/components/table/style/dnb-table.min.css +1 -1
  38. package/cjs/components/table/style/themes/dnb-table-theme-ui.css +78 -63
  39. package/cjs/components/table/style/themes/dnb-table-theme-ui.min.css +1 -1
  40. package/cjs/components/table/style/themes/dnb-table-theme-ui.scss +42 -17
  41. package/cjs/components/visually-hidden/VisuallyHidden.d.ts +2 -11
  42. package/cjs/components/visually-hidden/VisuallyHidden.js +2 -5
  43. package/cjs/components/visually-hidden/style/_visually-hidden.scss +0 -8
  44. package/cjs/components/visually-hidden/style/dnb-visually-hidden.css +10 -42
  45. package/cjs/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
  46. package/cjs/elements/Table.d.ts +6 -2
  47. package/cjs/elements/Td.d.ts +6 -2
  48. package/cjs/elements/Th.d.ts +6 -2
  49. package/cjs/elements/Tr.d.ts +6 -2
  50. package/cjs/shared/Eufemia.js +1 -1
  51. package/cjs/style/core/helper-classes/helper-classes.scss +3 -0
  52. package/cjs/style/core/utilities.scss +15 -16
  53. package/cjs/style/dnb-ui-basis.css +20 -13
  54. package/cjs/style/dnb-ui-basis.min.css +1 -1
  55. package/cjs/style/dnb-ui-components.css +205 -199
  56. package/cjs/style/dnb-ui-components.min.css +4 -4
  57. package/cjs/style/dnb-ui-core.css +20 -13
  58. package/cjs/style/dnb-ui-core.min.css +1 -1
  59. package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.css +98 -63
  60. package/cjs/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
  61. package/cjs/style/themes/theme-ui/dnb-theme-ui.css +98 -63
  62. package/cjs/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
  63. package/components/accordion/style/_accordion.scss +2 -2
  64. package/components/accordion/style/dnb-accordion.css +3 -3
  65. package/components/accordion/style/dnb-accordion.min.css +1 -1
  66. package/components/dialog/Dialog.d.ts +1 -1
  67. package/components/dialog/parts/DialogAction.d.ts +5 -4
  68. package/components/dialog/parts/DialogAction.js +19 -11
  69. package/components/dialog/style/_dialog.scss +7 -30
  70. package/components/dialog/style/dnb-dialog.css +21 -44
  71. package/components/dialog/style/dnb-dialog.min.css +1 -1
  72. package/components/dialog/style/themes/dnb-dialog-theme-ui.css +20 -0
  73. package/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -1
  74. package/components/dialog/style/themes/dnb-dialog-theme-ui.scss +29 -0
  75. package/components/drawer/style/_drawer.scss +1 -0
  76. package/components/drawer/style/dnb-drawer.css +12 -22
  77. package/components/drawer/style/dnb-drawer.min.css +1 -1
  78. package/components/height-animation/useHeightAnimation.js +4 -3
  79. package/components/lib.d.ts +1 -1
  80. package/components/modal/style/dnb-modal.css +11 -22
  81. package/components/modal/style/dnb-modal.min.css +1 -1
  82. package/components/number-format/NumberFormat.js +1 -1
  83. package/components/table/Table.js +1 -1
  84. package/components/table/TableContainer.js +3 -1
  85. package/components/table/TableStickyHeader.d.ts +4 -1
  86. package/components/table/TableStickyHeader.js +112 -51
  87. package/components/table/TableTh.d.ts +1 -1
  88. package/components/table/TableTh.js +4 -1
  89. package/components/table/style/_table-cell.scss +4 -4
  90. package/components/table/style/_table-container.scss +7 -17
  91. package/components/table/style/_table-deprecated.scss +74 -0
  92. package/components/table/style/_table-header-buttons.scss +2 -1
  93. package/components/table/style/_table-sticky.scss +24 -23
  94. package/components/table/style/_table-td.scss +27 -46
  95. package/components/table/style/_table-th.scss +44 -0
  96. package/components/table/style/_table.scss +13 -71
  97. package/components/table/style/dnb-table.css +181 -132
  98. package/components/table/style/dnb-table.min.css +1 -1
  99. package/components/table/style/themes/dnb-table-theme-ui.css +78 -63
  100. package/components/table/style/themes/dnb-table-theme-ui.min.css +1 -1
  101. package/components/table/style/themes/dnb-table-theme-ui.scss +42 -17
  102. package/components/visually-hidden/VisuallyHidden.d.ts +2 -11
  103. package/components/visually-hidden/VisuallyHidden.js +2 -5
  104. package/components/visually-hidden/style/_visually-hidden.scss +0 -8
  105. package/components/visually-hidden/style/dnb-visually-hidden.css +10 -42
  106. package/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
  107. package/elements/Table.d.ts +6 -2
  108. package/elements/Td.d.ts +6 -2
  109. package/elements/Th.d.ts +6 -2
  110. package/elements/Tr.d.ts +6 -2
  111. package/es/components/accordion/style/_accordion.scss +2 -2
  112. package/es/components/accordion/style/dnb-accordion.css +3 -3
  113. package/es/components/accordion/style/dnb-accordion.min.css +1 -1
  114. package/es/components/dialog/Dialog.d.ts +1 -1
  115. package/es/components/dialog/parts/DialogAction.d.ts +5 -4
  116. package/es/components/dialog/parts/DialogAction.js +21 -11
  117. package/es/components/dialog/style/_dialog.scss +7 -30
  118. package/es/components/dialog/style/dnb-dialog.css +21 -44
  119. package/es/components/dialog/style/dnb-dialog.min.css +1 -1
  120. package/es/components/dialog/style/themes/dnb-dialog-theme-ui.css +20 -0
  121. package/es/components/dialog/style/themes/dnb-dialog-theme-ui.min.css +1 -1
  122. package/es/components/dialog/style/themes/dnb-dialog-theme-ui.scss +29 -0
  123. package/es/components/drawer/style/_drawer.scss +1 -0
  124. package/es/components/drawer/style/dnb-drawer.css +12 -22
  125. package/es/components/drawer/style/dnb-drawer.min.css +1 -1
  126. package/es/components/height-animation/useHeightAnimation.js +4 -3
  127. package/es/components/lib.d.ts +1 -1
  128. package/es/components/modal/style/dnb-modal.css +11 -22
  129. package/es/components/modal/style/dnb-modal.min.css +1 -1
  130. package/es/components/number-format/NumberFormat.js +1 -1
  131. package/es/components/table/Table.js +1 -1
  132. package/es/components/table/TableContainer.js +3 -1
  133. package/es/components/table/TableStickyHeader.d.ts +4 -1
  134. package/es/components/table/TableStickyHeader.js +112 -48
  135. package/es/components/table/TableTh.d.ts +1 -1
  136. package/es/components/table/TableTh.js +4 -1
  137. package/es/components/table/style/_table-cell.scss +4 -4
  138. package/es/components/table/style/_table-container.scss +7 -17
  139. package/es/components/table/style/_table-deprecated.scss +74 -0
  140. package/es/components/table/style/_table-header-buttons.scss +2 -1
  141. package/es/components/table/style/_table-sticky.scss +24 -23
  142. package/es/components/table/style/_table-td.scss +27 -46
  143. package/es/components/table/style/_table-th.scss +44 -0
  144. package/es/components/table/style/_table.scss +13 -71
  145. package/es/components/table/style/dnb-table.css +181 -132
  146. package/es/components/table/style/dnb-table.min.css +1 -1
  147. package/es/components/table/style/themes/dnb-table-theme-ui.css +78 -63
  148. package/es/components/table/style/themes/dnb-table-theme-ui.min.css +1 -1
  149. package/es/components/table/style/themes/dnb-table-theme-ui.scss +42 -17
  150. package/es/components/visually-hidden/VisuallyHidden.d.ts +2 -11
  151. package/es/components/visually-hidden/VisuallyHidden.js +2 -5
  152. package/es/components/visually-hidden/style/_visually-hidden.scss +0 -8
  153. package/es/components/visually-hidden/style/dnb-visually-hidden.css +10 -42
  154. package/es/components/visually-hidden/style/dnb-visually-hidden.min.css +1 -1
  155. package/es/elements/Table.d.ts +6 -2
  156. package/es/elements/Td.d.ts +6 -2
  157. package/es/elements/Th.d.ts +6 -2
  158. package/es/elements/Tr.d.ts +6 -2
  159. package/es/shared/Eufemia.js +1 -1
  160. package/es/style/core/helper-classes/helper-classes.scss +3 -0
  161. package/es/style/core/utilities.scss +15 -16
  162. package/es/style/dnb-ui-basis.css +20 -13
  163. package/es/style/dnb-ui-basis.min.css +1 -1
  164. package/es/style/dnb-ui-components.css +205 -199
  165. package/es/style/dnb-ui-components.min.css +4 -4
  166. package/es/style/dnb-ui-core.css +20 -13
  167. package/es/style/dnb-ui-core.min.css +1 -1
  168. package/es/style/themes/theme-eiendom/dnb-theme-eiendom.css +98 -63
  169. package/es/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
  170. package/es/style/themes/theme-ui/dnb-theme-ui.css +98 -63
  171. package/es/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
  172. package/esm/dnb-ui-basis.min.mjs +2 -2
  173. package/esm/dnb-ui-components.min.mjs +4 -4
  174. package/esm/dnb-ui-elements.min.mjs +4 -4
  175. package/esm/dnb-ui-extensions.min.mjs +4 -4
  176. package/esm/dnb-ui-lib.min.mjs +4 -4
  177. package/esm/dnb-ui-web-components.min.mjs +4 -4
  178. package/package.json +2 -2
  179. package/shared/Eufemia.js +1 -1
  180. package/style/core/helper-classes/helper-classes.scss +3 -0
  181. package/style/core/utilities.scss +15 -16
  182. package/style/dnb-ui-basis.css +20 -13
  183. package/style/dnb-ui-basis.min.css +1 -1
  184. package/style/dnb-ui-components.css +205 -199
  185. package/style/dnb-ui-components.min.css +4 -4
  186. package/style/dnb-ui-core.css +20 -13
  187. package/style/dnb-ui-core.min.css +1 -1
  188. package/style/themes/theme-eiendom/dnb-theme-eiendom.css +98 -63
  189. package/style/themes/theme-eiendom/dnb-theme-eiendom.min.css +2 -2
  190. package/style/themes/theme-ui/dnb-theme-ui.css +98 -63
  191. package/style/themes/theme-ui/dnb-theme-ui.min.css +2 -2
  192. package/umd/dnb-ui-basis.min.js +3 -3
  193. package/umd/dnb-ui-components.min.js +5 -5
  194. package/umd/dnb-ui-elements.min.js +4 -4
  195. package/umd/dnb-ui-extensions.min.js +5 -5
  196. package/umd/dnb-ui-lib.min.js +5 -5
  197. package/umd/dnb-ui-web-components.min.js +5 -5
@@ -1 +1 @@
1
- :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);--easing-default:cubic-bezier(0.42,0,0,1)}.dnb-typo-regular{font-weight:400}.dnb-typo-medium,.dnb-typo-regular{font-family:DNB,sans-serif;font-family:var(--font-family-default);font-style:normal}.dnb-typo-medium{font-weight:500;font-weight:var(--font-weight-medium)}.dnb-typo-bold{font-family:DNB,sans-serif;font-family:var(--font-family-default);font-style:normal;font-weight:600;font-weight:var(--font-weight-bold)}.dnb-typo-mono-regular{font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-style:normal;font-weight:400}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:400;src:url(../assets/fonts/DNB-Regular.woff2) format("woff2"),url(../assets/fonts/DNB-Regular.woff) format("woff"),url(../assets/fonts/DNB-Regular.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:500;src:url(../assets/fonts/DNB-Medium.woff2) format("woff2"),url(../assets/fonts/DNB-Medium.woff) format("woff"),url(../assets/fonts/DNB-Medium.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:600;src:url(../assets/fonts/DNB-Bold.woff2) format("woff2"),url(../assets/fonts/DNB-Bold.woff) format("woff"),url(../assets/fonts/DNB-Bold.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNBMono;font-style:normal;font-weight:400;src:url(../assets/fonts/DNBMono-Regular.woff2) format("woff2"),url(../assets/fonts/DNBMono-Regular.woff) format("woff"),url(../assets/fonts/DNBMono-Regular.ttf) format("truetype")}.dnb-no-focus,.dnb-tab-focus,.dnb-tab-focus:focus{outline:none}html[data-whatinput=keyboard] .dnb-tab-focus: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-tab-focus: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-mouse-focus,.dnb-mouse-focus:focus{outline:none}html[data-whatinput=mouse] .dnb-mouse-focus: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-mouse-focus: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-focus-ring{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color)!important;box-shadow:0 0 0 .125rem var(--border-color)!important}@media screen and (-ms-high-contrast:none){.dnb-focus-ring{-webkit-box-shadow:0 0 0 .125rem #14555a!important;box-shadow:0 0 0 .125rem #14555a!important;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green)!important;box-shadow:0 0 0 .125rem var(--color-emerald-green)!important}}.dnb-scrollbar-appearance{-ms-scroll-chaining:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:auto;overscroll-behavior:contain;scrollbar-color:#14555a transparent;scrollbar-color:var(--color-emerald-green) transparent;scrollbar-width:thin}.dnb-skip-link{opacity:.3;position:absolute;top:-100vh;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out;z-index:0}.dnb-skip-link--active,.dnb-skip-link:focus{background-color:transparent;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green);font-size:1.125rem;font-size:var(--font-size-basis);left:40%;margin:0;outline:none;padding:.5rem 1rem;position:fixed;text-align:center;text-decoration:none;top:5%;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;white-space:nowrap;z-index:9999}.dnb-skip-link--active:after,.dnb-skip-link:focus:after{background-color:hsla(0,0%,100%,.85);-webkit-box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);content:"";height:150vh;left:-200vw;position:absolute;top:-200vh;width:150vw;z-index:-2}.dnb-skip-link--active:before,.dnb-skip-link:focus:before{background-color:#fff;background-color:var(--color-white);border-radius:1.5rem;content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%;z-index:-1}html[data-whatinput=mouse] .dnb-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus: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-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus: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-skip-link--active:hover:before,.dnb-skip-link:focus:hover:before{background-color:#d2f0e9;background-color:var(--color-mint-green-50)}.dnb-skip-link--active:active:before,.dnb-skip-link:focus:active:before{background-color:#14555a;background-color:var(--color-emerald-green)}.dnb-skip-link--active:focus:not(:active):before,.dnb-skip-link:focus:focus:not(:active):before{outline:none}html[data-whatinput=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):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=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):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-skip-link--active:focus,.dnb-skip-link:focus:focus{opacity:1}.dnb-skip-link--active:focus:not(:hover):not(:active),.dnb-skip-link--active:hover,.dnb-skip-link:focus:focus:not(:hover):not(:active),.dnb-skip-link:focus:hover{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green)}.dnb-skip-link--active:active,.dnb-skip-link:focus:active{background-color:transparent;color:#fff;color:var(--color-white)}html[data-whatintent=touch] .dnb-skip-link{display:none}.dnb-alignment-helper,.dnb-alignment-helper:before{speak:none;display:inline-block;font-size:1rem;font-size:var(--font-size-small);height:0;width:0}.dnb-alignment-helper:before{content:"\200C"}.dnb-drop-shadow{-webkit-box-shadow:0 8px 16px rgba(51,51,51,.08);box-shadow:0 8px 16px rgba(51,51,51,.08);-webkit-box-shadow:var(--shadow-default);box-shadow:var(--shadow-default)}.dnb-sr-only,.dnb-sr-only--inline{-webkit-touch-callout:none;clip:rect(1px,1px,1px,1px);border:0;height:1px;margin:-1px 0 0 -1px;overflow:hidden;padding:0;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:1px}.dnb-sr-only--inline{display:inline-block;font-size:0;line-height:0;opacity:0;position:static;visibility:visible}.dnb-not-sr-only{font-size:medium;height:auto;line-height:normal;opacity:1;overflow:auto;position:static;white-space:normal;width:auto}.dnb-suffix{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding-left:.5rem;word-break:normal}html{font-size:100%;scroll-behavior:smooth}@supports (-webkit-touch-callout:none) and (font:-apple-system-body){html{font:-apple-system-body}}html[xmlns="http://www.w3.org/1999/xhtml"] a:hover{text-decoration:none}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--active{color:#a5e1d2!important;color:var(--color-mint-green)!important}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--contrast:not(:hover){color:#fff!important;color:var(--color-white)!important}html[xmlns="http://www.w3.org/1999/xhtml"] a.dnb-button--primary{color:#fff;color:var(--color-white)}html[xmlns="http://www.w3.org/1999/xhtml"] ul{list-style:disc none outside;list-style:initial}html[xmlns="http://www.w3.org/1999/xhtml"] p{background-color:transparent;background-color:initial;overflow:visible;overflow:initial;text-align:inherit}html[xmlns="http://www.w3.org/1999/xhtml"] i{font-style:italic}html[xmlns="http://www.w3.org/1999/xhtml"] #column_left,html[xmlns="http://www.w3.org/1999/xhtml"] #root{width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefault #wrapper,html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefaultStartPage #wrapper{max-width:60rem;width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] #column_content{-webkit-box-shadow:none;box-shadow:none}body{margin:0}.dnb-core-style{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#333;color:var(--color-black-80,#333);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-size:1rem;font-size:var(--font-size-small);font-style:normal;font-weight:400;font-weight:var(--font-weight-basis);line-height:1.5rem;line-height:var(--line-height-basis);-moz-tab-size:4;-o-tab-size:4;tab-size:4;word-break:break-word}.dnb-core-style *,.dnb-core-style :after,.dnb-core-style :before{background-repeat:no-repeat;-webkit-box-sizing:border-box;box-sizing:border-box}.dnb-core-style :after,.dnb-core-style :before{text-decoration:inherit;vertical-align:inherit}.dnb-core-style hr{height:0;overflow:visible}.dnb-core-style main{display:block}.dnb-core-style nav ol,.dnb-core-style nav ul{list-style:none}.dnb-core-style abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.dnb-core-style b,.dnb-core-style strong{font-weight:bolder}.dnb-core-style code,.dnb-core-style kbd,.dnb-core-style pre,.dnb-core-style samp{font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-size:1em;font-size:var(--font-size-basis--em)}.dnb-core-style ::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}.dnb-core-style audio,.dnb-core-style canvas,.dnb-core-style iframe,.dnb-core-style img,.dnb-core-style svg,.dnb-core-style video{vertical-align:middle}.dnb-core-style audio,.dnb-core-style video{display:inline-block}.dnb-core-style audio:not([controls]){display:none;height:0}.dnb-core-style img{border-style:none}.dnb-core-style svg:not([fill]){fill:currentColor}.dnb-core-style svg:not(:root){overflow:hidden}.dnb-core-style table{border-collapse:collapse}.dnb-core-style button,.dnb-core-style input,.dnb-core-style select,.dnb-core-style textarea{font-family:inherit;font-size:inherit;line-height:inherit}.dnb-core-style button,.dnb-core-style figure,.dnb-core-style input,.dnb-core-style select{margin:0}.dnb-core-style button{overflow:visible;text-transform:none}.dnb-core-style fieldset{padding:.35rem .75rem .625rem}.dnb-core-style input{overflow:visible;word-break:normal}.dnb-core-style legend{color:inherit;display:table;max-width:100%;white-space:normal}.dnb-core-style progress{display:inline-block;vertical-align:baseline}.dnb-core-style select{text-transform:none}.dnb-core-style textarea{overflow:auto;resize:vertical}.dnb-core-style [type=checkbox],.dnb-core-style [type=radio]{padding:0}.dnb-core-style input[type=search]{-webkit-appearance:textfield;outline-offset:-2px}.dnb-core-style ::-webkit-inner-spin-button,.dnb-core-style ::-webkit-outer-spin-button{height:auto}.dnb-core-style ::-webkit-input-placeholder{color:inherit;opacity:.54}.dnb-core-style ::-webkit-search-decoration{-webkit-appearance:none}.dnb-core-style ::-webkit-file-upload-button{background-color:transparent;border:none;font:inherit}.dnb-core-style ::-moz-focus-inner{border-style:none;padding:0}.dnb-core-style details{display:block}.dnb-core-style summary{display:list-item}.dnb-core-style canvas{display:inline-block}.dnb-core-style template{display:none}.dnb-core-style [tabindex],.dnb-core-style a,.dnb-core-style area,.dnb-core-style button,.dnb-core-style input,.dnb-core-style label,.dnb-core-style select,.dnb-core-style summary,.dnb-core-style textarea{-ms-touch-action:manipulation;touch-action:manipulation}.dnb-core-style [hidden]{display:none}.dnb-core-style [aria-busy=true]{cursor:progress}.dnb-core-style [aria-controls]:not(input){cursor:pointer}.dnb-core-style [aria-disabled=true],.dnb-core-style [disabled]{cursor:not-allowed}.dnb-core-style [aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}@media print{.dnb-core-style{background-color:#fff;color:#000}}
1
+ :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);--easing-default:cubic-bezier(0.42,0,0,1)}.dnb-typo-regular{font-weight:400}.dnb-typo-medium,.dnb-typo-regular{font-family:DNB,sans-serif;font-family:var(--font-family-default);font-style:normal}.dnb-typo-medium{font-weight:500;font-weight:var(--font-weight-medium)}.dnb-typo-bold{font-family:DNB,sans-serif;font-family:var(--font-family-default);font-style:normal;font-weight:600;font-weight:var(--font-weight-bold)}.dnb-typo-mono-regular{font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-style:normal;font-weight:400}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:400;src:url(../assets/fonts/DNB-Regular.woff2) format("woff2"),url(../assets/fonts/DNB-Regular.woff) format("woff"),url(../assets/fonts/DNB-Regular.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:500;src:url(../assets/fonts/DNB-Medium.woff2) format("woff2"),url(../assets/fonts/DNB-Medium.woff) format("woff"),url(../assets/fonts/DNB-Medium.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNB;font-style:normal;font-weight:600;src:url(../assets/fonts/DNB-Bold.woff2) format("woff2"),url(../assets/fonts/DNB-Bold.woff) format("woff"),url(../assets/fonts/DNB-Bold.ttf) format("truetype")}@font-face{font-display:fallback;font-family:DNBMono;font-style:normal;font-weight:400;src:url(../assets/fonts/DNBMono-Regular.woff2) format("woff2"),url(../assets/fonts/DNBMono-Regular.woff) format("woff"),url(../assets/fonts/DNBMono-Regular.ttf) format("truetype")}.dnb-no-focus,.dnb-tab-focus,.dnb-tab-focus:focus{outline:none}html[data-whatinput=keyboard] .dnb-tab-focus: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-tab-focus: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-mouse-focus,.dnb-mouse-focus:focus{outline:none}html[data-whatinput=mouse] .dnb-mouse-focus: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-mouse-focus: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-focus-ring{--border-color:var(--color-emerald-green);border-color:transparent;-webkit-box-shadow:0 0 0 .125rem var(--border-color)!important;box-shadow:0 0 0 .125rem var(--border-color)!important}@media screen and (-ms-high-contrast:none){.dnb-focus-ring{-webkit-box-shadow:0 0 0 .125rem #14555a!important;box-shadow:0 0 0 .125rem #14555a!important;-webkit-box-shadow:0 0 0 .125rem var(--color-emerald-green)!important;box-shadow:0 0 0 .125rem var(--color-emerald-green)!important}}.dnb-scrollbar-appearance{-ms-scroll-chaining:none;-webkit-overflow-scrolling:touch;-ms-overflow-style:auto;overscroll-behavior:contain;scrollbar-color:#14555a transparent;scrollbar-color:var(--color-emerald-green) transparent;scrollbar-width:thin}.dnb-skip-link{opacity:.3;position:absolute;top:-100vh;-webkit-transition:opacity .3s ease-out;transition:opacity .3s ease-out;z-index:0}.dnb-skip-link--active,.dnb-skip-link:focus{background-color:transparent;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green);font-size:1.125rem;font-size:var(--font-size-basis);left:40%;margin:0;outline:none;padding:.5rem 1rem;position:fixed;text-align:center;text-decoration:none;top:5%;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none;white-space:nowrap;z-index:9999}.dnb-skip-link--active:after,.dnb-skip-link:focus:after{background-color:hsla(0,0%,100%,.85);-webkit-box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);box-shadow:150vw 150vh 0 0 hsla(0,0%,100%,.85);content:"";height:150vh;left:-200vw;position:absolute;top:-200vh;width:150vw;z-index:-2}.dnb-skip-link--active:before,.dnb-skip-link:focus:before{background-color:#fff;background-color:var(--color-white);border-radius:1.5rem;content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%;z-index:-1}html[data-whatinput=mouse] .dnb-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus: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-skip-link--active:before,html[data-whatinput=mouse] .dnb-skip-link:focus: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-skip-link--active:hover:before,.dnb-skip-link:focus:hover:before{background-color:#d2f0e9;background-color:var(--color-mint-green-50)}.dnb-skip-link--active:active:before,.dnb-skip-link:focus:active:before{background-color:#14555a;background-color:var(--color-emerald-green)}.dnb-skip-link--active:focus:not(:active):before,.dnb-skip-link:focus:focus:not(:active):before{outline:none}html[data-whatinput=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):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=keyboard] .dnb-skip-link--active:focus:not(:active):before,html[data-whatinput=keyboard] .dnb-skip-link:focus:focus:not(:active):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-skip-link--active:focus,.dnb-skip-link:focus:focus{opacity:1}.dnb-skip-link--active:focus:not(:hover):not(:active),.dnb-skip-link--active:hover,.dnb-skip-link:focus:focus:not(:hover):not(:active),.dnb-skip-link:focus:hover{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;color:#007272;color:var(--color-sea-green)}.dnb-skip-link--active:active,.dnb-skip-link:focus:active{background-color:transparent;color:#fff;color:var(--color-white)}html[data-whatintent=touch] .dnb-skip-link{display:none}.dnb-alignment-helper,.dnb-alignment-helper:before{speak:none;display:inline-block;font-size:1rem;font-size:var(--font-size-small);height:0;width:0}.dnb-alignment-helper:before{content:"\200C"}.dnb-drop-shadow{-webkit-box-shadow:0 8px 16px rgba(51,51,51,.08);box-shadow:0 8px 16px rgba(51,51,51,.08);-webkit-box-shadow:var(--shadow-default);box-shadow:var(--shadow-default)}.dnb-sr-only,.dnb-sr-only--inline{-webkit-touch-callout:none;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);margin:0;max-height:1px;max-width:1px;overflow:hidden;padding:0;pointer-events:none;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.dnb-sr-only--inline{display:inline-block;font-size:0;line-height:0;position:static;visibility:visible}.dnb-not-sr-only{-webkit-clip-path:initial;clip-path:none;font-size:medium;line-height:normal;max-height:none;max-width:none;overflow:auto;position:static;white-space:normal}.dnb-suffix{font-size:1.125rem;font-size:var(--font-size-basis);line-height:1.5rem;line-height:var(--line-height-basis);padding-left:.5rem;word-break:normal}html{font-size:100%;scroll-behavior:smooth}@supports (-webkit-touch-callout:none) and (font:-apple-system-body){html{font:-apple-system-body}}html[xmlns="http://www.w3.org/1999/xhtml"] a:hover{text-decoration:none}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--active{color:#a5e1d2!important;color:var(--color-mint-green)!important}html[xmlns="http://www.w3.org/1999/xhtml"] .dnb-anchor--contrast:not(:hover){color:#fff!important;color:var(--color-white)!important}html[xmlns="http://www.w3.org/1999/xhtml"] a.dnb-button--primary{color:#fff;color:var(--color-white)}html[xmlns="http://www.w3.org/1999/xhtml"] ul{list-style:disc none outside;list-style:initial}html[xmlns="http://www.w3.org/1999/xhtml"] p{background-color:transparent;background-color:initial;overflow:visible;overflow:initial;text-align:inherit}html[xmlns="http://www.w3.org/1999/xhtml"] i{font-style:italic}html[xmlns="http://www.w3.org/1999/xhtml"] #column_left,html[xmlns="http://www.w3.org/1999/xhtml"] #root{width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefault #wrapper,html[xmlns="http://www.w3.org/1999/xhtml"] body#dnbLayoutDefaultStartPage #wrapper{max-width:60rem;width:100%}html[xmlns="http://www.w3.org/1999/xhtml"] #column_content{-webkit-box-shadow:none;box-shadow:none}body{margin:0}.dnb-core-style{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:rgba(0,0,0,0);-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#333;color:var(--color-black-80,#333);font-family:DNB,sans-serif;font-family:var(--font-family-default);font-size:1rem;font-size:var(--font-size-small);font-style:normal;font-weight:400;font-weight:var(--font-weight-basis);line-height:1.5rem;line-height:var(--line-height-basis);-moz-tab-size:4;-o-tab-size:4;tab-size:4;word-break:break-word}.dnb-core-style *,.dnb-core-style :after,.dnb-core-style :before{background-repeat:no-repeat;-webkit-box-sizing:border-box;box-sizing:border-box}.dnb-core-style :after,.dnb-core-style :before{text-decoration:inherit;vertical-align:inherit}.dnb-core-style hr{height:0;overflow:visible}.dnb-core-style main{display:block}.dnb-core-style nav ol,.dnb-core-style nav ul{list-style:none}.dnb-core-style abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.dnb-core-style b,.dnb-core-style strong{font-weight:bolder}.dnb-core-style code,.dnb-core-style kbd,.dnb-core-style pre,.dnb-core-style samp{font-family:DNBMono,Menlo,Consolas,Roboto Mono,"Ubuntu Monospace",Noto Mono,Oxygen Mono,Liberation Mono,monospace;font-family:var(--font-family-monospace);font-size:1em;font-size:var(--font-size-basis--em)}.dnb-core-style ::-moz-selection{background-color:#b3d4fc;color:#000;text-shadow:none}.dnb-core-style audio,.dnb-core-style canvas,.dnb-core-style iframe,.dnb-core-style img,.dnb-core-style svg,.dnb-core-style video{vertical-align:middle}.dnb-core-style audio,.dnb-core-style video{display:inline-block}.dnb-core-style audio:not([controls]){display:none;height:0}.dnb-core-style img{border-style:none}.dnb-core-style svg:not([fill]){fill:currentColor}.dnb-core-style svg:not(:root){overflow:hidden}.dnb-core-style table{border-collapse:collapse}.dnb-core-style button,.dnb-core-style input,.dnb-core-style select,.dnb-core-style textarea{font-family:inherit;font-size:inherit;line-height:inherit}.dnb-core-style button,.dnb-core-style figure,.dnb-core-style input,.dnb-core-style select{margin:0}.dnb-core-style button{overflow:visible;text-transform:none}.dnb-core-style fieldset{padding:.35rem .75rem .625rem}.dnb-core-style input{overflow:visible;word-break:normal}.dnb-core-style legend{color:inherit;display:table;max-width:100%;white-space:normal}.dnb-core-style progress{display:inline-block;vertical-align:baseline}.dnb-core-style select{text-transform:none}.dnb-core-style textarea{overflow:auto;resize:vertical}.dnb-core-style [type=checkbox],.dnb-core-style [type=radio]{padding:0}.dnb-core-style input[type=search]{-webkit-appearance:textfield;outline-offset:-2px}.dnb-core-style ::-webkit-inner-spin-button,.dnb-core-style ::-webkit-outer-spin-button{height:auto}.dnb-core-style ::-webkit-input-placeholder{color:inherit;opacity:.54}.dnb-core-style ::-webkit-search-decoration{-webkit-appearance:none}.dnb-core-style ::-webkit-file-upload-button{background-color:transparent;border:none;font:inherit}.dnb-core-style ::-moz-focus-inner{border-style:none;padding:0}.dnb-core-style details{display:block}.dnb-core-style summary{display:list-item}.dnb-core-style canvas{display:inline-block}.dnb-core-style template{display:none}.dnb-core-style [tabindex],.dnb-core-style a,.dnb-core-style area,.dnb-core-style button,.dnb-core-style input,.dnb-core-style label,.dnb-core-style select,.dnb-core-style summary,.dnb-core-style textarea{-ms-touch-action:manipulation;touch-action:manipulation}.dnb-core-style [hidden]{display:none}.dnb-core-style [aria-busy=true]{cursor:progress}.dnb-core-style [aria-controls]:not(input){cursor:pointer}.dnb-core-style [aria-disabled=true],.dnb-core-style [disabled]{cursor:not-allowed}.dnb-core-style [aria-hidden=false][hidden]:not(:focus){clip:rect(0,0,0,0);display:inherit;position:absolute}@media print{.dnb-core-style{background-color:#fff;color:#000}}
@@ -750,9 +750,9 @@
750
750
  right: 0;
751
751
  width: 60%; } }
752
752
  .dnb-accordion > .dnb-accordion__header--no-animation .dnb-accordion__header__icon,
753
- html[data-visual-test] .dnb-accordion > .dnb-accordion__header--no-animation .dnb-accordion__header__icon {
754
- -webkit-transition-duration: 1ms !important;
755
- transition-duration: 1ms !important; }
753
+ html[data-visual-test] .dnb-accordion .dnb-accordion__header .dnb-accordion__header__icon {
754
+ -webkit-transition: none;
755
+ transition: none; }
756
756
 
757
757
  /*
758
758
  * Autocomplete component
@@ -2561,10 +2561,10 @@ button.dnb-button::-moz-focus-inner {
2561
2561
  width: 100%;
2562
2562
  height: 100%; }
2563
2563
  .dnb-dialog--information {
2564
- min-width: 320px;
2565
- min-width: var(--dialog-min-width);
2566
2564
  width: 60vw;
2567
2565
  width: var(--dialog-avg-width);
2566
+ min-width: 320px;
2567
+ min-width: var(--dialog-min-width);
2568
2568
  max-width: 49rem;
2569
2569
  max-width: var(--dialog-max-width); }
2570
2570
  .dnb-dialog--confirmation {
@@ -2665,6 +2665,10 @@ button.dnb-button::-moz-focus-inner {
2665
2665
  width: 100%; }
2666
2666
  .dnb-dialog__actions > :not(:last-child) {
2667
2667
  margin-right: 1rem; }
2668
+ .dnb-dialog--information .dnb-dialog__actions {
2669
+ -webkit-box-pack: left;
2670
+ -ms-flex-pack: left;
2671
+ justify-content: left; }
2668
2672
  .dnb-dialog__align--center .dnb-dialog__content {
2669
2673
  -webkit-box-align: center;
2670
2674
  -ms-flex-align: center;
@@ -2710,26 +2714,6 @@ button.dnb-button::-moz-focus-inner {
2710
2714
  -webkit-box-pack: justify;
2711
2715
  -ms-flex-pack: justify;
2712
2716
  justify-content: space-between; }
2713
- .dnb-dialog__icon__primary.dnb-icon--border::after {
2714
- left: -50%;
2715
- right: -50%;
2716
- top: -50%;
2717
- bottom: -50%;
2718
- border: none;
2719
- background-color: currentColor;
2720
- opacity: 0.1; }
2721
- .dnb-dialog__icon__primary.dnb-dialog__icon--warning {
2722
- color: #dc2a2a;
2723
- color: var(--color-fire-red); }
2724
- .dnb-dialog__icon__primary.dnb-dialog__icon--warning ::after {
2725
- background-color: #fdeeee;
2726
- background-color: var(--color-fire-red-8); }
2727
- .dnb-dialog__icon__primary.dnb-dialog__icon--info {
2728
- color: #14555a;
2729
- color: var(--color-emerald-green); }
2730
- .dnb-dialog__icon__primary.dnb-dialog__icon--info ::after {
2731
- background-color: #f2f4ec;
2732
- background-color: var(--color-pistachio); }
2733
2717
  html:not([data-visual-test]) .dnb-dialog {
2734
2718
  -webkit-animation: show-modal 300ms ease-out;
2735
2719
  animation: show-modal 300ms ease-out;
@@ -2770,6 +2754,10 @@ button.dnb-button::-moz-focus-inner {
2770
2754
  margin-bottom: 0; }
2771
2755
  .dnb-dialog--spacing .dnb-dialog__header .dnb-tabs {
2772
2756
  margin-top: 3.5rem; }
2757
+ .dnb-dialog__icon {
2758
+ display: -webkit-box;
2759
+ display: -ms-flexbox;
2760
+ display: flex; }
2773
2761
  .dnb-dialog__icon ~ .dnb-dialog__header {
2774
2762
  margin-top: 1.5rem; }
2775
2763
  @supports (-webkit-touch-callout: none) {
@@ -3039,6 +3027,7 @@ button.dnb-button::-moz-focus-inner {
3039
3027
  .dnb-drawer--spacing .dnb-drawer__navigation.dnb-section {
3040
3028
  position: sticky;
3041
3029
  top: 0;
3030
+ left: 0;
3042
3031
  z-index: 99;
3043
3032
  margin: 2rem 0;
3044
3033
  margin: var(--drawer-spacing) 0;
@@ -7265,89 +7254,133 @@ span.dnb-space--no-collapse > span {
7265
7254
  -ms-flex-align: end;
7266
7255
  align-items: flex-end; }
7267
7256
 
7257
+ .dnb-table--outline thead .dnb-table__th::after {
7258
+ content: '';
7259
+ position: absolute;
7260
+ top: 0;
7261
+ left: 0;
7262
+ right: 0;
7263
+ bottom: 0;
7264
+ z-index: 1;
7265
+ pointer-events: none;
7266
+ border-top: var(--outline); }
7267
+
7268
+ .dnb-table--outline thead .dnb-table__th:first-of-type::after {
7269
+ border-left: var(--outline); }
7270
+
7271
+ .dnb-table--outline thead .dnb-table__th:last-of-type::after {
7272
+ border-right: var(--outline); }
7273
+
7274
+ .dnb-table--outline thead .dnb-table__th:first-of-type, .dnb-table--outline thead .dnb-table__th:first-of-type::after {
7275
+ border-radius: 0.5rem 0 0 0; }
7276
+
7277
+ .dnb-table--outline thead .dnb-table__th:last-of-type, .dnb-table--outline thead .dnb-table__th:last-of-type::after {
7278
+ border-radius: 0 0.5rem 0 0; }
7279
+
7280
+ .dnb-table--outline tbody .dnb-table__th:first-of-type::after {
7281
+ content: '';
7282
+ position: absolute;
7283
+ top: 0;
7284
+ left: 0;
7285
+ right: 0;
7286
+ bottom: 0;
7287
+ z-index: 1;
7288
+ pointer-events: none;
7289
+ border-left: var(--outline); }
7290
+
7291
+ .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__th::after {
7292
+ content: '';
7293
+ position: absolute;
7294
+ top: 0;
7295
+ left: 0;
7296
+ right: 0;
7297
+ bottom: 0;
7298
+ z-index: 1;
7299
+ pointer-events: none;
7300
+ border-bottom: var(--outline); }
7301
+
7302
+ .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__th:first-of-type::after {
7303
+ border-radius: 0 0 0 0.5rem; }
7304
+
7268
7305
  /*
7269
7306
  * Table component
7270
7307
  *
7271
7308
  */
7272
- .dnb-table {
7273
- --border: 0.0625rem solid var(--color-black-8);
7274
- --outline: 0.0625rem solid var(--color-black-8); }
7275
- .dnb-table--border tbody .dnb-table__td {
7276
- z-index: 2; }
7277
- .dnb-table--border tbody .dnb-table__td::after {
7278
- content: '';
7279
- position: absolute;
7280
- top: 0;
7281
- left: 0;
7282
- right: 0;
7283
- bottom: 0;
7284
- z-index: -1;
7285
- pointer-events: none;
7286
- border: var(--border);
7287
- border-right: none;
7288
- border-bottom: none; }
7289
- .dnb-table--border tbody .dnb-table__td:first-of-type::after {
7290
- border-left: none; }
7291
- .dnb-table:not(.dnb-table--outline) tbody .dnb-table__tr:last-of-type .dnb-table__td::after {
7292
- border-bottom: var(--border); }
7293
- .dnb-table--outline thead .dnb-table__th {
7294
- z-index: 2; }
7295
- .dnb-table--outline thead .dnb-table__th::after {
7296
- content: '';
7297
- position: absolute;
7298
- top: 0;
7299
- left: 0;
7300
- right: 0;
7301
- bottom: 0;
7302
- z-index: -1;
7303
- pointer-events: none;
7304
- border-top: var(--outline); }
7305
- .dnb-table--outline thead .dnb-table__th:first-of-type::after {
7306
- border-left: var(--outline); }
7307
- .dnb-table--outline thead .dnb-table__th:last-of-type::after {
7308
- border-right: var(--outline); }
7309
- .dnb-table--outline tbody .dnb-table__td {
7310
- z-index: 2; }
7311
- .dnb-table--outline tbody .dnb-table__td:first-of-type::after, .dnb-table--outline tbody .dnb-table__td:last-of-type::after {
7312
- content: '';
7313
- position: absolute;
7314
- top: 0;
7315
- left: 0;
7316
- right: 0;
7317
- bottom: 0;
7318
- z-index: -1;
7319
- pointer-events: none; }
7320
- .dnb-table--outline tbody .dnb-table__td:first-of-type::after {
7321
- border-left: var(--outline); }
7322
- .dnb-table--outline tbody .dnb-table__td:last-of-type::after {
7323
- border-right: var(--outline); }
7324
- .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td {
7325
- z-index: 2; }
7326
- .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td::after {
7327
- content: '';
7328
- position: absolute;
7329
- top: 0;
7330
- left: 0;
7331
- right: 0;
7332
- bottom: 0;
7333
- z-index: -1;
7334
- pointer-events: none;
7335
- border-bottom: var(--outline); }
7336
- .dnb-table--outline thead .dnb-table__th:first-of-type, .dnb-table--outline thead .dnb-table__th:first-of-type::after {
7337
- border-radius: 0.5rem 0 0 0; }
7338
- .dnb-table--outline thead .dnb-table__th:last-of-type, .dnb-table--outline thead .dnb-table__th:last-of-type::after {
7339
- border-radius: 0 0.5rem 0 0; }
7340
- .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:first-of-type, .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:first-of-type::after {
7341
- border-radius: 0 0 0 0.5rem; }
7342
- .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:last-of-type, .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:last-of-type::after {
7343
- border-radius: 0 0 0.5rem 0; }
7344
- .dnb-table__td--no-spacing,
7345
- .dnb-table td.dnb-table__td--no-spacing {
7346
- padding: 0; }
7347
- .dnb-table__td--spacing-horizontal,
7348
- .dnb-table td.dnb-table__td--spacing-horizontal {
7349
- padding-top: 0;
7350
- padding-bottom: 0; }
7309
+ .dnb-table--border tbody .dnb-table__td::after {
7310
+ content: '';
7311
+ position: absolute;
7312
+ top: 0;
7313
+ left: 0;
7314
+ right: 0;
7315
+ bottom: 0;
7316
+ z-index: 1;
7317
+ pointer-events: none;
7318
+ border: var(--border);
7319
+ border-right: none;
7320
+ border-bottom: none; }
7321
+
7322
+ .dnb-table--border tbody .dnb-table__td:first-of-type::after {
7323
+ border-left: none; }
7324
+
7325
+ .dnb-table:not(.dnb-table--outline) tbody .dnb-table__tr:last-of-type .dnb-table__td::after {
7326
+ border-bottom: var(--border); }
7327
+
7328
+ .dnb-table--outline tbody .dnb-table__td {
7329
+ /* stylelint-disable */
7330
+ /* stylelint-enable */ }
7331
+ .dnb-table--outline tbody .dnb-table__td:first-of-type::after, .dnb-table--outline tbody .dnb-table__td:last-of-type::after {
7332
+ content: '';
7333
+ position: absolute;
7334
+ top: 0;
7335
+ left: 0;
7336
+ right: 0;
7337
+ bottom: 0;
7338
+ z-index: 1;
7339
+ pointer-events: none; }
7340
+ .dnb-table--outline tbody .dnb-table__td:first-of-type::after {
7341
+ border-left: var(--outline); }
7342
+ .dnb-table--outline tbody .dnb-table__td:last-of-type::after {
7343
+ border-right: var(--outline); }
7344
+ .dnb-table--outline tbody .dnb-table__td, .dnb-table--outline tbody .dnb-table__td::before, .dnb-table--outline tbody .dnb-table__td::after {
7345
+ -webkit-transition: border-radius 400ms cubic-bezier(0.42, 0, 0, 1);
7346
+ transition: border-radius 400ms cubic-bezier(0.42, 0, 0, 1);
7347
+ -webkit-transition: border-radius 400ms var(--easing-default);
7348
+ transition: border-radius 400ms var(--easing-default); }
7349
+
7350
+ .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td::after {
7351
+ content: '';
7352
+ position: absolute;
7353
+ top: 0;
7354
+ left: 0;
7355
+ right: 0;
7356
+ bottom: 0;
7357
+ z-index: 1;
7358
+ pointer-events: none;
7359
+ border-bottom: var(--outline); }
7360
+
7361
+ .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:first-of-type, .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:first-of-type::before, .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:first-of-type::after {
7362
+ border-radius: 0 0 0 0.5rem; }
7363
+
7364
+ .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:last-of-type, .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:last-of-type::before, .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__td:last-of-type::after {
7365
+ border-radius: 0 0 0.5rem 0; }
7366
+
7367
+ .dnb-table--outline tbody .dnb-table__tr .dnb-table__th ~ .dnb-table__td:first-of-type:first-of-type::after {
7368
+ border-left: none; }
7369
+
7370
+ .dnb-table--border tbody .dnb-table__tr .dnb-table__th ~ .dnb-table__td:first-of-type:first-of-type::after {
7371
+ border-left: var(--border); }
7372
+
7373
+ .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__th ~ .dnb-table__td:first-of-type, .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__th ~ .dnb-table__td:first-of-type::before, .dnb-table--outline tbody .dnb-table__tr:last-of-type .dnb-table__th ~ .dnb-table__td:first-of-type::after {
7374
+ border-radius: 0 0 0 0; }
7375
+
7376
+ .dnb-table__td--no-spacing,
7377
+ .dnb-table td.dnb-table__td--no-spacing {
7378
+ padding: 0; }
7379
+
7380
+ .dnb-table__td--spacing-horizontal,
7381
+ .dnb-table td.dnb-table__td--spacing-horizontal {
7382
+ padding-top: 0;
7383
+ padding-bottom: 0; }
7351
7384
 
7352
7385
  /*
7353
7386
  * Table component
@@ -7395,43 +7428,41 @@ span.dnb-space--no-collapse > span {
7395
7428
  padding: 0 !important;
7396
7429
  height: 0; }
7397
7430
 
7398
- .dnb-table tr.sticky th {
7431
+ .dnb-table tr.sticky:not(.css-position) th {
7432
+ position: relative;
7433
+ z-index: 3;
7434
+ will-change: transform;
7435
+ -webkit-transform: translate3d(0, 0, 0);
7436
+ transform: translate3d(0, 0, 0);
7437
+ -webkit-transform: translate3d(0, var(--table-offset, 0), 0);
7438
+ transform: translate3d(0, var(--table-offset, 0), 0); }
7439
+
7440
+ .dnb-table tr.sticky.css-position {
7399
7441
  position: sticky;
7442
+ z-index: 3;
7400
7443
  top: 0;
7401
- top: var(--table-top, 0);
7402
- z-index: 2; }
7403
- .dnb-table tr.sticky th::before {
7404
- content: '';
7405
- position: absolute;
7406
- opacity: 0;
7407
- left: 0;
7408
- right: 0;
7409
- bottom: 0;
7410
- height: 6px;
7411
- -webkit-box-shadow: 0 -2px 12px 8px rgba(51, 51, 51, 0.08);
7412
- box-shadow: 0 -2px 12px 8px rgba(51, 51, 51, 0.08);
7413
- -webkit-box-shadow: var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);
7414
- box-shadow: var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);
7415
- -webkit-clip-path: inset(6px 0 -48px 0);
7416
- clip-path: inset(6px 0 -48px 0);
7417
- -webkit-transition: opacity 300ms ease-out;
7418
- transition: opacity 300ms ease-out; }
7419
- [data-visual-test-wrapper] .dnb-table tr.sticky th::before {
7420
- -webkit-transition: none;
7421
- transition: none; }
7422
-
7423
- .dnb-table tr.sticky.show-shadow th::before {
7424
- opacity: 1; }
7444
+ top: var(--table-top, 0); }
7445
+
7446
+ .dnb-table tr.sticky.is-sticky th::before {
7447
+ content: '';
7448
+ position: absolute;
7449
+ left: 0;
7450
+ right: 0;
7451
+ bottom: 0;
7452
+ height: 6px;
7453
+ -webkit-box-shadow: 0 -2px 12px 8px rgba(51, 51, 51, 0.08);
7454
+ box-shadow: 0 -2px 12px 8px rgba(51, 51, 51, 0.08);
7455
+ -webkit-box-shadow: var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);
7456
+ box-shadow: var(--shadow-default-x) -2px 12px 8px var(--shadow-default-color);
7457
+ -webkit-clip-path: inset(6px 0 -48px 0);
7458
+ clip-path: inset(6px 0 -48px 0); }
7425
7459
 
7426
7460
  /*
7427
7461
  * Table component
7428
7462
  *
7429
7463
  */
7430
7464
  .dnb-table__container {
7431
- position: relative;
7432
- --border: 0.0625rem solid var(--color-black-8);
7433
- background-color: #fff;
7434
- background-color: var(--color-white); }
7465
+ position: relative; }
7435
7466
  .dnb-table__container::after {
7436
7467
  content: '';
7437
7468
  position: absolute;
@@ -7441,7 +7472,8 @@ span.dnb-space--no-collapse > span {
7441
7472
  bottom: 0;
7442
7473
  z-index: 1;
7443
7474
  pointer-events: none;
7444
- border: var(--border); }
7475
+ z-index: 3;
7476
+ border: var(--outline); }
7445
7477
  .dnb-table__container, .dnb-table__container::after {
7446
7478
  border-radius: 0.5rem; }
7447
7479
  .dnb-table__container, .dnb-table__container__body, .dnb-table__container__head, .dnb-table__container__foot {
@@ -7460,34 +7492,21 @@ span.dnb-space--no-collapse > span {
7460
7492
  margin: 0; }
7461
7493
  .dnb-table__container__foot {
7462
7494
  padding: 0.5rem 1rem 2rem; }
7495
+ .dnb-modal__content .dnb-table__container .dnb-table__scroll-view {
7496
+ overflow: visible; }
7463
7497
 
7498
+ /*
7499
+ * Table deprecated parts
7500
+ *
7501
+ */
7464
7502
  .dnb-table {
7465
- display: table;
7466
- table-layout: auto;
7467
- width: 100%;
7468
- overflow: auto;
7469
- margin-top: 0;
7470
- margin-bottom: 0.5rem;
7471
- border-spacing: 0;
7472
- border-collapse: collapse;
7473
- /* stylelint-disable */
7474
- /* stylelint-enable */ }
7475
- .dnb-table--fixed {
7476
- table-layout: fixed;
7477
- width: auto; }
7478
- .dnb-table--no-wrap {
7479
- white-space: nowrap; }
7503
+ /* stylelint-disable */ }
7480
7504
  .dnb-table, .dnb-table--left {
7481
7505
  text-align: left; }
7482
7506
  .dnb-table--right {
7483
7507
  text-align: right; }
7484
7508
  .dnb-table--center {
7485
7509
  text-align: center; }
7486
- .dnb-table > caption {
7487
- caption-side: bottom;
7488
- margin-top: 0.5rem;
7489
- font-size: 1.125rem;
7490
- font-size: var(--font-size-basis); }
7491
7510
  .dnb-table--small,
7492
7511
  .dnb-table--small > tr > th,
7493
7512
  .dnb-table--small > tr > td,
@@ -7526,6 +7545,25 @@ span.dnb-space--no-collapse > span {
7526
7545
  .dnb-table > tbody > tr > td.dnb-table--x-small, .dnb-table__th.dnb-table--x-small, .dnb-table__td.dnb-table--x-small {
7527
7546
  font-size: 0.875rem;
7528
7547
  font-size: var(--font-size-x-small); }
7548
+
7549
+ .dnb-table {
7550
+ display: table;
7551
+ table-layout: auto;
7552
+ width: 100%;
7553
+ margin-top: 0;
7554
+ margin-bottom: 0.5rem;
7555
+ border-spacing: 0;
7556
+ border-collapse: collapse; }
7557
+ .dnb-table--fixed {
7558
+ table-layout: fixed;
7559
+ width: auto; }
7560
+ .dnb-table--no-wrap {
7561
+ white-space: nowrap; }
7562
+ .dnb-table > caption {
7563
+ caption-side: bottom;
7564
+ margin-top: 0.5rem;
7565
+ font-size: 1.125rem;
7566
+ font-size: var(--font-size-basis); }
7529
7567
  .dnb-table.dnb-skeleton > * {
7530
7568
  -webkit-text-fill-color: #ebebeb;
7531
7569
  -webkit-text-fill-color: var(--skeleton-color); }
@@ -7542,8 +7580,7 @@ span.dnb-space--no-collapse > span {
7542
7580
  align-items: flex-end;
7543
7581
  -webkit-box-shadow: none;
7544
7582
  box-shadow: none;
7545
- line-height: 1.5rem;
7546
- line-height: var(--line-height-basis);
7583
+ line-height: inherit;
7547
7584
  margin: 0;
7548
7585
  padding: 0;
7549
7586
  padding-right: 0.5rem;
@@ -7566,7 +7603,8 @@ span.dnb-space--no-collapse > span {
7566
7603
  .dnb-table > thead > tr > th.dnb-table--sortable .dnb-table__sort-button.dnb-button .dnb-button__text,
7567
7604
  .dnb-table .dnb-table__th.dnb-table--sortable .dnb-table__sort-button.dnb-button .dnb-button__text {
7568
7605
  margin: 0;
7569
- font-size: inherit; }
7606
+ font-size: inherit;
7607
+ line-height: inherit; }
7570
7608
  .dnb-table > thead > tr > th.dnb-table--sortable .dnb-table__sort-button.dnb-button .dnb-button__text::after,
7571
7609
  .dnb-table .dnb-table__th.dnb-table--sortable .dnb-table__sort-button.dnb-button .dnb-button__text::after {
7572
7610
  right: 1rem; }
@@ -9230,39 +9268,6 @@ thead > tr > th.dnb-table--active .dnb-table__sort-button.dnb-button:hover:focus
9230
9268
  * VisuallyHidden component
9231
9269
  *
9232
9270
  */
9233
- .dnb-visually-hidden--default {
9234
- -webkit-user-select: none;
9235
- -moz-user-select: none;
9236
- -ms-user-select: none;
9237
- user-select: none;
9238
- -webkit-touch-callout: none;
9239
- pointer-events: none;
9240
- position: absolute;
9241
- clip: rect(1px, 1px, 1px, 1px);
9242
- overflow: hidden;
9243
- white-space: nowrap;
9244
- height: 1px;
9245
- width: 1px;
9246
- margin: -1px 0 0 -1px;
9247
- padding: 0;
9248
- border: 0; }
9249
- .dnb-visually-hidden--default:not(:focus):not(:active) {
9250
- -webkit-user-select: none;
9251
- -moz-user-select: none;
9252
- -ms-user-select: none;
9253
- user-select: none;
9254
- -webkit-touch-callout: none;
9255
- pointer-events: none;
9256
- position: absolute;
9257
- clip: rect(1px, 1px, 1px, 1px);
9258
- overflow: hidden;
9259
- white-space: nowrap;
9260
- height: 1px;
9261
- width: 1px;
9262
- margin: -1px 0 0 -1px;
9263
- padding: 0;
9264
- border: 0; }
9265
-
9266
9271
  .dnb-visually-hidden--focusable:not(:focus):not([focus-within]) {
9267
9272
  -webkit-user-select: none;
9268
9273
  -moz-user-select: none;
@@ -9271,15 +9276,15 @@ thead > tr > th.dnb-table--active .dnb-table__sort-button.dnb-button:hover:focus
9271
9276
  -webkit-touch-callout: none;
9272
9277
  pointer-events: none;
9273
9278
  position: absolute;
9274
- clip: rect(1px, 1px, 1px, 1px);
9279
+ -webkit-clip-path: inset(50%);
9280
+ clip-path: inset(50%);
9281
+ max-width: 1px;
9282
+ max-height: 1px;
9275
9283
  overflow: hidden;
9276
9284
  white-space: nowrap;
9277
- height: 1px;
9278
- width: 1px;
9279
- margin: -1px 0 0 -1px;
9280
9285
  padding: 0;
9286
+ margin: 0;
9281
9287
  border: 0; }
9282
-
9283
9288
  .dnb-visually-hidden--focusable:not(:focus):not(:focus-within) {
9284
9289
  -webkit-user-select: none;
9285
9290
  -moz-user-select: none;
@@ -9288,11 +9293,12 @@ thead > tr > th.dnb-table--active .dnb-table__sort-button.dnb-button:hover:focus
9288
9293
  -webkit-touch-callout: none;
9289
9294
  pointer-events: none;
9290
9295
  position: absolute;
9291
- clip: rect(1px, 1px, 1px, 1px);
9296
+ -webkit-clip-path: inset(50%);
9297
+ clip-path: inset(50%);
9298
+ max-width: 1px;
9299
+ max-height: 1px;
9292
9300
  overflow: hidden;
9293
9301
  white-space: nowrap;
9294
- height: 1px;
9295
- width: 1px;
9296
- margin: -1px 0 0 -1px;
9297
9302
  padding: 0;
9303
+ margin: 0;
9298
9304
  border: 0; }