diff --git a/.github/workflows/build-icon-library.yml b/.github/workflows/build-icon-library.yml new file mode 100644 index 0000000000..5c58c1bda0 --- /dev/null +++ b/.github/workflows/build-icon-library.yml @@ -0,0 +1,91 @@ +# Build icon library, create zip file for release and create PR +name: icon library + +on: + workflow_dispatch: + +jobs: + build-icon-library: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 + + - name: Setup Node.js environment + uses: actions/setup-node@v3.6.0 + with: + node-version: '20.3.1' + registry-url: 'https://registry.npmjs.org' + + - name: Run Glypfig + run: | + npx glypfig \ + --apikey $API_KEY \ + --filekey $FILE_KEY \ + --nodeid $NODE_ID \ + --format png,svg,css,react \ + --optimize \ + --template tsx \ + --csspath './release/icon-kit-template-css.eta' \ + --jspath './release/icon-kit-template-react-tsx.eta' \ + --cssprefix '' \ + --license './release/LICENSE.txt' \ + --pngscale 2.66 \ + --filter 'Size=S' + env: + API_KEY: ${{ secrets.HDS_ICON_KIT }} + FILE_KEY: 'Kxwg3R0zNRHj55nQqFu6VS' + NODE_ID: '172:2478' + + - name: Append React interface into index file + run: | + echo -e "export { IconProps } from './Icon.interface';\n" | \ + cat - ./icon-library/react/tsx/index.ts > temp && mv temp ./icon-library/react/tsx/index.ts + + - name: Bump version in Changelog + run: | + PKG_VER=`node -pe "require('./packages/react/package.json').version"` + sed -i -E "s/version [0-9]{1,2}.[0-9]{1,2}.[0-9]{1,2}/version ${PKG_VER}/" ./release/icon-kit-template-CHANGELOG.txt + + - name: Copy Changelog file to icon library + run: cp ./release/icon-kit-template-CHANGELOG.txt ./icon-library/CHANGELOG.txt + + - name: Create release zip file + uses: TheDoctor0/zip-release@0.7.1 + with: + filename: 'release/hds-icon-kit.zip' + path: './icon-library' + + - name: Copy svg files to repo folders + run: cp ./icon-library/svg/* ./packages/core/src/svg + + - name: Copy css files to repo folders + run: cp ./icon-library/css/* ./packages/core/src/icons + + - name: Copy react files to repo folders + run: cp ./icon-library/react/tsx/* ./packages/react/src/icons + + - name: Install React package NPM dependencies + run: (cd ./packages/react && yarn) + + - name: Lint React files + run: npx prettier --write './packages/react/src/icons/*.{ts,tsx}' + + - name: Code analysis for React files + run: npx eslint --debug -c './packages/react/.eslintrc.json' --ignore-path './packages/react/.eslintignore' --fix './packages/react/src/icons/*.{ts,tsx}' + + - name: Remove icon library build directory + run: rm -rf ./icon-library + + - name: Commit changed files + run: | + git config --global user.email "hds@hel.fi" + git config --global user.name "Github Actions" + git add . + git commit -m 'Updated icon library' + git push + + - name: create pull request + run: gh pr create -B development --title 'Icon library build' --body 'Created by Github action icon library' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 6ac3a33336..b7904891d7 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -12,14 +12,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Read .nvmrc run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT id: nvmrc - name: setup node ${{ steps.nvmrc.outputs.NODE_VERSION }} - uses: actions/setup-node@v3.7.0 + uses: actions/setup-node@v3.8.1 with: node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index cf4b5e914f..456cb4402b 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -10,14 +10,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Read .nvmrc run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT id: nvmrc - name: setup node ${{ steps.nvmrc.outputs.NODE_VERSION }} - uses: actions/setup-node@v3.7.0 + uses: actions/setup-node@v3.8.1 with: node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml new file mode 100644 index 0000000000..cf6e52fe72 --- /dev/null +++ b/.github/workflows/prerelease.yml @@ -0,0 +1,45 @@ +name: prerelease + +on: + workflow_dispatch: + inputs: + prerelease_stage: + description: 'alpha or beta' + required: true + +jobs: + build-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Read .nvmrc + run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT + id: nvmrc + + - name: setup node ${{ steps.nvmrc.outputs.NODE_VERSION }} + uses: actions/setup-node@v3 + with: + node-version: '${{ steps.nvmrc.outputs.NODE_VERSION }}' + registry-url: 'https://registry.npmjs.org' + + - name: install dependencies + run: yarn + + - name: build design tokens package + run: yarn build + working-directory: ./packages/design-tokens + + - name: build core package + run: yarn build + working-directory: ./packages/core + + - name: build react package + run: yarn build + working-directory: ./packages/react + + - name: release npm packages + run: yarn run release --dist-tag ${{ github.event.inputs.prerelease_stage }} + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.gitignore b/.gitignore index dce00f1e4f..39a657ca4d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ lib node_modules .idea/ +.vscode/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a0c61e900..464742dc51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,159 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] + +## [3.0.0] - October, 4, 2023 + +### React + +#### Breaking + +- [Navigation] Removed, use new Header instead +- [Footer] Redesigned and rebuilt +- [StatusLabel, Tag] Rectangular versions removed +- [LinkBox] Property name `withBorder` changed to `border` +- [Koros] Renamed variants Wave to Vibration and Storm to Wave + +#### Added + +- [Header] Added new Header-component + - [Header.UniversalBar] Added new UniversalBar component + - [Header.ActionBar] Added new ActionBar component + - [Header.ActionBarItem] New component to display button icons + - [Header.LanguageSelector] Added new language selector component + - [Header.Link] Added new component to be used under Header components + - [Header.NavigationMenu] Added new NavigationMenu component +- [Footer] (changed) is now redesigned with new components + - [Footer.Custom] New component for custom content + - [Footer.Link] New link component to be used under Footer components + - [Footer.NavigationGroup] New component for displaying grouped navigation links + - [Footer.UtilityGroup] New component for displaying grouped utility links + - [Footer.GroupHeading] New component for group components headings +- [Header, Footer] Added navigation landmarks. + +#### Changed + +- Supported browserlist updated +- [RadioButton] Default value is not recommended anymore +- [Footer] Redesigned and rebuilt + +#### Fixed + +- [Breadcrumb] Theme variable typos +- [LoadingSpinner] Made more polite accessibility-wise, not interrupting screen readers anymore + +#### Removed + +- [StatusLabel, Tag] Removed rectangular versions +- [Navigation] New Header component is the replacement + +### Core + +#### Changed + +- [Koros] Rename Koros variants according to brand +- [Koros] Renamed variants Wave to Vibration and Storm to Wave + +#### Removed + +- [StatusLabel, Tag] Rectangular version (default) + +### Documentation + +#### Added + +- [Header] Added new Header and its sub-components' documentations +- [Footer] Added new Footer and its sub-components' documentations +- Added documention for focus colour tokens +- Added navigation pattern guidelines +- Added new releases page +- Added new guide how to migrate to 3.0.0 + +#### Changed + +- [Koros] Rename Koros variants according to brand +- [Koros] Fix Storm and Wave Koros variant usage +- [Koros] Rename koros flipHorizontal to flipVertical +- Update contributing guide +- [Radiobutton, Checkbox, Toggle] Update guide for no default value +- [StatusLabel, Tag] Remove support for rectangular variants + +#### Fixes + +- [Breadcrumb, Hero] Added missing StatusLabelTooltips +- [Koros] Koros accessibility tab content copied from footer +- [Heros] Wrong css class in Hero component examples +- [LoadingSpinner] Change aria alert to polite +- [Breadcrumbs] Fixed typos in BreadCrumbCustomTheme variables + +### Design kit + +### Figma + +There is a brand new Figma library available. The licenses are checked and provided separately, and currently available for a limited time. But if you're interested in switching to Figma, contact HDS team. It will be available with Helsinki licenses and in the future also as a community file. + +### Sketch/Abstract + +#### Added + +- [Footer] New symbols following the hel.fi visual style. New symbols also include changes to all Footer sections. Service title is now mandatory. The Helsinki logo moved to the Base section. Separate symbols for Footers with custom content (e.g. partner information). New variant for the Utility section which allow more utility links and link groups +- [Header] New component replacing HDS Navigation + +#### Changed + +- Updated HDS Sketch libraries to Sketch version 98.3. Please update your Sketch and files accordingly. +- [Koros] Renamed Storm to Wave and Wave to Vibration according to brand +- [Page templates] Breakpoint-XS padding fix from 12px to 16px +- [Heros] Fixes for paddings and Lead Text width in sizes M and S + +#### Deprecated + +- [Footer] Old Footer symbols deprecated. These will be removed in a future major release. Switch to new Footer symbols as soon as possible +- [Navigation] Marked as deprecated, will be removed in the next major release. Replaced by HDS Header. Switch to new Header symbols as soon as possible + +## [3.0.0-alpha.0] - July, 6, 2023 + +### React + +#### Added +- [Header] New Header component to wrap all its child components +- [Header.UniversalBar] Optional component to display useful quick links +- [Header.ActionBar] Mandatory component to display service logo, language selection, search and user login +- [Header.NavigationMenu] Mandatory component to display navigation links + +#### Changed +- [LinkBox] Property name `withBorder` changed to `border` +- [Koros] Renamed variants Wave to Vibration and Storm to Wave +- Supported browserlist updated + +#### Deprecated +- [Navigation] New Header component will be the replacement +- [Tag] Rectangular version (default) +- [StatusLabel] Rectangular version (default) + +### Core + +#### Changed +- [Koros] Renamed variants Wave to Vibration and Storm to Wave + +#### Deprecated +- [Tag] Rectangular version (default) +- [StatusLabel] Rectangular version (default) + +### Documentation + +#### Added +- [Header] Documentation - still a work in progress +- Helpful tooltip to explain statuses + +#### Changed +- [Koros] Renamed variants Wave to Vibration and Storm to Wave + +### Design kit + +#### Added + +- [Header] Add HDS Header.sketch file to shared libraries for HDS 3.0.0 Alpha release purposes. The shared library file includes new Header and Side navigation symbols. ## [2.17.0] - Aug, 18, 2023 @@ -37,7 +189,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 #### Added - Figma API icon library export script - ## [2.16.0] - June, 28, 2023 ### React diff --git a/deprecated/v1/storybook/core/main.4cc69df9.iframe.bundle.js b/deprecated/v1/storybook/core/main.4cc69df9.iframe.bundle.js index a7fa1bd441..13f7938fc8 100644 --- a/deprecated/v1/storybook/core/main.4cc69df9.iframe.bundle.js +++ b/deprecated/v1/storybook/core/main.4cc69df9.iframe.bundle.js @@ -1 +1 @@ -(window.webpackJsonp=window.webpackJsonp||[]).push([[5],{"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./.storybook/index.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,'@font-face {\n font-family: "HelsinkiGrotesk";\n src: url("https://makasiini.hel.ninja/delivery/HelsinkiGrotesk/565d73a693abe0776c801607ac28f0bf.woff")\n format("woff");\n font-display: swap;\n font-weight: 400;\n font-style: normal;\n text-rendering: optimizeLegibility;\n}\n\n@font-face {\n font-family: "HelsinkiGrotesk";\n src: url("https://makasiini.hel.ninja/delivery/HelsinkiGrotesk/5bb29e3b7b1d3ef30121229bbe67c3e1.woff")\n format("woff");\n font-display: swap;\n font-weight: 400;\n font-style: italic;\n text-rendering: optimizeLegibility;\n}\n\n@font-face {\n font-family: "HelsinkiGrotesk";\n src: url("https://makasiini.hel.ninja/delivery/HelsinkiGrotesk/7c46f288e8133b87e6b12b45dac71865.woff")\n format("woff");\n font-display: swap;\n font-weight: 500;\n font-style: normal;\n text-rendering: optimizeLegibility;\n}\n\n@font-face {\n font-family: "HelsinkiGrotesk";\n src: url("https://makasiini.hel.ninja/delivery/HelsinkiGrotesk/e62dc97e83a385e4d8cdc939cf1e4213.woff")\n format("woff");\n font-display: swap;\n font-weight: 500;\n font-style: italic;\n text-rendering: optimizeLegibility;\n}\n\n@font-face {\n font-family: "HelsinkiGrotesk";\n src: url("https://makasiini.hel.ninja/delivery/HelsinkiGrotesk/533af26cf28d7660f24c2884d3c27eac.woff")\n format("woff");\n font-display: swap;\n font-weight: 700;\n font-style: normal;\n text-rendering: optimizeLegibility;\n}\n\n@font-face {\n font-family: "HelsinkiGrotesk";\n src: url("https://makasiini.hel.ninja/delivery/HelsinkiGrotesk/20d494430c87e15e194932b729d48270.woff")\n format("woff");\n font-display: swap;\n font-weight: 700;\n font-style: italic;\n text-rendering: optimizeLegibility;\n}\n\n@font-face {\n font-family: "HelsinkiGrotesk";\n src: url("https://makasiini.hel.ninja/delivery/HelsinkiGrotesk/a50a1bd245ce63abcc0d1da80ff790d2.woff")\n format("woff");\n font-weight: 900;\n font-style: normal;\n text-rendering: optimizeLegibility;\n}\n\n@font-face {\n font-family: "HelsinkiGrotesk";\n src: url("https://makasiini.hel.ninja/delivery/HelsinkiGrotesk/62a1781d8b396fbb025b0552cf6304d2.woff")\n format("woff");\n font-display: swap; \n font-weight: 900;\n font-style: italic;\n text-rendering: optimizeLegibility;\n}\n\nbody {\n font-family: var(--font-default);\n font-size: var(--fontsize-body-m);\n color: var(--color-black-90);\n line-height: var(--lineheight-l);\n}\n\nh1 {\n font-size: var(--fontsize-heading-l);\n}\n\nh2 {\n font-size: var(--fontsize-heading-m);\n}\n\nh3 {\n font-size: var(--fontsize-heading-s);\n}\n\nh4 {\n font-size: var(--fontsize-heading-xs);\n}\n\nh5 {\n font-size: var(--fontsize-heading-xxs);\n}\n\n/* Hide args table for core, as there\'s no props */\n\n.sbdocs-content > :nth-child(3) {\n display: none;\n}\n',""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/base.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,'/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Remove the margin in all browsers.\n */\n\nbody {\n margin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\n\nmain {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * Remove the gray background on active links in IE 10.\n */\n\na {\n background-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Remove the border on images inside links in IE 10.\n */\n\nimg {\n border-style: none;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\n[type="button"],\n[type="reset"],\n[type="submit"] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type="button"]::-moz-focus-inner,\n[type="reset"]::-moz-focus-inner,\n[type="submit"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type="button"]:-moz-focusring,\n[type="reset"]:-moz-focusring,\n[type="submit"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\n\nfieldset {\n padding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n\n[type="checkbox"],\n[type="radio"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type="number"]::-webkit-inner-spin-button,\n[type="number"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type="search"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n\n[type="search"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\n\ndetails {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Misc\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10+.\n */\n\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n\n[hidden] {\n display: none;\n}\n\n:root {\n --breakpoint-xs: 320px;\n --breakpoint-s: 576px;\n --breakpoint-m: 768px;\n --breakpoint-l: 992px;\n --breakpoint-xl: 1248px;\n --container-width-xs: 288px;\n --container-width-s: 544px;\n --container-width-m: 720px;\n --container-width-l: 944px;\n --container-width-xl: 1200px;\n --color-brick: #bd2719;\n --color-brick-light: #ffeeed;\n --color-brick-medium-light: #facbc8;\n --color-brick-dark: #800e04;\n --color-bus: #0000bf;\n --color-bus-light: #f0f0ff;\n --color-bus-medium-light: #ccccff;\n --color-bus-dark: #00005e;\n --color-coat-of-arms: #0072c6;\n --color-coat-of-arms-light: #e6f4ff;\n --color-coat-of-arms-medium-light: #b5daf7;\n --color-coat-of-arms-dark: #005799;\n --color-copper: #00d7a7;\n --color-copper-light: #cffaf1;\n --color-copper-medium-light: #9ef0de;\n --color-copper-dark: #00a17d;\n --color-engel: #ffe977;\n --color-engel-light: #fff9db;\n --color-engel-medium-light: #fff3b8;\n --color-engel-dark: #dbc030;\n --color-fog: #9fc9eb;\n --color-fog-light: #e8f3fc;\n --color-fog-medium-light: #d0e6f7;\n --color-fog-dark: #72a5cf;\n --color-gold: #c2a251;\n --color-gold-light: #f7f2e4;\n --color-gold-medium-light: #e8d7a7;\n --color-gold-dark: #9e823c;\n --color-metro: #fd4f00;\n --color-metro-light: #ffeee6;\n --color-metro-medium-light: #ffcab3;\n --color-metro-dark: #bd2f00;\n --color-silver: #dedfe1;\n --color-silver-light: #f7f7f8;\n --color-silver-medium-light: #efeff0;\n --color-silver-dark: #b0b8bf;\n --color-summer: #ffc61e;\n --color-summer-light: #fff4d4;\n --color-summer-medium-light: #ffe49c;\n --color-summer-dark: #cc9200;\n --color-suomenlinna: #f5a3c7;\n --color-suomenlinna-light: #fff0f7;\n --color-suomenlinna-medium-light: #ffdbeb;\n --color-suomenlinna-dark: #e673a5;\n --color-tram: #008741;\n --color-tram-light: #dff7eb;\n --color-tram-medium-light: #a3e3c2;\n --color-tram-dark: #006631;\n --color-black: #000000;\n --color-white: #ffffff;\n --color-black-5: #f1f1f1;\n --color-black-10: #e5e5e5;\n --color-black-20: #cccccc;\n --color-black-30: #b2b2b2;\n --color-black-40: #999898;\n --color-black-50: #808080;\n --color-black-60: #666666;\n --color-black-70: #4c4c4c;\n --color-black-80: #333333;\n --color-black-90: #1a1a1a;\n --color-error: #b01038;\n --color-error-light: #f6e2e6;\n --color-error-dark: #8d0d2d;\n --color-success: #007a64;\n --color-success-light: #e2f5f3;\n --color-success-dark: #006250;\n --color-alert: #ffda07;\n --color-alert-light: #fff4b4;\n --color-alert-dark: #d18200;\n --color-info: #0062b9;\n --color-info-light: #e5eff8;\n --color-info-dark: #004f94;\n --box-shadow-s: 0px 2px 10px 0px rgba(0, 0, 0, 0.07);\n --box-shadow-m: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);\n --box-shadow-l: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);\n --spacing-layout-2-xs: 1rem; /* 16px */\n --spacing-layout-xs: 1.5rem; /* 24px */\n --spacing-layout-s: 2rem; /* 32px */\n --spacing-layout-m: 3rem; /* 48px */\n --spacing-layout-l: 4rem; /* 64px */\n --spacing-layout-xl: 6rem; /* 96px */\n --spacing-layout-2-xl: 8rem; /* 128px */\n --spacing-4-xs: 0.125rem; /* 2px */\n --spacing-3-xs: 0.25rem; /* 4px */\n --spacing-2-xs: 0.5rem; /* 8px */\n --spacing-xs: 0.75rem; /* 12px */\n --spacing-s: 1rem; /* 16px */\n --spacing-m: 1.5rem; /* 24px */\n --spacing-l: 2rem; /* 32px */\n --spacing-xl: 2.5rem; /* 40px */\n --spacing-2-xl: 3.0rem; /* 48px */\n --spacing-3-xl: 3.5rem; /* 56px */\n --spacing-4-xl: 4rem; /* 64px */\n --spacing-5-xl: 4.5rem; /* 72px */\n --fontsize-heading-xl: 3.25rem; /* 52px */\n --fontsize-heading-l: 2.25rem; /* 36px */\n --fontsize-heading-m: 1.5rem; /* 24px */\n --fontsize-heading-s: 1.25rem; /* 20px */\n --fontsize-heading-xs: 1.125rem; /* 18px */\n --fontsize-heading-xxs: 1rem; /* 16px */\n --fontsize-body-s: 0.875rem; /* 14px */\n --fontsize-body-m: 1rem; /* 16px */\n --fontsize-body-l: 1.125rem; /* 18px */\n --fontsize-body-xl: 1.25rem; /* 20px */\n --font-default: HelsinkiGrotesk, Arial, sans-serif;\n --lineheight-s: 1;\n --lineheight-m: 1.2;\n --lineheight-l: 1.5;\n --lineheight-xl: 1.75;\n}\n\n@keyframes fadeIn {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n\n.hiddenFromScreen {\n border: 0;\n clip: "rect(0 0 0 0)";\n height: 1px;\n width: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n position: absolute;\n}\n\n.button-reset {\n background: none;\n border: none;\n color: inherit;\n cursor: pointer;\n font: inherit;\n padding: 0;\n}\n\n.text-body {\n font-family: HelsinkiGrotesk, Arial, sans-serif;\n font-family: var(--font-default);\n font-size: 1rem;\n font-size: var(--fontsize-body-m);\n color: #1a1a1a;\n color: var(--color-black-90);\n line-height: 1.5;\n line-height: var(--lineheight-l);\n}\n\n.text-medium {\n font-family: HelsinkiGrotesk, Arial, sans-serif;\n font-family: var(--font-default);\n font-weight: 500;\n}\n\n.text-bold {\n font-family: HelsinkiGrotesk, Arial, sans-serif;\n font-family: var(--font-default);\n font-weight: bold;\n}\n\n.text-xl {\n font-size: 1.5rem;\n font-size: var(--fontsize-heading-m);\n}\n\n.text-lg {\n font-size: 1.25rem;\n font-size: var(--fontsize-heading-s);\n}\n\n.text-md {\n font-size: 1.125rem;\n font-size: var(--fontsize-heading-xs);\n}\n\n.subtitle {\n font-size: 1rem;\n font-size: var(--fontsize-body-m);\n}\n\n.text-sm {\n font-size: 0.875rem;\n font-size: var(--fontsize-body-s);\n line-height: 1.75;\n line-height: var(--lineheight-xl);\n}\n',""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/button/button.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,'.hds-button {\n --border-width: 2px;\n --color: inherit;\n --min-size: 44px;\n --outline-gutter: 2px;\n --outline-width: 3px;\n\n align-content: flex-start;\n align-items: center;\n background-color: transparent;\n background-color: var(--background-color, transparent);\n border: var(--border-width) solid transparent;\n border: var(--border-width) solid var(--border-color, transparent);\n border-radius: 0;\n color: var(--color);\n cursor: pointer;\n display: inline-flex;\n font-weight: 500;\n justify-content: center;\n min-height: var(--min-size);\n min-width: var(--min-size);\n padding: 0 var(--spacing-2-xs);\n position: relative;\n vertical-align: top;\n}\n\n.hds-button,\n.hds-button::before,\n.hds-button::after,\n.hds-button *,\n.hds-button *::before,\n.hds-button *::after {\n box-sizing: border-box;\n}\n\n/* button transitions */\n\n.hds-button:hover,\n.hds-button:focus {\n transition-property: background-color, border-color, color;\n transition-duration: 85ms;\n transition-timing-function: ease-out;\n}\n\n.hds-button:hover {\n background-color: transparent;\n background-color: var(--background-color-hover, transparent);\n color: var(--color-hover);\n}\n\n.hds-button:focus {\n background-color: transparent;\n background-color: var(--background-color-focus, transparent);\n color: var(--color-focus);\n outline: none;\n}\n\n.hds-button:active {\n background-color: transparent;\n background-color: var(--background-color-focus, transparent);\n color: var(--color-focus);\n outline: none;\n}\n\n.hds-button:focus:hover {\n background-color: transparent;\n background-color: var(--background-color-hover-focus, transparent);\n}\n\n.hds-button:active:hover {\n background-color: transparent;\n background-color: var(--background-color-hover-focus, transparent);\n}\n\n.hds-button:disabled {\n background-color: transparent;\n background-color: var(--background-color-disabled, transparent);\n border-color: transparent;\n border-color: var(--border-color-disabled, transparent);\n color: var(--color-disabled);\n cursor: not-allowed;\n}\n\n.hds-button:not(:disabled) {\n border-color: transparent;\n border-color: var(--border-color, transparent);\n}\n\n.hds-button:not(:disabled):hover {\n border-color: transparent;\n border-color: var(--border-color-hover, transparent);\n}\n\n.hds-button:not(:disabled):focus {\n border-color: transparent;\n border-color: var(--border-color-focus, transparent);\n}\n\n.hds-button:not(:disabled):active {\n border-color: transparent;\n border-color: var(--border-color-focus, transparent);\n}\n\n.hds-button:not(:disabled):focus:hover {\n border-color: transparent;\n border-color: var(--border-color-hover-focus, transparent);\n color: var(--color-hover-focus);\n}\n\n.hds-button:not(:disabled):active:hover {\n border-color: transparent;\n border-color: var(--border-color-hover-focus, transparent);\n color: var(--color-hover-focus);\n}\n\n/* FOCUS OUTLINE */\n\n.hds-button::after {\n --size: 100%;\n\n border: var(--outline-width) solid transparent;\n content: \'\';\n height: var(--size);\n position: absolute;\n width: var(--size);\n}\n\n.hds-button:focus::after {\n --size: calc(100% + calc(var(--outline-width) * 2 + var(--border-width) * 2 + var(--outline-gutter) * 2));\n border-color: var(--focus-outline-color);\n}\n\n.hds-button:active::after {\n --size: calc(100% + calc(var(--outline-width) * 2 + var(--border-width) * 2 + var(--outline-gutter) * 2));\n border-color: var(--focus-outline-color);\n}\n\n/* submit input */\n\ninput[type="submit"].hds-button:focus {\n box-shadow: 0 0 0 var(--outline-gutter) var(--submit-input-focus-gutter-color), 0 0 0 calc(var(--outline-gutter) + var(--outline-width)) var(--focus-outline-color);\n}\n\n/* LABEL */\n\ninput[type="submit"].hds-button,\n.hds-button__label {\n font-weight: inherit;\n line-height: 1.25em;\n padding: var(--spacing-s);\n}\n\ninput[type="submit"].hds-button {\n cursor: pointer;\n padding: var(--spacing-s) var(--spacing-l);\n}\n\n/* no icons */\n\n.hds-button__label:only-child {\n margin: 0 var(--spacing-2-xs);\n}\n\n/* supplementary with right icon */\n\n.hds-button--supplementary .hds-button__label:first-child {\n padding-right: var(--spacing-3-xs);\n}\n\n/* supplementary with left icon */\n\n.hds-button--supplementary .hds-icon + .hds-button__label:last-child {\n padding-left: var(--spacing-3-xs);\n}\n\n/* supplementary with both icons */\n\n.hds-button--supplementary .hds-icon + .hds-button__label:not(:last-child) {\n padding-left: var(--spacing-3-xs);\n padding-right: var(--spacing-3-xs);\n}\n\n/* SMALL */\n\n.hds-button--small {\n padding: 0;\n}\n\ninput[type="submit"].hds-button--small,\n.hds-button--small .hds-button__label {\n line-height: var(--lineheight-s);\n padding: var(--spacing-2-xs) var(--spacing-xs);\n}\n\ninput[type="submit"].hds-button--small {\n padding: var(--spacing-2-xs) var(--spacing-m);\n}\n\n/* no icons */\n\n.hds-button--small .hds-button__label:only-child {\n margin: 0 var(--spacing-xs);\n}\n\n/* both icons */\n\n.hds-button--small .hds-button__label:not(:first-of-type):not(:last-of-type) {\n padding: var(--spacing-2-xs) var(--spacing-2-xs);\n}\n\n/* FULL WIDTH */\n\n.hds-button--fullwidth {\n width: 100%;\n}\n\n/* ICONS */\n\n/* left */\n\n.hds-button .hds-icon {\n height: var(--spacing-m);\n margin-left: var(--spacing-s);\n width: var(--spacing-m);\n}\n\n/* right */\n\n.hds-button__label ~ .hds-icon {\n margin: 0 var(--spacing-s) 0 0;\n}\n\n/* left - small */\n\n.hds-button--small .hds-icon {\n margin-left: var(--spacing-2-xs);\n}\n\n/* right - small */\n\n.hds-button .hds-button--small .hds-button__label ~ .hds-icon {\n margin: 0 var(--spacing-2-xs) 0 0;\n}\n\n/* both icons - left */\n\n.hds-button .hds-icon:first-of-type:not(:last-of-type) {\n margin: 0 0 0 var(--spacing-2-xs);\n}\n\n/* both icons - right */\n\n.hds-button .hds-icon:last-of-type:not(:first-of-type) {\n margin: 0 var(--spacing-2-xs) 0 0;\n}\n\n/* both icons - left - small */\n\n.hds-button--small .hds-icon:first-child:not(:last-of-type) {\n margin: 0 0 0 var(--spacing-2-xs);\n}\n\n/* both icons - right - small */\n\n.hds-button--small .hds-icon:last-child:not(:first-of-type) {\n margin: 0 var(--spacing-2-xs) 0 0;\n}\n\n/* PRIMARY */\n\n/* default (bus) */\n\n.hds-button--primary {\n --background-color: var(--color-bus);\n --background-color-hover: var(--color-bus-dark);\n --background-color-focus: var(--color-bus);\n --background-color-hover-focus: var(--color-bus-dark);\n --background-color-disabled: var(--color-black-20);\n\n --border-color: var(--color-bus);\n --border-color-hover: var(--color-bus-dark);\n --border-color-focus: var(--color-bus);\n --border-color-hover-focus: var(--color-bus-dark);\n --border-color-disabled: var(--color-black-20);\n\n --color: var(--color-white);\n --color-hover: var(--color-white);\n --color-focus: var(--color-white);\n --color-hover-focus: var(--color-white);\n --color-disabled: var(--color-white);\n\n --focus-outline-color: var(--color-coat-of-arms);\n --submit-input-focus-gutter-color: var(--color-white);\n}\n\n/* SECONDARY */\n\n/* default (bus) */\n\n.hds-button--secondary {\n --background-color: transparent;\n --background-color-hover: var(--color-bus-light);\n --background-color-focus: transparent;\n --background-color-hover-focus: var(--color-bus-light);\n --background-color-disabled: transparent;\n\n --border-color: var(--color-bus);\n --border-color-hover: var(--color-bus-dark);\n --border-color-focus: var(--color-bus);\n --border-color-hover-focus: var(--color-bus-dark);\n --border-color-disabled: var(--color-black-50);\n\n --color: var(--color-bus);\n --color-hover: var(--color-bus-dark);\n --color-focus: var(--color-bus);\n --color-hover-focus: var(--color-bus-dark);\n --color-disabled: var(--color-black-40);\n\n --focus-outline-color: var(--color-coat-of-arms);\n --submit-input-focus-gutter-color: var(--color-white);\n}\n\n/* SUPPLEMENTARY */\n\n.hds-button--supplementary {\n --background-color: transparent;\n --background-color-hover: var(--color-bus-light);\n --background-color-focus: transparent;\n --background-color-hover-focus: var(--color-bus-light);\n --background-color-disabled: transparent;\n\n --border-color: transparent;\n --border-color-hover: transparent;\n --border-color-focus: var(--color-coat-of-arms);\n --border-color-hover-focus: var(--color-coat-of-arms);\n --border-color-disabled: transparent;\n\n --color: var(--color-bus);\n --color-hover: var(--color-bus-dark);\n --color-focus: var(--color-bus);\n --color-hover-focus: var(--color-bus-dark);\n --color-disabled: var(--color-black-40);\n\n --focus-outline-color: transparent;\n --submit-input-focus-gutter-color: transparent;\n}\n\n/* LOADING */\n\n.hds-button--loading {\n --background-color: transparent;\n --background-color-hover: transparent;\n --background-color-focus: transparent;\n --background-color-hover-focus: transparent;\n --background-color-disabled: transparent;\n\n --border-color: transparent;\n --border-color-hover: transparent;\n --border-color-focus: transparent;\n --border-color-hover-focus: transparent;\n --border-color-disabled: transparent;\n\n --color: var(--color-black-90);\n --color-hover: var(--color-black-90);\n --color-focus: var(--color-black-90);\n --color-hover-focus: var(--color-black-90);\n --color-disabled: var(--color-black-90);\n\n cursor: wait;\n}\n\n/* UTILITY */\n\n/* success */\n\n.hds-button--success {\n --background-color: var(--color-success);\n --background-color-hover: var(--color-success-dark);\n --background-color-focus: var(--color-success);\n --background-color-hover-focus: var(--color-success-dark);\n\n --border-color: var(--color-success);\n --border-color-hover: var(--color-success-dark);\n --border-color-focus: var(--color-success);\n --border-color-hover-focus: var(--color-success-dark);\n\n --color: var(--color-white);\n --color-hover: var(--color-white);\n --color-focus: var(--color-white);\n --color-hover-focus: var(--color-white);\n\n --focus-outline-color: var(--color-coat-of-arms);\n}\n\n/* danger */\n\n.hds-button--danger {\n --background-color: var(--color-error);\n --background-color-hover: var(--color-error-dark);\n --background-color-focus: var(--color-error);\n --background-color-hover-focus: var(--color-error-dark);\n\n --border-color: var(--color-error);\n --border-color-hover: var(--color-error-dark);\n --border-color-focus: var(--color-error);\n --border-color-hover-focus: var(--color-error-dark);\n\n --color: var(--color-white);\n --color-hover: var(--color-white);\n --color-focus: var(--color-white);\n --color-hover-focus: var(--color-white);\n\n --focus-outline-color: var(--color-coat-of-arms);\n}\n\n/* THEMES */\n\n/* coat */\n\n.hds-button--primary.hds-button--theme-coat {\n --background-color: var(--color-coat-of-arms);\n --background-color-hover: var(--color-coat-of-arms-dark);\n --background-color-focus: var(--color-coat-of-arms);\n --background-color-hover-focus: var(--color-coat-of-arms-dark);\n\n --border-color: var(--color-coat-of-arms);\n --border-color-hover: var(--color-coat-of-arms-dark);\n --border-color-focus: var(--color-coat-of-arms);\n --border-color-hover-focus: var(--color-coat-of-arms-dark);\n\n --color: var(--color-white);\n --color-hover: var(--color-white);\n --color-focus: var(--color-white);\n --color-hover-focus: var(--color-white);\n}\n\n.hds-button--secondary.hds-button--theme-coat {\n --background-color: transparent;\n --background-color-hover: var(--color-coat-of-arms-light);\n --background-color-focus: transparent;\n --background-color-hover-focus: var(--color-coat-of-arms-light);\n\n --border-color: var(--color-coat-of-arms);\n --border-color-hover: var(--color-coat-of-arms-dark);\n --border-color-focus: var(--color-coat-of-arms);\n --border-color-hover-focus: var(--color-coat-of-arms-dark);\n\n --color: var(--color-coat-of-arms);\n --color-hover: var(--color-coat-of-arms);\n --color-focus: var(--color-coat-of-arms);\n --color-hover-focus: var(--color-coat-of-arms);\n}\n\n.hds-button--supplementary.hds-button--theme-coat {\n --background-color: transparent;\n --background-color-hover: var(--color-coat-of-arms-light);\n --background-color-focus: transparent;\n --background-color-hover-focus: var(--color-coat-of-arms-light);\n\n --border-color: transparent;\n --border-color-hover: transparent;\n --border-color-focus: var(--color-coat-of-arms);\n --border-color-hover-focus: var(--color-coat-of-arms);\n\n --color: var(--color-coat-of-arms);\n --color-hover: var(--color-coat-of-arms);\n --color-focus: var(--color-coat-of-arms);\n --color-hover-focus: var(--color-coat-of-arms);\n}\n\n/* black */\n\n.hds-button--primary.hds-button--theme-black {\n --background-color: var(--color-black);\n --background-color-hover: var(--color-black);\n --background-color-focus: var(--color-black);\n --background-color-hover-focus: var(--color-black);\n\n --border-color: var(--color-black);\n --border-color-hover: var(--color-black);\n --border-color-focus: var(--color-black);\n --border-color-hover-focus: var(--color-black);\n\n --color: var(--color-white);\n --color-hover: var(--color-white);\n --color-focus: var(--color-white);\n --color-hover-focus: var(--color-white);\n}\n\n.hds-button--secondary.hds-button--theme-black {\n --background-color: transparent;\n --background-color-hover: var(--color-black-5);\n --background-color-focus: transparent;\n --background-color-hover-focus: var(--color-black-5);\n\n --border-color: var(--color-black);\n --border-color-hover: var(--color-black);\n --border-color-focus: var(--color-black);\n --border-color-hover-focus: var(--color-black);\n\n --color: var(--color-black);\n --color-hover: var(--color-black);\n --color-focus: var(--color-black);\n --color-hover-focus: var(--color-black);\n}\n\n.hds-button--supplementary.hds-button--theme-black {\n --background-color: transparent;\n --background-color-hover: var(--color-black-5);\n --background-color-focus: transparent;\n --background-color-hover-focus: var(--color-black-5);\n\n --border-color: transparent;\n --border-color-hover: transparent;\n --border-color-focus: var(--color-coat-of-arms);\n --border-color-hover-focus: var(--color-coat-of-arms-dark);\n\n --color: var(--color-black);\n --color-hover: var(--color-black);\n --color-focus: var(--color-black);\n --color-hover-focus: var(--color-black);\n}\n',""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/card/card.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-card {\n --background-color: var(--color-white);\n --border-color: var(--color-black-90);\n --color: var(--color-black-90);\n --border-width: 2px;\n --padding-horizontal: var(--spacing-l);\n --padding-vertical: var(--spacing-m);\n\n background-color: var(--background-color);\n color: var(--color);\n padding: var(--padding-vertical) var(--padding-horizontal);\n}\n\n/* WITH BORDER */\n\n.hds-card--border {\n border: var(--border-width) solid var(--border-color);\n}\n\n/* WITH BOX-SHADOW */\n\n.hds-card--box-shadow {\n box-shadow: var(--box-shadow-m);\n}\n\n/* BODY */\n\n.hds-card__body {\n display: grid;\n grid-gap: var(--spacing-m);\n gap: var(--spacing-m);\n margin-bottom: var(--spacing-l);\n}\n\n.hds-card__body:last-child {\n margin-bottom: 0;\n}\n\n/* HEADING */\n\n.hds-card__heading {\n font-size: var(--fontsize-heading-m);\n font-weight: bold;\n line-height: var(--lineheight-m);\n}\n\n/* BODY TEXT */\n\n.hds-card__text {\n font-size: var(--fontsize-body-m);\n line-height: var(--lineheight-l);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/checkbox/checkbox.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-checkbox {\n --size: 24px;\n /* icon size relative to the checkbox size (--size) */\n --icon-scale: 1;\n --border-width: 2px;\n --outline-width: 3px;\n --label-font-size: var(--fontsize-body-m);\n --label-padding: var(--spacing-2-xs);\n\n --background-unselected: transparent;\n --background-selected: var(--color-bus);\n --background-hover: var(--color-bus-dark);\n --background-disabled: var(--color-black-10);\n\n --border-color-selected: var(--color-bus);\n --border-color-selected-hover: var(--color-bus-dark);\n --border-color-selected-focus: var(--color-bus);\n --border-color-unselected: var(--color-black-50);\n --border-color-unselected-hover: var(--color-black-90);\n --border-color-unselected-focus: var(--color-black-90);\n --border-color-disabled: var(--color-black-10);\n\n --icon-color-unselected: transparent;\n --icon-color-selected: var(--color-white);\n --icon-color-disabled: var(--color-white);\n\n --focus-outline-color: var(--color-coat-of-arms);\n\n --label-color: var(--color-black-90);\n --label-color-disabled: var(--color-black-40);\n\n --icon-size: var(--spacing-m);\n\n display: flex;\n flex-wrap: wrap;\n min-height: var(--size);\n position: relative;\n}\n.hds-checkbox,\n.hds-checkbox *,\n.hds-checkbox *::before,\n.hds-checkbox *::after {\n box-sizing: border-box;\n}\n.hds-checkbox:not(:first-of-type) {\n margin-top: var(--spacing-2-xs);\n}\n/* checkbox transitions */\n.hds-checkbox .hds-checkbox__input:hover::before,\n.hds-checkbox .hds-checkbox__input:focus::before,\n.hds-checkbox .hds-checkbox__input:hover + .hds-checkbox__label::after,\n.hds-checkbox .hds-checkbox__input:focus + .hds-checkbox__label::after {\n transition: 85ms ease-out;\n transition-property: background-color, border-color, transform;\n}\n.hds-checkbox .hds-checkbox__input:focus + .hds-checkbox__label::before {\n transition: 85ms ease-out;\n transition-property: box-shadow, transform;\n}\n/* NATIVE INPUT */\n.hds-checkbox .hds-checkbox__input {\n appearance: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n cursor: pointer;\n height: var(--size);\n left: 0;\n outline: none;\n position: absolute;\n top: 0;\n width: var(--size);\n}\n/* LABEL */\n.hds-checkbox .hds-checkbox__label {\n color: var(--label-color);\n cursor: pointer;\n font-size: var(--label-font-size);\n line-height: var(--lineheight-m);\n padding-left: calc(var(--size) + var(--label-padding));\n padding-top: calc((var(--size) - (var(--label-font-size) * var(--lineheight-m))) / 2);\n position: relative;\n}\n/* ERROR */\n.hds-checkbox__error-text {\n position: relative;\n color: var(--color-error);\n display: block;\n font-size: var(--fontsize-body-m);\n margin-top: var(--spacing-2-xs);\n padding-left: calc(var(--icon-size) + var(--spacing-2-xs));\n flex-basis: 100%;\n}\n.hds-checkbox__error-text::before {\n background: var(--color-error);\n content: '';\n height: var(--icon-size);\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n pointer-events: none;\n position: absolute;\n left: 0;\n top: 0;\n width: var(--icon-size);\n}\n/* CUSTOM CHECKBOX */\n.hds-checkbox .hds-checkbox__input::before,\n.hds-checkbox .hds-checkbox__label::before,\n.hds-checkbox .hds-checkbox__label::after {\n content: \"\";\n left: 0;\n position: absolute;\n top: 0;\n}\n/* checkbox icon */\n.hds-checkbox .hds-checkbox__input::before {\n background-color: var(--icon-color-unselected);\n height: var(--size);\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='21 7 10 18 4.5 12.5 6 11 10 15 19.5 5.5'/%3E %3C/g%3E %3C/svg%3E\");\n mask-position: center;\n mask-repeat: no-repeat;\n mask-size: calc(var(--size) * var(--icon-scale));\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='21 7 10 18 4.5 12.5 6 11 10 15 19.5 5.5'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-position: center;\n -webkit-mask-repeat: no-repeat;\n -webkit-mask-size: calc(var(--size) * var(--icon-scale));\n width: var(--size);\n transform: scale(0.6);\n z-index: 1;\n}\n/* checkbox icon - selected */\n.hds-checkbox .hds-checkbox__input:checked::before {\n background-color: var(--icon-color-selected);\n transform: scale(1);\n}\n/* checkbox icon - indeterminated */\n.hds-checkbox .hds-checkbox__input:not(:checked):indeterminate::before {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M6 11h12v2H6z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M6 11h12v2H6z'/%3E%3C/g%3E%3C/svg%3E\");\n background-color: var(--icon-color-selected);\n transform: scale(1);\n}\n/* focus outline */\n.hds-checkbox .hds-checkbox__label::before {\n height: var(--size);\n width: var(--size);\n}\n/* focus outline - focus */\n.hds-checkbox .hds-checkbox__input:focus + .hds-checkbox__label::before {\n box-shadow: 0 0 0 var(--outline-width) var(--focus-outline-color);\n transform: translate3d(0, 0, 0);\n}\n/* background */\n.hds-checkbox .hds-checkbox__label::after {\n background-color: var(--background-unselected);\n border: var(--border-width) solid var(--border-color-unselected);\n height: var(--size);\n width: var(--size);\n}\n/* background - selected or indeterminated */\n.hds-checkbox .hds-checkbox__input:checked + .hds-checkbox__label::after,\n.hds-checkbox .hds-checkbox__input:indeterminate + .hds-checkbox__label::after {\n background-color: var(--background-selected);\n border-color: var(--border-color-selected);\n}\n/* background - selected - hover */\n.hds-checkbox .hds-checkbox__input:not(:disabled):checked:hover + .hds-checkbox__label::after,\n.hds-checkbox .hds-checkbox__input:not(:disabled):checked:hover:focus + .hds-checkbox__label::after,\n.hds-checkbox .hds-checkbox__input:not(:disabled):indeterminate:hover + .hds-checkbox__label::after,\n.hds-checkbox .hds-checkbox__input:not(:disabled):indeterminate:hover:focus + .hds-checkbox__label::after {\n background-color: var(--background-hover);\n border-color: var(--border-color-selected-hover);\n}\n/* background - unselected - hover */\n.hds-checkbox .hds-checkbox__input:not(:disabled):hover + .hds-checkbox__label::after,\n.hds-checkbox .hds-checkbox__input:not(:disabled):hover:focus + .hds-checkbox__label::after {\n border-color: var(--border-color-unselected-hover);\n}\n/* background - unselected - focus */\n.hds-checkbox .hds-checkbox__input:not(:disabled):focus + .hds-checkbox__label::after {\n border-color: var(--border-color-unselected-focus);\n}\n/* background - selected - focus */\n.hds-checkbox .hds-checkbox__input:not(:disabled):checked:focus + .hds-checkbox__label::after,\n.hds-checkbox .hds-checkbox__input:not(:disabled):indeterminate:focus + .hds-checkbox__label::after {\n border-color: var(--border-color-selected-focus);\n}\n/* DISABLED */\n/* label */\n.hds-checkbox .hds-checkbox__input:disabled + .hds-checkbox__label {\n color: var(--label-color-disabled);\n}\n/* checkbox icon - disabled */\n.hds-checkbox .hds-checkbox__input:checked:disabled::before {\n background-color: var(--icon-color-disabled);\n}\n/* background */\n.hds-checkbox .hds-checkbox__input:disabled + .hds-checkbox__label::after {\n background-color: var(--background-disabled);\n border-color: var(--border-color-disabled);\n}\n.hds-checkbox .hds-checkbox__input:disabled,\n.hds-checkbox .hds-checkbox__input:disabled + .hds-checkbox__label {\n cursor: not-allowed;\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/container/container.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-container {\n box-sizing: border-box;\n}\n\n@media (min-width: 320px) {\n .hds-container {\n max-width: var(--container-width-xs);\n }\n}\n\n@media (min-width: 576px) {\n .hds-container {\n max-width: var(--container-width-s);\n }\n}\n\n@media (min-width: 768px) {\n .hds-container {\n max-width: var(--container-width-m);\n }\n}\n\n@media (min-width: 992px) {\n .hds-container {\n max-width: var(--container-width-l);\n }\n}\n\n@media (min-width: 1248px) {\n .hds-container {\n max-width: var(--container-width-xl);\n }\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/error-summary/error-summary.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-error-summary__body {\n font-size: var(--fontsize-body-s);\n line-height: 1.625rem;\n}\n.hds-error-summary__body ul {\n margin: 0;\n padding: 0 0 0 var(--spacing-s);\n}\n.hds-error-summary__body li {\n margin-bottom: 0.125rem;\n}\n.hds-error-summary__body a {\n color: var(--color-bus);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/fieldset/fieldset.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-fieldset {\n --border-style: 0 none;\n --padding-top: 4px;\n --padding-sides: 0;\n --padding-bottom: var(--spacing-s);\n\n border: var(--border-style);\n box-sizing: border-box;\n padding: var(--padding-top) var(--padding-sides) var(--padding-bottom)\n}\n\n.hds-fieldset-legend {\n font-weight: bold;\n}\n\n.hds-fieldset--border {\n --border-style: 2px inset var(--color-black-90);\n --padding-top: 2px;\n --padding-sides: 12px;\n}\n\n.hds-fieldset--border > .hds-fieldset-legend {\n margin-left: calc(var(--padding-sides) / -2);\n padding: 0 6px 0 6px;\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/koros/koros.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-koros {\n width: 100%;\n line-height: 0;\n}\n\n.hds-koros--flip-horizontal {\n transform: scaleY(-1);\n}\n\n.hds-koros--45deg {\n will-change: transform; /* The browser should use a new compositing layer when rotating. Otherwise, it will draw an annoying hairline on top of the Koros. */\n transform: rotate(45deg);\n}\n\n.hds-koros--90deg {\n will-change: transform;\n transform: rotate(90deg);\n}\n\n.hds-koros--135deg {\n will-change: transform;\n transform: rotate(135deg);\n}\n\n.hds-koros--180deg {\n will-change: transform;\n transform: rotate(180deg);\n}\n\n.hds-koros--225deg {\n will-change: transform;\n transform: rotate(225deg);\n}\n\n.hds-koros--270deg {\n will-change: transform;\n transform: rotate(270deg);\n}\n\n.hds-koros--315deg {\n will-change: transform;\n transform: rotate(315deg);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/link/link.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-link {\n --link-visited-color: #551a8b;\n --link-color: var(--color-bus);\n text-decoration: underline;\n color: var(--link-color);\n box-sizing: border-box;\n border: 3px solid transparent;\n}\n\n.hds-link:visited {\n color: var(--link-visited-color);\n}\n\n.hds-link:visited svg g path { /* Fixes external link icon visited color for Safari */\n fill: var(--link-visited-color);\n}\n\n.hds-link:focus {\n border: 3px solid var(--color-coat-of-arms);\n outline: none;\n}\n\n.hds-link.focus-visible {\n outline: none;\n}\n\n.hds-link:focus-visible {\n outline: none;\n}\n\n.hds-link .vertical-align-small-or-medium-icon {\n vertical-align: sub;\n}\n\n.hds-link .vertical-align-big-icon {\n vertical-align: middle;\n}\n\n.hds-link--disable-visited-styles:visited {\n color: var(--color-bus);\n}\n\n.hds-link--small {\n font-size: 14px;\n}\n\n.hds-link--medium {\n font-size: 16px;\n}\n\n.hds-link--large {\n font-size: 18px;\n display: block;\n width: fit-content;\n}\n\n/* ICONS */\n\n.hds-link--small .icon {\n margin-left: 7px;\n}\n\n.hds-link--medium .icon {\n margin-left: var(--spacing-2-xs);\n margin-top: -3px; /* Fixes lineheight problem for external inline link */\n}\n\n.hds-link--large .icon {\n margin-left: var(--spacing-s);\n}\n\n.hds-link--small .hds-icon-left {\n margin-right: 4px;\n vertical-align: text-top;\n}\n\n.hds-link--medium .hds-icon-left {\n margin-right: 8px;\n vertical-align: sub;\n}\n\n.hds-link--large .hds-icon-left {\n margin-right: 16px;\n vertical-align: middle;\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/loading-spinner/loading-spinner.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-loading-spinner {\n --spinner-size: 4rem;\n --spinner-color: var(--color-coat-of-arms);\n --spinner-thickness: 0.5rem;\n --spinner-rotation-animation-duration: 1.5s;\n --spinner-color-animation-duration: 4.5s;\n\n --spinner-color-stage1: var(--color-coat-of-arms);\n --spinner-color-stage2: var(--color-copper);\n --spinner-color-stage3: var(--color-suomenlinna);\n\n position: relative;\n width: var(--spinner-size);\n height: var(--spinner-size);\n border-top-color: var(--spinner-color);\n}\n\n.hds-loading-spinner--multicolor {\n border-top-color: var(--spinner-color-stage1);\n animation: spinner-color-animation var(--spinner-color-animation-duration) cubic-bezier(0.6, 0.2, 0.4, 0.9) infinite;\n}\n\n.hds-loading-spinner--small {\n --spinner-size: 1.5rem;\n --spinner-thickness: 0.1875rem;\n}\n\n.hds-loading-spinner div {\n position: absolute;\n box-sizing: border-box;\n width: 100%;\n height: 100%;\n border: var(--spinner-thickness) solid transparent;\n border-top-color: inherit;\n border-radius: 50%;\n animation: spinner-rotation-animation var(--spinner-rotation-animation-duration) cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite;\n}\n\n.hds-loading-spinner div:nth-child(2) {\n animation-delay: -0.15s;\n}\n\n.hds-loading-spinner div:nth-child(3) {\n animation-delay: -0.3s;\n}\n\n@keyframes spinner-rotation-animation {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n}\n\n@keyframes spinner-color-animation {\n 0% {}\n 33.3% { border-top-color: var(--spinner-color-stage2) }\n 66.6% { border-top-color: var(--spinner-color-stage3) }\n 100% {}\n}",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/notification/notification.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-notification {\n --notification-background-color: var(--color-info-light);\n --notification-border-color: var(--color-info);\n --notification-border-width: var(--spacing-2-xs);\n --notification-icon-color: var(--color-info);\n --notification-color: var(--color-black-90);\n --notification-focus-outline-color: var(--color-coat-of-arms);\n --notification-max-width-inline: none;\n --notification-max-width-toast: 21rem;\n --notification-z-index-inline: auto;\n --notification-z-index-toast: 99;\n --notification-offset: var(--spacing-layout-s);\n --notification-padding: var(--spacing-s);\n\n background-color: var(--notification-background-color);\n border: solid var(--notification-border-color);\n border-width: 0 0 0 var(--notification-border-width);\n box-sizing: border-box;\n color: var(--notification-color);\n max-width: var(--notification-max-width-inline);\n padding: var(--notification-padding);\n position: relative;\n width: 100%;\n z-index: var(--notification-z-index-inline);\n}\n\n/* CONTENT */\n\n.hds-notification__content {\n display: grid;\n grid-gap: var(--spacing-s);\n gap: var(--spacing-s);\n}\n\n/* LABEL */\n\n.hds-notification__label {\n align-items: flex-start;\n display: flex;\n font-weight: bold;\n font-size: var(--fontsize-body-l);\n margin-right: var(--spacing-l);\n}\n\n.hds-notification__label > .hds-icon {\n color: var(--notification-icon-color);\n margin-right: var(--spacing-2-xs);\n}\n\n/* SMALL */\n\n.hds-notification--small {\n --notification-padding: var(--spacing-2-xs);\n}\n\n.hds-notification--small .hds-notification__content {\n display: flex;\n grid-gap: 0;\n gap: 0;\n}\n\n.hds-notification--small .hds-notification__label {\n margin-right: 0;\n}\n\n.hds-notification--small .hds-notification__body {\n margin-right: var(--spacing-l);\n}\n\n/* LARGE */\n\n.hds-notification--large {\n --notification-padding: var(--spacing-l);\n}\n\n.hds-notification--large .hds-notification__label {\n margin-right: 0;\n}\n\n/* ICON */\n\n.hds-notification .hds-icon {\n --icon-size: var(--spacing-layout-xs);\n}\n\n.hds-notification__label > .hds-icon {\n flex: none;\n}\n\n.hds-notification:not(.hds-notification--small) .hds-notification__label > .hds-icon {\n transform: translateY(var(--spacing-4-xs));\n}\n\n/* CLOSE BUTTON */\n\n.hds-notification__close-button {\n --notification-close-button-offset: var(--spacing-s);\n background: none;\n border: none;\n cursor: pointer;\n display: flex;\n outline: none;\n padding: 0;\n position: absolute;\n right: var(--notification-close-button-offset);\n top: var(--notification-close-button-offset);\n}\n\n.hds-notification--small .hds-notification__close-button,\n.hds-notification--large .hds-notification__close-button {\n --notification-close-button-offset: var(--spacing-2-xs);\n}\n\n.hds-notification__close-button:focus {\n box-shadow: 0 0 0 3px var(--notification-focus-outline-color);\n}\n\n/* TOAST POSITIONS */\n\n.hds-notification--top-left,\n.hds-notification--top-center,\n.hds-notification--top-right,\n.hds-notification--bottom-left,\n.hds-notification--bottom-center,\n.hds-notification--bottom-right {\n border-width: var(--notification-border-width) 0 0;\n max-width: var(--notification-max-width-toast);\n position: fixed;\n width: calc(100% - var(--spacing-l));\n z-index: var(--notification-z-index-toast);\n}\n\n.hds-notification--top-left {\n top: var(--notification-offset);\n left: var(--notification-offset);\n}\n\n.hds-notification--top-center {\n top: var(--notification-offset);\n left: 50%;\n transform: translateX(-50%);\n}\n\n.hds-notification--top-right {\n top: var(--notification-offset);\n right: var(--notification-offset);\n}\n\n.hds-notification--bottom-left {\n bottom: var(--notification-offset);\n left: var(--notification-offset);\n}\n\n.hds-notification--bottom-center {\n bottom: var(--notification-offset);\n left: 50%;\n transform: translateX(-50%);\n}\n\n.hds-notification--bottom-right {\n bottom: var(--notification-offset);\n right: var(--notification-offset);\n}\n\n@media only screen and (max-width: 765.98px) {\n .hds-notification {\n --notification-offset: var(--spacing-s);\n }\n}\n\n/* TYPES */\n\n.hds-notification--success {\n --notification-background-color: var(--color-success-light);\n --notification-border-color: var(--color-success);\n --notification-icon-color: var(--color-success);\n}\n\n.hds-notification--alert {\n --notification-background-color: var(--color-alert-light);\n --notification-border-color: var(--color-alert-dark);\n --notification-icon-color: var(--color-alert-dark);\n}\n\n.hds-notification--error {\n --notification-background-color: var(--color-error-light);\n --notification-border-color: var(--color-error);\n --notification-icon-color: var(--color-error);\n}\n\n/* BOX SHADOW */\n\n.hds-notification--box-shadow {\n box-shadow: var(--box-shadow-l);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/pagination/pagination.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-pagination-container {\n text-align: center;\n}\n\n.hds-pagination {\n font-size: var(--fontsize-body-m);\n font-weight: bold;\n display: inline-block; /* Allows centering */\n position: relative; /* Enables position absolute for btn--next */\n line-height: var(--lineheight-l);\n transform: scaleY(-1); /* Trick for flipping the list float direction from bottom to up */\n --active-page-background-color: var(--color-black);\n --link-height: 40px;\n}\n\n/* Invisible, floated pseudo-element for reserving space for the hds-pagination__button-next,\nwe can not use this position for the actual button as it's in incorrect source order for tabbing */\n\n.hds-pagination::before {\n content: attr(data-next); /* Trick to keep floating element same size as btn--next */\n content: attr(data-next) / ''; /* Removes this pseudo-element from screen readers where supported */\n display: block;\n float: right; /* Floated pseudo-element wraps the inline ul around it */\n speak: never; /* Removes this pseudo-element from screen readers where supported */\n visibility: hidden;\n padding-left: 80px;\n line-height: 56px;\n}\n\n.hds-pagination .hds-pagination__button-prev {\n float: left;\n transform: scaleY(-1); /* Flip the element back from upside down */\n white-space: nowrap;\n margin-right: 8px;\n}\n\n.hds-pagination .hds-pagination__button-next {\n position: absolute;\n right: 0;\n top: 0; /* Remember that the position is flipped upside down, so this means actually bottom */\n transform: scaleY(-1); /* Flip the element back from upside down */\n white-space: nowrap;\n}\n\n.hds-pagination__pages {\n display: inline-flex; /* inline-flex allows floating it based on floated buttons when there is no more space */\n flex-wrap: wrap; /* Allow wrapping of the li-elements */\n justify-content: center; /* Center the li-elements */\n transform: scaleY(-1); /* Flip the element back from upside down */\n margin-bottom: 0;\n padding: 0;\n list-style: none;\n margin-top: 8px;\n grid-gap: var(--spacing-2-xs);\n gap: var(--spacing-2-xs);\n}\n\n.hds-pagination__item-link {\n border-radius: 21px;\n display: flex;\n justify-content: center;\n align-items: center;\n text-decoration: none;\n color: var(--color-black-90);\n height: var(--link-height);\n min-width: 32px;\n padding-left: var(--spacing-3-xs);\n padding-right: var(--spacing-3-xs);\n}\n\n.hds-pagination__item-link:hover {\n text-decoration: underline;\n}\n\n.hds-pagination__item-link:focus, .hds-pagination__item-link:active {\n outline: solid var(--color-coat-of-arms) 3px;\n outline-offset: 1px;\n}\n\n.hds-pagination__item-link.hds-pagination__item-link--active {\n color: var(--color-white);\n background-color: var(--active-page-background-color);\n}\n\n.hds-pagination__item-link.hds-pagination__item-link--active:hover {\n text-decoration: none;\n}\n\n.hds-pagination__item-ellipsis {\n height: var(--link-height);\n width: 24px;\n display: flex;\n justify-content: center;\n align-items: center;\n color: var(--color-black-90);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/radio-button/radio-button.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,'.hds-radio-button {\n --size: 24px;\n /* icon (circle) size relative to the radio button size (--size) */\n --icon-scale: 0.5;\n --border-width: 2px;\n --outline-width: 3px;\n --label-font-size: var(--fontsize-body-m);\n --label-padding: var(--spacing-2-xs);\n\n --background: var(--color-white);\n --background-hover: var(--color-white);\n --background-focus: var(--color-white);\n --background-unselected-disabled: var(--color-black-10);\n --background-selected-disabled: var(--color-white);\n\n --border-color-focus: var(--color-black-90);\n --border-color-selected: var(--color-bus);\n --border-color-selected-hover: var(--color-bus-dark);\n --border-color-selected-disabled: var(--color-black-20);\n --border-color-unselected: var(--color-black-50);\n --border-color-unselected-hover: var(--color-black-90);\n --border-color-unselected-disabled: var(--color-black-10);\n\n --icon-color-selected: var(--color-bus);\n --icon-color-unselected: transparent;\n --icon-color-hover: var(--color-bus-dark);\n --icon-color-disabled: var(--color-black-10);\n\n --focus-outline-color: var(--color-coat-of-arms);\n\n --label-color: var(--color-black-90);\n --label-color-disabled: var(--color-black-40);\n\n display: flex;\n min-height: var(--size);\n position: relative;\n}\n\n.hds-radio-button,\n.hds-radio-button *,\n.hds-radio-button *::before,\n.hds-radio-button *::after {\n box-sizing: border-box;\n}\n\n.hds-radio-button:not(:first-of-type) {\n margin-top: var(--spacing-2-xs);\n}\n\n/* radio button transitions */\n\n.hds-radio-button .hds-radio-button__input:hover + .hds-radio-button__label::after,\n.hds-radio-button .hds-radio-button__input:focus + .hds-radio-button__label::after {\n transition: 85ms ease-out;\n transition-property: background-color, border-color;\n}\n\n.hds-radio-button .hds-radio-button__input:hover + .hds-radio-button__label::before,\n.hds-radio-button .hds-radio-button__input:focus + .hds-radio-button__label::before {\n transition: 85ms ease-out;\n transition-property: background-color, box-shadow, transform;\n}\n\n/* NATIVE INPUT */\n\n.hds-radio-button .hds-radio-button__input {\n height: var(--size);\n left: 0;\n opacity: 0;\n position: absolute;\n top: 0;\n width: var(--size);\n}\n\n/* LABEL */\n\n.hds-radio-button .hds-radio-button__label {\n color: var(--label-color);\n cursor: pointer;\n font-size: var(--label-font-size);\n line-height: var(--lineheight-m);\n padding-left: calc(var(--size) + var(--label-padding));\n padding-top: calc((var(--size) - (var(--label-font-size) * var(--lineheight-m))) / 2);\n position: relative;\n}\n\n/* CUSTOM RADIO BUTTON */\n\n.hds-radio-button .hds-radio-button__label::before,\n.hds-radio-button .hds-radio-button__label::after {\n border-radius: 50%;\n content: "";\n left: 0;\n position: absolute;\n top: 0;\n}\n\n/* background & focus outline */\n\n.hds-radio-button .hds-radio-button__label::before {\n background-color: var(--background);\n height: var(--size);\n width: var(--size);\n}\n\n/* background - hover */\n\n.hds-radio-button .hds-radio-button__input:hover + .hds-radio-button__label::before {\n background-color: var(--background-hover);\n}\n\n/* background - focus */\n\n.hds-radio-button .hds-radio-button__input:focus + .hds-radio-button__label::before {\n box-shadow: 0 0 0 var(--outline-width) var(--focus-outline-color);\n transform: translate3d(0, 0, 0);\n}\n\n/* inner circle */\n\n.hds-radio-button .hds-radio-button__label::after {\n background-clip: content-box;\n background-color: var(--icon-color-unselected);\n border: var(--border-width) solid var(--border-color-unselected);\n height: var(--size);\n padding: calc((var(--size) / 2 - var(--border-width) * 2) * (1 - var(--icon-scale)));\n width: var(--size);\n}\n\n/* inner circle - selected */\n\n.hds-radio-button .hds-radio-button__input:checked + .hds-radio-button__label::after {\n background-color: var(--icon-color-selected);\n border-color: var(--border-color-selected);\n}\n\n/* inner circle - selected - hover */\n\n.hds-radio-button .hds-radio-button__input:not(:disabled):checked:hover + .hds-radio-button__label::after,\n.hds-radio-button .hds-radio-button__input:not(:disabled):checked:hover:focus + .hds-radio-button__label::after {\n background-color: var(--icon-color-hover);\n border-color: var(--border-color-selected-hover);\n}\n\n/* inner circle - unselected - hover */\n\n.hds-radio-button .hds-radio-button__input:not(:disabled):hover + .hds-radio-button__label::after,\n.hds-radio-button .hds-radio-button__input:not(:disabled):hover:focus + .hds-radio-button__label::after {\n border-color: var(--border-color-unselected-hover);\n}\n\n/* inner circle - focus */\n\n.hds-radio-button .hds-radio-button__input:not(:disabled):focus + .hds-radio-button__label::after {\n border-color: var(--border-color-focus);\n}\n\n/* DISABLED */\n\n/* label */\n\n.hds-radio-button .hds-radio-button__input:disabled + .hds-radio-button__label {\n color: var(--label-color-disabled);\n}\n\n/* background */\n\n.hds-radio-button .hds-radio-button__input:disabled + .hds-radio-button__label::before {\n background-color: var(--background-unselected-disabled);\n}\n\n/* background - selected */\n\n.hds-radio-button .hds-radio-button__input:checked:disabled + .hds-radio-button__label::before {\n background-color: var(--background-selected-disabled);\n}\n\n/* inner circle - disabled */\n\n.hds-radio-button .hds-radio-button__input:disabled + .hds-radio-button__label::after {\n border-color: var(--border-color-unselected-disabled);\n}\n\n/* inner circle - selected - disabled */\n\n.hds-radio-button .hds-radio-button__input:checked:disabled + .hds-radio-button__label::after {\n background-color: var(--icon-color-disabled);\n border-color: var(--border-color-selected-disabled);\n}\n\n.hds-radio-button .hds-radio-button__input:disabled,\n.hds-radio-button .hds-radio-button__input:disabled + .hds-radio-button__label {\n cursor: not-allowed;\n}\n',""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/search-input/search-input.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,"\n.hds-search-input {\n --border-width: 2px;\n --outline-width: 3px;\n --input-height: 56px;\n\n --helper-color-default: var(--color-black-60);\n --input-background-default: var(--color-white);\n --input-border-color-default: var(--color-black-50);\n --input-border-color-hover : var(--color-black-90);\n --input-border-color-focus: var(--color-black-90);\n --input-color-default: var(--color-black-90);\n --label-color-default: var(--color-black-90);\n --focus-outline-color: var(--color-coat-of-arms);\n}\n\n.hds-search-input .hds-search-input__input:hover {\n transition: border-color 85ms ease-out;\n}\n\n/* LABEL */\n\n.hds-search-input__label {\n color: var(--label-color-default);\n display: block;\n font-size: var(--fontsize-body-m);\n font-weight: 500;\n margin-bottom: var(--spacing-3-xs);\n}\n\n/* INPUT */\n\n.hds-search-input__input-wrapper {\n display: flex;\n height: 100%;\n position: relative;\n}\n\n.hds-search-input .hds-search-input__input {\n -webkit-appearance: none;\n background-color: var(--input-background-default);\n border: var(--border-width) solid var(--input-border-color-default);\n box-sizing: border-box;\n color: var(--input-color-default);\n font-size: 1.125em;\n height: var(--input-height);\n line-height: normal;\n padding: 0 var(--spacing-s);\n width: 100%;\n}\n\n.hds-search-input .hds-search-input__input:hover {\n border-color: var(--input-border-color-hover);\n}\n\n.hds-search-input .hds-search-input__input:focus {\n border-color: var(--input-border-color-focus);\n outline: none;\n}\n\n/* FOCUS OUTLINE */\n\n.hds-search-input .hds-search-input__input:not([readonly]):focus {\n box-shadow: 0 0 0 var(--outline-width) var(--focus-outline-color);\n transform: translate3d(0, 0, 0);\n}\n\n/* BUTTON */\n\n.hds-search-input__buttons {\n position: absolute;\n right: var(--spacing-s);\n top: var(--spacing-s);\n transform: translateY(0);\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.hds-search-input__buttons .hds-search-input__button {\n background: none;\n border: none;\n color: inherit;\n cursor: pointer;\n font: inherit;\n padding: 0;\n color: var(--dropdown-color-default);\n outline: none;\n display: flex;\n margin-left: var(--spacing-xs);\n}\n\n.hds-search-input__buttons .hds-search-input__button:focus {\n outline: none;\n box-shadow: 0 0 0 var(--outline-width) var(--focus-outline-color);\n}\n\n/* HELPER TEXT */\n\n.hds-search-input__helper-text {\n color: var(--helper-color-default);\n display: block;\n font-size: var(--fontsize-body-m);\n margin-top: var(--spacing-3-xs);\n}",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/selection-group/selection-group.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-selection-group {\n --spacing-col: 1.25rem;\n --spacing-row: var(--spacing-s);\n --label-color-default: var(--color-black-90);\n --icon-size: var(--spacing-m);\n\n border: 0;\n padding: 0;\n}\n\n.hds-selection-group > *:not(.hds-selection-group__items) {\n float: left;\n}\n\n.hds-selection-group__legend {\n color: var(--label-color-default);\n display: block;\n font-size: var(--fontsize-body-m);\n font-weight: 500;\n margin-bottom: var(--spacing-row);\n}\n\n.hds-selection-group__required {\n color: var(--label-color-default);\n display: inline-block;\n font-size: var(--fontsize-body-xl);\n line-height: 1;\n margin-left: var(--spacing-2-xs);\n transform: translateY(var(--spacing-3-xs));\n}\n\n.hds-selection-group__items {\n clear: left;\n display: grid;\n grid-gap: var(--spacing-row) var(--spacing-col);\n gap: var(--spacing-row) var(--spacing-col);\n justify-content: start;\n}\n\n.hds-selection-group__items--vertical {\n grid-auto-flow: row;\n}\n\n.hds-selection-group__items--horizontal {\n grid-auto-flow: column;\n}\n\n.hds-selection-group__error-text {\n position: relative;\n color: var(--color-error);\n display: block;\n font-size: var(--fontsize-body-m);\n margin-top: var(--spacing-xs);\n padding-left: calc(var(--icon-size) + var(--spacing-2-xs));\n}\n\n.hds-selection-group__error-text::before {\n background: var(--color-error);\n content: '';\n height: var(--icon-size);\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n pointer-events: none;\n position: absolute;\n left: 0;\n top: 0;\n width: var(--icon-size);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/status-label/status-label.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-status-label {\n --status-label-background: var(--color-black-10);\n --status-label-color: var(--color-black-90);\n --status-label-height: 32px;\n\n background-color: var(--status-label-background);\n color: var(--status-label-color);\n display: inline-block;\n font-size: var(--fontsize-body-s);\n min-height: var(--status-label-height);\n line-height: var(--status-label-height);\n padding: 0 var(--spacing-2-xs);\n vertical-align: middle;\n}\n\n.hds-status-label--with-icon {\n align-items: center;\n display: inline-flex;\n padding-left: var(--spacing-3-xs);\n}\n\n.hds-status-label-icon {\n height: var(--spacing-m);\n margin-right: var(--spacing-3-xs);\n width: var(--spacing-m);\n}\n\n.hds-status-label--info {\n --status-label-background: var(--color-info);\n --status-label-color: var(--color-white);\n}\n\n.hds-status-label--success {\n --status-label-background: var(--color-success);\n --status-label-color: var(--color-white);\n}\n\n.hds-status-label--alert {\n --status-label-background: var(--color-alert);\n}\n\n.hds-status-label--error {\n --status-label-background: var(--color-error);\n --status-label-color: var(--color-white);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/table/table.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-table-container {\n overflow-x: auto;\n}\n\n.hds-table-container:focus {\n outline: var(--color-coat-of-arms) 3px solid;\n}\n\n.hds-table {\n --content-background-color: var(--color-white);\n border-collapse: collapse;\n width: 100%;\n line-height: 1.5;\n}\n\n.hds-table th {\n border-bottom: 1px solid var(--color-black-20);\n white-space: nowrap;\n text-align: left;\n font-weight: 500;\n font-size: var(--fontsize-heading-xxs);\n padding: var(--spacing-xs) var(--spacing-m);\n}\n\n.hds-table__content tr td {\n background-color: var(--content-background-color);\n font-weight: 400;\n padding: var(--spacing-xs) var(--spacing-m);\n border-bottom: 1px solid var(--color-black-50);\n font-size: var(--fontsize-body-m);\n color: var(--color-black-90);\n}\n\n.hds-table__header-row {\n background-color: var(--header-background-color);\n}\n\n.hds-table__caption {\n text-align: left;\n margin-bottom: var(--spacing-s);\n font-size: var(--fontsize-heading-xs);\n line-height: var(--lineheight-l);\n}\n\n/* DARK VARIANT */\n\n.hds-table--dark {\n /* TODO: --background-color is deprecated. Remove when possible. */\n --header-background-color: var(--background-color, var(--color-bus));\n}\n\n.hds-table.hds-table--dark th {\n color: var(--color-white);\n}\n\n/* LIGHT VARIANT */\n\n.hds-table--light {\n /* TODO: --background-color is deprecated. Remove when possible. */\n --header-background-color: var(--background-color, var(--color-silver));\n}\n\n.hds-table.hds-table--light th {\n color: var(--color-black-90);\n}\n\n/* DENSE VARIANT */\n\n.hds-table--dense.hds-table th {\n font-weight: bold;\n font-size: var(--fontsize-body-s);\n padding: 9px var(--spacing-s);\n}\n\n.hds-table--dense .hds-table__content tr td {\n padding: 9px var(--spacing-s);\n font-size: var(--fontsize-body-s);\n}\n\n.hds-table--dense .hds-table__caption {\n margin-bottom: var(--spacing-xs);\n font-size: var(--fontsize-heading-xxs);\n}\n\n/* ZEBRA VARIANT */\n\n.hds-table--zebra .hds-table__content tr:nth-child(even) td {\n background-color: var(--color-black-10);\n}\n\n.hds-table--zebra .hds-table__content tr td {\n border-bottom: none;\n}\n\n/* VERTICAL LINES VARIANT */\n\n.hds-table--with-vertical-lines .hds-table__content td {\n border-right: 1px solid var(--color-black-50);\n}\n\n.hds-table--with-vertical-lines .hds-table__content {\n border-left: 1px solid var(--color-black-50);\n}\n\n.hds-table--with-vertical-lines .hds-table__header-row {\n border-right: 1px solid var(--header-background-color);\n border-left: 1px solid var(--header-background-color);\n}\n\n/* VERTICAL HEADER VARIANT */\n\n.hds-table__vertical-header-column {\n background-color: var(--header-background-color);\n}\n\n.hds-table--with-vertical-header.hds-table--with-vertical-lines .hds-table__content {\n border-left: none;\n}\n\n.hds-table--with-vertical-lines.hds-table--with-vertical-header .hds-table__header-row {\n border-left: none;\n}\n\n/* MOBILE STYLES */\n\n@media (max-width: 767px) {\n .hds-table th {\n font-weight: bold;\n font-size: var(--fontsize-body-s);\n padding: 9px var(--spacing-s);\n }\n\n .hds-table__content tr td {\n padding: 9px var(--spacing-s);\n font-size: var(--fontsize-body-s);\n }\n\n .hds-table__caption {\n margin-bottom: var(--spacing-xs);\n font-size: var(--fontsize-heading-xxs);\n }\n}\n\n/* UTILITY */\n\n.hds-table--text-align-right {\n text-align: right;\n}\n\n.hds-table__content--text-align-td-right td {\n text-align: right;\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/tag/tag.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-tag {\n --tag-background: var(--color-black-10);\n --tag-color: var(--color-black-90);\n --tag-focus-outline-color: var(--color-coat-of-arms);\n --tag-height: 32px;\n\n align-items: center;\n background-color: var(--tag-background);\n color: var(--tag-color);\n display: inline-flex;\n flex-direction: row-reverse;\n font-size: var(--fontsize-body-s);\n min-height: var(--tag-height);\n line-height: var(--tag-height);\n outline: none;\n}\n\n.hds-tag:focus,\n.hds-tag[focus-within] {\n box-shadow: 0 0 0 3px var(--tag-focus-outline-color);\n}\n\n.hds-tag:focus,\n.hds-tag:focus-within {\n box-shadow: 0 0 0 3px var(--tag-focus-outline-color);\n}\n\n.hds-tag[tabindex='0'] {\n cursor: pointer;\n}\n\n.hds-tag__label {\n line-height: var(--lineheight-m);\n padding: var(--spacing-3-xs) var(--spacing-2-xs);\n}\n\n.hds-tag__label:not(:only-child) {\n padding: 0 var(--spacing-2-xs) 0 0;\n}\n\n.hds-tag__delete-button {\n display: flex;\n outline: none;\n}\n\n.hds-tag__delete-button .hds-icon {\n height: var(--spacing-m);\n width: var(--spacing-m);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/text-input/text-input.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,"@keyframes fadeIn {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n\n.hds-text-input {\n --border-width: 2px;\n --outline-width: 3px;\n --input-height: 56px;\n --textarea-height: 149px;\n --icon-size: var(--spacing-m);\n\n --helper-color-default: var(--color-black-60);\n --helper-color-invalid: var(--color-error);\n --helper-color-success: var(--color-success);\n --helper-color-info: var(--color-black-90);\n --helper-color-info-icon: var(--color-coat-of-arms);\n --icon-color-invalid: var(--color-error);\n --input-background-default: var(--color-white);\n --input-background-disabled: var(--color-black-10);\n --input-border-color-default: var(--color-black-50);\n --input-border-color-hover : var(--color-black-90);\n --input-border-color-focus: var(--color-black-90);\n --input-border-color-invalid: var(--color-error);\n --input-border-color-disabled: var(--color-black-10);\n --input-border-color-success: var(--color-success);\n --input-color-default: var(--color-black-90);\n --input-color-disabled: var(--color-black-40);\n --label-color-default: var(--color-black-90);\n --label-color-invalid: var(--color-black-90);\n --placeholder-color: var(--color-black-60);\n --focus-outline-color: var(--color-coat-of-arms);\n}\n\n/* text-input transitions */\n\n.hds-text-input .hds-text-input__input:hover {\n transition: border-color 85ms ease-out;\n}\n\n.hds-text-input__input-wrapper[focus-within] .hds-text-input__input:not([readonly]) {\n transition: 85ms ease-out;\n transition-property: box-shadow, transform;\n}\n\n.hds-text-input__input-wrapper:focus-within .hds-text-input__input:not([readonly]) {\n transition: 85ms ease-out;\n transition-property: box-shadow, transform;\n}\n\n.hds-text-input--invalid .hds-text-input__label {\n transition: color 85ms linear;\n}\n\n/* LABEL */\n\n.hds-text-input__label {\n color: var(--label-color-default);\n display: block;\n font-size: var(--fontsize-body-m);\n font-weight: 500;\n margin-bottom: var(--spacing-3-xs);\n}\n\n/* REQUIRED */\n\n.hds-text-input__required {\n color: var(--color-black-90);\n display: inline-block;\n font-size: var(--fontsize-body-xl);\n line-height: 1;\n margin-left: var(--spacing-2-xs);\n transform: translateY(var(--spacing-3-xs));\n}\n\n/* INPUT */\n\n.hds-text-input__input-wrapper {\n display: flex;\n position: relative;\n}\n\n.hds-text-input .hds-text-input__input {\n /* removes the input shadow on iOS */\n -webkit-appearance: none;\n background-color: var(--input-background-default);\n border: var(--border-width) solid var(--input-border-color-default);\n /* removes the border radius on iOS */\n border-radius: 0;\n box-sizing: border-box;\n color: var(--input-color-default);\n font-size: 1.125em;\n height: var(--input-height);\n line-height: normal;\n padding: 0 var(--spacing-s);\n width: 100%;\n will-change: transform, box-shadow;\n}\n\n.hds-text-input textarea.hds-text-input__input {\n height: var(--textarea-height);\n min-height: var(--input-height);\n padding: var(--spacing-s);\n resize: vertical;\n}\n\n.hds-text-input .hds-text-input__input:hover {\n border-color: var(--input-border-color-hover);\n}\n\n.hds-text-input__input-wrapper[focus-within] .hds-text-input__input {\n border-color: var(--input-border-color-focus);\n outline: none;\n}\n\n.hds-text-input__input-wrapper:focus-within .hds-text-input__input {\n border-color: var(--input-border-color-focus);\n outline: none;\n}\n\n.hds-text-input .hds-text-input__input:-ms-input-placeholder {\n color: var(--placeholder-color);\n opacity: 1;\n}\n\n.hds-text-input .hds-text-input__input::placeholder {\n color: var(--placeholder-color);\n opacity: 1;\n}\n\n/* FOCUS OUTLINE */\n\n.hds-text-input__input-wrapper[focus-within] .hds-text-input__input:not([readonly]) {\n box-shadow: 0 0 0 var(--outline-width) var(--focus-outline-color);\n transform: translate3d(0, 0, 0);\n}\n\n.hds-text-input__input-wrapper:focus-within .hds-text-input__input:not([readonly]) {\n box-shadow: 0 0 0 var(--outline-width) var(--focus-outline-color);\n transform: translate3d(0, 0, 0);\n}\n\n/* HELPER TEXT */\n\n.hds-text-input__helper-text {\n color: var(--helper-color-default);\n display: block;\n line-height: var(--lineheight-l);\n font-size: var(--fontsize-body-m);\n margin-top: var(--spacing-3-xs);\n white-space: pre-line;\n}\n\n/* ERROR TEXT */\n\n.hds-text-input__error-text {\n position: relative;\n color: var(--helper-color-invalid);\n display: block;\n font-size: var(--fontsize-body-m);\n line-height: var(--lineheight-l);\n margin-top: var(--spacing-3-xs);\n padding-left: calc(var(--icon-size) + var(--spacing-2-xs));\n white-space: pre-line;\n}\n\n.hds-text-input__error-text:not(:last-child) {\n margin-bottom: var(--spacing-2-xs);\n}\n\n.hds-text-input__error-text::before {\n animation: fadeIn 85ms ease-out;\n background: var(--icon-color-invalid);\n content: '';\n height: var(--icon-size);\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n pointer-events: none;\n position: absolute;\n left: 0;\n top: 0;\n width: var(--icon-size);\n}\n\n/* INVALID */\n\n.hds-text-input--invalid .hds-text-input__label {\n color: var(--label-color-invalid);\n}\n\n.hds-text-input.hds-text-input--invalid .hds-text-input__input {\n border-color: var(--input-border-color-invalid);\n}\n\n/* SUCCESS */\n\n.hds-text-input.hds-text-input--success .hds-text-input__input {\n border-color: var(--input-border-color-success);\n}\n\n.hds-text-input__success-text {\n position: relative;\n color: var(--helper-color-success);\n display: block;\n font-size: var(--fontsize-body-m);\n line-height: var(--lineheight-l);\n margin-top: var(--spacing-3-xs);\n padding-left: calc(var(--icon-size) + var(--spacing-2-xs));\n white-space: pre-wrap;\n}\n\n.hds-text-input__success-text:not(:last-child) {\n margin-bottom: var(--spacing-2-xs);\n}\n\n.hds-text-input__success-text::before {\n animation: fadeIn 85ms ease-out;\n background: var(--helper-color-success);\n content: '';\n height: var(--icon-size);\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n pointer-events: none;\n position: absolute;\n left: 0;\n top: 0;\n width: var(--icon-size);\n}\n\n/* INFO TEXT */\n\n.hds-text-input__info-text {\n position: relative;\n color: var(--helper-color-info);\n display: block;\n font-size: var(--fontsize-body-m);\n line-height: var(--lineheight-l);\n margin-top: var(--spacing-3-xs);\n padding-left: calc(var(--icon-size) + var(--spacing-2-xs));\n}\n\n.hds-text-input__info-text:not(:last-child) {\n margin-bottom: var(--spacing-2-xs);\n}\n\n.hds-text-input__info-text::before {\n animation: fadeIn 85ms ease-out;\n background: var(--helper-color-info-icon);\n content: '';\n height: var(--icon-size);\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n pointer-events: none;\n position: absolute;\n left: 0;\n top: 0;\n width: var(--icon-size);\n}\n\n/* DISABLED */\n\n.hds-text-input .hds-text-input__input[disabled] {\n background-color: var(--input-background-disabled);\n border-color: var(--input-border-color-disabled);\n color: var(--input-color-disabled);\n cursor: not-allowed;\n}\n\n/* READ-ONLY */\n\n.hds-text-input .hds-text-input__input[readonly] {\n background-color: transparent;\n border: 0;\n color: var(--input-color-default);\n padding: 0;\n /* fixes faded text color on Safari */\n -webkit-text-fill-color: var(--input-color-default);\n}\n\n/* BUTTON */\n\n.hds-text-input__buttons {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-right: var(--spacing-s);\n font-size: 1rem;\n}\n\n.hds-text-input__button {\n padding: 0;\n appearance: none;\n background: transparent;\n cursor: pointer;\n border: 0;\n width: 1.5rem;\n height: 1.5rem;\n overflow: hidden;\n font-size: 1rem;\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/all.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,"/* SoMe */\n.hds-icon--discord {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-5.429 5l-.144.165.223.07c1.595.53 2.338 1.236 2.338 1.236a8.385 8.385 0 00-5.173-.967l-.088.007-.087.014-.285.034a8.05 8.05 0 00-1.815.514l-.235.1-.326.155-.28.143.08-.07c.232-.191.93-.708 2.153-1.129l.235-.077.236-.071L10.371 8l-.146.005-.074.005c-.425.037-1.414.202-2.471.927l-.199.143-.122.24-.146.313c-.408.91-1.145 2.852-1.209 5.13L6 15.078l.059.088.033.047c.264.352 1.11 1.28 2.798 1.414l.247.014.69-.854-.2-.065c-.9-.319-1.369-.836-1.532-1.05l-.069-.098.131.083.157.092.017.015.117.067.256.134a8.634 8.634 0 002.006.658 7.205 7.205 0 002.665.01c.29-.05.584-.12.883-.217l.302-.104.527-.209a5.88 5.88 0 00.712-.362l.25-.157-.036.052-.03.041c-.165.215-.65.75-1.588 1.067l-.208.064.68.833.246-.014c2.09-.166 2.9-1.55 2.9-1.55 0-3.311-1.48-5.996-1.48-5.996-1.064-.797-2.09-1.007-2.584-1.061l-.16-.014L13.642 8zm-3.559 3.837c.587 0 1.06.514 1.05 1.141 0 .628-.463 1.142-1.05 1.142-.576 0-1.049-.514-1.049-1.142 0-.627.463-1.141 1.05-1.141zm3.755 0c.586 0 1.049.514 1.049 1.141 0 .628-.463 1.142-1.05 1.142-.575 0-1.048-.514-1.048-1.142 0-.627.462-1.141 1.049-1.141z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-5.429 5l-.144.165.223.07c1.595.53 2.338 1.236 2.338 1.236a8.385 8.385 0 00-5.173-.967l-.088.007-.087.014-.285.034a8.05 8.05 0 00-1.815.514l-.235.1-.326.155-.28.143.08-.07c.232-.191.93-.708 2.153-1.129l.235-.077.236-.071L10.371 8l-.146.005-.074.005c-.425.037-1.414.202-2.471.927l-.199.143-.122.24-.146.313c-.408.91-1.145 2.852-1.209 5.13L6 15.078l.059.088.033.047c.264.352 1.11 1.28 2.798 1.414l.247.014.69-.854-.2-.065c-.9-.319-1.369-.836-1.532-1.05l-.069-.098.131.083.157.092.017.015.117.067.256.134a8.634 8.634 0 002.006.658 7.205 7.205 0 002.665.01c.29-.05.584-.12.883-.217l.302-.104.527-.209a5.88 5.88 0 00.712-.362l.25-.157-.036.052-.03.041c-.165.215-.65.75-1.588 1.067l-.208.064.68.833.246-.014c2.09-.166 2.9-1.55 2.9-1.55 0-3.311-1.48-5.996-1.48-5.996-1.064-.797-2.09-1.007-2.584-1.061l-.16-.014L13.642 8zm-3.559 3.837c.587 0 1.06.514 1.05 1.141 0 .628-.463 1.142-1.05 1.142-.576 0-1.049-.514-1.049-1.142 0-.627.463-1.141 1.05-1.141zm3.755 0c.586 0 1.049.514 1.049 1.141 0 .628-.463 1.142-1.05 1.142-.575 0-1.048-.514-1.048-1.142 0-.627.462-1.141 1.049-1.141z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--facebook {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 3a2 2 0 012 2v14a2 2 0 01-2 2h-3.356v-7.12h2.435l.35-2.716h-2.785V9.43c0-.788.217-1.322 1.346-1.322h1.439V5.68l-.35-.036-.341-.025c-.38-.026-.873-.048-1.407-.048-2.073 0-3.495 1.266-3.495 3.592v2.005h-2.443v2.716h2.447L12.839 21H5a2 2 0 01-2-2V5a2 2 0 012-2h14z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 3a2 2 0 012 2v14a2 2 0 01-2 2h-3.356v-7.12h2.435l.35-2.716h-2.785V9.43c0-.788.217-1.322 1.346-1.322h1.439V5.68l-.35-.036-.341-.025c-.38-.026-.873-.048-1.407-.048-2.073 0-3.495 1.266-3.495 3.592v2.005h-2.443v2.716h2.447L12.839 21H5a2 2 0 01-2-2V5a2 2 0 012-2h14z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--google {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-7.103 2c-3.873 0-7 3.127-7 7s3.127 7 7 7c4.039 0 6.774-2.842 6.774-6.836 0-.373-.029-.668-.074-.954l-.036-.215h-6.664v2.408h3.974c-.164 1.03-1.202 3.017-3.974 3.017-2.388 0-4.339-1.978-4.339-4.42 0-3.864 4.471-5.676 6.992-3.461l.135.125 1.906-1.832C15.44 5.692 13.853 5 11.968 5z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-7.103 2c-3.873 0-7 3.127-7 7s3.127 7 7 7c4.039 0 6.774-2.842 6.774-6.836 0-.373-.029-.668-.074-.954l-.036-.215h-6.664v2.408h3.974c-.164 1.03-1.202 3.017-3.974 3.017-2.388 0-4.339-1.978-4.339-4.42 0-3.864 4.471-5.676 6.992-3.461l.135.125 1.906-1.832C15.44 5.692 13.853 5 11.968 5z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--instagram {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zM9.113 5.05C7.994 5.101 7 5.357 6.18 6.176c-.822.818-1.075 1.811-1.13 2.932l-.02.437c-.046 1.423-.04 4.304.02 5.338.052 1.122.308 2.115 1.13 2.933.821.818 1.811 1.074 2.933 1.13l.436.02c1.423.046 4.304.04 5.338-.02 1.122-.052 2.115-.309 2.933-1.13.818-.818 1.075-1.811 1.13-2.933l.02-.436c.046-1.422.04-4.301-.02-5.335-.052-1.122-.308-2.115-1.13-2.933-.818-.818-1.811-1.075-2.933-1.13l-.436-.02c-1.423-.046-4.304-.04-5.338.02zm2.889 1.211l1.018-.007c1.077-.005 2.434.022 3.107.288a2.362 2.362 0 011.33 1.33c.366.922.282 3.108.282 4.126l.008 1.319c-.002 1.018-.045 2.195-.29 2.807a2.362 2.362 0 01-1.33 1.33c-.921.366-3.107.282-4.125.282l-1.019.007c-1.077.005-2.434-.023-3.107-.288a2.362 2.362 0 01-1.33-1.33c-.366-.922-.282-3.108-.282-4.127l-.007-1.018c-.005-1.077.023-2.434.288-3.107a2.362 2.362 0 011.33-1.33c.922-.366 3.108-.282 4.127-.282zm0 2.149a3.583 3.583 0 00-3.59 3.588 3.583 3.583 0 003.59 3.59 3.583 3.583 0 003.588-3.59 3.583 3.583 0 00-3.588-3.588zm0 1.255a2.335 2.335 0 012.333 2.333 2.337 2.337 0 01-2.333 2.334 2.337 2.337 0 01-2.334-2.334 2.335 2.335 0 012.334-2.333zm3.735-2.239a.837.837 0 100 1.674.837.837 0 000-1.674z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zM9.113 5.05C7.994 5.101 7 5.357 6.18 6.176c-.822.818-1.075 1.811-1.13 2.932l-.02.437c-.046 1.423-.04 4.304.02 5.338.052 1.122.308 2.115 1.13 2.933.821.818 1.811 1.074 2.933 1.13l.436.02c1.423.046 4.304.04 5.338-.02 1.122-.052 2.115-.309 2.933-1.13.818-.818 1.075-1.811 1.13-2.933l.02-.436c.046-1.422.04-4.301-.02-5.335-.052-1.122-.308-2.115-1.13-2.933-.818-.818-1.811-1.075-2.933-1.13l-.436-.02c-1.423-.046-4.304-.04-5.338.02zm2.889 1.211l1.018-.007c1.077-.005 2.434.022 3.107.288a2.362 2.362 0 011.33 1.33c.366.922.282 3.108.282 4.126l.008 1.319c-.002 1.018-.045 2.195-.29 2.807a2.362 2.362 0 01-1.33 1.33c-.921.366-3.107.282-4.125.282l-1.019.007c-1.077.005-2.434-.023-3.107-.288a2.362 2.362 0 01-1.33-1.33c-.366-.922-.282-3.108-.282-4.127l-.007-1.018c-.005-1.077.023-2.434.288-3.107a2.362 2.362 0 011.33-1.33c.922-.366 3.108-.282 4.127-.282zm0 2.149a3.583 3.583 0 00-3.59 3.588 3.583 3.583 0 003.59 3.59 3.583 3.583 0 003.588-3.59 3.583 3.583 0 00-3.588-3.588zm0 1.255a2.335 2.335 0 012.333 2.333 2.337 2.337 0 01-2.333 2.334 2.337 2.337 0 01-2.334-2.334 2.335 2.335 0 012.334-2.333zm3.735-2.239a.837.837 0 100 1.674.837.837 0 000-1.674z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--linkedin {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zM5.772 18.429v-8.59h2.672v8.59H5.772zM5.56 7.119a1.548 1.548 0 113.095 0 1.548 1.548 0 01-3.095 0zm10.214 11.31V14.25c0-.996-.02-2.278-1.386-2.278-1.39 0-1.604 1.085-1.604 2.206v4.25h-2.667v-8.59h2.559v1.174h.036c.358-.675 1.23-1.387 2.527-1.387 2.7 0 3.203 1.78 3.203 4.095v4.709h-2.668z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zM5.772 18.429v-8.59h2.672v8.59H5.772zM5.56 7.119a1.548 1.548 0 113.095 0 1.548 1.548 0 01-3.095 0zm10.214 11.31V14.25c0-.996-.02-2.278-1.386-2.278-1.39 0-1.604 1.085-1.604 2.206v4.25h-2.667v-8.59h2.559v1.174h.036c.358-.675 1.23-1.387 2.527-1.387 2.7 0 3.203 1.78 3.203 4.095v4.709h-2.668z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--rss {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19.0714286,3 C20.0854592,3 20.9172741,3.7835277 20.9941951,4.77790504 L21,4.92857143 L21,19.0714286 C21,20.0854592 20.2164723,20.9172741 19.222095,20.9941951 L19.0714286,21 L4.92857143,21 C3.91454082,21 3.08272595,20.2164723 3.00580487,19.222095 L3,19.0714286 L3,4.92857143 C3,3.91454082 3.7835277,3.08272595 4.77790504,3.00580487 L4.92857143,3 L19.0714286,3 Z M7,15 C5.8954305,15 5,15.8954305 5,17 C5,18.1045695 5.8954305,19 7,19 C8.1045695,19 9,18.1045695 9,17 C9,15.8954305 8.1045695,15 7,15 Z M5,9.5 L5,12 L5.24064975,12.004059 C8.91533222,12.1282025 11.8717975,15.0846678 11.995941,18.7593502 L12,19 L14.5,19 L14.4962236,18.7295213 C14.3555514,13.697747 10.302253,9.64444864 5.27047867,9.50377636 L5,9.5 Z M5,5 L5,7.5 L5.2922675,7.50364153 C11.4098083,7.65624559 16.3412304,12.5861648 16.4962422,18.7031076 L16.5,19 L19,19 L18.996578,18.687355 C18.8326359,11.2051357 12.7986365,5.16972457 5.31697569,5.00351759 L5,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19.0714286,3 C20.0854592,3 20.9172741,3.7835277 20.9941951,4.77790504 L21,4.92857143 L21,19.0714286 C21,20.0854592 20.2164723,20.9172741 19.222095,20.9941951 L19.0714286,21 L4.92857143,21 C3.91454082,21 3.08272595,20.2164723 3.00580487,19.222095 L3,19.0714286 L3,4.92857143 C3,3.91454082 3.7835277,3.08272595 4.77790504,3.00580487 L4.92857143,3 L19.0714286,3 Z M7,15 C5.8954305,15 5,15.8954305 5,17 C5,18.1045695 5.8954305,19 7,19 C8.1045695,19 9,18.1045695 9,17 C9,15.8954305 8.1045695,15 7,15 Z M5,9.5 L5,12 L5.24064975,12.004059 C8.91533222,12.1282025 11.8717975,15.0846678 11.995941,18.7593502 L12,19 L14.5,19 L14.4962236,18.7295213 C14.3555514,13.697747 10.302253,9.64444864 5.27047867,9.50377636 L5,9.5 Z M5,5 L5,7.5 L5.2922675,7.50364153 C11.4098083,7.65624559 16.3412304,12.5861648 16.4962422,18.7031076 L16.5,19 L19,19 L18.996578,18.687355 C18.8326359,11.2051357 12.7986365,5.16972457 5.31697569,5.00351759 L5,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--snapchat {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-.26 12.652c-.141.326-.728.563-1.8.731-.057.077-.101.394-.174.64-.044.148-.148.236-.325.236h-.008c-.25 0-.514-.116-1.037-.116-.707 0-.952.16-1.502.55-.583.414-1.141.768-1.977.732-.844.064-1.55-.45-1.949-.732-.554-.39-.795-.55-1.502-.55-.503 0-.82.124-1.037.124-.217 0-.301-.132-.333-.24-.073-.246-.117-.567-.173-.644-.555-.084-1.8-.3-1.828-.86a.284.284 0 01.237-.297c1.86-.305 2.696-2.214 2.732-2.294 0-.004.004-.008.008-.012.1-.2.12-.37.064-.502-.136-.318-.72-.43-.964-.53-.635-.25-.723-.539-.683-.736.064-.341.578-.554.88-.414.237.113.45.17.63.17a.563.563 0 00.266-.057c-.057-.96-.19-2.33.152-3.098.904-2.02 2.817-2.182 3.38-2.182l.269-.004c1.394 0 2.732.716 3.387 2.182.341.768.209 2.134.152 3.098a.505.505 0 00.23.056c.172-.008.369-.064.59-.169a.734.734 0 01.546 0c.254.093.414.274.418.479.004.26-.229.486-.69.666-.057.025-.125.045-.198.069-.26.084-.659.209-.763.462-.056.132-.032.301.064.502.004.004.004.008.008.012.036.08.872 1.989 2.732 2.294.161.04.286.221.197.434z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-.26 12.652c-.141.326-.728.563-1.8.731-.057.077-.101.394-.174.64-.044.148-.148.236-.325.236h-.008c-.25 0-.514-.116-1.037-.116-.707 0-.952.16-1.502.55-.583.414-1.141.768-1.977.732-.844.064-1.55-.45-1.949-.732-.554-.39-.795-.55-1.502-.55-.503 0-.82.124-1.037.124-.217 0-.301-.132-.333-.24-.073-.246-.117-.567-.173-.644-.555-.084-1.8-.3-1.828-.86a.284.284 0 01.237-.297c1.86-.305 2.696-2.214 2.732-2.294 0-.004.004-.008.008-.012.1-.2.12-.37.064-.502-.136-.318-.72-.43-.964-.53-.635-.25-.723-.539-.683-.736.064-.341.578-.554.88-.414.237.113.45.17.63.17a.563.563 0 00.266-.057c-.057-.96-.19-2.33.152-3.098.904-2.02 2.817-2.182 3.38-2.182l.269-.004c1.394 0 2.732.716 3.387 2.182.341.768.209 2.134.152 3.098a.505.505 0 00.23.056c.172-.008.369-.064.59-.169a.734.734 0 01.546 0c.254.093.414.274.418.479.004.26-.229.486-.69.666-.057.025-.125.045-.198.069-.26.084-.659.209-.763.462-.056.132-.032.301.064.502.004.004.004.008.008.012.036.08.872 1.989 2.732 2.294.161.04.286.221.197.434z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--tiktok {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-1.926 7.853a3.21 3.21 0 01-2.982-1.437v4.944a3.654 3.654 0 11-3.654-3.654c.076 0 .15.007.225.011v1.801c-.075-.009-.148-.023-.225-.023a1.865 1.865 0 000 3.73c1.03 0 1.94-.811 1.94-1.841l.018-8.398h1.723a3.21 3.21 0 002.957 2.865v2.002' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-1.926 7.853a3.21 3.21 0 01-2.982-1.437v4.944a3.654 3.654 0 11-3.654-3.654c.076 0 .15.007.225.011v1.801c-.075-.009-.148-.023-.225-.023a1.865 1.865 0 000 3.73c1.03 0 1.94-.811 1.94-1.841l.018-8.398h1.723a3.21 3.21 0 002.957 2.865v2.002' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--twitch {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zM19 5H8.708L6 7.708v9.75h3.25v2.709l2.708-2.709h2.167L19 12.583V5zm-1.083 1.083v5.959l-2.167 2.166h-2.167l-1.896 1.896v-1.896H9.25V6.083h8.667zM16.292 7.98h-1.084v3.25h1.084V7.98zm-2.98 0H12.23v3.25h1.084V7.98z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zM19 5H8.708L6 7.708v9.75h3.25v2.709l2.708-2.709h2.167L19 12.583V5zm-1.083 1.083v5.959l-2.167 2.166h-2.167l-1.896 1.896v-1.896H9.25V6.083h8.667zM16.292 7.98h-1.084v3.25h1.084V7.98zm-2.98 0H12.23v3.25h1.084V7.98z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--twitter {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-4.38 3.437a2.868 2.868 0 00-2.869 2.869c0 .222.027.444.071.657a8.156 8.156 0 01-5.916-3.002c-.249.426-.39.915-.39 1.448 0 .995.506 1.874 1.278 2.39a2.888 2.888 0 01-1.13-.279l-.167-.086v.036a2.87 2.87 0 002.301 2.816c-.24.062-.497.097-.755.097-.186 0-.364-.018-.542-.044a2.874 2.874 0 002.683 1.99 5.746 5.746 0 01-3.562 1.226c-.24 0-.462-.01-.693-.036a8.108 8.108 0 004.406 1.288c5.277 0 8.164-4.37 8.164-8.164 0-.124 0-.248-.01-.373A6.168 6.168 0 0019 7.787a5.752 5.752 0 01-1.652.444 2.862 2.862 0 001.261-1.581 5.65 5.65 0 01-1.821.693 2.862 2.862 0 00-2.096-.906z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-4.38 3.437a2.868 2.868 0 00-2.869 2.869c0 .222.027.444.071.657a8.156 8.156 0 01-5.916-3.002c-.249.426-.39.915-.39 1.448 0 .995.506 1.874 1.278 2.39a2.888 2.888 0 01-1.13-.279l-.167-.086v.036a2.87 2.87 0 002.301 2.816c-.24.062-.497.097-.755.097-.186 0-.364-.018-.542-.044a2.874 2.874 0 002.683 1.99 5.746 5.746 0 01-3.562 1.226c-.24 0-.462-.01-.693-.036a8.108 8.108 0 004.406 1.288c5.277 0 8.164-4.37 8.164-8.164 0-.124 0-.248-.01-.373A6.168 6.168 0 0019 7.787a5.752 5.752 0 01-1.652.444 2.862 2.862 0 001.261-1.581 5.65 5.65 0 01-1.821.693 2.862 2.862 0 00-2.096-.906z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--vimeo {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-.65 6.01c-.057 1.25-.933 2.966-2.624 5.14-1.748 2.27-3.226 3.407-4.436 3.407-.751 0-1.382-.691-1.9-2.074-1.013-3.708-1.443-5.882-2.278-5.882-.097 0-.434.201-1.009.607l-.603-.78C7.054 8.128 8.468 6.68 9.352 6.6c1-.096 1.615.587 1.848 2.053.824 5.207 1.19 5.995 2.684 3.636.539-.851.828-1.494.864-1.94.137-1.318-1.028-1.23-1.816-.892.63-2.07 1.84-3.074 3.62-3.018 1.322.04 1.945.9 1.869 2.572z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-.65 6.01c-.057 1.25-.933 2.966-2.624 5.14-1.748 2.27-3.226 3.407-4.436 3.407-.751 0-1.382-.691-1.9-2.074-1.013-3.708-1.443-5.882-2.278-5.882-.097 0-.434.201-1.009.607l-.603-.78C7.054 8.128 8.468 6.68 9.352 6.6c1-.096 1.615.587 1.848 2.053.824 5.207 1.19 5.995 2.684 3.636.539-.851.828-1.494.864-1.94.137-1.318-1.028-1.23-1.816-.892.63-2.07 1.84-3.074 3.62-3.018 1.322.04 1.945.9 1.869 2.572z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--whatsapp {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M19.0714286,3 C20.0854592,3 20.9172741,3.7835277 20.9941951,4.77790504 L21,4.92857143 L21,19.0714286 C21,20.0854592 20.2164723,20.9172741 19.222095,20.9941951 L19.0714286,21 L4.92857143,21 C3.91454082,21 3.08272595,20.2164723 3.00580487,19.222095 L3,19.0714286 L3,4.92857143 C3,3.91454082 3.7835277,3.08272595 4.77790504,3.00580487 L4.92857143,3 L19.0714286,3 Z M11.9731935,6 C8.70535645,6 6.02678569,8.67856935 6.02678569,11.9464355 C6.02678569,12.9285847 6.27436767,13.8656841 6.70763528,14.6959023 L6.83035645,14.919629 L6,18 L9.13393065,17.1964355 L9.37695315,17.3159173 C10.1934002,17.6982881 11.0722258,17.919629 11.9731935,17.919629 C15.267871,17.919629 18,15.2410645 18,11.9731935 C18,10.3660694 17.3035645,8.89285645 16.1785645,7.76785645 C15.080371,6.64285645 13.580371,6 11.9731935,6 Z M10.2235081,9.21413996 C10.2973237,9.21774048 10.3738973,9.2447742 10.4616719,9.40500049 L10.5,9.48214355 L10.5690722,9.66021913 L10.955371,10.5803565 C10.982129,10.6607129 11.0089355,10.7410694 10.955371,10.8481935 C10.8839383,10.9981935 10.8086972,11.1062908 10.7398061,11.1892463 L10.6894872,11.2470108 L10.5998026,11.3405407 L10.5310713,11.4152145 C10.4753564,11.4846503 10.4625,11.5446581 10.5267871,11.6518065 C11.0767845,12.5768 11.6034462,12.9417815 12.3898956,13.3347734 L12.6253759,13.4511315 C12.7042504,13.4818887 12.7652684,13.4689863 12.8322289,13.4283241 L12.8839355,13.392871 L13.2279366,12.9602191 L13.3108814,12.8472687 C13.3220529,12.8310194 13.3316513,12.8163203 13.3393065,12.8035645 C13.4330444,12.6629577 13.5267823,12.6658684 13.6384775,12.7046772 L13.6874986,12.7231935 L14.0573567,12.8929339 L14.705371,13.205371 L14.8497983,13.2829235 C14.8965623,13.3075126 14.9335593,13.3299383 14.9559082,13.3599582 L14.9731935,13.392871 L14.9889687,13.419397 C15.0251529,13.5125705 15.0119247,13.7797581 14.892871,14.0893065 C14.7700968,14.4084839 14.2646845,14.7051771 13.9750101,14.77302 L13.7130642,14.8114298 C13.309629,14.8517849 12.919629,14.7821581 12.107129,14.4106935 C11.5821341,14.1857056 11.1227622,13.8557135 10.7439439,13.5183352 L10.5865685,13.3735769 L10.3559364,13.1443446 L10.1522936,12.9241627 L10.0609276,12.8196515 L10.0609276,12.8196515 L9.97671008,12.7200257 L9.83025551,12.5389279 L9.5625,12.1875 L9.47035726,12.0567917 L9.37400789,11.9037776 C9.1994043,11.6101285 8.9732129,11.1339339 8.9732129,10.6339306 C8.9732129,10.1332414 9.15294663,9.81228828 9.30799235,9.60885404 L9.35847947,9.54530984 L9.48214355,9.4017871 C9.5969371,9.26402903 9.73141452,9.22467255 9.83496623,9.21623923 L9.88393065,9.2142871 L10.2235081,9.21413996 Z' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M19.0714286,3 C20.0854592,3 20.9172741,3.7835277 20.9941951,4.77790504 L21,4.92857143 L21,19.0714286 C21,20.0854592 20.2164723,20.9172741 19.222095,20.9941951 L19.0714286,21 L4.92857143,21 C3.91454082,21 3.08272595,20.2164723 3.00580487,19.222095 L3,19.0714286 L3,4.92857143 C3,3.91454082 3.7835277,3.08272595 4.77790504,3.00580487 L4.92857143,3 L19.0714286,3 Z M11.9731935,6 C8.70535645,6 6.02678569,8.67856935 6.02678569,11.9464355 C6.02678569,12.9285847 6.27436767,13.8656841 6.70763528,14.6959023 L6.83035645,14.919629 L6,18 L9.13393065,17.1964355 L9.37695315,17.3159173 C10.1934002,17.6982881 11.0722258,17.919629 11.9731935,17.919629 C15.267871,17.919629 18,15.2410645 18,11.9731935 C18,10.3660694 17.3035645,8.89285645 16.1785645,7.76785645 C15.080371,6.64285645 13.580371,6 11.9731935,6 Z M10.2235081,9.21413996 C10.2973237,9.21774048 10.3738973,9.2447742 10.4616719,9.40500049 L10.5,9.48214355 L10.5690722,9.66021913 L10.955371,10.5803565 C10.982129,10.6607129 11.0089355,10.7410694 10.955371,10.8481935 C10.8839383,10.9981935 10.8086972,11.1062908 10.7398061,11.1892463 L10.6894872,11.2470108 L10.5998026,11.3405407 L10.5310713,11.4152145 C10.4753564,11.4846503 10.4625,11.5446581 10.5267871,11.6518065 C11.0767845,12.5768 11.6034462,12.9417815 12.3898956,13.3347734 L12.6253759,13.4511315 C12.7042504,13.4818887 12.7652684,13.4689863 12.8322289,13.4283241 L12.8839355,13.392871 L13.2279366,12.9602191 L13.3108814,12.8472687 C13.3220529,12.8310194 13.3316513,12.8163203 13.3393065,12.8035645 C13.4330444,12.6629577 13.5267823,12.6658684 13.6384775,12.7046772 L13.6874986,12.7231935 L14.0573567,12.8929339 L14.705371,13.205371 L14.8497983,13.2829235 C14.8965623,13.3075126 14.9335593,13.3299383 14.9559082,13.3599582 L14.9731935,13.392871 L14.9889687,13.419397 C15.0251529,13.5125705 15.0119247,13.7797581 14.892871,14.0893065 C14.7700968,14.4084839 14.2646845,14.7051771 13.9750101,14.77302 L13.7130642,14.8114298 C13.309629,14.8517849 12.919629,14.7821581 12.107129,14.4106935 C11.5821341,14.1857056 11.1227622,13.8557135 10.7439439,13.5183352 L10.5865685,13.3735769 L10.3559364,13.1443446 L10.1522936,12.9241627 L10.0609276,12.8196515 L10.0609276,12.8196515 L9.97671008,12.7200257 L9.83025551,12.5389279 L9.5625,12.1875 L9.47035726,12.0567917 L9.37400789,11.9037776 C9.1994043,11.6101285 8.9732129,11.1339339 8.9732129,10.6339306 C8.9732129,10.1332414 9.15294663,9.81228828 9.30799235,9.60885404 L9.35847947,9.54530984 L9.48214355,9.4017871 C9.5969371,9.26402903 9.73141452,9.22467255 9.83496623,9.21623923 L9.88393065,9.2142871 L10.2235081,9.21413996 Z' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--yle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zM5.781 9.207h-.347l-.089.005C5.122 9.241 5 9.383 5 9.62c0 .14.032.337.1.616l.038.147.986 3.516.04.136c.176.523.49.771 1.025.806l.138.005h.396l-.106.522a4.166 4.166 0 01-.081.326c-.181.562-.461.681-.943.681-.285 0-.5-.016-.668-.033l-.183-.02c-.114-.013-.206-.024-.29-.024-.198 0-.322.105-.35.29l-.006.085v.232l.006.091c.024.161.11.236.208.286l.06.027c.235.107.53.165 1.416.165.888 0 1.548-.476 1.763-1.276l.278-1.08 1.207-4.967c.036-.155.084-.393.084-.53 0-.22-.125-.372-.325-.407l-.09-.007h-.328l-.08.004c-.204.024-.315.147-.398.441l-.03.119-.928 4.034h-.207l-.08-.002c-.228-.014-.346-.096-.44-.396l-.035-.123-.962-3.644c-.057-.207-.13-.388-.346-.426l-.088-.007zm10.879-.155c-1.742 0-2.52.95-2.52 3.08 0 2.077.725 2.849 2.675 2.849.87 0 1.441-.12 1.664-.22.122-.053.242-.12.27-.315l.006-.092v-.212l-.006-.085c-.028-.186-.152-.29-.35-.29a.951.951 0 00-.167.017l-.337.062c-.193.03-.458.056-.849.056-1.404 0-1.629-.243-1.681-1.331l-.006-.14h2.763l.135-.005c.56-.038.743-.317.743-.721l-.004-.23c-.039-1.095-.394-2.423-2.336-2.423zM12.138 6.25h-.83c-.137 0-.479 0-.54.296l-.01.098v.368l.003.04c.012.142.098.335.466.369l.119.005h.204v6.909l.002.096c.013.277.092.438.37.468l.1.005h.271l.095-.006c.261-.032.34-.206.355-.463l.003-.1V7.05c-.01-.418-.087-.8-.608-.8zm4.543 3.725c.803 0 1.152.447 1.211 1.312l.008.168-2.52.002.011-.177c.077-.912.474-1.305 1.29-1.305z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zM5.781 9.207h-.347l-.089.005C5.122 9.241 5 9.383 5 9.62c0 .14.032.337.1.616l.038.147.986 3.516.04.136c.176.523.49.771 1.025.806l.138.005h.396l-.106.522a4.166 4.166 0 01-.081.326c-.181.562-.461.681-.943.681-.285 0-.5-.016-.668-.033l-.183-.02c-.114-.013-.206-.024-.29-.024-.198 0-.322.105-.35.29l-.006.085v.232l.006.091c.024.161.11.236.208.286l.06.027c.235.107.53.165 1.416.165.888 0 1.548-.476 1.763-1.276l.278-1.08 1.207-4.967c.036-.155.084-.393.084-.53 0-.22-.125-.372-.325-.407l-.09-.007h-.328l-.08.004c-.204.024-.315.147-.398.441l-.03.119-.928 4.034h-.207l-.08-.002c-.228-.014-.346-.096-.44-.396l-.035-.123-.962-3.644c-.057-.207-.13-.388-.346-.426l-.088-.007zm10.879-.155c-1.742 0-2.52.95-2.52 3.08 0 2.077.725 2.849 2.675 2.849.87 0 1.441-.12 1.664-.22.122-.053.242-.12.27-.315l.006-.092v-.212l-.006-.085c-.028-.186-.152-.29-.35-.29a.951.951 0 00-.167.017l-.337.062c-.193.03-.458.056-.849.056-1.404 0-1.629-.243-1.681-1.331l-.006-.14h2.763l.135-.005c.56-.038.743-.317.743-.721l-.004-.23c-.039-1.095-.394-2.423-2.336-2.423zM12.138 6.25h-.83c-.137 0-.479 0-.54.296l-.01.098v.368l.003.04c.012.142.098.335.466.369l.119.005h.204v6.909l.002.096c.013.277.092.438.37.468l.1.005h.271l.095-.006c.261-.032.34-.206.355-.463l.003-.1V7.05c-.01-.418-.087-.8-.608-.8zm4.543 3.725c.803 0 1.152.447 1.211 1.312l.008.168-2.52.002.011-.177c.077-.912.474-1.305 1.29-1.305z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--youtube {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-6.605 4.002L11.708 7c-.997.006-4.258.045-5.179.292a1.755 1.755 0 00-1.238 1.24c-.226.848-.278 2.41-.289 3.07v.615c.011.66.063 2.222.29 3.07a1.73 1.73 0 001.237 1.22c.834.224 3.586.277 4.839.29h1.263c1.253-.013 4.004-.066 4.839-.29a1.73 1.73 0 001.237-1.22c.164-.613.236-1.599.268-2.347L19 11.817c-.003-.438-.034-2.322-.292-3.284a1.755 1.755 0 00-1.237-1.24c-.873-.235-3.846-.282-5.004-.291zM10.6 9.799l3.5 2.1-3.5 2.1V9.8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-6.605 4.002L11.708 7c-.997.006-4.258.045-5.179.292a1.755 1.755 0 00-1.238 1.24c-.226.848-.278 2.41-.289 3.07v.615c.011.66.063 2.222.29 3.07a1.73 1.73 0 001.237 1.22c.834.224 3.586.277 4.839.29h1.263c1.253-.013 4.004-.066 4.839-.29a1.73 1.73 0 001.237-1.22c.164-.613.236-1.599.268-2.347L19 11.817c-.003-.438-.034-2.322-.292-3.284a1.755 1.755 0 00-1.237-1.24c-.873-.235-3.846-.282-5.004-.291zM10.6 9.799l3.5 2.1-3.5 2.1V9.8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n/* UI */\n.hds-icon--alert-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 12v2h-2v-2h2zm0-10v8h-2V6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 12v2h-2v-2h2zm0-10v8h-2V6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--angle-down {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M12 13.5l5-5 1.5 1.5-6.5 6.5L5.5 10 7 8.5z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M12 13.5l5-5 1.5 1.5-6.5 6.5L5.5 10 7 8.5z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--angle-left {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='24 0 24 24 0 24 0 0'/%3E %3Cpolygon fill='currentColor' points='10.5 12 15.5 17 14 18.5 7.5 12 14 5.5 15.5 7'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='24 0 24 24 0 24 0 0'/%3E %3Cpolygon fill='currentColor' points='10.5 12 15.5 17 14 18.5 7.5 12 14 5.5 15.5 7'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--angle-right {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpolygon fill='currentColor' points='13.5 12 8.5 7 10 5.5 16.5 12 10 18.5 8.5 17'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpolygon fill='currentColor' points='13.5 12 8.5 7 10 5.5 16.5 12 10 18.5 8.5 17'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--angle-up {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 24h24V0H0z'/%3E%3Cpath fill='currentColor' d='M12 11.5l5 5 1.5-1.5L12 8.5 5.5 15 7 16.5z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 24h24V0H0z'/%3E%3Cpath fill='currentColor' d='M12 11.5l5 5 1.5-1.5L12 8.5 5.5 15 7 16.5z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--arrow-bottom-left {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='6.001 17.999 15.001 17.999 15.001 15.999 9.447 15.998 18.016 7.431 16.602 6.016 8.001 14.616 8.001 8.999 6.001 8.999'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='6.001 17.999 15.001 17.999 15.001 15.999 9.447 15.998 18.016 7.431 16.602 6.016 8.001 14.616 8.001 8.999 6.001 8.999'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--arrow-bottom-right {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18.016 17.999 9.016 17.999 9.016 15.999 14.57 15.998 6.001 7.431 7.416 6.016 16.016 14.616 16.016 8.999 18.016 8.999'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18.016 17.999 9.016 17.999 9.016 15.999 14.57 15.998 6.001 7.431 7.416 6.016 16.016 14.616 16.016 8.999 18.016 8.999'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--arrow-down {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M13 4v12.5l4-4 1.5 1.5-6.5 6.5L5.5 14 7 12.5l4 4V4z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M13 4v12.5l4-4 1.5 1.5-6.5 6.5L5.5 14 7 12.5l4 4V4z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--arrow-left {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='10 5.5 11.5 7 7.5 11 20 11 20 13 7.5 13 11.5 17 10 18.5 3.5 12'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='10 5.5 11.5 7 7.5 11 20 11 20 13 7.5 13 11.5 17 10 18.5 3.5 12'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--arrow-redo {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M10,10 C7.790861,10 6,11.790861 6,14 C6,16.209139 7.790861,18 10,18 L14,18 L14,20 L9.96363636,20 L9.81199973,19.9980989 C6.58689824,19.9171471 4,17.261126 4,14 C4,10.738874 6.58689824,8.08285293 9.81199973,8.00190107 L15.5,8 L12,4.5 L13.5,3 L19.5,9 L13.5,15 L12,13.5 L15.5,10 L10,10 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M10,10 C7.790861,10 6,11.790861 6,14 C6,16.209139 7.790861,18 10,18 L14,18 L14,20 L9.96363636,20 L9.81199973,19.9980989 C6.58689824,19.9171471 4,17.261126 4,14 C4,10.738874 6.58689824,8.08285293 9.81199973,8.00190107 L15.5,8 L12,4.5 L13.5,3 L19.5,9 L13.5,15 L12,13.5 L15.5,10 L10,10 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--arrow-right {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='10.5 5.5 12 7 8 11 20.5 11 20.5 13 8 13 12 17 10.5 18.5 4 12' transform='matrix(-1 0 0 1 24.5 0)'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='10.5 5.5 12 7 8 11 20.5 11 20.5 13 8 13 12 17 10.5 18.5 4 12' transform='matrix(-1 0 0 1 24.5 0)'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--arrow-top-left {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='6.018 6 6.018 15 8.018 15 8.018 9.446 16.586 18.015 18 16.601 9.4 8 15.018 8 15.018 6'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='6.018 6 6.018 15 8.018 15 8.018 9.446 16.586 18.015 18 16.601 9.4 8 15.018 8 15.018 6'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--arrow-top-right {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18 6 18 15 16 15 16 9.446 7.432 18.015 6.018 16.601 14.618 8 9 8 9 6'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18 6 18 15 16 15 16 9.446 7.432 18.015 6.018 16.601 14.618 8 9 8 9 6'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--arrow-undo {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M14,10 C16.209139,10 18,11.790861 18,14 C18,16.209139 16.209139,18 14,18 L10,18 L10,20 L14.0363636,20 L14.1880003,19.9980989 C17.4131018,19.9171471 20,17.261126 20,14 C20,10.738874 17.4131018,8.08285293 14.1880003,8.00190107 L8.5,8 L12,4.5 L10.5,3 L4.5,9 L10.5,15 L12,13.5 L8.5,10 L14,10 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M14,10 C16.209139,10 18,11.790861 18,14 C18,16.209139 16.209139,18 14,18 L10,18 L10,20 L14.0363636,20 L14.1880003,19.9980989 C17.4131018,19.9171471 20,17.261126 20,14 C20,10.738874 17.4131018,8.08285293 14.1880003,8.00190107 L8.5,8 L12,4.5 L10.5,3 L4.5,9 L10.5,15 L12,13.5 L8.5,10 L14,10 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--arrow-up {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='12 3.5 18.5 10 17 11.5 13 7.5 13 20 11 20 11 7.5 7 11.5 5.5 10'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='12 3.5 18.5 10 17 11.5 13 7.5 13 20 11 20 11 7.5 7 11.5 5.5 10'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--bell-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 9.534V11l.002.2c.017.827.147 1.164.55 1.655l.341.405c.732.906 1.067 1.805 1.104 3.427L20 17v2h-5a3 3 0 01-5.995.176L9 19h-.466l2-2H18l-.002-.244c-.015-.842-.11-1.334-.333-1.756h-5.131l2-2 1.78.001c-.17-.42-.267-.889-.3-1.48L18 9.535zm1.793-6.741l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM13 19h-2a1 1 0 001.993.117L13 19zM12 2c1.776 0 3.371.771 4.47 1.997l-1.418 1.417A4 4 0 008.005 7.8L8 8v3c0 .677-.061 1.205-.196 1.665L4.01 16.453c.063-1.476.4-2.332 1.096-3.193l.235-.279c.486-.564.638-.885.656-1.78L6 8a6 6 0 016-6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 9.534V11l.002.2c.017.827.147 1.164.55 1.655l.341.405c.732.906 1.067 1.805 1.104 3.427L20 17v2h-5a3 3 0 01-5.995.176L9 19h-.466l2-2H18l-.002-.244c-.015-.842-.11-1.334-.333-1.756h-5.131l2-2 1.78.001c-.17-.42-.267-.889-.3-1.48L18 9.535zm1.793-6.741l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM13 19h-2a1 1 0 001.993.117L13 19zM12 2c1.776 0 3.371.771 4.47 1.997l-1.418 1.417A4 4 0 008.005 7.8L8 8v3c0 .677-.061 1.205-.196 1.665L4.01 16.453c.063-1.476.4-2.332 1.096-3.193l.235-.279c.486-.564.638-.885.656-1.78L6 8a6 6 0 016-6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--bell {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 17l-.002-.244c-.015-.842-.11-1.334-.333-1.756H6.335c-.223.422-.318.914-.333 1.756L6 17h12zm-5 2h-2a1 1 0 001.993.117L13 19zM12 4a4 4 0 00-3.995 3.8L8 8v3c0 .848-.096 1.464-.314 2.001h8.628c-.194-.478-.291-1.017-.31-1.727L16 11V8a4 4 0 00-4-4zm-6.893 9.26l.235-.279c.486-.564.638-.885.656-1.78L6 11V8a6 6 0 0111.996-.225L18 8l.002 3.2c.017.827.147 1.164.55 1.655l.341.405c.732.906 1.067 1.805 1.104 3.427L20 17v2h-5a3 3 0 01-5.995.176L9 19H4v-2c0-1.822.33-2.778 1.107-3.74z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 17l-.002-.244c-.015-.842-.11-1.334-.333-1.756H6.335c-.223.422-.318.914-.333 1.756L6 17h12zm-5 2h-2a1 1 0 001.993.117L13 19zM12 4a4 4 0 00-3.995 3.8L8 8v3c0 .848-.096 1.464-.314 2.001h8.628c-.194-.478-.291-1.017-.31-1.727L16 11V8a4 4 0 00-4-4zm-6.893 9.26l.235-.279c.486-.564.638-.885.656-1.78L6 11V8a6 6 0 0111.996-.225L18 8l.002 3.2c.017.827.147 1.164.55 1.655l.341.405c.732.906 1.067 1.805 1.104 3.427L20 17v2h-5a3 3 0 01-5.995.176L9 19H4v-2c0-1.822.33-2.778 1.107-3.74z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--calendar-clock {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 12a6 6 0 110 12 6 6 0 010-12zm0 2a4 4 0 100 8 4 4 0 000-8zm0-12a1 1 0 011 1v1h4l.002 9.103A7.018 7.018 0 0020 11.674L20 11H4v8l6.071.001a6.95 6.95 0 00.603 2L2 21V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm.5 13v2.94l1.53 1.53-1.06 1.06L16 18.56V15h1.5zM20 6H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 12a6 6 0 110 12 6 6 0 010-12zm0 2a4 4 0 100 8 4 4 0 000-8zm0-12a1 1 0 011 1v1h4l.002 9.103A7.018 7.018 0 0020 11.674L20 11H4v8l6.071.001a6.95 6.95 0 00.603 2L2 21V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm.5 13v2.94l1.53 1.53-1.06 1.06L16 18.56V15h1.5zM20 6H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--calendar-cross {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,13 L20,13 L20,11 L4,11 L4,19 L13.5,19 L13.5,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z M22.5355339,16.4142136 L20.5,18.5 L22.5,20.5 L21,22 L19,20 L17,22 L15.4644661,20.6568542 L17.5,18.5 L15.5,16.5 L17,15 L19,17 L21,15 L22.5355339,16.4142136 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,13 L20,13 L20,11 L4,11 L4,19 L13.5,19 L13.5,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z M22.5355339,16.4142136 L20.5,18.5 L22.5,20.5 L21,22 L19,20 L17,22 L15.4644661,20.6568542 L17.5,18.5 L15.5,16.5 L17,15 L19,17 L21,15 L22.5355339,16.4142136 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--calendar-plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20 14v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM17 2a1 1 0 011 1v1h4v8h-2v-1H4v8h9v2H2V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm3 4H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20 14v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM17 2a1 1 0 011 1v1h4v8h-2v-1H4v8h9v2H2V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm3 4H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--calendar {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 2a1 1 0 011 1v1h4v17H2V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm3 9H4v8h16v-8zm0-5H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 2a1 1 0 011 1v1h4v17H2V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm3 9H4v8h16v-8zm0-5H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--camera {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 3c1.093 0 1.707.327 2.538 1.127l.297.292c.442.43.661.558 1.045.578L18 5h1a4 4 0 013.995 3.8L23 9v7a4 4 0 01-3.8 3.995L19 20H5a4 4 0 01-3.995-3.8L1 16V9a4 4 0 013.8-3.995L5 5h1c.462 0 .68-.109 1.165-.581l.297-.292c.776-.747 1.362-1.081 2.326-1.123L10 3h4zm0 2h-4c-.462 0-.68.109-1.165.581l-.297.292c-.776.747-1.362 1.081-2.326 1.123L6 7H5a2 2 0 00-1.995 1.85L3 9v7a2 2 0 001.85 1.995L5 18h14a2 2 0 001.995-1.85L21 16V9a2 2 0 00-1.85-1.995L19 7h-1c-1.093 0-1.707-.327-2.538-1.127l-.297-.292c-.442-.43-.661-.558-1.045-.578L14 5zm-2 2a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6zm7-1a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 3c1.093 0 1.707.327 2.538 1.127l.297.292c.442.43.661.558 1.045.578L18 5h1a4 4 0 013.995 3.8L23 9v7a4 4 0 01-3.8 3.995L19 20H5a4 4 0 01-3.995-3.8L1 16V9a4 4 0 013.8-3.995L5 5h1c.462 0 .68-.109 1.165-.581l.297-.292c.776-.747 1.362-1.081 2.326-1.123L10 3h4zm0 2h-4c-.462 0-.68.109-1.165.581l-.297.292c-.776.747-1.362 1.081-2.326 1.123L6 7H5a2 2 0 00-1.995 1.85L3 9v7a2 2 0 001.85 1.995L5 18h14a2 2 0 001.995-1.85L21 16V9a2 2 0 00-1.85-1.995L19 7h-1c-1.093 0-1.707-.327-2.538-1.127l-.297-.292c-.442-.43-.661-.558-1.045-.578L14 5zm-2 2a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6zm7-1a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--check {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='21 7 10 18 4.5 12.5 6 11 10 15 19.5 5.5'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='21 7 10 18 4.5 12.5 6 11 10 15 19.5 5.5'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--clock-cross {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,12.1680222 21.9958561,12.3350766 21.9876649,12.5010665 L19.9845993,12.500482 C19.994816,12.3349662 20,12.1680885 20,12 C20,7.581722 16.418278,4 12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C12.3389895,20 12.6730544,19.9789157 13.0009551,19.9379871 L13.0010997,21.9505155 C12.6718374,21.9832433 12.3378756,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M20.5,14.5 L22,16 L20,18 C20.8902438,18.87157 21.5569105,19.5382367 22,20 C22.4430895,20.4617633 22.4549342,20.5022034 22.0355339,20.1213203 L20.5,21.5 L18.5,19.5 L16.5,21.5 L15,20 L17,18 L15,16 L16.5,14.5 L18.5,16.5 L20.5,14.5 Z M13,6 L12.9992525,12.4137864 L12.7053593,12.706 L12.7071068,12.7071068 L9.17157288,16.2426407 L7.75735931,14.8284271 L10.9993593,11.584 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,12.1680222 21.9958561,12.3350766 21.9876649,12.5010665 L19.9845993,12.500482 C19.994816,12.3349662 20,12.1680885 20,12 C20,7.581722 16.418278,4 12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C12.3389895,20 12.6730544,19.9789157 13.0009551,19.9379871 L13.0010997,21.9505155 C12.6718374,21.9832433 12.3378756,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M20.5,14.5 L22,16 L20,18 C20.8902438,18.87157 21.5569105,19.5382367 22,20 C22.4430895,20.4617633 22.4549342,20.5022034 22.0355339,20.1213203 L20.5,21.5 L18.5,19.5 L16.5,21.5 L15,20 L17,18 L15,16 L16.5,14.5 L18.5,16.5 L20.5,14.5 Z M13,6 L12.9992525,12.4137864 L12.7053593,12.706 L12.7071068,12.7071068 L9.17157288,16.2426407 L7.75735931,14.8284271 L10.9993593,11.584 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--clock-plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10 0 .338-.017.672-.05 1.001h-2.012a8 8 0 10-6.937 6.937v2.013c-.33.032-.663.049-1.001.049-5.523 0-10-4.477-10-10S6.477 2 12 2zm7 12v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zm-6-8v6.414l-.295.292.002.001-3.535 3.536-1.415-1.415L11 11.584 11 6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10 0 .338-.017.672-.05 1.001h-2.012a8 8 0 10-6.937 6.937v2.013c-.33.032-.663.049-1.001.049-5.523 0-10-4.477-10-10S6.477 2 12 2zm7 12v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zm-6-8v6.414l-.295.292.002.001-3.535 3.536-1.415-1.415L11 11.584 11 6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--clock {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 2v5.584l3.243 3.244-1.415 1.415-3.535-3.536.002-.001-.294-.292L11 6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 2v5.584l3.243 3.244-1.415 1.415-3.535-3.536.002-.001-.294-.292L11 6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--coffee-cup-saucer {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,18 C19,19.1045695 18.1045695,20 17,20 L4,20 C2.8954305,20 2,19.1045695 2,18 L19,18 Z M16,5 C16.5522847,5 17,5.44771525 17,6 L19,6 C20.6568542,6 22,7.790861 22,10 C22,12.1302412 20.75108,13.8715478 19.1762728,13.9932097 L19,14 L16.8737865,14.0007613 C16.429479,15.7256022 14.8635652,17 13,17 L8,17 C5.790861,17 4,15.209139 4,13 L4,6 C4,5.44771525 4.44771525,5 5,5 L16,5 Z M17,12 L19,12 L19.0587576,11.9966049 C19.5836933,11.9357739 20,11.0651206 20,10 C20,8.8954305 19.5522847,8 19,8 L17,8 L17,12 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,18 C19,19.1045695 18.1045695,20 17,20 L4,20 C2.8954305,20 2,19.1045695 2,18 L19,18 Z M16,5 C16.5522847,5 17,5.44771525 17,6 L19,6 C20.6568542,6 22,7.790861 22,10 C22,12.1302412 20.75108,13.8715478 19.1762728,13.9932097 L19,14 L16.8737865,14.0007613 C16.429479,15.7256022 14.8635652,17 13,17 L8,17 C5.790861,17 4,15.209139 4,13 L4,6 C4,5.44771525 4.44771525,5 5,5 L16,5 Z M17,12 L19,12 L19.0587576,11.9966049 C19.5836933,11.9357739 20,11.0651206 20,10 C20,8.8954305 19.5522847,8 19,8 L17,8 L17,12 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--cogwheel {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.727 2c.964 0 1.783.502 2.146 1.335l.06.15.372 1.003c.041.167.163.29.329.331a.829.829 0 00.505-.013l.1-.042.826-.295c.831-.419 1.762-.381 2.408.14.864.62 1.184 1.676.856 2.678l-.057.157-.428.923a.567.567 0 000 .54c.07.14.162.232.32.324l.103.057 1.093.366c.826.277 1.47.965 1.602 1.756.19 1.02-.337 2-1.28 2.446l-.137.06-1.233.434a.446.446 0 00-.33.332.844.844 0 00.007.495l.038.09.425.855c.39.785.381 1.657-.048 2.3l-.091.124c-.637.899-1.706 1.243-2.66.872l-.142-.061-.993-.376a.557.557 0 00-.536 0c-.17.086-.288.197-.347.333l-.03.085-.308 1.056c-.312.815-1.001 1.397-1.865 1.52l-.164.019-.177.006a2.329 2.329 0 01-2.084-1.341l-.061-.145-.372-1.002a.446.446 0 00-.33-.331.826.826 0 00-.498.01l-.933.401c-.83.419-1.762.381-2.408-.14-.864-.62-1.183-1.676-.858-2.674l.057-.157.43-.988a.567.567 0 000-.54.735.735 0 00-.32-.324l-.102-.057-.911-.305a2.528 2.528 0 01-1.663-1.819c-.187-1.07.331-2.056 1.274-2.504l.138-.06.995-.374a.446.446 0 00.33-.332.844.844 0 00-.013-.509l-.042-.1-.29-.824c-.419-.774-.382-1.716.135-2.431.638-.899 1.707-1.243 2.67-.868l1.125.494a.557.557 0 00.537 0c.17-.086.287-.197.347-.333l.029-.085.307-1.05a2.372 2.372 0 011.959-1.594L11.727 2zm.002 1.75c-.23 0-.444.13-.546.361l-.032.092-.304 1.038a2.382 2.382 0 01-1.28 1.41 2.878 2.878 0 01-1.643.05l-.206-.061-.936-.474c-.304-.102-.583-.01-.68.099l-.025.036-.063.076c-.162.123-.228.349-.153.605l.035.098.486.98c.28.635.315 1.296.06 1.873-.238.54-.64.973-1.16 1.248l-.16.078-.924.371c-.273.079-.448.363-.448.643 0 .198.104.42.35.542l.1.04 1.03.306a2.37 2.37 0 011.393 1.27c.241.547.263 1.15.063 1.715l-.067.167-.477.96a.656.656 0 00.136.734c.175.177.374.253.63.13l.087-.049.98-.493a2.693 2.693 0 011.043-.197c.225 0 .396.032.79.132.526.177.97.61 1.262 1.183l.076.16.364.978c.06.184.162.29.3.347.1.041.193.052.34.052.23 0 .444-.13.546-.361l.033-.092.303-1.038a2.376 2.376 0 011.26-1.403 2.253 2.253 0 011.695-.067l.165.066.973.43c.196.099.367.072.563-.046l.155-.103.043-.062c.134-.21.17-.408.083-.622l-.532-1.072c-.255-.578-.306-1.177-.128-1.7l.06-.154c.176-.53.606-.978 1.175-1.272l.159-.076 1.134-.42c.298-.129.413-.32.413-.592a.525.525 0 00-.307-.494l-1.234-.394a2.37 2.37 0 01-1.392-1.27 2.301 2.301 0 01-.066-1.707l.065-.165.421-.97a.656.656 0 00-.135-.734c-.176-.176-.374-.252-.63-.13l-.088.05-.972.489c-.573.256-1.168.308-1.688.129l-.153-.061c-.525-.176-.97-.61-1.26-1.18l-.075-.158-.355-.894a.748.748 0 00-.652-.427zM12 8c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4zm0 1.75A2.257 2.257 0 009.75 12 2.257 2.257 0 0012 14.25 2.257 2.257 0 0014.25 12 2.257 2.257 0 0012 9.75z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.727 2c.964 0 1.783.502 2.146 1.335l.06.15.372 1.003c.041.167.163.29.329.331a.829.829 0 00.505-.013l.1-.042.826-.295c.831-.419 1.762-.381 2.408.14.864.62 1.184 1.676.856 2.678l-.057.157-.428.923a.567.567 0 000 .54c.07.14.162.232.32.324l.103.057 1.093.366c.826.277 1.47.965 1.602 1.756.19 1.02-.337 2-1.28 2.446l-.137.06-1.233.434a.446.446 0 00-.33.332.844.844 0 00.007.495l.038.09.425.855c.39.785.381 1.657-.048 2.3l-.091.124c-.637.899-1.706 1.243-2.66.872l-.142-.061-.993-.376a.557.557 0 00-.536 0c-.17.086-.288.197-.347.333l-.03.085-.308 1.056c-.312.815-1.001 1.397-1.865 1.52l-.164.019-.177.006a2.329 2.329 0 01-2.084-1.341l-.061-.145-.372-1.002a.446.446 0 00-.33-.331.826.826 0 00-.498.01l-.933.401c-.83.419-1.762.381-2.408-.14-.864-.62-1.183-1.676-.858-2.674l.057-.157.43-.988a.567.567 0 000-.54.735.735 0 00-.32-.324l-.102-.057-.911-.305a2.528 2.528 0 01-1.663-1.819c-.187-1.07.331-2.056 1.274-2.504l.138-.06.995-.374a.446.446 0 00.33-.332.844.844 0 00-.013-.509l-.042-.1-.29-.824c-.419-.774-.382-1.716.135-2.431.638-.899 1.707-1.243 2.67-.868l1.125.494a.557.557 0 00.537 0c.17-.086.287-.197.347-.333l.029-.085.307-1.05a2.372 2.372 0 011.959-1.594L11.727 2zm.002 1.75c-.23 0-.444.13-.546.361l-.032.092-.304 1.038a2.382 2.382 0 01-1.28 1.41 2.878 2.878 0 01-1.643.05l-.206-.061-.936-.474c-.304-.102-.583-.01-.68.099l-.025.036-.063.076c-.162.123-.228.349-.153.605l.035.098.486.98c.28.635.315 1.296.06 1.873-.238.54-.64.973-1.16 1.248l-.16.078-.924.371c-.273.079-.448.363-.448.643 0 .198.104.42.35.542l.1.04 1.03.306a2.37 2.37 0 011.393 1.27c.241.547.263 1.15.063 1.715l-.067.167-.477.96a.656.656 0 00.136.734c.175.177.374.253.63.13l.087-.049.98-.493a2.693 2.693 0 011.043-.197c.225 0 .396.032.79.132.526.177.97.61 1.262 1.183l.076.16.364.978c.06.184.162.29.3.347.1.041.193.052.34.052.23 0 .444-.13.546-.361l.033-.092.303-1.038a2.376 2.376 0 011.26-1.403 2.253 2.253 0 011.695-.067l.165.066.973.43c.196.099.367.072.563-.046l.155-.103.043-.062c.134-.21.17-.408.083-.622l-.532-1.072c-.255-.578-.306-1.177-.128-1.7l.06-.154c.176-.53.606-.978 1.175-1.272l.159-.076 1.134-.42c.298-.129.413-.32.413-.592a.525.525 0 00-.307-.494l-1.234-.394a2.37 2.37 0 01-1.392-1.27 2.301 2.301 0 01-.066-1.707l.065-.165.421-.97a.656.656 0 00-.135-.734c-.176-.176-.374-.252-.63-.13l-.088.05-.972.489c-.573.256-1.168.308-1.688.129l-.153-.061c-.525-.176-.97-.61-1.26-1.18l-.075-.158-.355-.894a.748.748 0 00-.652-.427zM12 8c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4zm0 1.75A2.257 2.257 0 009.75 12 2.257 2.257 0 0012 14.25 2.257 2.257 0 0014.25 12 2.257 2.257 0 0012 9.75z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--copy {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,10 L6,12 L5,12 L5,18 L12,18 L12,17 L14,17 L14,19 C14,19.5522847 13.5522847,20 13,20 L4,20 C3.44771525,20 3,19.5522847 3,19 L3,11 C3,10.4477153 3.44771525,10 4,10 L6,10 Z M20,4 C20.5522847,4 21,4.44771525 21,5 L21,15 C21,15.5522847 20.5522847,16 20,16 L8,16 C7.44771525,16 7,15.5522847 7,15 L7,5 C7,4.44771525 7.44771525,4 8,4 L20,4 Z M19,6 L9,6 L9,14 L19,14 L19,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,10 L6,12 L5,12 L5,18 L12,18 L12,17 L14,17 L14,19 C14,19.5522847 13.5522847,20 13,20 L4,20 C3.44771525,20 3,19.5522847 3,19 L3,11 C3,10.4477153 3.44771525,10 4,10 L6,10 Z M20,4 C20.5522847,4 21,4.44771525 21,5 L21,15 C21,15.5522847 20.5522847,16 20,16 L8,16 C7.44771525,16 7,15.5522847 7,15 L7,5 C7,4.44771525 7.44771525,4 8,4 L20,4 Z M19,6 L9,6 L9,14 L19,14 L19,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--cross-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 Z M15,7.5 L16.5,9 L13.5,12 L16.5,15 L15,16.5 L12,13.5 L9,16.5 L7.5,15 L10.5,12 L7.5,9 L9,7.5 L12,10.5 L15,7.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 Z M15,7.5 L16.5,9 L13.5,12 L16.5,15 L15,16.5 L12,13.5 L9,16.5 L7.5,15 L10.5,12 L7.5,9 L9,7.5 L12,10.5 L15,7.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--cross {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18 7.5 13.5 12 18 16.5 16.5 18 12 13.5 7.5 18 6 16.5 10.5 12 6 7.5 7.5 6 12 10.5 16.5 6'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18 7.5 13.5 12 18 16.5 16.5 18 12 13.5 7.5 18 6 16.5 10.5 12 6 7.5 7.5 6 12 10.5 16.5 6'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--customer-bot-negative {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M11.9999453,13 C10.4068883,13 9.10378439,13.8781142 9.00590222,14.9871454 L9.00590222,14.9871454 L9.003,15.028 L9,15.0286701 L9,17 L15,17 L15,15.0286701 C14.928069,13.8997398 13.6126059,13 11.9999453,13 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M11.9999453,13 C10.4068883,13 9.10378439,13.8781142 9.00590222,14.9871454 L9.00590222,14.9871454 L9.003,15.028 L9,15.0286701 L9,17 L15,17 L15,15.0286701 C14.928069,13.8997398 13.6126059,13 11.9999453,13 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--customer-bot-neutral {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M17,15.0286701 L7,15.0286701 L7,17 L17,17 L17,15.0286701 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M17,15.0286701 L7,15.0286701 L7,17 L17,17 L17,15.0286701 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--customer-bot-positive {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M15,14.0286701 L9,14.0286701 L9,16 C9.09367524,17.1150574 10.4007101,18 12.0000547,18 C13.5931117,18 14.8962156,17.1218858 14.9940978,16.0128546 L14.9940978,16.0128546 L14.995,15.9996701 L15,16 L15,14.0286701 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M15,14.0286701 L9,14.0286701 L9,16 C9.09367524,17.1150574 10.4007101,18 12.0000547,18 C13.5931117,18 14.8962156,17.1218858 14.9940978,16.0128546 L14.9940978,16.0128546 L14.995,15.9996701 L15,16 L15,14.0286701 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--display {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,18 C3.85780461,18 2.10892112,16.3160315 2.00489531,14.1996403 L2,14 L2,7 C2,4.85780461 3.68396847,3.10892112 5.80035966,3.00489531 L6,3 L18,3 C20.1421954,3 21.8910789,4.68396847 21.9951047,6.80035966 L22,7 L22,14 C22,16.1421954 20.3160315,17.8910789 18.1996403,17.9951047 L18,18 L13,18 C13,19.1045695 13.8954305,20 15,20 L18,20 L18,22 L6,22 L6,20 L9,20 C10.1045695,20 11,19.1045695 11,18 L6,18 Z M18,5 L6,5 C4.9456382,5 4.08183488,5.81587779 4.00548574,6.85073766 L4,7 L4,14 C4,15.0543618 4.81587779,15.9181651 5.85073766,15.9945143 L6,16 L18,16 C19.0543618,16 19.9181651,15.1841222 19.9945143,14.1492623 L20,14 L20,7 C20,5.9456382 19.1841222,5.08183488 18.1492623,5.00548574 L18,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,18 C3.85780461,18 2.10892112,16.3160315 2.00489531,14.1996403 L2,14 L2,7 C2,4.85780461 3.68396847,3.10892112 5.80035966,3.00489531 L6,3 L18,3 C20.1421954,3 21.8910789,4.68396847 21.9951047,6.80035966 L22,7 L22,14 C22,16.1421954 20.3160315,17.8910789 18.1996403,17.9951047 L18,18 L13,18 C13,19.1045695 13.8954305,20 15,20 L18,20 L18,22 L6,22 L6,20 L9,20 C10.1045695,20 11,19.1045695 11,18 L6,18 Z M18,5 L6,5 C4.9456382,5 4.08183488,5.81587779 4.00548574,6.85073766 L4,7 L4,14 C4,15.0543618 4.81587779,15.9181651 5.85073766,15.9945143 L6,16 L18,16 C19.0543618,16 19.9181651,15.1841222 19.9945143,14.1492623 L20,14 L20,7 C20,5.9456382 19.1841222,5.08183488 18.1492623,5.00548574 L18,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--document {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2 L20,7 L20,22 L4,22 L4,2 L15,2 Z M14,4 L14,8 L18,8 L14,4 Z M14.0082581,4 L18,8 L18,20 L6,20 L6,4 L14.0082581,4 Z M17,16 L7,16 L7,18 L17,18 L17,16 Z M17,12 L7,12 L7,14 L17,14 L17,12 Z M13,8 L7,8 L7,10 L13,10 L13,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2 L20,7 L20,22 L4,22 L4,2 L15,2 Z M14,4 L14,8 L18,8 L14,4 Z M14.0082581,4 L18,8 L18,20 L6,20 L6,4 L14.0082581,4 Z M17,16 L7,16 L7,18 L17,18 L17,16 Z M17,12 L7,12 L7,14 L17,14 L17,12 Z M13,8 L7,8 L7,10 L13,10 L13,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--download-cloud {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13,9 L13,19 L15,17 L16.5,18.5 L12,23 L7.5,18.5 L9,17 L11,19 L11,9 L13,9 Z M11.5,1 C14.0570069,1 16.3672564,2.55157482 17.2358321,4.93092178 L17.2835,5.0665 L17.4145183,5.08731097 C20.0449239,5.53520702 21.9316381,7.61876864 21.9981819,10.350367 L22,10.5 C22,13.6411668 19.7996323,15.9265021 16.7006468,15.998261 L15.5,16 L15.5,14 L16.55,14 C18.6163623,14 20,12.5942857 20,10.5 C20,8.538055 18.6018237,7.11877635 16.6000787,7.00507103 L16.4714957,6.99959367 L15.6755756,6.97689732 L15.5194193,6.19611614 C15.1395428,4.29673328 13.433695,3 11.5,3 C9.26285888,3 7.62213728,4.5585359 7.5065992,6.75063225 L7.50156899,6.88030287 L7.48772078,7.99175409 L6.33061979,8.0012438 C4.84064582,8.04438683 3.6,9.45296792 3.6,11.1 C3.6,12.6643787 4.83868693,13.9394465 6.38876321,13.9979059 L6.5,14 L8.5,14 L8.5,16 L6.5,16 C3.79380473,16 1.6,13.8061953 1.6,11.1 C1.6,8.68983052 3.25231852,6.56452435 5.49502278,6.09571076 L5.5645,6.082 L5.58684851,5.93675031 C6.05502185,3.09688845 8.36434526,1.06966277 11.3452237,1.00175907 L11.5,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13,9 L13,19 L15,17 L16.5,18.5 L12,23 L7.5,18.5 L9,17 L11,19 L11,9 L13,9 Z M11.5,1 C14.0570069,1 16.3672564,2.55157482 17.2358321,4.93092178 L17.2835,5.0665 L17.4145183,5.08731097 C20.0449239,5.53520702 21.9316381,7.61876864 21.9981819,10.350367 L22,10.5 C22,13.6411668 19.7996323,15.9265021 16.7006468,15.998261 L15.5,16 L15.5,14 L16.55,14 C18.6163623,14 20,12.5942857 20,10.5 C20,8.538055 18.6018237,7.11877635 16.6000787,7.00507103 L16.4714957,6.99959367 L15.6755756,6.97689732 L15.5194193,6.19611614 C15.1395428,4.29673328 13.433695,3 11.5,3 C9.26285888,3 7.62213728,4.5585359 7.5065992,6.75063225 L7.50156899,6.88030287 L7.48772078,7.99175409 L6.33061979,8.0012438 C4.84064582,8.04438683 3.6,9.45296792 3.6,11.1 C3.6,12.6643787 4.83868693,13.9394465 6.38876321,13.9979059 L6.5,14 L8.5,14 L8.5,16 L6.5,16 C3.79380473,16 1.6,13.8061953 1.6,11.1 C1.6,8.68983052 3.25231852,6.56452435 5.49502278,6.09571076 L5.5645,6.082 L5.58684851,5.93675031 C6.05502185,3.09688845 8.36434526,1.06966277 11.3452237,1.00175907 L11.5,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--download {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M5 15v5h14v-5h2v7H3v-7h2zm8-13v12.24L16.243 11l1.414 1.414L12 18.071l-5.657-5.657L7.757 11 11 14.242V2h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M5 15v5h14v-5h2v7H3v-7h2zm8-13v12.24L16.243 11l1.414 1.414L12 18.071l-5.657-5.657L7.757 11 11 14.242V2h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--envelope {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 4v16H2V4h20zm-7.862 9.436L12 15.338l-2.14-1.902L4.536 18h14.927l-5.325-4.564zM20 8.226l-4.353 3.869L20 15.826v-7.6zM4 8.227v7.598l4.352-3.73L4 8.227zM19.493 6H4.505L12 12.661 19.493 6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 4v16H2V4h20zm-7.862 9.436L12 15.338l-2.14-1.902L4.536 18h14.927l-5.325-4.564zM20 8.226l-4.353 3.869L20 15.826v-7.6zM4 8.227v7.598l4.352-3.73L4 8.227zM19.493 6H4.505L12 12.661 19.493 6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--error {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.128 2.51a1 1 0 011.7-.07l.044.07 9.562 17a1 1 0 01-.796 1.487l-.076.003H2.438a1 1 0 01-.906-1.423l.035-.067 9.562-17zM12 5.04L4.147 19h15.705L12 5.04zM13 16v2h-2v-2h2zm0-6.5v5h-2v-5h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.128 2.51a1 1 0 011.7-.07l.044.07 9.562 17a1 1 0 01-.796 1.487l-.076.003H2.438a1 1 0 01-.906-1.423l.035-.067 9.562-17zM12 5.04L4.147 19h15.705L12 5.04zM13 16v2h-2v-2h2zm0-6.5v5h-2v-5h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--event {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15.4553546,22.2312419 L15.5474929,21.4985553 L15.8597217,19.0199278 L14.1757404,17.2064174 L13.6741207,16.6711966 L14.3907164,16.5308966 L16.811751,16.0736222 L17.9890116,13.880781 L18.3370674,13.2312419 L18.6851232,13.880781 L19.8623705,16.0736222 L22.2834049,16.5308966 L23,16.6711966 L22.498381,17.2064174 L20.8092852,19.0251222 L21.1215139,21.4985553 L21.2187667,22.2312419 L20.5584822,21.9142594 L18.3370674,20.8490202 L16.1156393,21.9142594 L15.4553548,22.2312419 L15.4553546,22.2312419 Z M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,12 L20,12 L20,11 L4,11 L4,19 L13,19 L13,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15.4553546,22.2312419 L15.5474929,21.4985553 L15.8597217,19.0199278 L14.1757404,17.2064174 L13.6741207,16.6711966 L14.3907164,16.5308966 L16.811751,16.0736222 L17.9890116,13.880781 L18.3370674,13.2312419 L18.6851232,13.880781 L19.8623705,16.0736222 L22.2834049,16.5308966 L23,16.6711966 L22.498381,17.2064174 L20.8092852,19.0251222 L21.1215139,21.4985553 L21.2187667,22.2312419 L20.5584822,21.9142594 L18.3370674,20.8490202 L16.1156393,21.9142594 L15.4553548,22.2312419 L15.4553546,22.2312419 Z M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,12 L20,12 L20,11 L4,11 L4,19 L13,19 L13,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--eye-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zm-.147 5.095C20.806 8.99 21.923 10.36 23 12c-3.283 5-6.95 7.5-11 7.5a9.59 9.59 0 01-3.359-.605l1.602-1.602a7.53 7.53 0 001.59.205L12 17.5c2.951 0 5.75-1.704 8.425-5.302L20.57 12l-.145-.198A19.084 19.084 0 0018.233 9.3l1.413-1.412zM12 4.5c1.15 0 2.27.202 3.359.605l-1.601 1.602a7.53 7.53 0 00-1.591-.205L12 6.5c-2.951 0-5.75 1.704-8.425 5.302L3.43 12l.145.198c.722.97 1.452 1.803 2.192 2.502l-1.413 1.412C3.194 15.01 2.077 13.64 1 12c3.283-5 6.95-7.5 11-7.5zm3.976 7.06a4 4 0 01-4.417 4.417l4.417-4.418zM12 8c.149 0 .296.008.44.024l-4.416 4.417A4 4 0 0112 8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zm-.147 5.095C20.806 8.99 21.923 10.36 23 12c-3.283 5-6.95 7.5-11 7.5a9.59 9.59 0 01-3.359-.605l1.602-1.602a7.53 7.53 0 001.59.205L12 17.5c2.951 0 5.75-1.704 8.425-5.302L20.57 12l-.145-.198A19.084 19.084 0 0018.233 9.3l1.413-1.412zM12 4.5c1.15 0 2.27.202 3.359.605l-1.601 1.602a7.53 7.53 0 00-1.591-.205L12 6.5c-2.951 0-5.75 1.704-8.425 5.302L3.43 12l.145.198c.722.97 1.452 1.803 2.192 2.502l-1.413 1.412C3.194 15.01 2.077 13.64 1 12c3.283-5 6.95-7.5 11-7.5zm3.976 7.06a4 4 0 01-4.417 4.417l4.417-4.418zM12 8c.149 0 .296.008.44.024l-4.416 4.417A4 4 0 0112 8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--eye {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 4.5c4.05 0 7.717 2.5 11 7.5-3.283 5-6.95 7.5-11 7.5S4.283 17 1 12c3.283-5 6.95-7.5 11-7.5zm0 2c-2.951 0-5.75 1.704-8.425 5.302L3.43 12l.145.198c2.624 3.53 5.368 5.237 8.258 5.3L12 17.5c2.951 0 5.75-1.704 8.425-5.302L20.57 12l-.145-.198c-2.624-3.53-5.368-5.237-8.258-5.3L12 6.5zM12 8a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 4.5c4.05 0 7.717 2.5 11 7.5-3.283 5-6.95 7.5-11 7.5S4.283 17 1 12c3.283-5 6.95-7.5 11-7.5zm0 2c-2.951 0-5.75 1.704-8.425 5.302L3.43 12l.145.198c2.624 3.53 5.368 5.237 8.258 5.3L12 17.5c2.951 0 5.75-1.704 8.425-5.302L20.57 12l-.145-.198c-2.624-3.53-5.368-5.237-8.258-5.3L12 6.5zM12 8a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--face-neutral {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm4 10v2H8v-2h8zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm4 10v2H8v-2h8zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--face-sad {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm.005 9a5.46 5.46 0 014.78 2.822l.11.21-1.79.893-.062-.12A3.461 3.461 0 0012.005 15a3.461 3.461 0 00-3.011 1.759l-.097.183-1.794-.884.07-.138A5.462 5.462 0 0112.005 13zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm.005 9a5.46 5.46 0 014.78 2.822l.11.21-1.79.893-.062-.12A3.461 3.461 0 0012.005 15a3.461 3.461 0 00-3.011 1.759l-.097.183-1.794-.884.07-.138A5.462 5.462 0 0112.005 13zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--face-smile {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm-3.103 9.558a3.463 3.463 0 003.108 1.942c1.28 0 2.434-.703 3.038-1.805l.062-.12 1.79.893a5.463 5.463 0 01-4.89 3.032 5.462 5.462 0 01-4.832-2.92l-.07-.138 1.794-.884zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm-3.103 9.558a3.463 3.463 0 003.108 1.942c1.28 0 2.434-.703 3.038-1.805l.062-.12 1.79.893a5.463 5.463 0 01-4.89 3.032 5.462 5.462 0 01-4.832-2.92l-.07-.138 1.794-.884zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--globe {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zM7.345 17.04c-.666.07-1.33.157-1.991.258a8.509 8.509 0 003.898 2.748 12.433 12.433 0 01-1.907-3.005zm9.311.009a12.437 12.437 0 01-1.9 2.995 8.519 8.519 0 003.883-2.735l-.697-.103a43.226 43.226 0 00-1.286-.157zm-3.906-.245v3.18c.961-.902 1.74-1.942 2.317-3.076-.77-.056-1.543-.09-2.317-.104zm-1.5-.001c-.737.012-1.474.042-2.209.091l-.105.008a11.137 11.137 0 002.314 3.077v-3.176zm9.217-4.053h-2.759c-.058.98-.23 1.935-.51 2.853.783.091 1.562.203 2.336.335a8.437 8.437 0 00.933-3.188zM4.46 15.926l.05-.008a44.627 44.627 0 012.296-.324 12.278 12.278 0 01-.508-2.844H3.533c.1 1.138.423 2.212.926 3.176zm8.291-3.176v2.556c.977.017 1.954.065 2.927.146.29-.866.47-1.771.534-2.702H12.75zm-1.5 0H7.795c.063.928.243 1.832.532 2.696.972-.08 1.947-.126 2.923-.142V12.75zm8.284-4.689l-.316.054c-.67.11-1.344.204-2.02.283.28.917.452 1.872.51 2.852h2.76a8.446 8.446 0 00-.934-3.189zM4.46 8.074l-.017.033a8.446 8.446 0 00-.91 3.143h2.765c.059-.977.23-1.93.508-2.845-.786-.089-1.568-.2-2.346-.33zm11.218.474l-.47.037c-.817.058-1.637.095-2.457.11v2.554h3.461a10.803 10.803 0 00-.534-2.7zm-7.35.007l-.039.116a10.808 10.808 0 00-.493 2.579h3.455V8.695a45.328 45.328 0 01-2.923-.141zm2.923-4.533a11.137 11.137 0 00-2.315 3.077c.77.053 1.543.086 2.315.099V4.022zm1.5-.005v3.18a43.965 43.965 0 002.317-.103 11.127 11.127 0 00-2.316-3.077zm-3.497-.064l-.027.01a8.517 8.517 0 00-3.873 2.74c.661.101 1.326.187 1.993.257a12.43 12.43 0 011.907-3.007zm5.504.004l.142.169a12.424 12.424 0 011.758 2.825c.663-.07 1.324-.157 1.982-.259a8.51 8.51 0 00-3.882-2.735z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zM7.345 17.04c-.666.07-1.33.157-1.991.258a8.509 8.509 0 003.898 2.748 12.433 12.433 0 01-1.907-3.005zm9.311.009a12.437 12.437 0 01-1.9 2.995 8.519 8.519 0 003.883-2.735l-.697-.103a43.226 43.226 0 00-1.286-.157zm-3.906-.245v3.18c.961-.902 1.74-1.942 2.317-3.076-.77-.056-1.543-.09-2.317-.104zm-1.5-.001c-.737.012-1.474.042-2.209.091l-.105.008a11.137 11.137 0 002.314 3.077v-3.176zm9.217-4.053h-2.759c-.058.98-.23 1.935-.51 2.853.783.091 1.562.203 2.336.335a8.437 8.437 0 00.933-3.188zM4.46 15.926l.05-.008a44.627 44.627 0 012.296-.324 12.278 12.278 0 01-.508-2.844H3.533c.1 1.138.423 2.212.926 3.176zm8.291-3.176v2.556c.977.017 1.954.065 2.927.146.29-.866.47-1.771.534-2.702H12.75zm-1.5 0H7.795c.063.928.243 1.832.532 2.696.972-.08 1.947-.126 2.923-.142V12.75zm8.284-4.689l-.316.054c-.67.11-1.344.204-2.02.283.28.917.452 1.872.51 2.852h2.76a8.446 8.446 0 00-.934-3.189zM4.46 8.074l-.017.033a8.446 8.446 0 00-.91 3.143h2.765c.059-.977.23-1.93.508-2.845-.786-.089-1.568-.2-2.346-.33zm11.218.474l-.47.037c-.817.058-1.637.095-2.457.11v2.554h3.461a10.803 10.803 0 00-.534-2.7zm-7.35.007l-.039.116a10.808 10.808 0 00-.493 2.579h3.455V8.695a45.328 45.328 0 01-2.923-.141zm2.923-4.533a11.137 11.137 0 00-2.315 3.077c.77.053 1.543.086 2.315.099V4.022zm1.5-.005v3.18a43.965 43.965 0 002.317-.103 11.127 11.127 0 00-2.316-3.077zm-3.497-.064l-.027.01a8.517 8.517 0 00-3.873 2.74c.661.101 1.326.187 1.993.257a12.43 12.43 0 011.907-3.007zm5.504.004l.142.169a12.424 12.424 0 011.758 2.825c.663-.07 1.324-.157 1.982-.259a8.51 8.51 0 00-3.882-2.735z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--group {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14.5 16a3.5 3.5 0 013.498 3.38l.002.12V22h-2v-2.5a1.5 1.5 0 00-1.412-1.497L14.5 18h-5a1.5 1.5 0 00-1.497 1.412L8 19.5V22H6v-2.5a3.5 3.5 0 013.38-3.498L9.5 16h5zm2.4-6.001l3.6.001.12.002a3.5 3.5 0 013.375 3.31L24 13.5V16h-2v-2.5l-.003-.088a1.5 1.5 0 00-1.358-1.406L20.5 12l-3.6.001a5.023 5.023 0 000-2.002zm-9.8 0A5.023 5.023 0 007.1 12L3.5 12a1.5 1.5 0 00-1.497 1.412L2 13.5V16H0v-2.5a3.5 3.5 0 013.38-3.498L3.5 10l3.6-.001zM12 7a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4zM5.5 2a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm13 0a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm-13 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13 0a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14.5 16a3.5 3.5 0 013.498 3.38l.002.12V22h-2v-2.5a1.5 1.5 0 00-1.412-1.497L14.5 18h-5a1.5 1.5 0 00-1.497 1.412L8 19.5V22H6v-2.5a3.5 3.5 0 013.38-3.498L9.5 16h5zm2.4-6.001l3.6.001.12.002a3.5 3.5 0 013.375 3.31L24 13.5V16h-2v-2.5l-.003-.088a1.5 1.5 0 00-1.358-1.406L20.5 12l-3.6.001a5.023 5.023 0 000-2.002zm-9.8 0A5.023 5.023 0 007.1 12L3.5 12a1.5 1.5 0 00-1.497 1.412L2 13.5V16H0v-2.5a3.5 3.5 0 013.38-3.498L3.5 10l3.6-.001zM12 7a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4zM5.5 2a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm13 0a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm-13 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13 0a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--headphones {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C17.5228475,3 22,7.4771525 22,13 L22,18 C22,19.6568542 20.6568542,21 19,21 C17.3431458,21 16,19.6568542 16,18 L16,18 L16,14.5 L16.0068666,14.35554 C16.0795513,13.5948881 16.7203039,13 17.5,13 L17.5,13 L20,13 C20,8.581722 16.418278,5 12,5 C7.581722,5 4,8.581722 4,13 L6.5,13 C7.32842712,13 8,13.6715729 8,14.5 L8,14.5 L8,18 C8,19.6568542 6.65685425,21 5,21 C3.34314575,21 2,19.6568542 2,18 L2,18 L2,13 C2,7.4771525 6.4771525,3 12,3 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C17.5228475,3 22,7.4771525 22,13 L22,18 C22,19.6568542 20.6568542,21 19,21 C17.3431458,21 16,19.6568542 16,18 L16,18 L16,14.5 L16.0068666,14.35554 C16.0795513,13.5948881 16.7203039,13 17.5,13 L17.5,13 L20,13 C20,8.581722 16.418278,5 12,5 C7.581722,5 4,8.581722 4,13 L6.5,13 C7.32842712,13 8,13.6715729 8,14.5 L8,14.5 L8,18 C8,19.6568542 6.65685425,21 5,21 C3.34314575,21 2,19.6568542 2,18 L2,18 L2,13 C2,7.4771525 6.4771525,3 12,3 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--heart-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.842 2c-2.91 0-4.376 1.806-4.84 2.518C11.536 3.806 10.071 2 7.16 2h-.004a6.057 6.057 0 00-4.356 1.842A6.317 6.317 0 001 8.29c0 1.682.64 3.261 1.801 4.448 1.266 1.292 2.426 2.336 3.548 3.345 1.581 1.423 3.075 2.767 4.64 4.612.18.211.858 1.103.865 1.112L12 22l.146-.193c.007-.01.684-.9.864-1.112 1.566-1.845 3.06-3.189 4.641-4.612 1.122-1.01 2.282-2.053 3.547-3.345A6.314 6.314 0 0023 8.29c0-1.682-.64-3.261-1.802-4.448A6.054 6.054 0 0016.842 2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.842 2c-2.91 0-4.376 1.806-4.84 2.518C11.536 3.806 10.071 2 7.16 2h-.004a6.057 6.057 0 00-4.356 1.842A6.317 6.317 0 001 8.29c0 1.682.64 3.261 1.801 4.448 1.266 1.292 2.426 2.336 3.548 3.345 1.581 1.423 3.075 2.767 4.64 4.612.18.211.858 1.103.865 1.112L12 22l.146-.193c.007-.01.684-.9.864-1.112 1.566-1.845 3.06-3.189 4.641-4.612 1.122-1.01 2.282-2.053 3.547-3.345A6.314 6.314 0 0023 8.29c0-1.682-.64-3.261-1.802-4.448A6.054 6.054 0 0016.842 2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--heart {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.732 11.542c-1.185 1.206-2.282 2.191-3.344 3.144C14.9 16.02 13.492 17.284 12 19c-1.492-1.715-2.9-2.979-4.389-4.315-1.061-.952-2.159-1.937-3.343-3.143A4.43 4.43 0 013 8.418a4.43 4.43 0 011.268-3.124A4.273 4.273 0 017.34 4c3.073 0 4.099 2.71 4.662 3.725C12.566 6.71 13.591 4 16.664 4c1.159 0 2.248.46 3.068 1.294A4.43 4.43 0 0121 8.418a4.43 4.43 0 01-1.268 3.124M16.842 2c-2.91 0-4.376 1.806-4.84 2.518C11.536 3.806 10.071 2 7.16 2h-.004a6.057 6.057 0 00-4.356 1.842A6.317 6.317 0 001 8.29c0 1.682.64 3.261 1.801 4.448 1.266 1.292 2.426 2.336 3.548 3.345 1.581 1.423 3.075 2.767 4.64 4.612.18.211.858 1.103.865 1.112L12 22l.146-.193c.007-.01.684-.9.864-1.112 1.566-1.845 3.06-3.189 4.641-4.612 1.122-1.01 2.282-2.053 3.547-3.345A6.314 6.314 0 0023 8.29c0-1.682-.64-3.261-1.802-4.448A6.054 6.054 0 0016.842 2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.732 11.542c-1.185 1.206-2.282 2.191-3.344 3.144C14.9 16.02 13.492 17.284 12 19c-1.492-1.715-2.9-2.979-4.389-4.315-1.061-.952-2.159-1.937-3.343-3.143A4.43 4.43 0 013 8.418a4.43 4.43 0 011.268-3.124A4.273 4.273 0 017.34 4c3.073 0 4.099 2.71 4.662 3.725C12.566 6.71 13.591 4 16.664 4c1.159 0 2.248.46 3.068 1.294A4.43 4.43 0 0121 8.418a4.43 4.43 0 01-1.268 3.124M16.842 2c-2.91 0-4.376 1.806-4.84 2.518C11.536 3.806 10.071 2 7.16 2h-.004a6.057 6.057 0 00-4.356 1.842A6.317 6.317 0 001 8.29c0 1.682.64 3.261 1.801 4.448 1.266 1.292 2.426 2.336 3.548 3.345 1.581 1.423 3.075 2.767 4.64 4.612.18.211.858 1.103.865 1.112L12 22l.146-.193c.007-.01.684-.9.864-1.112 1.566-1.845 3.06-3.189 4.641-4.612 1.122-1.01 2.282-2.053 3.547-3.345A6.314 6.314 0 0023 8.29c0-1.682-.64-3.261-1.802-4.448A6.054 6.054 0 0016.842 2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--home-smoke {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 4l11 11-1.5 1.5L20 15v8H4v-8l-1.5 1.5L1 15 12 4zm0 3l-6 6v8l2.999-.001L9 14h6l-.001 6.999L18 21v-8l-6-6zm1 9h-2l-.001 4.999h2L13 16zm7-15c0 .901-.237 1.406-.833 2.123l-.098.115c-.456.533-.569.752-.569 1.262 0 .478.099.7.488 1.166l.081.096c.635.74.904 1.238.929 2.099L20 8h-1.5c0-.478-.099-.7-.488-1.166l-.081-.096C17.262 5.958 17 5.448 17 4.5c0-.901.237-1.406.833-2.123l.098-.115c.428-.5.554-.723.568-1.17L18.5 1H20z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 4l11 11-1.5 1.5L20 15v8H4v-8l-1.5 1.5L1 15 12 4zm0 3l-6 6v8l2.999-.001L9 14h6l-.001 6.999L18 21v-8l-6-6zm1 9h-2l-.001 4.999h2L13 16zm7-15c0 .901-.237 1.406-.833 2.123l-.098.115c-.456.533-.569.752-.569 1.262 0 .478.099.7.488 1.166l.081.096c.635.74.904 1.238.929 2.099L20 8h-1.5c0-.478-.099-.7-.488-1.166l-.081-.096C17.262 5.958 17 5.448 17 4.5c0-.901.237-1.406.833-2.123l.098-.115c.428-.5.554-.723.568-1.17L18.5 1H20z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--home {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M1 13L12 2l11 11-1.5 1.5L20 13v8H4v-8l-1.5 1.5L1 13zm11-8l-6 6v8l2.999-.001L9 12h6l-.001 6.999L18 19v-8l-6-6zm1 9h-2l-.001 4.999h2L13 14z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M1 13L12 2l11 11-1.5 1.5L20 13v8H4v-8l-1.5 1.5L1 13zm11-8l-6 6v8l2.999-.001L9 12h6l-.001 6.999L18 19v-8l-6-6zm1 9h-2l-.001 4.999h2L13 14z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--info-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 6v6.5h2V18H9v-1.5h2v-5H9V10h4zm-1.187-4a1.312 1.312 0 110 2.625 1.312 1.312 0 010-2.625z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 6v6.5h2V18H9v-1.5h2v-5H9V10h4zm-1.187-4a1.312 1.312 0 110 2.625 1.312 1.312 0 010-2.625z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--link-external {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M10 3v2H5v14h14v-5h2v7H3V3h7zm11 0v8h-2V6.413l-7 7.001L10.586 12l6.999-7H13V3h8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M10 3v2H5v14h14v-5h2v7H3V3h7zm11 0v8h-2V6.413l-7 7.001L10.586 12l6.999-7H13V3h8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--link {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.489 6.42l2.074-2.055A4.575 4.575 0 0116.698 3a4.142 4.142 0 013.072 1.21 4.157 4.157 0 011.229 3.071 4.565 4.565 0 01-1.255 3.023l-.109.112-3.432 3.432a4.575 4.575 0 01-3.135 1.364 4.142 4.142 0 01-3.071-1.21l.2-.195c.353-.348.997-.993 1.235-1.24.84.86 2.36.848 3.3-.002l.087-.082 3.394-3.45c.95-.95.988-2.483.084-3.387-.84-.86-2.36-.848-3.3.002l-.087.082-2.055 2.055-1.366-1.365zm-7.201 7.202L7.6 10.327c1.685-1.704 4.422-1.72 6.106-.035l-.567.576c-.343.343-.71.708-.818.81-.88-.88-2.324-.899-3.247-.062l-.085.08-3.314 3.314c-.917.917-.926 2.425-.019 3.332.88.88 2.324.898 3.248.062l.085-.08 1.984-2.004 1.37 1.389-1.985 1.984a4.38 4.38 0 01-3.06 1.283 4.282 4.282 0 01-3.046-1.248c-1.652-1.634-1.669-4.298-.062-6.007l.097-.1z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.489 6.42l2.074-2.055A4.575 4.575 0 0116.698 3a4.142 4.142 0 013.072 1.21 4.157 4.157 0 011.229 3.071 4.565 4.565 0 01-1.255 3.023l-.109.112-3.432 3.432a4.575 4.575 0 01-3.135 1.364 4.142 4.142 0 01-3.071-1.21l.2-.195c.353-.348.997-.993 1.235-1.24.84.86 2.36.848 3.3-.002l.087-.082 3.394-3.45c.95-.95.988-2.483.084-3.387-.84-.86-2.36-.848-3.3.002l-.087.082-2.055 2.055-1.366-1.365zm-7.201 7.202L7.6 10.327c1.685-1.704 4.422-1.72 6.106-.035l-.567.576c-.343.343-.71.708-.818.81-.88-.88-2.324-.899-3.247-.062l-.085.08-3.314 3.314c-.917.917-.926 2.425-.019 3.332.88.88 2.324.898 3.248.062l.085-.08 1.984-2.004 1.37 1.389-1.985 1.984a4.38 4.38 0 01-3.06 1.283 4.282 4.282 0 01-3.046-1.248c-1.652-1.634-1.669-4.298-.062-6.007l.097-.1z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--locate {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M13 2l.001 2.062A8.004 8.004 0 0119.938 11H22v2l-2.062.001a8.004 8.004 0 01-6.937 6.937L13 22h-2v-2.062a8.004 8.004 0 01-6.938-6.937L2 13v-2h2.062A8.004 8.004 0 0111 4.062V2h2zm-1 4a6 6 0 100 12 6 6 0 000-12zm0 2.5a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm0 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M13 2l.001 2.062A8.004 8.004 0 0119.938 11H22v2l-2.062.001a8.004 8.004 0 01-6.937 6.937L13 22h-2v-2.062a8.004 8.004 0 01-6.938-6.937L2 13v-2h2.062A8.004 8.004 0 0111 4.062V2h2zm-1 4a6 6 0 100 12 6 6 0 000-12zm0 2.5a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm0 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--location {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.967 1.5c2.06 0 4.12.778 5.69 2.334 3.143 3.111 2.93 7.96 0 11.268l-.622.709c-2.612 2.991-4.066 4.96-5.068 6.937-1.073-2.13-2.682-4.249-5.689-7.646-2.93-3.308-3.143-8.157 0-11.268A8.06 8.06 0 0111.967 1.5zm.032 2a6.072 6.072 0 00-4.3 1.762A5.606 5.606 0 006.002 9.41c.02 1.573.648 3.134 1.766 4.398l.66.752c1.59 1.823 2.717 3.239 3.573 4.503.975-1.437 2.292-3.063 4.233-5.255 1.118-1.264 1.746-2.825 1.766-4.398a5.616 5.616 0 00-1.698-4.15A6.077 6.077 0 0011.999 3.5zM12 6a3.5 3.5 0 110 6.999A3.5 3.5 0 0112 6zm0 2c-.827 0-1.5.673-1.5 1.5S11.173 11 12 11s1.5-.673 1.5-1.5S12.827 8 12 8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.967 1.5c2.06 0 4.12.778 5.69 2.334 3.143 3.111 2.93 7.96 0 11.268l-.622.709c-2.612 2.991-4.066 4.96-5.068 6.937-1.073-2.13-2.682-4.249-5.689-7.646-2.93-3.308-3.143-8.157 0-11.268A8.06 8.06 0 0111.967 1.5zm.032 2a6.072 6.072 0 00-4.3 1.762A5.606 5.606 0 006.002 9.41c.02 1.573.648 3.134 1.766 4.398l.66.752c1.59 1.823 2.717 3.239 3.573 4.503.975-1.437 2.292-3.063 4.233-5.255 1.118-1.264 1.746-2.825 1.766-4.398a5.616 5.616 0 00-1.698-4.15A6.077 6.077 0 0011.999 3.5zM12 6a3.5 3.5 0 110 6.999A3.5 3.5 0 0112 6zm0 2c-.827 0-1.5.673-1.5 1.5S11.173 11 12 11s1.5-.673 1.5-1.5S12.827 8 12 8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--lock-open {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 2a5 5 0 014.998 4.86L22 7v2h-2V7a3 3 0 00-5.998-.112L14 7v2h2v13H2V9h10V7a5 5 0 015-5zm-3 9H4v9h10v-9zm-4 2v5H8v-5h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 2a5 5 0 014.998 4.86L22 7v2h-2V7a3 3 0 00-5.998-.112L14 7v2h2v13H2V9h10V7a5 5 0 015-5zm-3 9H4v9h10v-9zm-4 2v5H8v-5h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--lock {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2a5 5 0 014.998 4.86L17 7v2h2v13H5V9h2V7a5 5 0 015-5zm5 9H7v9h10v-9zm-4 2v5h-2v-5h2zm-1-9a3 3 0 00-2.998 2.888L9 7v2h6V7a3 3 0 00-3-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2a5 5 0 014.998 4.86L17 7v2h2v13H5V9h2V7a5 5 0 015-5zm5 9H7v9h10v-9zm-4 2v5h-2v-5h2zm-1-9a3 3 0 00-2.998 2.888L9 7v2h6V7a3 3 0 00-3-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--map {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 4.113V17.72l-7 2.333-6-2-7 2.333V6.78l7-2.333 6 2 7-2.333zM8 6.887L4 8.22v9.392l4-1.333V6.887zm2 0v9.392l4 1.333V8.22l-4-1.334zm10 0l-4 1.334v9.39l4-1.332V6.887z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 4.113V17.72l-7 2.333-6-2-7 2.333V6.78l7-2.333 6 2 7-2.333zM8 6.887L4 8.22v9.392l4-1.333V6.887zm2 0v9.392l4 1.333V8.22l-4-1.334zm10 0l-4 1.334v9.39l4-1.332V6.887z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--menu-dots {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 10a2 2 0 110 4 2 2 0 010-4zm7 0a2 2 0 110 4 2 2 0 010-4zM5 10a2 2 0 110 4 2 2 0 010-4z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 10a2 2 0 110 4 2 2 0 010-4zm7 0a2 2 0 110 4 2 2 0 010-4zM5 10a2 2 0 110 4 2 2 0 010-4z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--menu-hamburger {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 17v2H2v-2h20zm0-6v2H2v-2h20zm0-6v2H2V5h20z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 17v2H2v-2h20zm0-6v2H2v-2h20zm0-6v2H2V5h20z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--microphone-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,11.5 C19,15.0261219 16.3928118,17.9433024 13.0010101,18.4289666 L12.9998932,21 L16,21 L16,23 L8,23 L8,21 L10.9998932,21 L11,18.42911 C10.4779709,18.3544401 9.97452935,18.2221752 9.49631076,18.038959 L11.1140992,16.4217592 C11.401632,16.4731693 11.6976827,16.5 12,16.5 C14.6887547,16.5 16.8818181,14.3776933 16.9953805,11.7168896 L17,11.5 L19,11.5 Z M19.7928932,2.79289322 L21.2071068,4.20710678 L4.70710678,20.7071068 L3.29289322,19.2928932 L19.7928932,2.79289322 Z M7,11.5 C7,12.0885063 7.10167356,12.6532655 7.28841324,13.1776701 L5.7699238,14.6948072 C5.31220839,13.804027 5.0399257,12.8023134 5.00405902,11.7406498 L5,11.5 L7,11.5 Z M12,1 C13.6568542,1 15,2.34314575 15,4 L15,5.463 L8.99995167,11.464 L8.99995167,4 C8.99995167,2.34314575 10.3431458,1 12,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,11.5 C19,15.0261219 16.3928118,17.9433024 13.0010101,18.4289666 L12.9998932,21 L16,21 L16,23 L8,23 L8,21 L10.9998932,21 L11,18.42911 C10.4779709,18.3544401 9.97452935,18.2221752 9.49631076,18.038959 L11.1140992,16.4217592 C11.401632,16.4731693 11.6976827,16.5 12,16.5 C14.6887547,16.5 16.8818181,14.3776933 16.9953805,11.7168896 L17,11.5 L19,11.5 Z M19.7928932,2.79289322 L21.2071068,4.20710678 L4.70710678,20.7071068 L3.29289322,19.2928932 L19.7928932,2.79289322 Z M7,11.5 C7,12.0885063 7.10167356,12.6532655 7.28841324,13.1776701 L5.7699238,14.6948072 C5.31220839,13.804027 5.0399257,12.8023134 5.00405902,11.7406498 L5,11.5 L7,11.5 Z M12,1 C13.6568542,1 15,2.34314575 15,4 L15,5.463 L8.99995167,11.464 L8.99995167,4 C8.99995167,2.34314575 10.3431458,1 12,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--microphone {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M7,11.5 C7,14.2614237 9.23857625,16.5 12,16.5 C14.6887547,16.5 16.8818181,14.3776933 16.9953805,11.7168896 L17,11.5 L19,11.5 C19,15.0261219 16.3928118,17.9433024 13.0010101,18.4289666 L13,21 L16,21 L16,23 L8,23 L8,21 L11,21 L11,18.42911 C7.68517863,17.9549591 5.1195246,15.1584625 5.00405902,11.7406498 L5,11.5 L7,11.5 Z M12,1 C13.6568542,1 15,2.34314575 15,4 L15,11.5 C15,13.1568542 13.6568542,14.5 12,14.5 C10.3431458,14.5 9,13.1568542 9,11.5 L9,4 C9,2.34314575 10.3431458,1 12,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M7,11.5 C7,14.2614237 9.23857625,16.5 12,16.5 C14.6887547,16.5 16.8818181,14.3776933 16.9953805,11.7168896 L17,11.5 L19,11.5 C19,15.0261219 16.3928118,17.9433024 13.0010101,18.4289666 L13,21 L16,21 L16,23 L8,23 L8,21 L11,21 L11,18.42911 C7.68517863,17.9549591 5.1195246,15.1584625 5.00405902,11.7406498 L5,11.5 L7,11.5 Z M12,1 C13.6568542,1 15,2.34314575 15,4 L15,11.5 C15,13.1568542 13.6568542,14.5 12,14.5 C10.3431458,14.5 9,13.1568542 9,11.5 L9,4 C9,2.34314575 10.3431458,1 12,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--minus-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm5 7v2H7v-2h10z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm5 7v2H7v-2h10z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--minus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M6 11h12v2H6z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M6 11h12v2H6z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--mobile {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2a4 4 0 013.995 3.8L19 6v12a4 4 0 01-3.8 3.995L15 22H9a4 4 0 01-3.995-3.8L5 18V6a4 4 0 013.8-3.995L9 2h6zm0 2H9a2 2 0 00-1.995 1.85L7 6v12a2 2 0 001.85 1.995L9 20h6a2 2 0 001.995-1.85L17 18V6a2 2 0 00-1.85-1.995L15 4zm-3 11.5a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2a4 4 0 013.995 3.8L19 6v12a4 4 0 01-3.8 3.995L15 22H9a4 4 0 01-3.995-3.8L5 18V6a4 4 0 013.8-3.995L9 2h6zm0 2H9a2 2 0 00-1.995 1.85L7 6v12a2 2 0 001.85 1.995L9 20h6a2 2 0 001.995-1.85L17 18V6a2 2 0 00-1.85-1.995L15 4zm-3 11.5a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--paperclip {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16 7h2v9a6 6 0 01-11.996.225L6 16V6.5a4.5 4.5 0 018.995-.212L15 6.5V15a3 3 0 01-5.995.176L9 15V7h2v8a1 1 0 001.993.117L13 15V6.5a2.5 2.5 0 00-4.995-.164L8 6.5V16a4 4 0 007.995.2L16 16V7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16 7h2v9a6 6 0 01-11.996.225L6 16V6.5a4.5 4.5 0 018.995-.212L15 6.5V15a3 3 0 01-5.995.176L9 15V7h2v8a1 1 0 001.993.117L13 15V6.5a2.5 2.5 0 00-4.995-.164L8 6.5V16a4 4 0 007.995.2L16 16V7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--pen-line {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20.5 20v2h-17v-2h17zM14.25 2.5L19 7.25 8.25 18l-4.736-.014L3.5 13.25 14.25 2.5zm0 2.75L5.5 14l.007 1.994L7.5 16l8.75-8.75-2-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20.5 20v2h-17v-2h17zM14.25 2.5L19 7.25 8.25 18l-4.736-.014L3.5 13.25 14.25 2.5zm0 2.75L5.5 14l.007 1.994L7.5 16l8.75-8.75-2-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--pen {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.75 3L4.5 15.25l.014 4.736L9.25 20 21.5 7.75 16.75 3zM6.5 16L16.75 5.75l2 2L8.5 18l-1.993-.006L6.5 16z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.75 3L4.5 15.25l.014 4.736L9.25 20 21.5 7.75 16.75 3zM6.5 16L16.75 5.75l2 2L8.5 18l-1.993-.006L6.5 16z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--person-female {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11 18v4h2v-4h2v6H9v-6h2zm2.048-11c1.923 0 3.125 1.175 3.588 3.005l1.833 7.25-1.938.49-1.834-7.25c-.247-.977-.71-1.457-1.547-1.493L13.048 9h-2.096c-.902 0-1.392.478-1.65 1.495l-1.833 7.25-1.938-.49 1.833-7.25c.451-1.785 1.605-2.946 3.445-3.003L10.952 7h2.096zM12 0a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11 18v4h2v-4h2v6H9v-6h2zm2.048-11c1.923 0 3.125 1.175 3.588 3.005l1.833 7.25-1.938.49-1.834-7.25c-.247-.977-.71-1.457-1.547-1.493L13.048 9h-2.096c-.902 0-1.392.478-1.65 1.495l-1.833 7.25-1.938-.49 1.833-7.25c.451-1.785 1.605-2.946 3.445-3.003L10.952 7h2.096zM12 0a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--person-male {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11 16v6h2v-6h2v8H9v-8h2zm3.5-9a3.5 3.5 0 013.498 3.38l.002.12V16h-2v-5.5a1.5 1.5 0 00-1.412-1.497L14.5 9h-5a1.5 1.5 0 00-1.497 1.412L8 10.5V16H6v-5.5a3.5 3.5 0 013.38-3.498L9.5 7h5zM12 0a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11 16v6h2v-6h2v8H9v-8h2zm3.5-9a3.5 3.5 0 013.498 3.38l.002.12V16h-2v-5.5a1.5 1.5 0 00-1.412-1.497L14.5 9h-5a1.5 1.5 0 00-1.497 1.412L8 10.5V16H6v-5.5a3.5 3.5 0 013.38-3.498L9.5 7h5zM12 0a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--person-wheelchair {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M8 9.498v2.26a4.5 4.5 0 105.587 7.017l.095-.093 1.414 1.414A6.5 6.5 0 118 9.498zM11 1a3 3 0 011 5.83L11.999 9H16v2h-4.001l.001.791c0 .528.205 1.032.586 1.413.541.541.93.688 1.88.752l.289.017c1.617.077 2.46.324 3.488 1.352.93.931 1.222 1.71 1.325 3.053l.027.435c.053 1.116.166 1.539.694 2.092l.075.077-1.414 1.414c-.99-.99-1.256-1.807-1.343-3.311l-.01-.177c-.055-1.166-.176-1.576-.769-2.169-.567-.567-.966-.702-2.02-.761l-.148-.008c-1.618-.077-2.46-.325-3.488-1.352a3.989 3.989 0 01-1.17-2.675L10 6.829A3.001 3.001 0 0111 1zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M8 9.498v2.26a4.5 4.5 0 105.587 7.017l.095-.093 1.414 1.414A6.5 6.5 0 118 9.498zM11 1a3 3 0 011 5.83L11.999 9H16v2h-4.001l.001.791c0 .528.205 1.032.586 1.413.541.541.93.688 1.88.752l.289.017c1.617.077 2.46.324 3.488 1.352.93.931 1.222 1.71 1.325 3.053l.027.435c.053 1.116.166 1.539.694 2.092l.075.077-1.414 1.414c-.99-.99-1.256-1.807-1.343-3.311l-.01-.177c-.055-1.166-.176-1.576-.769-2.169-.567-.567-.966-.702-2.02-.761l-.148-.008c-1.618-.077-2.46-.325-3.488-1.352a3.989 3.989 0 01-1.17-2.675L10 6.829A3.001 3.001 0 0111 1zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--phone {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M4.885 2.506L3.043 4.348l-.034.035C.572 7.07 2.784 12.452 7.191 16.818c4.445 4.404 9.751 6.6 12.426 4.173l1.877-1.876c.678-.678.655-1.563.058-2.272l-.058-.063-4.144-4.144c-.678-.678-1.564-.656-2.273-.058l-.063.058-1.046 1.046-.037-.008c-.585-.144-1.241-.602-2.123-1.484l-.123-.124c-.8-.819-1.222-1.44-1.359-1.997l-.008-.038 1.046-1.045.058-.063c.598-.71.62-1.595-.058-2.273L7.22 2.506l-.063-.058c-.709-.597-1.594-.62-2.272.058zm1.167 1.66l3.652 3.652-1.428 1.428v.414c0 1.355.687 2.513 2.118 3.945 1.432 1.431 2.591 2.12 3.946 2.12h.414l1.428-1.428 3.651 3.65-1.595 1.596c-1.525 1.382-5.878-.42-9.64-4.146l-.152-.152c-3.57-3.607-5.315-7.847-4.012-9.452l.047-.056 1.571-1.57z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M4.885 2.506L3.043 4.348l-.034.035C.572 7.07 2.784 12.452 7.191 16.818c4.445 4.404 9.751 6.6 12.426 4.173l1.877-1.876c.678-.678.655-1.563.058-2.272l-.058-.063-4.144-4.144c-.678-.678-1.564-.656-2.273-.058l-.063.058-1.046 1.046-.037-.008c-.585-.144-1.241-.602-2.123-1.484l-.123-.124c-.8-.819-1.222-1.44-1.359-1.997l-.008-.038 1.046-1.045.058-.063c.598-.71.62-1.595-.058-2.273L7.22 2.506l-.063-.058c-.709-.597-1.594-.62-2.272.058zm1.167 1.66l3.652 3.652-1.428 1.428v.414c0 1.355.687 2.513 2.118 3.945 1.432 1.431 2.591 2.12 3.946 2.12h.414l1.428-1.428 3.651 3.65-1.595 1.596c-1.525 1.382-5.878-.42-9.64-4.146l-.152-.152c-3.57-3.607-5.315-7.847-4.012-9.452l.047-.056 1.571-1.57z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--photo-plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2v2H6l.001 9.44c.502.243.928.59 1.51 1.159l.196.194C8.661 15.747 9.083 16 10 16c.86 0 1.284-.222 2.12-1.036l.173-.171C13.589 13.497 14.417 13 16 13c.81 0 1.422.13 2 .43V11h2v11H4V2h8zm4 13c-.86 0-1.284.222-2.12 1.036l-.173.171C12.411 17.503 11.583 18 10 18c-1.5 0-2.322-.446-3.506-1.595L6 15.92V20h12v-4.078l-.042-.04C17.226 15.193 16.803 15 16 15zm-6-9a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2zm9-7v3h3v2h-3v3h-2V6h-3V4h3V1h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2v2H6l.001 9.44c.502.243.928.59 1.51 1.159l.196.194C8.661 15.747 9.083 16 10 16c.86 0 1.284-.222 2.12-1.036l.173-.171C13.589 13.497 14.417 13 16 13c.81 0 1.422.13 2 .43V11h2v11H4V2h8zm4 13c-.86 0-1.284.222-2.12 1.036l-.173.171C12.411 17.503 11.583 18 10 18c-1.5 0-2.322-.446-3.506-1.595L6 15.92V20h12v-4.078l-.042-.04C17.226 15.193 16.803 15 16 15zm-6-9a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2zm9-7v3h3v2h-3v3h-2V6h-3V4h3V1h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--photo {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20 2v20H4V2h16zm-4 13c-.86 0-1.284.222-2.12 1.036l-.173.171C12.411 17.503 11.583 18 10 18c-1.5 0-2.322-.446-3.506-1.595L6 15.92V20h12v-4.078l-.042-.04C17.226 15.193 16.803 15 16 15zm2-11H6l.001 9.44c.502.243.928.59 1.51 1.159l.196.194C8.661 15.747 9.083 16 10 16c.86 0 1.284-.222 2.12-1.036l.173-.171C13.589 13.497 14.417 13 16 13c.81 0 1.422.13 2 .43V4zm-8 2a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20 2v20H4V2h16zm-4 13c-.86 0-1.284.222-2.12 1.036l-.173.171C12.411 17.503 11.583 18 10 18c-1.5 0-2.322-.446-3.506-1.595L6 15.92V20h12v-4.078l-.042-.04C17.226 15.193 16.803 15 16 15zm2-11H6l.001 9.44c.502.243.928.59 1.51 1.159l.196.194C8.661 15.747 9.083 16 10 16c.86 0 1.284-.222 2.12-1.036l.173-.171C13.589 13.497 14.417 13 16 13c.81 0 1.422.13 2 .43V4zm-8 2a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--plus-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 3v4h4v2h-4v4h-2v-4H7v-2h4V7h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 3v4h4v2h-4v4h-2v-4H7v-2h4V7h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M13 6v5h5v2h-5v5h-2v-5H6v-2h5V6z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M13 6v5h5v2h-5v5h-2v-5H6v-2h5V6z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--question-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 12v2h-2v-2h2zm-.956-10.25c1.99 0 3.673 1.545 3.673 3.674 0 1.357-.47 2.065-1.556 2.882l-.242.178c-.744.545-.963.852-.98 1.658l-.002.108h-2c0-1.575.522-2.412 1.677-3.288l.248-.182c.706-.517.855-.726.855-1.356 0-.985-.75-1.674-1.673-1.674-.853 0-1.565.59-1.662 1.458l-.009.098-1.996-.114c.115-2.019 1.757-3.442 3.667-3.442z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 12v2h-2v-2h2zm-.956-10.25c1.99 0 3.673 1.545 3.673 3.674 0 1.357-.47 2.065-1.556 2.882l-.242.178c-.744.545-.963.852-.98 1.658l-.002.108h-2c0-1.575.522-2.412 1.677-3.288l.248-.182c.706-.517.855-.726.855-1.356 0-.985-.75-1.674-1.673-1.674-.853 0-1.565.59-1.662 1.458l-.009.098-1.996-.114c.115-2.019 1.757-3.442 3.667-3.442z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--refresh {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M20,2 L20,9 L13,9 L13,7 L16.8992186,7.00023118 C15.636661,5.762908 13.9074239,5 12,5 C8.13400675,5 5,8.13400675 5,12 C5,15.8659932 8.13400675,19 12,19 C15.8659932,19 19,15.8659932 19,12 L21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 C14.3056345,3 16.4087725,3.86699019 18.0011835,5.29273993 L18,2 L20,2 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M20,2 L20,9 L13,9 L13,7 L16.8992186,7.00023118 C15.636661,5.762908 13.9074239,5 12,5 C8.13400675,5 5,8.13400675 5,12 C5,15.8659932 8.13400675,19 12,19 C15.8659932,19 19,15.8659932 19,12 L21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 C14.3056345,3 16.4087725,3.86699019 18.0011835,5.29273993 L18,2 L20,2 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--restaurant {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M10.9910906,4.085 C11.3530672,4.085 11.6522186,4.3539867 11.6995635,4.70297874 L11.7060906,4.8 L11.7060906,7.8 C11.7060906,9.04863681 10.8631864,10.1004028 9.71534818,10.4173278 L9.71463289,13.3004998 C9.86174666,13.4507761 9.96184242,13.6472631 9.99112118,13.8661618 L10,14 L10,19 C10,19.5522847 9.55228475,20 9,20 C8.48716416,20 8.06449284,19.6139598 8.00672773,19.1166211 L8,19 L8,14 L8.00672773,13.8833789 C8.03295504,13.6575703 8.13440655,13.4547056 8.28536711,13.3004998 L8.28537109,10.4223752 C7.179279,10.125449 6.35207044,9.147354 6.28104552,7.96539023 L6.2760906,7.8 L6.2760906,4.8 C6.2760906,4.4051164 6.596207,4.085 6.9910906,4.085 C7.35306723,4.085 7.65221865,4.3539867 7.69956349,4.70297874 L7.7060906,4.8 L7.7060906,7.8 L8.2840906,7.8 L8.285,4.8 C8.285,4.4051164 8.6051164,4.085 9,4.085 C9.36197663,4.085 9.66112805,4.3539867 9.70847289,4.70297874 L9.715,4.8 L9.7140906,7.8 L10.2760906,7.8 L10.2760906,4.8 C10.2760906,4.4051164 10.596207,4.085 10.9910906,4.085 Z M17,4 C17.5522847,4 18,4.44771525 18,5 L18,19 C18,19.5522847 17.5522847,20 17,20 C16.4871642,20 16.0644928,19.6139598 16.0067277,19.1166211 L16,19 L15.9990069,12.5 L14.9652205,12.242251 C14.4675282,12.1185447 14.1509559,11.6416485 14.2153915,11.1451328 L14.2371157,11.0303558 C14.2371631,11.0301659 14.2372106,11.0299761 14.2378274,11.0299288 L15.7543798,4.97128214 C15.8972744,4.40041638 16.4102735,4 16.9987517,4 L17,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M10.9910906,4.085 C11.3530672,4.085 11.6522186,4.3539867 11.6995635,4.70297874 L11.7060906,4.8 L11.7060906,7.8 C11.7060906,9.04863681 10.8631864,10.1004028 9.71534818,10.4173278 L9.71463289,13.3004998 C9.86174666,13.4507761 9.96184242,13.6472631 9.99112118,13.8661618 L10,14 L10,19 C10,19.5522847 9.55228475,20 9,20 C8.48716416,20 8.06449284,19.6139598 8.00672773,19.1166211 L8,19 L8,14 L8.00672773,13.8833789 C8.03295504,13.6575703 8.13440655,13.4547056 8.28536711,13.3004998 L8.28537109,10.4223752 C7.179279,10.125449 6.35207044,9.147354 6.28104552,7.96539023 L6.2760906,7.8 L6.2760906,4.8 C6.2760906,4.4051164 6.596207,4.085 6.9910906,4.085 C7.35306723,4.085 7.65221865,4.3539867 7.69956349,4.70297874 L7.7060906,4.8 L7.7060906,7.8 L8.2840906,7.8 L8.285,4.8 C8.285,4.4051164 8.6051164,4.085 9,4.085 C9.36197663,4.085 9.66112805,4.3539867 9.70847289,4.70297874 L9.715,4.8 L9.7140906,7.8 L10.2760906,7.8 L10.2760906,4.8 C10.2760906,4.4051164 10.596207,4.085 10.9910906,4.085 Z M17,4 C17.5522847,4 18,4.44771525 18,5 L18,19 C18,19.5522847 17.5522847,20 17,20 C16.4871642,20 16.0644928,19.6139598 16.0067277,19.1166211 L16,19 L15.9990069,12.5 L14.9652205,12.242251 C14.4675282,12.1185447 14.1509559,11.6416485 14.2153915,11.1451328 L14.2371157,11.0303558 C14.2371631,11.0301659 14.2372106,11.0299761 14.2378274,11.0299288 L15.7543798,4.97128214 C15.8972744,4.40041638 16.4102735,4 16.9987517,4 L17,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--save-diskette-fill{\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,2 L22,5 L22,21 C22,21.5522847 21.5522847,22 21,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,3 C2,2.44771525 2.44771525,2 3,2 L19,2 Z M19,12 L5,12 L5,20 L19,20 L19,12 Z M17,3 L7,3 L7,10 L17,10 L17,3 Z M15,5 L15,8 L13,8 L13,5 L15,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,2 L22,5 L22,21 C22,21.5522847 21.5522847,22 21,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,3 C2,2.44771525 2.44771525,2 3,2 L19,2 Z M19,12 L5,12 L5,20 L19,20 L19,12 Z M17,3 L7,3 L7,10 L17,10 L17,3 Z M15,5 L15,8 L13,8 L13,5 L15,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--save-diskette {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M22,5 L22,21 C22,21.5522847 21.5522847,22 21,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,3 C2,2.44771525 2.44771525,2 3,2 L19,2 L19,2 L22,5 Z M18.0082581,4 L20,6 L20,20 L4,20 L4,4 L18.0082581,4 Z M17,12 L7,12 L7,14 L17,14 L17,12 Z M16,9 L8,9 L8,11 L16,11 L16,9 Z M6,4 L8,4 L8,11 L6,11 L6,4 Z M5,12 L7,12 L7,20 L5,20 L5,12 Z M16,4 L18,4 L18,11 L16,11 L16,4 Z M13,5 L15,5 L15,8 L13,8 L13,5 Z M17,12 L19,12 L19,20 L17,20 L17,12 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M22,5 L22,21 C22,21.5522847 21.5522847,22 21,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,3 C2,2.44771525 2.44771525,2 3,2 L19,2 L19,2 L22,5 Z M18.0082581,4 L20,6 L20,20 L4,20 L4,4 L18.0082581,4 Z M17,12 L7,12 L7,14 L17,14 L17,12 Z M16,9 L8,9 L8,11 L16,11 L16,9 Z M6,4 L8,4 L8,11 L6,11 L6,4 Z M5,12 L7,12 L7,20 L5,20 L5,12 Z M16,4 L18,4 L18,11 L16,11 L16,4 Z M13,5 L15,5 L15,8 L13,8 L13,5 Z M17,12 L19,12 L19,20 L17,20 L17,12 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--search {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 1a8 8 0 11-4.798 14.402l-6.401 6.4-1.591-1.59 6.398-6.4A8 8 0 0115 1zm0 2a6 6 0 100 12 6 6 0 000-12z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 1a8 8 0 11-4.798 14.402l-6.401 6.4-1.591-1.59 6.398-6.4A8 8 0 0115 1zm0 2a6 6 0 100 12 6 6 0 000-12z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--share {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18.5 2.25a3.5 3.5 0 11-2.615 5.827L8.97 11.534a3.532 3.532 0 010 .932l6.916 3.457a3.5 3.5 0 11-.862 1.923l-6.95-3.474a3.5 3.5 0 110-4.743l6.95-3.475A3.5 3.5 0 0118.5 2.25zm0 14.5a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm-13-6.25a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13-6.25a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18.5 2.25a3.5 3.5 0 11-2.615 5.827L8.97 11.534a3.532 3.532 0 010 .932l6.916 3.457a3.5 3.5 0 11-.862 1.923l-6.95-3.474a3.5 3.5 0 110-4.743l6.95-3.475A3.5 3.5 0 0118.5 2.25zm0 14.5a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm-13-6.25a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13-6.25a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--signin {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M21 2v20H8v-5h2v3h9V4h-9v3H8V2h13zm-8.5 5l5 5-5 5-1.5-1.5 2.5-2.501L2 13v-2l11.499-.001L11 8.5 12.5 7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M21 2v20H8v-5h2v3h9V4h-9v3H8V2h13zm-8.5 5l5 5-5 5-1.5-1.5 2.5-2.501L2 13v-2l11.499-.001L11 8.5 12.5 7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--signout {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16 2v5h-2V4H5v16h9v-3h2v5H3V2h13zm2 5l5 5-5 5-1.5-1.5 2.5-2.501L8 13v-2l10.999-.001L16.5 8.5 18 7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16 2v5h-2V4H5v16h9v-3h2v5H3V2h13zm2 5l5 5-5 5-1.5-1.5 2.5-2.501L8 13v-2l10.999-.001L16.5 8.5 18 7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--sitemap {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 9.438 0 24 0 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M15,3 L15,9 L13,9 L13,11 L20,11 L20,15 L22,15 L22,21 L16,21 L16,15 L18,15 L18,13 L13,13 L13,15 L15,15 L15,21 L9,21 L9,15 L11,15 L11,13 L6,13 L6,15 L8,15 L8,21 L2,21 L2,15 L4,15 L4,11 L11,11 L11,9 L9,9 L9,3 L15,3 Z M6,17 L4,17 L4,19 L6,19 L6,17 Z M13,17 L11,17 L11,19 L13,19 L13,17 Z M20,17 L18,17 L18,19 L20,19 L20,17 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 9.438 0 24 0 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M15,3 L15,9 L13,9 L13,11 L20,11 L20,15 L22,15 L22,21 L16,21 L16,15 L18,15 L18,13 L13,13 L13,15 L15,15 L15,21 L9,21 L9,15 L11,15 L11,13 L6,13 L6,15 L8,15 L8,21 L2,21 L2,15 L4,15 L4,11 L11,11 L11,9 L9,9 L9,3 L15,3 Z M6,17 L4,17 L4,19 L6,19 L6,17 Z M13,17 L11,17 L11,19 L13,19 L13,17 Z M20,17 L18,17 L18,19 L20,19 L20,17 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--speechbubble-text {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 4a4 4 0 013.995 3.8L23 8v8a4 4 0 01-3.8 3.995L19 20h-1c-.988 0-1.846.338-2.617 1.039l-.176.168-.707.707-.707-.707c-.757-.757-1.6-1.149-2.567-1.201L11 20H5a4 4 0 01-3.995-3.8L1 16V8a4 4 0 013.8-3.995L5 4h14zm0 2H5a2 2 0 00-1.995 1.85L3 8v8a2 2 0 001.85 1.995L5 18h6a5.68 5.68 0 013.5 1.175 5.67 5.67 0 013.036-1.158l.28-.014L18 18h1a2 2 0 001.995-1.85L21 16V8a2 2 0 00-1.85-1.995L19 6zm-1 7v2H6v-2h12zm0-4v2H6V9h12z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 4a4 4 0 013.995 3.8L23 8v8a4 4 0 01-3.8 3.995L19 20h-1c-.988 0-1.846.338-2.617 1.039l-.176.168-.707.707-.707-.707c-.757-.757-1.6-1.149-2.567-1.201L11 20H5a4 4 0 01-3.995-3.8L1 16V8a4 4 0 013.8-3.995L5 4h14zm0 2H5a2 2 0 00-1.995 1.85L3 8v8a2 2 0 001.85 1.995L5 18h6a5.68 5.68 0 013.5 1.175 5.67 5.67 0 013.036-1.158l.28-.014L18 18h1a2 2 0 001.995-1.85L21 16V8a2 2 0 00-1.85-1.995L19 6zm-1 7v2H6v-2h12zm0-4v2H6V9h12z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--speechbubble {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 4H5a4 4 0 00-4 4v8a4 4 0 004 4h6c1.064 0 1.977.392 2.793 1.207l.707.707.707-.707C16.023 20.392 16.937 20 18 20h1a4 4 0 004-4V8a4 4 0 00-4-4zM5 6h14a2 2 0 012 2v8a2 2 0 01-2 2h-1l-.184.003a5.675 5.675 0 00-3.316 1.172A5.68 5.68 0 0011 18H5a2 2 0 01-2-2V8a2 2 0 012-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 4H5a4 4 0 00-4 4v8a4 4 0 004 4h6c1.064 0 1.977.392 2.793 1.207l.707.707.707-.707C16.023 20.392 16.937 20 18 20h1a4 4 0 004-4V8a4 4 0 00-4-4zM5 6h14a2 2 0 012 2v8a2 2 0 01-2 2h-1l-.184.003a5.675 5.675 0 00-3.316 1.172A5.68 5.68 0 0011 18H5a2 2 0 01-2-2V8a2 2 0 012-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--star-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M5.202 22.231l.217-1.728.737-5.847-3.973-4.278L1 9.115l1.69-.331 5.712-1.079 2.777-5.173L12 1l.821 1.532 2.777 5.173 5.712 1.079 1.69.33-1.183 1.264-3.985 4.29.737 5.835.229 1.728-1.558-.748L12 18.971l-5.24 2.512-1.558.748z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M5.202 22.231l.217-1.728.737-5.847-3.973-4.278L1 9.115l1.69-.331 5.712-1.079 2.777-5.173L12 1l.821 1.532 2.777 5.173 5.712 1.079 1.69.33-1.183 1.264-3.985 4.29.737 5.835.229 1.728-1.558-.748L12 18.971l-5.24 2.512-1.558.748z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--star {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M5.202 22.231l.217-1.728.737-5.847-3.973-4.278L1 9.115l1.69-.331 5.712-1.079 2.777-5.173L12 1l.821 1.532 2.777 5.173 5.712 1.079 1.69.33-1.183 1.264-3.985 4.29.737 5.835.229 1.728-1.558-.748L12 18.971l-5.24 2.512-1.558.748zm2.294-3.211l4.106-1.974.398-.184.398.184 4.094 1.974-.58-4.56-.06-.454.314-.319 3.103-3.346-4.444-.846-.446-.086-.206-.404L12 4.959 9.827 9.005l-.218.404-.434.086-4.444.846 3.103 3.346.302.319-.048.454-.592 4.56z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M5.202 22.231l.217-1.728.737-5.847-3.973-4.278L1 9.115l1.69-.331 5.712-1.079 2.777-5.173L12 1l.821 1.532 2.777 5.173 5.712 1.079 1.69.33-1.183 1.264-3.985 4.29.737 5.835.229 1.728-1.558-.748L12 18.971l-5.24 2.512-1.558.748zm2.294-3.211l4.106-1.974.398-.184.398.184 4.094 1.974-.58-4.56-.06-.454.314-.319 3.103-3.346-4.444-.846-.446-.086-.206-.404L12 4.959 9.827 9.005l-.218.404-.434.086-4.444.846 3.103 3.346.302.319-.048.454-.592 4.56z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--text-bold {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M3,20 L3,17 L5,17 L5,7 L3,7 L3,4 L14,4 L14,4.027 L14.2481427,4.00692918 C14.3315104,4.00232997 14.4154831,4 14.5,4 C16.9852814,4 19,6.01471863 19,8.5 C19,9.47920963 18.6872375,10.3853697 18.1561603,11.1240324 C19.2814801,12.0388846 20,13.4355326 20,15 C20,17.6887547 17.8776933,19.8818181 15.2168896,19.9953805 L15,20 L3,20 Z M15,13 L8,13 L8,17 L15,17 L15.1492623,16.9945143 C16.1841222,16.9181651 17,16.0543618 17,15 C17,13.9456382 16.1841222,13.0818349 15.1492623,13.0054857 L15,13 Z M14,7 L8,7 L8,10 L14,10 C15.1045695,10 16,9.32842712 16,8.5 C16,7.67157288 15.1045695,7 14,7 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M3,20 L3,17 L5,17 L5,7 L3,7 L3,4 L14,4 L14,4.027 L14.2481427,4.00692918 C14.3315104,4.00232997 14.4154831,4 14.5,4 C16.9852814,4 19,6.01471863 19,8.5 C19,9.47920963 18.6872375,10.3853697 18.1561603,11.1240324 C19.2814801,12.0388846 20,13.4355326 20,15 C20,17.6887547 17.8776933,19.8818181 15.2168896,19.9953805 L15,20 L3,20 Z M15,13 L8,13 L8,17 L15,17 L15.1492623,16.9945143 C16.1841222,16.9181651 17,16.0543618 17,15 C17,13.9456382 16.1841222,13.0818349 15.1492623,13.0054857 L15,13 Z M14,7 L8,7 L8,10 L14,10 C15.1045695,10 16,9.32842712 16,8.5 C16,7.67157288 15.1045695,7 14,7 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--text-italic {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16,4 L16,6 L13.75,6 L12.25,18 L14,18 L14,20 L8,20 L8,18 L10.25,18 L11.75,6 L10,6 L10,4 L16,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16,4 L16,6 L13.75,6 L12.25,18 L14,18 L14,20 L8,20 L8,18 L10.25,18 L11.75,6 L10,6 L10,4 L16,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--text-tool {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,20 L8,18 L11,18 L11,6 L6,6 L6,8 L4,8 L4,4 L20,4 L20,8 L18,8 L18,6 L13,6 L13,18 L16,18 L16,20 L8,20 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,20 L8,18 L11,18 L11,6 L6,6 L6,8 L4,8 L4,4 L20,4 L20,8 L18,8 L18,6 L13,6 L13,18 L16,18 L16,20 L8,20 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--thumbs-down-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.8688937 15.6687291,7.5439536 15.3974929,8.33359424 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9860478,18.9642708 17.0771376,19.9141361 15.9442124,19.9944915 L15.7883909,20 L13.9976363,20 C12.8580519,20 11.7302249,19.6335297 10.7904225,18.9653581 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.14325876,17.678748 9.03407582,17.4709771 9.00662803,17.2506604 L9,17.1798859 L9,9.48721313 L9.00274918,9.486 L9,9.4277415 C9,9.15545465 9.07748504,8.99976466 9.21287628,8.8524505 L9.31150483,8.75429431 L9.62472908,8.47299918 C9.672215,8.42860981 9.72181136,8.38047742 9.77330381,8.3274144 L9.93325507,8.15224584 C10.2361416,7.79963045 10.5899004,7.2619383 10.9588681,6.3415806 L11.1937974,5.73237236 L11.2958342,5.49052345 C11.6373077,4.72615106 12.1717829,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z' transform='rotate(180 12 12)'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.8688937 15.6687291,7.5439536 15.3974929,8.33359424 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9860478,18.9642708 17.0771376,19.9141361 15.9442124,19.9944915 L15.7883909,20 L13.9976363,20 C12.8580519,20 11.7302249,19.6335297 10.7904225,18.9653581 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.14325876,17.678748 9.03407582,17.4709771 9.00662803,17.2506604 L9,17.1798859 L9,9.48721313 L9.00274918,9.486 L9,9.4277415 C9,9.15545465 9.07748504,8.99976466 9.21287628,8.8524505 L9.31150483,8.75429431 L9.62472908,8.47299918 C9.672215,8.42860981 9.72181136,8.38047742 9.77330381,8.3274144 L9.93325507,8.15224584 C10.2361416,7.79963045 10.5899004,7.2619383 10.9588681,6.3415806 L11.1937974,5.73237236 L11.2958342,5.49052345 C11.6373077,4.72615106 12.1717829,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z' transform='rotate(180 12 12)'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--thumbs-down {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.91012935 15.6373719,7.68159261 15.3124919,8.57377573 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9824313,19.0181708 16.9927958,20 15.7883909,20 L15.7883909,20 L13.9976363,20 C12.7703916,20 11.5567827,19.5749812 10.5769629,18.8058385 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.11265558,17.6547163 8.99974918,17.399954 8.99974918,17.1396928 C8.99974918,16.6875296 9.34678648,16.2810827 9.81893501,16.2810827 C9.9897269,16.2810827 10.1620523,16.3370141 10.3091513,16.452912 L10.3091513,16.452912 L11.5588956,17.4354563 C12.2570614,17.9834805 13.122951,18.2858513 13.99634,18.2858513 L13.99634,18.2858513 L15.7870946,18.2858513 C16.1434732,18.2858513 16.4337845,17.9822663 16.4337845,17.6090349 C16.4337845,17.4842081 16.3959449,17.4325635 16.3959449,17.2713058 C16.3959449,16.3112638 17.4108078,16.6291349 17.4108078,15.8198129 C17.4108078,15.4905124 17.1929037,15.4258668 17.1929037,15.0251345 C17.1929037,13.9604442 18.387081,14.4258221 18.387081,13.5197103 C18.387081,13.0568328 17.9987939,13.0396888 17.9987939,12.4871641 C17.9987939,12.0392866 18.3294686,11.6628164 18.7610498,11.6321258 C19.0986792,11.6078392 19.3634229,11.3142192 19.3634229,10.9638819 C19.3634229,10.592437 19.0736567,10.288852 18.7151652,10.2574229 L18.7151652,10.2574229 L14.0243629,10.2574229 C13.5958497,10.2574229 13.2061997,9.92955084 13.2061997,9.43238583 C13.2061997,9.28830808 13.2409723,9.14401562 13.3107204,9.01379565 C13.9228426,7.8694585 14.1817228,6.7213359 14.1817228,6.45689581 C14.1817228,6.16973982 13.9778635,5.71436232 13.4296946,5.71436232 C12.3054027,5.71436232 12.9459555,7.90481796 10.3291972,10.0967009 C10.1785189,10.2230995 9.99804553,10.2845662 9.81886791,10.2845662 C9.35319658,10.2845662 9.0000228,9.88633384 9.0000228,9.4277415 C9.0000228,8.4605559 9.97738681,8.96450756 11.0566805,6.08937908 C11.4061044,5.15862329 11.8407535,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z' transform='rotate(180 12 12)'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.91012935 15.6373719,7.68159261 15.3124919,8.57377573 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9824313,19.0181708 16.9927958,20 15.7883909,20 L15.7883909,20 L13.9976363,20 C12.7703916,20 11.5567827,19.5749812 10.5769629,18.8058385 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.11265558,17.6547163 8.99974918,17.399954 8.99974918,17.1396928 C8.99974918,16.6875296 9.34678648,16.2810827 9.81893501,16.2810827 C9.9897269,16.2810827 10.1620523,16.3370141 10.3091513,16.452912 L10.3091513,16.452912 L11.5588956,17.4354563 C12.2570614,17.9834805 13.122951,18.2858513 13.99634,18.2858513 L13.99634,18.2858513 L15.7870946,18.2858513 C16.1434732,18.2858513 16.4337845,17.9822663 16.4337845,17.6090349 C16.4337845,17.4842081 16.3959449,17.4325635 16.3959449,17.2713058 C16.3959449,16.3112638 17.4108078,16.6291349 17.4108078,15.8198129 C17.4108078,15.4905124 17.1929037,15.4258668 17.1929037,15.0251345 C17.1929037,13.9604442 18.387081,14.4258221 18.387081,13.5197103 C18.387081,13.0568328 17.9987939,13.0396888 17.9987939,12.4871641 C17.9987939,12.0392866 18.3294686,11.6628164 18.7610498,11.6321258 C19.0986792,11.6078392 19.3634229,11.3142192 19.3634229,10.9638819 C19.3634229,10.592437 19.0736567,10.288852 18.7151652,10.2574229 L18.7151652,10.2574229 L14.0243629,10.2574229 C13.5958497,10.2574229 13.2061997,9.92955084 13.2061997,9.43238583 C13.2061997,9.28830808 13.2409723,9.14401562 13.3107204,9.01379565 C13.9228426,7.8694585 14.1817228,6.7213359 14.1817228,6.45689581 C14.1817228,6.16973982 13.9778635,5.71436232 13.4296946,5.71436232 C12.3054027,5.71436232 12.9459555,7.90481796 10.3291972,10.0967009 C10.1785189,10.2230995 9.99804553,10.2845662 9.81886791,10.2845662 C9.35319658,10.2845662 9.0000228,9.88633384 9.0000228,9.4277415 C9.0000228,8.4605559 9.97738681,8.96450756 11.0566805,6.08937908 C11.4061044,5.15862329 11.8407535,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z' transform='rotate(180 12 12)'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--thumbs-up-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.8688937 15.6687291,7.5439536 15.3974929,8.33359424 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9860478,18.9642708 17.0771376,19.9141361 15.9442124,19.9944915 L15.7883909,20 L13.9976363,20 C12.8580519,20 11.7302249,19.6335297 10.7904225,18.9653581 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.14325876,17.678748 9.03407582,17.4709771 9.00662803,17.2506604 L9,17.1798859 L9,9.48721313 L9.00274918,9.486 L9,9.4277415 C9,9.15545465 9.07748504,8.99976466 9.21287628,8.8524505 L9.31150483,8.75429431 L9.62472908,8.47299918 C9.672215,8.42860981 9.72181136,8.38047742 9.77330381,8.3274144 L9.93325507,8.15224584 C10.2361416,7.79963045 10.5899004,7.2619383 10.9588681,6.3415806 L11.1937974,5.73237236 L11.2958342,5.49052345 C11.6373077,4.72615106 12.1717829,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.8688937 15.6687291,7.5439536 15.3974929,8.33359424 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9860478,18.9642708 17.0771376,19.9141361 15.9442124,19.9944915 L15.7883909,20 L13.9976363,20 C12.8580519,20 11.7302249,19.6335297 10.7904225,18.9653581 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.14325876,17.678748 9.03407582,17.4709771 9.00662803,17.2506604 L9,17.1798859 L9,9.48721313 L9.00274918,9.486 L9,9.4277415 C9,9.15545465 9.07748504,8.99976466 9.21287628,8.8524505 L9.31150483,8.75429431 L9.62472908,8.47299918 C9.672215,8.42860981 9.72181136,8.38047742 9.77330381,8.3274144 L9.93325507,8.15224584 C10.2361416,7.79963045 10.5899004,7.2619383 10.9588681,6.3415806 L11.1937974,5.73237236 L11.2958342,5.49052345 C11.6373077,4.72615106 12.1717829,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--thumbs-up {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.91012935 15.6373719,7.68159261 15.3124919,8.57377573 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9824313,19.0181708 16.9927958,20 15.7883909,20 L15.7883909,20 L13.9976363,20 C12.7703916,20 11.5567827,19.5749812 10.5769629,18.8058385 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.11265558,17.6547163 8.99974918,17.399954 8.99974918,17.1396928 C8.99974918,16.6875296 9.34678648,16.2810827 9.81893501,16.2810827 C9.9897269,16.2810827 10.1620523,16.3370141 10.3091513,16.452912 L10.3091513,16.452912 L11.5588956,17.4354563 C12.2570614,17.9834805 13.122951,18.2858513 13.99634,18.2858513 L13.99634,18.2858513 L15.7870946,18.2858513 C16.1434732,18.2858513 16.4337845,17.9822663 16.4337845,17.6090349 C16.4337845,17.4842081 16.3959449,17.4325635 16.3959449,17.2713058 C16.3959449,16.3112638 17.4108078,16.6291349 17.4108078,15.8198129 C17.4108078,15.4905124 17.1929037,15.4258668 17.1929037,15.0251345 C17.1929037,13.9604442 18.387081,14.4258221 18.387081,13.5197103 C18.387081,13.0568328 17.9987939,13.0396888 17.9987939,12.4871641 C17.9987939,12.0392866 18.3294686,11.6628164 18.7610498,11.6321258 C19.0986792,11.6078392 19.3634229,11.3142192 19.3634229,10.9638819 C19.3634229,10.592437 19.0736567,10.288852 18.7151652,10.2574229 L18.7151652,10.2574229 L14.0243629,10.2574229 C13.5958497,10.2574229 13.2061997,9.92955084 13.2061997,9.43238583 C13.2061997,9.28830808 13.2409723,9.14401562 13.3107204,9.01379565 C13.9228426,7.8694585 14.1817228,6.7213359 14.1817228,6.45689581 C14.1817228,6.16973982 13.9778635,5.71436232 13.4296946,5.71436232 C12.3054027,5.71436232 12.9459555,7.90481796 10.3291972,10.0967009 C10.1785189,10.2230995 9.99804553,10.2845662 9.81886791,10.2845662 C9.35319658,10.2845662 9.0000228,9.88633384 9.0000228,9.4277415 C9.0000228,8.4605559 9.97738681,8.96450756 11.0566805,6.08937908 C11.4061044,5.15862329 11.8407535,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.91012935 15.6373719,7.68159261 15.3124919,8.57377573 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9824313,19.0181708 16.9927958,20 15.7883909,20 L15.7883909,20 L13.9976363,20 C12.7703916,20 11.5567827,19.5749812 10.5769629,18.8058385 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.11265558,17.6547163 8.99974918,17.399954 8.99974918,17.1396928 C8.99974918,16.6875296 9.34678648,16.2810827 9.81893501,16.2810827 C9.9897269,16.2810827 10.1620523,16.3370141 10.3091513,16.452912 L10.3091513,16.452912 L11.5588956,17.4354563 C12.2570614,17.9834805 13.122951,18.2858513 13.99634,18.2858513 L13.99634,18.2858513 L15.7870946,18.2858513 C16.1434732,18.2858513 16.4337845,17.9822663 16.4337845,17.6090349 C16.4337845,17.4842081 16.3959449,17.4325635 16.3959449,17.2713058 C16.3959449,16.3112638 17.4108078,16.6291349 17.4108078,15.8198129 C17.4108078,15.4905124 17.1929037,15.4258668 17.1929037,15.0251345 C17.1929037,13.9604442 18.387081,14.4258221 18.387081,13.5197103 C18.387081,13.0568328 17.9987939,13.0396888 17.9987939,12.4871641 C17.9987939,12.0392866 18.3294686,11.6628164 18.7610498,11.6321258 C19.0986792,11.6078392 19.3634229,11.3142192 19.3634229,10.9638819 C19.3634229,10.592437 19.0736567,10.288852 18.7151652,10.2574229 L18.7151652,10.2574229 L14.0243629,10.2574229 C13.5958497,10.2574229 13.2061997,9.92955084 13.2061997,9.43238583 C13.2061997,9.28830808 13.2409723,9.14401562 13.3107204,9.01379565 C13.9228426,7.8694585 14.1817228,6.7213359 14.1817228,6.45689581 C14.1817228,6.16973982 13.9778635,5.71436232 13.4296946,5.71436232 C12.3054027,5.71436232 12.9459555,7.90481796 10.3291972,10.0967009 C10.1785189,10.2230995 9.99804553,10.2845662 9.81886791,10.2845662 C9.35319658,10.2845662 9.0000228,9.88633384 9.0000228,9.4277415 C9.0000228,8.4605559 9.97738681,8.96450756 11.0566805,6.08937908 C11.4061044,5.15862329 11.8407535,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--ticket {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14.5 2l3.125 3.125L17 5.75a.884.884 0 001.173 1.319L18.25 7l.625-.625L22 9.5 9.5 22l-3.125-3.125L7 18.25a.884.884 0 00-1.173-1.319L5.75 17l-.625.625L2 14.5 14.5 2zm0 2.5l-3 3a1 1 0 11-.991 1.127L10.5 8.5l-6 6 .731.731.169-.073.173-.06a2.656 2.656 0 012.26.312l.166.118.138.115.113.107.138.149c.613.714.785 1.676.515 2.53l-.065.18-.07.16.732.731 6.002-6a1 1 0 11.99-1.126l.008.128 3-3.002-.732-.732-.168.074-.173.06a2.656 2.656 0 01-2.26-.312L16 8.472l-.138-.115-.113-.107-.138-.149a2.652 2.652 0 01-.515-2.53l.065-.18.07-.16L14.5 4.5zm-1.707 5.293a1 1 0 111.414 1.414 1 1 0 01-1.414-1.414z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14.5 2l3.125 3.125L17 5.75a.884.884 0 001.173 1.319L18.25 7l.625-.625L22 9.5 9.5 22l-3.125-3.125L7 18.25a.884.884 0 00-1.173-1.319L5.75 17l-.625.625L2 14.5 14.5 2zm0 2.5l-3 3a1 1 0 11-.991 1.127L10.5 8.5l-6 6 .731.731.169-.073.173-.06a2.656 2.656 0 012.26.312l.166.118.138.115.113.107.138.149c.613.714.785 1.676.515 2.53l-.065.18-.07.16.732.731 6.002-6a1 1 0 11.99-1.126l.008.128 3-3.002-.732-.732-.168.074-.173.06a2.656 2.656 0 01-2.26-.312L16 8.472l-.138-.115-.113-.107-.138-.149a2.652 2.652 0 01-.515-2.53l.065-.18.07-.16L14.5 4.5zm-1.707 5.293a1 1 0 111.414 1.414 1 1 0 01-1.414-1.414z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--trash {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 9H6l1.087 13h9.826L18 9zm-2.095 2l-.818 9H8.912l-.818-9h7.811zM12 2a2.97 2.97 0 012.995 2.82L15 5v1h3v2H6V6h3V5c0-1.688 1.331-3 3-3zm0 2c-.53 0-.938.365-.994.879L11 5v1h2V5c0-.577-.43-1-1-1z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 9H6l1.087 13h9.826L18 9zm-2.095 2l-.818 9H8.912l-.818-9h7.811zM12 2a2.97 2.97 0 012.995 2.82L15 5v1h3v2H6V6h3V5c0-1.688 1.331-3 3-3zm0 2c-.53 0-.938.365-.994.879L11 5v1h2V5c0-.577-.43-1-1-1z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--upload-cloud {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M7.5,12 L12,7.5 L16.5,12 L15,13.5 L13,11.5 L13,22 L11,22 L11,11.5 L9,13.5 L7.5,12 Z M11.5,2 C14.0570069,2 16.3672564,3.55157482 17.2358321,5.93092178 L17.2835,6.0665 L17.4145183,6.08731097 C20.0449239,6.53520702 21.9316381,8.61876864 21.9981819,11.350367 L22,11.5 C22,14.6411668 19.7996323,16.9265021 16.7006468,16.998261 L16.55,17 L15.5,17 L15.5,15 L16.55,15 C18.6163623,15 20,13.5942857 20,11.5 C20,9.538055 18.6018237,8.11877635 16.6000787,8.00507103 L16.4714957,7.99959367 L15.6755756,7.97689732 L15.5194193,7.19611614 C15.1395428,5.29673328 13.433695,4 11.5,4 C9.26285888,4 7.62213728,5.5585359 7.5065992,7.75063225 L7.50156899,7.88030287 L7.48772078,8.99175409 L6.33061979,9.0012438 C4.84064582,9.04438683 3.6,10.4529679 3.6,12.1 C3.6,13.6643787 4.83868693,14.9394465 6.38876321,14.9979059 L6.5,15 L8.5,15 L8.5,17 L6.5,17 C3.79380473,17 1.6,14.8061953 1.6,12.1 C1.6,9.68983052 3.25231852,7.56452435 5.49502278,7.09571076 L5.5645,7.082 L5.58684851,6.93675031 C6.05502185,4.09688845 8.36434526,2.06966277 11.3452237,2.00175907 L11.5,2 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M7.5,12 L12,7.5 L16.5,12 L15,13.5 L13,11.5 L13,22 L11,22 L11,11.5 L9,13.5 L7.5,12 Z M11.5,2 C14.0570069,2 16.3672564,3.55157482 17.2358321,5.93092178 L17.2835,6.0665 L17.4145183,6.08731097 C20.0449239,6.53520702 21.9316381,8.61876864 21.9981819,11.350367 L22,11.5 C22,14.6411668 19.7996323,16.9265021 16.7006468,16.998261 L16.55,17 L15.5,17 L15.5,15 L16.55,15 C18.6163623,15 20,13.5942857 20,11.5 C20,9.538055 18.6018237,8.11877635 16.6000787,8.00507103 L16.4714957,7.99959367 L15.6755756,7.97689732 L15.5194193,7.19611614 C15.1395428,5.29673328 13.433695,4 11.5,4 C9.26285888,4 7.62213728,5.5585359 7.5065992,7.75063225 L7.50156899,7.88030287 L7.48772078,8.99175409 L6.33061979,9.0012438 C4.84064582,9.04438683 3.6,10.4529679 3.6,12.1 C3.6,13.6643787 4.83868693,14.9394465 6.38876321,14.9979059 L6.5,15 L8.5,15 L8.5,17 L6.5,17 C3.79380473,17 1.6,14.8061953 1.6,12.1 C1.6,9.68983052 3.25231852,7.56452435 5.49502278,7.09571076 L5.5645,7.082 L5.58684851,6.93675031 C6.05502185,4.09688845 8.36434526,2.06966277 11.3452237,2.00175907 L11.5,2 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--upload {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 1.636l5.657 5.657-1.414 1.414L13 5.465V18h-2V5.465L7.757 8.707 6.343 7.293 12 1.636zM5 15v5h14v-5h2v7H3v-7h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 1.636l5.657 5.657-1.414 1.414L13 5.465V18h-2V5.465L7.757 8.707 6.343 7.293 12 1.636zM5 15v5h14v-5h2v7H3v-7h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--user {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.267 13a4.733 4.733 0 014.728 4.517l.005.216V22H3v-4.267a4.733 4.733 0 014.517-4.728L7.733 13h8.534zm-8.534 2a2.733 2.733 0 00-2.728 2.567L5 17.733V20h14v-2.267c0-1.416-1.107-2.636-2.46-2.726l-.163-.005L7.733 15zM12 2a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.267 13a4.733 4.733 0 014.728 4.517l.005.216V22H3v-4.267a4.733 4.733 0 014.517-4.728L7.733 13h8.534zm-8.534 2a2.733 2.733 0 00-2.728 2.567L5 17.733V20h14v-2.267c0-1.416-1.107-2.636-2.46-2.726l-.163-.005L7.733 15zM12 2a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--videocamera-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM23 6.613v10.774l-6.018-2.006a4 4 0 01-3.775 3.614L13 19H8.534l2-2H13a2 2 0 001.995-1.85L15 15v-2.466l4.882-4.882L23 6.612zM13 5c.71 0 1.377.185 1.955.51l-1.534 1.534a1.999 1.999 0 00-.278-.039L13 7H5a2 2 0 00-1.995 1.85L3 9v6c0 .671.33 1.265.838 1.628l-1.424 1.424a3.992 3.992 0 01-1.407-2.81L1 15V9a4 4 0 013.8-3.995L5 5h8zm8 4.387l-4 1.333v2.559l4 1.333V9.387zM6 9a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM23 6.613v10.774l-6.018-2.006a4 4 0 01-3.775 3.614L13 19H8.534l2-2H13a2 2 0 001.995-1.85L15 15v-2.466l4.882-4.882L23 6.612zM13 5c.71 0 1.377.185 1.955.51l-1.534 1.534a1.999 1.999 0 00-.278-.039L13 7H5a2 2 0 00-1.995 1.85L3 9v6c0 .671.33 1.265.838 1.628l-1.424 1.424a3.992 3.992 0 01-1.407-2.81L1 15V9a4 4 0 013.8-3.995L5 5h8zm8 4.387l-4 1.333v2.559l4 1.333V9.387zM6 9a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--videocamera {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M13 5a4 4 0 013.982 3.62L23 6.612v10.774l-6.018-2.006a4 4 0 01-3.775 3.614L13 19H5a4 4 0 01-3.995-3.8L1 15V9a4 4 0 013.8-3.995L5 5h8zm0 2H5a2 2 0 00-1.995 1.85L3 9v6a2 2 0 001.85 1.995L5 17h8a2 2 0 001.995-1.85L15 15V9a2 2 0 00-1.85-1.995L13 7zm8 2.387l-4 1.333v2.559l4 1.333V9.387zM6 9a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M13 5a4 4 0 013.982 3.62L23 6.612v10.774l-6.018-2.006a4 4 0 01-3.775 3.614L13 19H5a4 4 0 01-3.995-3.8L1 15V9a4 4 0 013.8-3.995L5 5h8zm0 2H5a2 2 0 00-1.995 1.85L3 9v6a2 2 0 001.85 1.995L5 17h8a2 2 0 001.995-1.85L15 15V9a2 2 0 00-1.85-1.995L13 7zm8 2.387l-4 1.333v2.559l4 1.333V9.387zM6 9a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--volume-high {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2.5 L15,21.5 L9.273,17 L6,17 C3.23857625,17 1,14.7614237 1,12 C1,9.28538004 3.16333539,7.07603414 5.86004758,7.0019209 L9.273,7 L15,2.5 Z M20.0710678,4.92893219 C23.9053063,8.76317069 23.9750197,14.9363852 20.2802081,18.8556774 L20.0710678,19.0710678 L18.6568542,17.6568542 C21.7145764,14.5991321 21.7796343,9.68200687 18.852028,6.54516122 L18.6568542,6.34314575 L20.0710678,4.92893219 Z M13,6.8115 L10,8.926 L10,15.073 L13,17.188 L13,6.8115 Z M17.2218254,7.73654403 C19.5048905,10.0196091 19.5634306,13.6848168 17.3974458,16.038761 L17.2218254,16.2218254 L15.8076118,14.8076118 C17.3176391,13.2975846 17.3679733,10.8806204 15.9586146,9.31013063 L15.8076118,9.1507576 L17.2218254,7.73654403 Z M6.02744815,8.99981164 L5.91499246,9.00116602 C4.29498194,9.04568847 3,10.3746044 3,12 C3,13.6191985 4.28278744,14.9387859 5.88753087,14.9979308 L6,15 L8,15 L8,9 L6.02744815,8.99981164 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2.5 L15,21.5 L9.273,17 L6,17 C3.23857625,17 1,14.7614237 1,12 C1,9.28538004 3.16333539,7.07603414 5.86004758,7.0019209 L9.273,7 L15,2.5 Z M20.0710678,4.92893219 C23.9053063,8.76317069 23.9750197,14.9363852 20.2802081,18.8556774 L20.0710678,19.0710678 L18.6568542,17.6568542 C21.7145764,14.5991321 21.7796343,9.68200687 18.852028,6.54516122 L18.6568542,6.34314575 L20.0710678,4.92893219 Z M13,6.8115 L10,8.926 L10,15.073 L13,17.188 L13,6.8115 Z M17.2218254,7.73654403 C19.5048905,10.0196091 19.5634306,13.6848168 17.3974458,16.038761 L17.2218254,16.2218254 L15.8076118,14.8076118 C17.3176391,13.2975846 17.3679733,10.8806204 15.9586146,9.31013063 L15.8076118,9.1507576 L17.2218254,7.73654403 Z M6.02744815,8.99981164 L5.91499246,9.00116602 C4.29498194,9.04568847 3,10.3746044 3,12 C3,13.6191985 4.28278744,14.9387859 5.88753087,14.9979308 L6,15 L8,15 L8,9 L6.02744815,8.99981164 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--volume-low {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2.5 L15,21.5 L9.273,17 L6,17 C3.23857625,17 1,14.7614237 1,12 C1,9.28538004 3.16333539,7.07603414 5.86004758,7.0019209 L9.273,7 L15,2.5 Z M13,6.8115 L10,8.926 L10,15.073 L13,17.188 L13,6.8115 Z M17.2218254,7.73654403 C19.5048905,10.0196091 19.5634306,13.6848168 17.3974458,16.038761 L17.2218254,16.2218254 L15.8076118,14.8076118 C17.3176391,13.2975846 17.3679733,10.8806204 15.9586146,9.31013063 L15.8076118,9.1507576 L17.2218254,7.73654403 Z M6.02744815,8.99981164 L5.91499246,9.00116602 C4.29498194,9.04568847 3,10.3746044 3,12 C3,13.6191985 4.28278744,14.9387859 5.88753087,14.9979308 L6,15 L8,15 L8,9 L6.02744815,8.99981164 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2.5 L15,21.5 L9.273,17 L6,17 C3.23857625,17 1,14.7614237 1,12 C1,9.28538004 3.16333539,7.07603414 5.86004758,7.0019209 L9.273,7 L15,2.5 Z M13,6.8115 L10,8.926 L10,15.073 L13,17.188 L13,6.8115 Z M17.2218254,7.73654403 C19.5048905,10.0196091 19.5634306,13.6848168 17.3974458,16.038761 L17.2218254,16.2218254 L15.8076118,14.8076118 C17.3176391,13.2975846 17.3679733,10.8806204 15.9586146,9.31013063 L15.8076118,9.1507576 L17.2218254,7.73654403 Z M6.02744815,8.99981164 L5.91499246,9.00116602 C4.29498194,9.04568847 3,10.3746044 3,12 C3,13.6191985 4.28278744,14.9387859 5.88753087,14.9979308 L6,15 L8,15 L8,9 L6.02744815,8.99981164 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--volume-minus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9zm16 2v2h-7v-2h7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9zm16 2v2h-7v-2h7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--volume-mute {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM22.5 8.5L24 10l-2 2 2 2-1.5 1.5-2-2-2 2L17 14l2-2-2-2 1.5-1.5 2 2 2-2zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM22.5 8.5L24 10l-2 2 2 2-1.5 1.5-2-2-2 2L17 14l2-2-2-2 1.5-1.5 2 2 2-2zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--volume-plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM21 8v3h3v2h-3v3h-2v-3h-3v-2h3V8h2zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM21 8v3h3v2h-3v3h-2v-3h-3v-2h3V8h2zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--wifi-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM12 17.533a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm1.525-3.525a6.389 6.389 0 012.615 1.515l.112.109-1.415 1.414a4.335 4.335 0 00-3.06-1.29l1.748-1.748zm-2.56-4.507L7.99 12.475a8.44 8.44 0 00-1.81 1.33l-.116.114-1.414-1.414A10.398 10.398 0 0110.965 9.5zm5.924 1.145c.85.449 1.652 1.024 2.377 1.725l.124.122-1.414 1.415a8.379 8.379 0 00-2.585-1.764l1.498-1.498zm3.241-3.24c.782.511 1.527 1.103 2.223 1.777l.175.172-1.414 1.414a12.9 12.9 0 00-2.435-1.912l1.451-1.45zM15.135 5.33l-1.743 1.745c-3.67-.393-7.478.789-10.326 3.546l-.152.15L1.5 9.354c3.702-3.702 8.87-5.044 13.635-4.026z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM12 17.533a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm1.525-3.525a6.389 6.389 0 012.615 1.515l.112.109-1.415 1.414a4.335 4.335 0 00-3.06-1.29l1.748-1.748zm-2.56-4.507L7.99 12.475a8.44 8.44 0 00-1.81 1.33l-.116.114-1.414-1.414A10.398 10.398 0 0110.965 9.5zm5.924 1.145c.85.449 1.652 1.024 2.377 1.725l.124.122-1.414 1.415a8.379 8.379 0 00-2.585-1.764l1.498-1.498zm3.241-3.24c.782.511 1.527 1.103 2.223 1.777l.175.172-1.414 1.414a12.9 12.9 0 00-2.435-1.912l1.451-1.45zM15.135 5.33l-1.743 1.745c-3.67-.393-7.478.789-10.326 3.546l-.152.15L1.5 9.354c3.702-3.702 8.87-5.044 13.635-4.026z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--wifi {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 17.534a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm4.14-2.011l.112.109-1.415 1.414c-1.628-1.629-4.166-1.717-5.727-.253l-.087.085-1.414-1.414c2.312-2.313 6.1-2.26 8.531.059zm3.126-3.152l.124.122-1.414 1.415c-3.248-3.248-8.495-3.281-11.796-.102l-.116.113-1.414-1.414c4.032-4.032 10.54-4.079 14.616-.134zm3.087-3.188l.175.172-1.414 1.414C16.138 5.794 8.103 5.744 3.066 10.62l-.152.15L1.5 9.354c5.749-5.749 15.033-5.806 20.853-.172z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 17.534a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm4.14-2.011l.112.109-1.415 1.414c-1.628-1.629-4.166-1.717-5.727-.253l-.087.085-1.414-1.414c2.312-2.313 6.1-2.26 8.531.059zm3.126-3.152l.124.122-1.414 1.415c-3.248-3.248-8.495-3.281-11.796-.102l-.116.113-1.414-1.414c4.032-4.032 10.54-4.079 14.616-.134zm3.087-3.188l.175.172-1.414 1.414C16.138 5.794 8.103 5.744 3.066 10.62l-.152.15L1.5 9.354c5.749-5.749 15.033-5.806 20.853-.172z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--zoom-in {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 2a8 8 0 11-4.953 14.283l-5.633 5.631L2 20.5l5.642-5.644A8 8 0 0114 2zm0 2a6 6 0 100 12 6 6 0 000-12zm1 2v3h3v2h-3v3h-2v-3h-3V9h3V6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 2a8 8 0 11-4.953 14.283l-5.633 5.631L2 20.5l5.642-5.644A8 8 0 0114 2zm0 2a6 6 0 100 12 6 6 0 000-12zm1 2v3h3v2h-3v3h-2v-3h-3V9h3V6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--zoom-out {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 2a8 8 0 11-4.953 14.283l-5.633 5.631L2 20.5l5.642-5.644A8 8 0 0114 2zm0 2a6 6 0 100 12 6 6 0 000-12zm4 5v2h-8V9h8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 2a8 8 0 11-4.953 14.283l-5.633 5.631L2 20.5l5.642-5.644A8 8 0 0114 2zm0 2a6 6 0 100 12 6 6 0 000-12zm4 5v2h-8V9h8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--zoom-text {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2a8 8 0 11-4.953 14.283l-5.633 5.631L3 20.5l5.642-5.644A8 8 0 0115 2zm0 2a6 6 0 100 12 6 6 0 000-12zm1.065 2.5L18.25 13h-1.8l-.395-1.24H13.86L13.476 13H11.75l2.185-6.5h2.13zM4.65 7.5L6.5 13H4.976l-.333-1.05H2.786L2.46 13H1l1.85-5.5h1.8zm-.913 1.415h-.032l-.054.244c-.014.058-.03.122-.05.19l-.062.21-.373 1.184H4.27l-.373-1.184c-.103-.318-.159-.644-.159-.644zm11.248-.743h-.038l-.075.33a7.427 7.427 0 01-.054.207l-.068.224-.44 1.4h1.303l-.44-1.4c-.122-.376-.188-.761-.188-.761z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2a8 8 0 11-4.953 14.283l-5.633 5.631L3 20.5l5.642-5.644A8 8 0 0115 2zm0 2a6 6 0 100 12 6 6 0 000-12zm1.065 2.5L18.25 13h-1.8l-.395-1.24H13.86L13.476 13H11.75l2.185-6.5h2.13zM4.65 7.5L6.5 13H4.976l-.333-1.05H2.786L2.46 13H1l1.85-5.5h1.8zm-.913 1.415h-.032l-.054.244c-.014.058-.03.122-.05.19l-.062.21-.373 1.184H4.27l-.373-1.184c-.103-.318-.159-.644-.159-.644zm11.248-.743h-.038l-.075.33a7.427 7.427 0 01-.054.207l-.068.224-.44 1.4h1.303l-.44-1.4c-.122-.376-.188-.761-.188-.761z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n.hds-icon--alert-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--cake {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,2.18036665 L18.6170955,3.07374524 C19.7056028,4.64959381 20.25,5.73838824 20.25,6.5 C20.25,7.47956939 19.6240154,8.31293223 18.7502535,8.6218811 L18.750584,10.007947 C20.6239926,10.1275594 22,11.5844616 22,13.5000171 L22,22.0000171 L2,22.0000171 L2,13.5000171 C2,11.5841197 3.37649862,10.1270394 5.25041913,10.0078831 L5.25076538,8.62224108 C4.37647132,8.31357999 3.75,7.4799501 3.75,6.5 C3.75,5.78318893 4.23223421,4.77655515 5.19646322,3.34681278 L5.38290448,3.07374524 L6,2.18036665 L6.61709552,3.07374524 C7.70560278,4.64959381 8.25,5.73838824 8.25,6.5 C8.25,7.47956939 7.62401536,8.31293223 6.7502535,8.6218811 L6.75,9.99936665 L11.25,9.99936665 L11.2507654,8.62224108 C10.4226656,8.32988842 9.81689238,7.566576 9.75519081,6.65404881 L9.75,6.5 C9.75,5.78318893 10.2322342,4.77655515 11.1964632,3.34681278 L11.3829045,3.07374524 L12,2.18036665 L12.6170955,3.07374524 C13.7056028,4.64959381 14.25,5.73838824 14.25,6.5 C14.25,7.47956939 13.6240154,8.31293223 12.7502535,8.6218811 L12.75,9.99936665 L17.25,9.99936665 L17.2507654,8.62224108 C16.4226656,8.32988842 15.8168924,7.566576 15.7551908,6.65404881 L15.75,6.5 C15.75,5.78318893 16.2322342,4.77655515 17.1964632,3.34681278 L17.3829045,3.07374524 L18,2.18036665 Z M15.2524986,17.1749293 L15,17.025 L14.9911282,17.0311542 C14.1889167,17.533117 13.2875201,17.8080212 12.2991185,17.8538553 L12,17.8607314 C10.9943191,17.8607314 10.0744254,17.6314602 9.25249863,17.1749293 L9,17.025 L8.99112819,17.0311542 C8.18891668,17.533117 7.28752013,17.8080212 6.29911847,17.8538553 L6,17.8607314 C5.28908765,17.8607314 4.62104336,17.746164 4.00016954,17.5177396 L4,20 L20,20 L20.00084,17.5173681 C19.3796808,17.7460397 18.7112977,17.8607314 18,17.8607314 C16.9943191,17.8607314 16.0744254,17.6314602 15.2524986,17.1749293 Z M18.5,12.0000171 L5.5,12.0000171 C4.5,12.0000171 3.99984155,12.5000171 3.99984155,13.5000171 L3.99984155,15.8740735 C4.59297228,16.1991606 5.25576505,16.3607314 6,16.3607314 C6.88939013,16.3607314 7.66247112,16.129989 8.33934762,15.665184 L8.53954454,15.5187173 L9,15.1605852 L9.46045546,15.5187173 C10.1840758,16.0815331 11.0216709,16.3607314 12,16.3607314 C12.8893901,16.3607314 13.6624711,16.129989 14.3393476,15.665184 L14.5395445,15.5187173 L15,15.1605852 L15.4604555,15.5187173 C16.1840758,16.0815331 17.0216709,16.3607314 18,16.3607314 C18.7446545,16.3607314 19.4077749,16.1989784 20.0011614,15.8735236 L20,13.5000171 C20,12.5000171 19.5,12.0000171 18.5,12.0000171 Z M12.1776599,5.16381918 L12,4.868 L11.7714885,5.25185018 L11.7714885,5.25185018 L11.5527141,5.65496405 C11.3508947,6.0513759 11.25,6.33860812 11.25,6.5 C11.25,6.91421356 11.5857864,7.25 12,7.25 C12.4142136,7.25 12.75,6.91421356 12.75,6.5 C12.75,6.35878211 12.6727525,6.1212177 12.5182374,5.79846816 L12.4472859,5.65496405 L12.2769975,5.33744432 L12.1776599,5.16381918 L12.1776599,5.16381918 Z M18.1776599,5.16381918 L18,4.868 L17.7714885,5.25185018 L17.7714885,5.25185018 L17.5527141,5.65496405 C17.3508947,6.0513759 17.25,6.33860812 17.25,6.5 C17.25,6.91421356 17.5857864,7.25 18,7.25 C18.4142136,7.25 18.75,6.91421356 18.75,6.5 C18.75,6.35878211 18.6727525,6.1212177 18.5182374,5.79846816 L18.4472859,5.65496405 L18.2769975,5.33744432 L18.1776599,5.16381918 L18.1776599,5.16381918 Z M6.17765988,5.16381918 L6,4.868 L5.7714885,5.25185018 L5.7714885,5.25185018 L5.55271413,5.65496405 C5.35089473,6.0513759 5.25,6.33860812 5.25,6.5 C5.25,6.91421356 5.58578644,7.25 6,7.25 C6.41421356,7.25 6.75,6.91421356 6.75,6.5 C6.75,6.35878211 6.67275247,6.1212177 6.51823736,5.79846816 L6.44728587,5.65496405 L6.27699748,5.33744432 L6.17765988,5.16381918 L6.17765988,5.16381918 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,2.18036665 L18.6170955,3.07374524 C19.7056028,4.64959381 20.25,5.73838824 20.25,6.5 C20.25,7.47956939 19.6240154,8.31293223 18.7502535,8.6218811 L18.750584,10.007947 C20.6239926,10.1275594 22,11.5844616 22,13.5000171 L22,22.0000171 L2,22.0000171 L2,13.5000171 C2,11.5841197 3.37649862,10.1270394 5.25041913,10.0078831 L5.25076538,8.62224108 C4.37647132,8.31357999 3.75,7.4799501 3.75,6.5 C3.75,5.78318893 4.23223421,4.77655515 5.19646322,3.34681278 L5.38290448,3.07374524 L6,2.18036665 L6.61709552,3.07374524 C7.70560278,4.64959381 8.25,5.73838824 8.25,6.5 C8.25,7.47956939 7.62401536,8.31293223 6.7502535,8.6218811 L6.75,9.99936665 L11.25,9.99936665 L11.2507654,8.62224108 C10.4226656,8.32988842 9.81689238,7.566576 9.75519081,6.65404881 L9.75,6.5 C9.75,5.78318893 10.2322342,4.77655515 11.1964632,3.34681278 L11.3829045,3.07374524 L12,2.18036665 L12.6170955,3.07374524 C13.7056028,4.64959381 14.25,5.73838824 14.25,6.5 C14.25,7.47956939 13.6240154,8.31293223 12.7502535,8.6218811 L12.75,9.99936665 L17.25,9.99936665 L17.2507654,8.62224108 C16.4226656,8.32988842 15.8168924,7.566576 15.7551908,6.65404881 L15.75,6.5 C15.75,5.78318893 16.2322342,4.77655515 17.1964632,3.34681278 L17.3829045,3.07374524 L18,2.18036665 Z M15.2524986,17.1749293 L15,17.025 L14.9911282,17.0311542 C14.1889167,17.533117 13.2875201,17.8080212 12.2991185,17.8538553 L12,17.8607314 C10.9943191,17.8607314 10.0744254,17.6314602 9.25249863,17.1749293 L9,17.025 L8.99112819,17.0311542 C8.18891668,17.533117 7.28752013,17.8080212 6.29911847,17.8538553 L6,17.8607314 C5.28908765,17.8607314 4.62104336,17.746164 4.00016954,17.5177396 L4,20 L20,20 L20.00084,17.5173681 C19.3796808,17.7460397 18.7112977,17.8607314 18,17.8607314 C16.9943191,17.8607314 16.0744254,17.6314602 15.2524986,17.1749293 Z M18.5,12.0000171 L5.5,12.0000171 C4.5,12.0000171 3.99984155,12.5000171 3.99984155,13.5000171 L3.99984155,15.8740735 C4.59297228,16.1991606 5.25576505,16.3607314 6,16.3607314 C6.88939013,16.3607314 7.66247112,16.129989 8.33934762,15.665184 L8.53954454,15.5187173 L9,15.1605852 L9.46045546,15.5187173 C10.1840758,16.0815331 11.0216709,16.3607314 12,16.3607314 C12.8893901,16.3607314 13.6624711,16.129989 14.3393476,15.665184 L14.5395445,15.5187173 L15,15.1605852 L15.4604555,15.5187173 C16.1840758,16.0815331 17.0216709,16.3607314 18,16.3607314 C18.7446545,16.3607314 19.4077749,16.1989784 20.0011614,15.8735236 L20,13.5000171 C20,12.5000171 19.5,12.0000171 18.5,12.0000171 Z M12.1776599,5.16381918 L12,4.868 L11.7714885,5.25185018 L11.7714885,5.25185018 L11.5527141,5.65496405 C11.3508947,6.0513759 11.25,6.33860812 11.25,6.5 C11.25,6.91421356 11.5857864,7.25 12,7.25 C12.4142136,7.25 12.75,6.91421356 12.75,6.5 C12.75,6.35878211 12.6727525,6.1212177 12.5182374,5.79846816 L12.4472859,5.65496405 L12.2769975,5.33744432 L12.1776599,5.16381918 L12.1776599,5.16381918 Z M18.1776599,5.16381918 L18,4.868 L17.7714885,5.25185018 L17.7714885,5.25185018 L17.5527141,5.65496405 C17.3508947,6.0513759 17.25,6.33860812 17.25,6.5 C17.25,6.91421356 17.5857864,7.25 18,7.25 C18.4142136,7.25 18.75,6.91421356 18.75,6.5 C18.75,6.35878211 18.6727525,6.1212177 18.5182374,5.79846816 L18.4472859,5.65496405 L18.2769975,5.33744432 L18.1776599,5.16381918 L18.1776599,5.16381918 Z M6.17765988,5.16381918 L6,4.868 L5.7714885,5.25185018 L5.7714885,5.25185018 L5.55271413,5.65496405 C5.35089473,6.0513759 5.25,6.33860812 5.25,6.5 C5.25,6.91421356 5.58578644,7.25 6,7.25 C6.41421356,7.25 6.75,6.91421356 6.75,6.5 C6.75,6.35878211 6.67275247,6.1212177 6.51823736,5.79846816 L6.44728587,5.65496405 L6.27699748,5.33744432 L6.17765988,5.16381918 L6.17765988,5.16381918 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--calendar-recurring {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16.5,24 L16.2787929,23.9956328 C13.34378,23.8795391 11,21.4634791 11,18.5 C11,15.5365209 13.34378,13.1204609 16.2787929,13.0043672 L16.5,13 L16.7732784,13.0067242 C18.0431499,13.0693776 19.233589,13.5683903 20.1999204,14.4417422 L20.422,14.653 L20.4210526,13 L22,13 L22,18 L17,18 L17,16.4210526 L19.299,16.421 L19.0723651,16.1265857 L18.9156533,15.9672102 C18.2708361,15.3515202 17.4146317,15 16.5,15 C14.5670034,15 13,16.5670034 13,18.5 C13,20.4329966 14.5670034,22 16.5,22 L16.6058825,21.9984281 L16.6058825,21.9984281 L16.7500024,21.9912088 L16.9499759,21.971343 L17.118356,21.9455928 L17.2213075,21.9255927 L17.3972515,21.883929 L17.5850289,21.8285631 L17.6959994,21.7905955 L17.8733374,21.7206279 L18.0690175,21.6298559 L18.1649577,21.5793864 L18.3374394,21.4794671 L18.3374394,21.4794671 L18.2260872,21.5458731 C18.3669611,21.4658472 18.5024167,21.3758927 18.6315119,21.2765307 L18.8060993,21.1329137 C19.229017,20.7621923 19.5618464,20.2912056 19.7674734,19.7570681 L21.6347628,20.4749725 C21.3907662,21.1089351 21.0327422,21.6862961 20.5858175,22.1819289 L20.3890873,22.3890873 L20.1633223,22.6025548 L20.1633223,22.6025548 L19.9501038,22.7836402 L19.9501038,22.7836402 L19.7949017,22.9043159 L19.7949017,22.9043159 L19.6184802,23.0311641 L19.6184802,23.0311641 L19.4441479,23.1464729 L19.4441479,23.1464729 L19.2063141,23.289208 L19.2063141,23.289208 L18.9788104,23.4110622 L18.9788104,23.4110622 L18.7397969,23.5247595 L18.7397969,23.5247595 L18.4974858,23.6260162 L18.4974858,23.6260162 L18.3538,23.6794869 L18.3538,23.6794869 L18.1096346,23.7606795 L18.1096346,23.7606795 L17.8371768,23.8360421 L17.8371768,23.8360421 L17.5225645,23.9048532 L17.5225645,23.9048532 L17.3735885,23.9310058 L17.3735885,23.9310058 L17.0542405,23.9723156 L17.0542405,23.9723156 L16.8756787,23.9873711 L16.8756787,23.9873711 L16.7212071,23.9956328 L16.7212071,23.9956328 L16.5,24 Z M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,11 L4,11 L4,19 L10,19 C10,19.5 10.2046135,20.3783843 10.5,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16.5,24 L16.2787929,23.9956328 C13.34378,23.8795391 11,21.4634791 11,18.5 C11,15.5365209 13.34378,13.1204609 16.2787929,13.0043672 L16.5,13 L16.7732784,13.0067242 C18.0431499,13.0693776 19.233589,13.5683903 20.1999204,14.4417422 L20.422,14.653 L20.4210526,13 L22,13 L22,18 L17,18 L17,16.4210526 L19.299,16.421 L19.0723651,16.1265857 L18.9156533,15.9672102 C18.2708361,15.3515202 17.4146317,15 16.5,15 C14.5670034,15 13,16.5670034 13,18.5 C13,20.4329966 14.5670034,22 16.5,22 L16.6058825,21.9984281 L16.6058825,21.9984281 L16.7500024,21.9912088 L16.9499759,21.971343 L17.118356,21.9455928 L17.2213075,21.9255927 L17.3972515,21.883929 L17.5850289,21.8285631 L17.6959994,21.7905955 L17.8733374,21.7206279 L18.0690175,21.6298559 L18.1649577,21.5793864 L18.3374394,21.4794671 L18.3374394,21.4794671 L18.2260872,21.5458731 C18.3669611,21.4658472 18.5024167,21.3758927 18.6315119,21.2765307 L18.8060993,21.1329137 C19.229017,20.7621923 19.5618464,20.2912056 19.7674734,19.7570681 L21.6347628,20.4749725 C21.3907662,21.1089351 21.0327422,21.6862961 20.5858175,22.1819289 L20.3890873,22.3890873 L20.1633223,22.6025548 L20.1633223,22.6025548 L19.9501038,22.7836402 L19.9501038,22.7836402 L19.7949017,22.9043159 L19.7949017,22.9043159 L19.6184802,23.0311641 L19.6184802,23.0311641 L19.4441479,23.1464729 L19.4441479,23.1464729 L19.2063141,23.289208 L19.2063141,23.289208 L18.9788104,23.4110622 L18.9788104,23.4110622 L18.7397969,23.5247595 L18.7397969,23.5247595 L18.4974858,23.6260162 L18.4974858,23.6260162 L18.3538,23.6794869 L18.3538,23.6794869 L18.1096346,23.7606795 L18.1096346,23.7606795 L17.8371768,23.8360421 L17.8371768,23.8360421 L17.5225645,23.9048532 L17.5225645,23.9048532 L17.3735885,23.9310058 L17.3735885,23.9310058 L17.0542405,23.9723156 L17.0542405,23.9723156 L16.8756787,23.9873711 L16.8756787,23.9873711 L16.7212071,23.9956328 L16.7212071,23.9956328 L16.5,24 Z M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,11 L4,11 L4,19 L10,19 C10,19.5 10.2046135,20.3783843 10.5,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--check-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--check-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--cross-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M15,7.5 L16.5,9 L13.5,12 L16.5,15 L15,16.5 L12,13.5 L9,16.5 L7.5,15 L10.5,12 L7.5,9 L9,7.5 L12,10.5 L15,7.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M15,7.5 L16.5,9 L13.5,12 L16.5,15 L15,16.5 L12,13.5 L9,16.5 L7.5,15 L10.5,12 L7.5,9 L9,7.5 L12,10.5 L15,7.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--drag {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,16 C9.1045695,16 10,16.8954305 10,18 C10,19.1045695 9.1045695,20 8,20 C6.8954305,20 6,19.1045695 6,18 C6,16.8954305 6.8954305,16 8,16 Z M16,16 C17.1045695,16 18,16.8954305 18,18 C18,19.1045695 17.1045695,20 16,20 C14.8954305,20 14,19.1045695 14,18 C14,16.8954305 14.8954305,16 16,16 Z M8,10 C9.1045695,10 10,10.8954305 10,12 C10,13.1045695 9.1045695,14 8,14 C6.8954305,14 6,13.1045695 6,12 C6,10.8954305 6.8954305,10 8,10 Z M16,10 C17.1045695,10 18,10.8954305 18,12 C18,13.1045695 17.1045695,14 16,14 C14.8954305,14 14,13.1045695 14,12 C14,10.8954305 14.8954305,10 16,10 Z M8,4 C9.1045695,4 10,4.8954305 10,6 C10,7.1045695 9.1045695,8 8,8 C6.8954305,8 6,7.1045695 6,6 C6,4.8954305 6.8954305,4 8,4 Z M16,4 C17.1045695,4 18,4.8954305 18,6 C18,7.1045695 17.1045695,8 16,8 C14.8954305,8 14,7.1045695 14,6 C14,4.8954305 14.8954305,4 16,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,16 C9.1045695,16 10,16.8954305 10,18 C10,19.1045695 9.1045695,20 8,20 C6.8954305,20 6,19.1045695 6,18 C6,16.8954305 6.8954305,16 8,16 Z M16,16 C17.1045695,16 18,16.8954305 18,18 C18,19.1045695 17.1045695,20 16,20 C14.8954305,20 14,19.1045695 14,18 C14,16.8954305 14.8954305,16 16,16 Z M8,10 C9.1045695,10 10,10.8954305 10,12 C10,13.1045695 9.1045695,14 8,14 C6.8954305,14 6,13.1045695 6,12 C6,10.8954305 6.8954305,10 8,10 Z M16,10 C17.1045695,10 18,10.8954305 18,12 C18,13.1045695 17.1045695,14 16,14 C14.8954305,14 14,13.1045695 14,12 C14,10.8954305 14.8954305,10 16,10 Z M8,4 C9.1045695,4 10,4.8954305 10,6 C10,7.1045695 9.1045695,8 8,8 C6.8954305,8 6,7.1045695 6,6 C6,4.8954305 6.8954305,4 8,4 Z M16,4 C17.1045695,4 18,4.8954305 18,6 C18,7.1045695 17.1045695,8 16,8 C14.8954305,8 14,7.1045695 14,6 C14,4.8954305 14.8954305,4 16,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--error-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M11.1749534,3.45608205 C11.5239234,2.86969084 12.3977071,2.8487483 12.7841638,3.39325442 L12.8250466,3.45608205 L21.8770534,18.6666084 C22.2201691,19.2431624 21.8055019,19.9510257 21.123493,19.997576 L21.0520068,20 L2.94799316,20 C2.24813009,20 1.7986969,19.3113552 2.09013491,18.7266878 L2.1229466,18.6666084 L11.1749534,3.45608205 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,8.5 L13,14.5 L11,14.5 L11,8.5 L13,8.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M11.1749534,3.45608205 C11.5239234,2.86969084 12.3977071,2.8487483 12.7841638,3.39325442 L12.8250466,3.45608205 L21.8770534,18.6666084 C22.2201691,19.2431624 21.8055019,19.9510257 21.123493,19.997576 L21.0520068,20 L2.94799316,20 C2.24813009,20 1.7986969,19.3113552 2.09013491,18.7266878 L2.1229466,18.6666084 L11.1749534,3.45608205 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,8.5 L13,14.5 L11,14.5 L11,8.5 L13,8.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--glyph-at {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M11.8769231,20 C14.8307692,20 17.0666667,18.8307692 18.2153846,17.6205128 L16.3692308,16.5333333 C15.5487179,17.7435897 13.8871795,18.3589744 11.8769231,18.3589744 C8.38974359,18.3589744 5.86666667,15.7948718 5.86666667,11.9794872 C5.86666667,8.24615385 8.36923077,5.68205128 11.9589744,5.68205128 C15.3230769,5.68205128 17.7025641,8 17.7025641,11.3435897 C17.7025641,12.9641026 16.9846154,14.174359 15.9589744,14.174359 C15.3025641,14.174359 14.974359,13.8051282 14.974359,13.025641 L14.974359,10.625641 C14.974359,8.71794872 13.7230769,7.83589744 12.0410256,7.83589744 C10.2564103,7.83589744 9.08717949,8.82051282 8.49230769,9.92820513 L10.1538462,10.8512821 C10.3384615,10.0923077 10.9333333,9.37435897 11.9794872,9.37435897 C12.5948718,9.37435897 13.1487179,9.7025641 13.1487179,10.2564103 C13.1487179,10.7897436 12.4102564,10.9538462 11.3846154,11.1589744 C10.0717949,11.425641 8.67692308,11.9384615 8.67692308,13.4974359 C8.67692308,14.7692308 9.80512821,15.6923077 11.1384615,15.6923077 C12.3282051,15.6923077 13.1487179,15.0153846 13.4769231,14.5846154 L13.5179487,14.5846154 C13.9487179,15.3846154 14.8923077,15.6923077 15.8974359,15.6923077 C17.6410256,15.6923077 19.5692308,14.3794872 19.5692308,11.3435897 C19.5692308,7.03589744 16.2666667,4 11.9589744,4 C7.40512821,4 4,7.28205128 4,11.9794872 C4,16.8410256 7.42564103,20 11.8769231,20 Z M11.5692308,14.174359 C10.974359,14.174359 10.5025641,13.8871795 10.5025641,13.374359 C10.5025641,12.8 11.0679487,12.586859 11.6215545,12.4326122 L11.8564103,12.3692308 L11.8564103,12.3692308 C12.5128205,12.2051282 13.025641,12.0615385 13.2102564,11.7948718 L13.2102564,12.5948718 C13.2102564,13.6615385 12.3692308,14.174359 11.5692308,14.174359 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M11.8769231,20 C14.8307692,20 17.0666667,18.8307692 18.2153846,17.6205128 L16.3692308,16.5333333 C15.5487179,17.7435897 13.8871795,18.3589744 11.8769231,18.3589744 C8.38974359,18.3589744 5.86666667,15.7948718 5.86666667,11.9794872 C5.86666667,8.24615385 8.36923077,5.68205128 11.9589744,5.68205128 C15.3230769,5.68205128 17.7025641,8 17.7025641,11.3435897 C17.7025641,12.9641026 16.9846154,14.174359 15.9589744,14.174359 C15.3025641,14.174359 14.974359,13.8051282 14.974359,13.025641 L14.974359,10.625641 C14.974359,8.71794872 13.7230769,7.83589744 12.0410256,7.83589744 C10.2564103,7.83589744 9.08717949,8.82051282 8.49230769,9.92820513 L10.1538462,10.8512821 C10.3384615,10.0923077 10.9333333,9.37435897 11.9794872,9.37435897 C12.5948718,9.37435897 13.1487179,9.7025641 13.1487179,10.2564103 C13.1487179,10.7897436 12.4102564,10.9538462 11.3846154,11.1589744 C10.0717949,11.425641 8.67692308,11.9384615 8.67692308,13.4974359 C8.67692308,14.7692308 9.80512821,15.6923077 11.1384615,15.6923077 C12.3282051,15.6923077 13.1487179,15.0153846 13.4769231,14.5846154 L13.5179487,14.5846154 C13.9487179,15.3846154 14.8923077,15.6923077 15.8974359,15.6923077 C17.6410256,15.6923077 19.5692308,14.3794872 19.5692308,11.3435897 C19.5692308,7.03589744 16.2666667,4 11.9589744,4 C7.40512821,4 4,7.28205128 4,11.9794872 C4,16.8410256 7.42564103,20 11.8769231,20 Z M11.5692308,14.174359 C10.974359,14.174359 10.5025641,13.8871795 10.5025641,13.374359 C10.5025641,12.8 11.0679487,12.586859 11.6215545,12.4326122 L11.8564103,12.3692308 L11.8564103,12.3692308 C12.5128205,12.2051282 13.025641,12.0615385 13.2102564,11.7948718 L13.2102564,12.5948718 C13.2102564,13.6615385 12.3692308,14.174359 11.5692308,14.174359 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--glyph-euro {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12.6201117,20 C15.5698324,20 17.2234637,17.877095 17.7821229,15.7318436 L15.4357542,14.2569832 C15.3240223,16.0670391 14.6759777,17.877095 12.6201117,17.877095 C10.6759777,17.877095 9.78212291,16.5139665 9.42458101,14.6592179 L12.5083799,14.6592179 L13.1564246,12.8268156 L9.24581006,12.8268156 C9.23091248,12.6480447 9.22594662,12.459342 9.22429133,12.2673288 L9.22346369,11.396648 L13.5810056,11.396648 L14.2067039,9.54189944 L9.44692737,9.54189944 C9.82681564,7.62011173 10.7877095,6.1452514 12.6201117,6.1452514 C14.6536313,6.1452514 15.3240223,7.75418994 15.4357542,9.58659218 L17.7821229,8.11173184 C17.2234637,5.96648045 15.5251397,4 12.6201117,4 C9.84916201,4 7.63687151,5.94413408 6.94413408,9.54189944 L5,9.54189944 L5,11.396648 L6.74301676,11.396648 L6.74301676,11.9776536 C6.74301676,12.2681564 6.74301676,12.5586592 6.76536313,12.8268156 L5,12.8268156 L5,14.6592179 L6.96648045,14.6592179 C7.61452514,18.1899441 9.67039106,20 12.6201117,20 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12.6201117,20 C15.5698324,20 17.2234637,17.877095 17.7821229,15.7318436 L15.4357542,14.2569832 C15.3240223,16.0670391 14.6759777,17.877095 12.6201117,17.877095 C10.6759777,17.877095 9.78212291,16.5139665 9.42458101,14.6592179 L12.5083799,14.6592179 L13.1564246,12.8268156 L9.24581006,12.8268156 C9.23091248,12.6480447 9.22594662,12.459342 9.22429133,12.2673288 L9.22346369,11.396648 L13.5810056,11.396648 L14.2067039,9.54189944 L9.44692737,9.54189944 C9.82681564,7.62011173 10.7877095,6.1452514 12.6201117,6.1452514 C14.6536313,6.1452514 15.3240223,7.75418994 15.4357542,9.58659218 L17.7821229,8.11173184 C17.2234637,5.96648045 15.5251397,4 12.6201117,4 C9.84916201,4 7.63687151,5.94413408 6.94413408,9.54189944 L5,9.54189944 L5,11.396648 L6.74301676,11.396648 L6.74301676,11.9776536 C6.74301676,12.2681564 6.74301676,12.5586592 6.76536313,12.8268156 L5,12.8268156 L5,14.6592179 L6.96648045,14.6592179 C7.61452514,18.1899441 9.67039106,20 12.6201117,20 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--info-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,10 L13,16.5 L15,16.5 L15,18 L9,18 L9,16.5 L11,16.5 L11,11.5 L9,11.5 L9,10 L13,10 Z M11.8125239,6 C12.5373649,6 13.125,6.58759799 13.125,7.3125 C13.125,8.03735415 12.5373649,8.625 11.8125239,8.625 C11.0876351,8.625 10.5,8.03735415 10.5,7.3125 C10.5,6.58759799 11.0876351,6 11.8125239,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,10 L13,16.5 L15,16.5 L15,18 L9,18 L9,16.5 L11,16.5 L11,11.5 L9,11.5 L9,10 L13,10 Z M11.8125239,6 C12.5373649,6 13.125,6.58759799 13.125,7.3125 C13.125,8.03735415 12.5373649,8.625 11.8125239,8.625 C11.0876351,8.625 10.5,8.03735415 10.5,7.3125 C10.5,6.58759799 11.0876351,6 11.8125239,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--layers {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,14.5 L21,15.5 L12,20 L3,15.5 L5,14.5 L12.0005205,18 L19,14.5 Z M19,11 L21,12 L12,16.5 L3,12 L5,11 L12.0005205,14.5 L19,11 Z M12,4 L21,8.5 L12,13 L3,8.5 L12,4 Z M12.0005205,6 L7,8.50052056 L12.0005205,11 L17,8.50052056 L12.0005205,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,14.5 L21,15.5 L12,20 L3,15.5 L5,14.5 L12.0005205,18 L19,14.5 Z M19,11 L21,12 L12,16.5 L3,12 L5,11 L12.0005205,14.5 L19,11 Z M12,4 L21,8.5 L12,13 L3,8.5 L12,4 Z M12.0005205,6 L7,8.50052056 L12.0005205,11 L17,8.50052056 L12.0005205,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--minus-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M17,11 L17,13 L7,13 L7,11 L17,11 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M17,11 L17,13 L7,13 L7,11 L17,11 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--playback-fastforward {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M5,5 L13,12 L5,19 L5,5 Z M13,5 L21,12 L13,19 L13,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M5,5 L13,12 L5,19 L5,5 Z M13,5 L21,12 L13,19 L13,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--playback-next {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M19,4 L19,20 L17,20 L17,4 L19,4 Z M5,5 L17,12 L5,19 L5,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M19,4 L19,20 L17,20 L17,4 L19,4 Z M5,5 L17,12 L5,19 L5,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--playback-pause {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M17,5 L17,19 L14,19 L14,5 L17,5 Z M10,5 L10,19 L7,19 L7,5 L10,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M17,5 L17,19 L14,19 L14,5 L17,5 Z M10,5 L10,19 L7,19 L7,5 L10,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--playback-play {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpolygon fill='currentColor' points='7 5 19 12 7 19'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpolygon fill='currentColor' points='7 5 19 12 7 19'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--playback-previous {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M5,4 L5,20 L7,20 L7,4 L5,4 Z M19,5 L7,12 L19,19 L19,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M5,4 L5,20 L7,20 L7,4 L5,4 Z M19,5 L7,12 L19,19 L19,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--playback-record {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Ccircle cx='12' cy='12' r='6' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Ccircle cx='12' cy='12' r='6' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--playback-rewind {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24' transform='matrix(-1 0 0 1 24 0)'/%3E %3Cpath fill='currentColor' d='M3,5 L11,12 L3,19 L3,5 Z M11,5 L19,12 L11,19 L11,5 Z' transform='matrix(-1 0 0 1 22 0)'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24' transform='matrix(-1 0 0 1 24 0)'/%3E %3Cpath fill='currentColor' d='M3,5 L11,12 L3,19 L3,5 Z M11,5 L19,12 L11,19 L11,5 Z' transform='matrix(-1 0 0 1 22 0)'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--playback-stop {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Crect width='12' height='12' x='6' y='6' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Crect width='12' height='12' x='6' y='6' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--plus-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,7 L13,11 L17,11 L17,13 L13,13 L13,17 L11,17 L11,13 L7,13 L7,11 L11,11 L11,7 L13,7 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,7 L13,11 L17,11 L17,13 L13,13 L13,17 L11,17 L11,13 L7,13 L7,11 L11,11 L11,7 L13,7 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--podcast {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M9,24 L9,22 L10.999039,22 L10.9991931,19.9169061 C8.23375814,19.4525651 6.10997266,17.0964753 6.00413847,14.2249383 L6,14 L8,14 C8,16.209139 9.790861,18 12,18 C14.1421954,18 15.8910789,16.3160315 15.9951047,14.1996403 L16,14 L18,14 C18,16.9730632 15.8376161,19.4410745 12.9998085,19.9170737 L12.999039,22 L15,22 L15,24 L9,24 Z M16.0595763,4.58173892 L16.2426407,4.75735931 L14.8284271,6.17157288 C13.3183999,4.66154561 10.9014356,4.61121137 9.33094591,6.02057015 L9.17157288,6.17157288 L7.75735931,4.75735931 C10.0404244,2.47429422 13.7056321,2.41575409 16.0595763,4.58173892 Z M12,7 C13.1045695,7 14,7.8954305 14,9 L14,14 C14,15.1045695 13.1045695,16 12,16 C10.8954305,16 10,15.1045695 10,14 L10,9 C10,7.8954305 10.8954305,7 12,7 Z M18.154727,2.4333447 L18.363961,2.63603897 L16.9497475,4.05025253 C14.2782063,1.37871135 9.98450684,1.31799451 7.2392312,3.868102 L7.05025253,4.05025253 L5.63603897,2.63603897 C9.08184154,-0.809763605 14.626612,-0.877328361 18.154727,2.4333447 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M9,24 L9,22 L10.999039,22 L10.9991931,19.9169061 C8.23375814,19.4525651 6.10997266,17.0964753 6.00413847,14.2249383 L6,14 L8,14 C8,16.209139 9.790861,18 12,18 C14.1421954,18 15.8910789,16.3160315 15.9951047,14.1996403 L16,14 L18,14 C18,16.9730632 15.8376161,19.4410745 12.9998085,19.9170737 L12.999039,22 L15,22 L15,24 L9,24 Z M16.0595763,4.58173892 L16.2426407,4.75735931 L14.8284271,6.17157288 C13.3183999,4.66154561 10.9014356,4.61121137 9.33094591,6.02057015 L9.17157288,6.17157288 L7.75735931,4.75735931 C10.0404244,2.47429422 13.7056321,2.41575409 16.0595763,4.58173892 Z M12,7 C13.1045695,7 14,7.8954305 14,9 L14,14 C14,15.1045695 13.1045695,16 12,16 C10.8954305,16 10,15.1045695 10,14 L10,9 C10,7.8954305 10.8954305,7 12,7 Z M18.154727,2.4333447 L18.363961,2.63603897 L16.9497475,4.05025253 C14.2782063,1.37871135 9.98450684,1.31799451 7.2392312,3.868102 L7.05025253,4.05025253 L5.63603897,2.63603897 C9.08184154,-0.809763605 14.626612,-0.877328361 18.154727,2.4333447 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--printer {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 24 0 24 12 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M18,3 L18,8 L18.5,8 C20.5,8 22,9.50001713 22,11.5000171 L22,19.0000171 L18,19 L18,22 L6,22 L6,19 L2,19.0000171 L2,11.5000171 C2,9.50001713 3.5,8 5.5,8 L6,8 L6,3 L18,3 Z M16,16 L8,16 L8,20 L16,20 L16,16 Z M18.5,10.0000171 L5.5,10.0000171 C4.5,10.0000171 4,10.5000171 4,11.5000171 L4,17 L6,17 L6,14 L18,14 L18,17 L20,17 L20,11.5000171 C20,10.5000171 19.5,10.0000171 18.5,10.0000171 Z M6,11 C6.55228475,11 7,11.4477153 7,12 C7,12.5522847 6.55228475,13 6,13 C5.44771525,13 5,12.5522847 5,12 C5,11.4477153 5.44771525,11 6,11 Z M16,5 L8,5 L8,8 L16,8 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 24 0 24 12 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M18,3 L18,8 L18.5,8 C20.5,8 22,9.50001713 22,11.5000171 L22,19.0000171 L18,19 L18,22 L6,22 L6,19 L2,19.0000171 L2,11.5000171 C2,9.50001713 3.5,8 5.5,8 L6,8 L6,3 L18,3 Z M16,16 L8,16 L8,20 L16,20 L16,16 Z M18.5,10.0000171 L5.5,10.0000171 C4.5,10.0000171 4,10.5000171 4,11.5000171 L4,17 L6,17 L6,14 L18,14 L18,17 L20,17 L20,11.5000171 C20,10.5000171 19.5,10.0000171 18.5,10.0000171 Z M6,11 C6.55228475,11 7,11.4477153 7,12 C7,12.5522847 6.55228475,13 6,13 C5.44771525,13 5,12.5522847 5,12 C5,11.4477153 5.44771525,11 6,11 Z M16,5 L8,5 L8,8 L16,8 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--question-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M12.0436666,5.75 C14.0342698,5.75 15.7172813,7.29463804 15.7172813,9.4236147 C15.7172813,10.7805773 15.2461461,11.4889681 14.160958,12.3060246 L13.9186951,12.4844002 C13.1752868,13.0294825 12.9556121,13.3359034 12.9385965,14.1419671 L12.9375,14.25 L10.9375,14.25 C10.9375,12.6745767 11.4591297,11.8377931 12.6143192,10.9622473 L12.8617612,10.7796271 C13.5684825,10.2628161 13.7172813,10.053863 13.7172813,9.4236147 C13.7172813,8.43933936 12.9661887,7.75 12.0436666,7.75 C11.1906565,7.75 10.4785101,8.34077372 10.3815862,9.20834909 L10.3733727,9.3058695 L8.37662729,9.19181821 C8.49191238,7.1734721 10.1344277,5.75 12.0436666,5.75 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M12.0436666,5.75 C14.0342698,5.75 15.7172813,7.29463804 15.7172813,9.4236147 C15.7172813,10.7805773 15.2461461,11.4889681 14.160958,12.3060246 L13.9186951,12.4844002 C13.1752868,13.0294825 12.9556121,13.3359034 12.9385965,14.1419671 L12.9375,14.25 L10.9375,14.25 C10.9375,12.6745767 11.4591297,11.8377931 12.6143192,10.9622473 L12.8617612,10.7796271 C13.5684825,10.2628161 13.7172813,10.053863 13.7172813,9.4236147 C13.7172813,8.43933936 12.9661887,7.75 12.0436666,7.75 C11.1906565,7.75 10.4785101,8.34077372 10.3815862,9.20834909 L10.3733727,9.3058695 L8.37662729,9.19181821 C8.49191238,7.1734721 10.1344277,5.75 12.0436666,5.75 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--shopping-cart {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M16.6,13 C17.3,13 18,12.6 18.3,12 L21.9,5.5 C22.2,4.8 21.8,4 21,4 L6.2,4 L5.3,2 L2,2 L2,4 L4,4 L7.6,11.6 L6.2,14 C5.5,15.3 6.4,17 8,17 L20,17 L20,15 L8,15 L9.1,13 L16.6,13 Z M7.2,6 L19.3,6 L16.5,11 L9.5,11 L7.2,6 Z M8,18 C6.9,18 6,18.9 6,20 C6,21.1 6.9,22 8,22 C9.1,22 10,21.1 10,20 C10,18.9 9.1,18 8,18 Z M18,18 C16.9,18 16,18.9 16,20 C16,21.1 16.9,22 18,22 C19.1,22 20,21.1 20,20 C20,18.9 19.1,18 18,18 Z' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M16.6,13 C17.3,13 18,12.6 18.3,12 L21.9,5.5 C22.2,4.8 21.8,4 21,4 L6.2,4 L5.3,2 L2,2 L2,4 L4,4 L7.6,11.6 L6.2,14 C5.5,15.3 6.4,17 8,17 L20,17 L20,15 L8,15 L9.1,13 L16.6,13 Z M7.2,6 L19.3,6 L16.5,11 L9.5,11 L7.2,6 Z M8,18 C6.9,18 6,18.9 6,20 C6,21.1 6.9,22 8,22 C9.1,22 10,21.1 10,20 C10,18.9 9.1,18 8,18 Z M18,18 C16.9,18 16,18.9 16,20 C16,21.1 16.9,22 18,22 C19.1,22 20,21.1 20,20 C20,18.9 19.1,18 18,18 Z' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--sliders {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 24 0 24 12 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M16,15 C17.3062521,15 18.4175144,15.8348501 18.8293257,17.0000889 L22,17 L22,19 L18.8289758,19.0009007 C18.4168852,20.1656226 17.3058822,21 16,21 C14.6941178,21 13.5831148,20.1656226 13.1710242,19.0009007 L2,19 L2,17 L13.1706743,17.0000889 C13.5824856,15.8348501 14.6937479,15 16,15 Z M16,17 C15.4477153,17 15,17.4477153 15,18 C15,18.5522847 15.4477153,19 16,19 C16.5522847,19 17,18.5522847 17,18 C17,17.4477153 16.5522847,17 16,17 Z M7,9 C8.30625206,9 9.41751442,9.8348501 9.82932572,11.0000889 L22,11 L22,13 L9.82897577,13.0009007 L9.82510412,13.0117763 C9.42883126,14.1181296 8.40112287,14.9239379 7.17627279,14.9949073 L7,15 C5.69411778,15 4.58311485,14.1656226 4.17102423,13.0009007 L2,13 L2,11 L4.17067428,11.0000889 L4.17489588,10.9882237 C4.59003888,9.82918692 5.69818595,9 7,9 Z M7,11 C6.44771525,11 6,11.4477153 6,12 C6,12.5522847 6.44771525,13 7,13 C7.55228475,13 8,12.5522847 8,12 C8,11.4477153 7.55228475,11 7,11 Z M12,3 C13.3062521,3 14.4175144,3.8348501 14.8293257,5.00008893 L22,5 L22,7 L14.8289758,7.00090072 C14.4168852,8.16562257 13.3058822,9 12,9 C10.6941178,9 9.58311485,8.16562257 9.17102423,7.00090072 L2,7 L2,5 L9.17067428,5.00008893 C9.58248558,3.8348501 10.6937479,3 12,3 Z M12,5 C11.4477153,5 11,5.44771525 11,6 C11,6.55228475 11.4477153,7 12,7 C12.5522847,7 13,6.55228475 13,6 C13,5.44771525 12.5522847,5 12,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 24 0 24 12 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M16,15 C17.3062521,15 18.4175144,15.8348501 18.8293257,17.0000889 L22,17 L22,19 L18.8289758,19.0009007 C18.4168852,20.1656226 17.3058822,21 16,21 C14.6941178,21 13.5831148,20.1656226 13.1710242,19.0009007 L2,19 L2,17 L13.1706743,17.0000889 C13.5824856,15.8348501 14.6937479,15 16,15 Z M16,17 C15.4477153,17 15,17.4477153 15,18 C15,18.5522847 15.4477153,19 16,19 C16.5522847,19 17,18.5522847 17,18 C17,17.4477153 16.5522847,17 16,17 Z M7,9 C8.30625206,9 9.41751442,9.8348501 9.82932572,11.0000889 L22,11 L22,13 L9.82897577,13.0009007 L9.82510412,13.0117763 C9.42883126,14.1181296 8.40112287,14.9239379 7.17627279,14.9949073 L7,15 C5.69411778,15 4.58311485,14.1656226 4.17102423,13.0009007 L2,13 L2,11 L4.17067428,11.0000889 L4.17489588,10.9882237 C4.59003888,9.82918692 5.69818595,9 7,9 Z M7,11 C6.44771525,11 6,11.4477153 6,12 C6,12.5522847 6.44771525,13 7,13 C7.55228475,13 8,12.5522847 8,12 C8,11.4477153 7.55228475,11 7,11 Z M12,3 C13.3062521,3 14.4175144,3.8348501 14.8293257,5.00008893 L22,5 L22,7 L14.8289758,7.00090072 C14.4168852,8.16562257 13.3058822,9 12,9 C10.6941178,9 9.58311485,8.16562257 9.17102423,7.00090072 L2,7 L2,5 L9.17067428,5.00008893 C9.58248558,3.8348501 10.6937479,3 12,3 Z M12,5 C11.4477153,5 11,5.44771525 11,6 C11,6.55228475 11.4477153,7 12,7 C12.5522847,7 13,6.55228475 13,6 C13,5.44771525 12.5522847,5 12,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--sort-alphabetical-ascending {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,4 L8,16.5 L10,14.5 L11.5,16 L7,20.5 L2.5,16 L4,14.5 L6,16.5 L6,4 L8,4 Z M16.995,12.96 C18.835,12.96 20.275,14.28 20.275,16.52 C20.275,18.76 18.835,20.12 16.995,20.12 C15.165,20.12 13.725,18.76 13.725,16.52 C13.725,14.28 15.165,12.96 16.995,12.96 Z M16.995,14.59 C16.015,14.59 15.625,15.46 15.625,16.52 C15.625,17.58 16.015,18.49 16.995,18.49 C17.975,18.49 18.375,17.58 18.375,16.52 C18.375,15.46 17.975,14.59 16.995,14.59 Z M15.935,11 C16.435,11 16.805,11.36 16.805,11.86 C16.805,12.36 16.435,12.72 15.935,12.72 C15.435,12.72 15.065,12.36 15.065,11.86 C15.065,11.36 15.435,11 15.935,11 Z M18.065,11 C18.565,11 18.935,11.36 18.935,11.86 C18.935,12.36 18.565,12.72 18.065,12.72 C17.565,12.72 17.195,12.36 17.195,11.86 C17.195,11.36 17.565,11 18.065,11 Z M18.135,3.08 L20.465,10 L18.545,10 L18.125,8.68 L15.785,8.68 L15.375,10 L13.535,10 L15.865,3.08 L18.135,3.08 Z M16.985,4.86 L16.945,4.86 L16.86508,5.21208 L16.86508,5.21208 L16.80676,5.43216 L16.80676,5.43216 L16.735,5.67 L16.265,7.16 L17.655,7.16 L17.14781,5.55012 L17.14781,5.55012 L17.08447,5.31864 L17.08447,5.31864 L17.01796,5.02992 L17.01796,5.02992 L16.985,4.86 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,4 L8,16.5 L10,14.5 L11.5,16 L7,20.5 L2.5,16 L4,14.5 L6,16.5 L6,4 L8,4 Z M16.995,12.96 C18.835,12.96 20.275,14.28 20.275,16.52 C20.275,18.76 18.835,20.12 16.995,20.12 C15.165,20.12 13.725,18.76 13.725,16.52 C13.725,14.28 15.165,12.96 16.995,12.96 Z M16.995,14.59 C16.015,14.59 15.625,15.46 15.625,16.52 C15.625,17.58 16.015,18.49 16.995,18.49 C17.975,18.49 18.375,17.58 18.375,16.52 C18.375,15.46 17.975,14.59 16.995,14.59 Z M15.935,11 C16.435,11 16.805,11.36 16.805,11.86 C16.805,12.36 16.435,12.72 15.935,12.72 C15.435,12.72 15.065,12.36 15.065,11.86 C15.065,11.36 15.435,11 15.935,11 Z M18.065,11 C18.565,11 18.935,11.36 18.935,11.86 C18.935,12.36 18.565,12.72 18.065,12.72 C17.565,12.72 17.195,12.36 17.195,11.86 C17.195,11.36 17.565,11 18.065,11 Z M18.135,3.08 L20.465,10 L18.545,10 L18.125,8.68 L15.785,8.68 L15.375,10 L13.535,10 L15.865,3.08 L18.135,3.08 Z M16.985,4.86 L16.945,4.86 L16.86508,5.21208 L16.86508,5.21208 L16.80676,5.43216 L16.80676,5.43216 L16.735,5.67 L16.265,7.16 L17.655,7.16 L17.14781,5.55012 L17.14781,5.55012 L17.08447,5.31864 L17.08447,5.31864 L17.01796,5.02992 L17.01796,5.02992 L16.985,4.86 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--sort-alphabetical-descending {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16.995,12.96 C18.835,12.96 20.275,14.28 20.275,16.52 C20.275,18.76 18.835,20.12 16.995,20.12 C15.165,20.12 13.725,18.76 13.725,16.52 C13.725,14.28 15.165,12.96 16.995,12.96 Z M7,3.5 L11.5,8 L10,9.5 L8,7.5 L8,20 L6,20 L6,7.5 L4,9.5 L2.5,8 L7,3.5 Z M16.995,14.59 C16.015,14.59 15.625,15.46 15.625,16.52 C15.625,17.58 16.015,18.49 16.995,18.49 C17.975,18.49 18.375,17.58 18.375,16.52 C18.375,15.46 17.975,14.59 16.995,14.59 Z M15.935,11 C16.435,11 16.805,11.36 16.805,11.86 C16.805,12.36 16.435,12.72 15.935,12.72 C15.435,12.72 15.065,12.36 15.065,11.86 C15.065,11.36 15.435,11 15.935,11 Z M18.065,11 C18.565,11 18.935,11.36 18.935,11.86 C18.935,12.36 18.565,12.72 18.065,12.72 C17.565,12.72 17.195,12.36 17.195,11.86 C17.195,11.36 17.565,11 18.065,11 Z M18.135,3.08 L20.465,10 L18.545,10 L18.125,8.68 L15.785,8.68 L15.375,10 L13.535,10 L15.865,3.08 L18.135,3.08 Z M16.985,4.86 L16.945,4.86 L16.86508,5.21208 L16.86508,5.21208 L16.80676,5.43216 L16.80676,5.43216 L16.735,5.67 L16.265,7.16 L17.655,7.16 L17.14781,5.55012 L17.14781,5.55012 L17.08447,5.31864 L17.08447,5.31864 L17.01796,5.02992 L17.01796,5.02992 L16.985,4.86 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16.995,12.96 C18.835,12.96 20.275,14.28 20.275,16.52 C20.275,18.76 18.835,20.12 16.995,20.12 C15.165,20.12 13.725,18.76 13.725,16.52 C13.725,14.28 15.165,12.96 16.995,12.96 Z M7,3.5 L11.5,8 L10,9.5 L8,7.5 L8,20 L6,20 L6,7.5 L4,9.5 L2.5,8 L7,3.5 Z M16.995,14.59 C16.015,14.59 15.625,15.46 15.625,16.52 C15.625,17.58 16.015,18.49 16.995,18.49 C17.975,18.49 18.375,17.58 18.375,16.52 C18.375,15.46 17.975,14.59 16.995,14.59 Z M15.935,11 C16.435,11 16.805,11.36 16.805,11.86 C16.805,12.36 16.435,12.72 15.935,12.72 C15.435,12.72 15.065,12.36 15.065,11.86 C15.065,11.36 15.435,11 15.935,11 Z M18.065,11 C18.565,11 18.935,11.36 18.935,11.86 C18.935,12.36 18.565,12.72 18.065,12.72 C17.565,12.72 17.195,12.36 17.195,11.86 C17.195,11.36 17.565,11 18.065,11 Z M18.135,3.08 L20.465,10 L18.545,10 L18.125,8.68 L15.785,8.68 L15.375,10 L13.535,10 L15.865,3.08 L18.135,3.08 Z M16.985,4.86 L16.945,4.86 L16.86508,5.21208 L16.86508,5.21208 L16.80676,5.43216 L16.80676,5.43216 L16.735,5.67 L16.265,7.16 L17.655,7.16 L17.14781,5.55012 L17.14781,5.55012 L17.08447,5.31864 L17.08447,5.31864 L17.01796,5.02992 L17.01796,5.02992 L16.985,4.86 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--sort-ascending {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,4 L6,16.5 L8,14.5 L9.5,16 L5,20.5 L0.5,16 L2,14.5 L4,16.5 L4,4 L6,4 Z M23,17 L23,19 L11,19 L11,17 L23,17 Z M21,13 L21,15 L11,15 L11,13 L21,13 Z M19,9 L19,11 L11,11 L11,9 L19,9 Z M16,5 L16,7 L11,7 L11,5 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,4 L6,16.5 L8,14.5 L9.5,16 L5,20.5 L0.5,16 L2,14.5 L4,16.5 L4,4 L6,4 Z M23,17 L23,19 L11,19 L11,17 L23,17 Z M21,13 L21,15 L11,15 L11,13 L21,13 Z M19,9 L19,11 L11,11 L11,9 L19,9 Z M16,5 L16,7 L11,7 L11,5 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--sort-descending {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M5,3.5 L9.5,8 L8,9.5 L6,7.5 L6,20 L4,20 L4,7.5 L2,9.5 L0.5,8 L5,3.5 Z M23,17 L23,19 L11,19 L11,17 L23,17 Z M21,13 L21,15 L11,15 L11,13 L21,13 Z M19,9 L19,11 L11,11 L11,9 L19,9 Z M16,5 L16,7 L11,7 L11,5 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M5,3.5 L9.5,8 L8,9.5 L6,7.5 L6,20 L4,20 L4,7.5 L2,9.5 L0.5,8 L5,3.5 Z M23,17 L23,19 L11,19 L11,17 L23,17 Z M21,13 L21,15 L11,15 L11,13 L21,13 Z M19,9 L19,11 L11,11 L11,9 L19,9 Z M16,5 L16,7 L11,7 L11,5 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n.hds-icon--sort {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,14.5 L16.5,16 L12,20.5 L7.5,16 L9,14.5 L12,17.5 L15,14.5 Z M12,3.5 L16.5,8 L15,9.5 L12,6.5 L9,9.5 L7.5,8 L12,3.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,14.5 L16.5,16 L12,20.5 L7.5,16 L9,14.5 L12,17.5 L15,14.5 Z M12,3.5 L16.5,8 L15,9.5 L12,6.5 L9,9.5 L7.5,8 L12,3.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/icon.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon {\n --icon-size: 100%;\n display: inline-block;\n background-color: currentColor;\n width: var(--icon-size);\n height: var(--icon-size);\n mask-repeat: no-repeat;\n mask-position: center;\n mask-size: auto;\n -webkit-mask-repeat: no-repeat;\n -webkit-mask-position: center;\n -webkit-mask-size: auto;\n}\n\n.hds-icon.hds-icon--size-xs {\n --icon-size: var(--spacing-layout-2-xs);\n}\n\n.hds-icon.hds-icon--size-s {\n --icon-size: var(--spacing-layout-xs);\n}\n\n.hds-icon.hds-icon--size-m {\n --icon-size: var(--spacing-layout-s);\n}\n\n.hds-icon.hds-icon--size-l {\n --icon-size: var(--spacing-layout-m);\n}\n\n.hds-icon.hds-icon--size-xl {\n --icon-size: var(--spacing-layout-l);\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-discord.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--discord {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-5.429 5l-.144.165.223.07c1.595.53 2.338 1.236 2.338 1.236a8.385 8.385 0 00-5.173-.967l-.088.007-.087.014-.285.034a8.05 8.05 0 00-1.815.514l-.235.1-.326.155-.28.143.08-.07c.232-.191.93-.708 2.153-1.129l.235-.077.236-.071L10.371 8l-.146.005-.074.005c-.425.037-1.414.202-2.471.927l-.199.143-.122.24-.146.313c-.408.91-1.145 2.852-1.209 5.13L6 15.078l.059.088.033.047c.264.352 1.11 1.28 2.798 1.414l.247.014.69-.854-.2-.065c-.9-.319-1.369-.836-1.532-1.05l-.069-.098.131.083.157.092.017.015.117.067.256.134a8.634 8.634 0 002.006.658 7.205 7.205 0 002.665.01c.29-.05.584-.12.883-.217l.302-.104.527-.209a5.88 5.88 0 00.712-.362l.25-.157-.036.052-.03.041c-.165.215-.65.75-1.588 1.067l-.208.064.68.833.246-.014c2.09-.166 2.9-1.55 2.9-1.55 0-3.311-1.48-5.996-1.48-5.996-1.064-.797-2.09-1.007-2.584-1.061l-.16-.014L13.642 8zm-3.559 3.837c.587 0 1.06.514 1.05 1.141 0 .628-.463 1.142-1.05 1.142-.576 0-1.049-.514-1.049-1.142 0-.627.463-1.141 1.05-1.141zm3.755 0c.586 0 1.049.514 1.049 1.141 0 .628-.463 1.142-1.05 1.142-.575 0-1.048-.514-1.048-1.142 0-.627.462-1.141 1.049-1.141z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-5.429 5l-.144.165.223.07c1.595.53 2.338 1.236 2.338 1.236a8.385 8.385 0 00-5.173-.967l-.088.007-.087.014-.285.034a8.05 8.05 0 00-1.815.514l-.235.1-.326.155-.28.143.08-.07c.232-.191.93-.708 2.153-1.129l.235-.077.236-.071L10.371 8l-.146.005-.074.005c-.425.037-1.414.202-2.471.927l-.199.143-.122.24-.146.313c-.408.91-1.145 2.852-1.209 5.13L6 15.078l.059.088.033.047c.264.352 1.11 1.28 2.798 1.414l.247.014.69-.854-.2-.065c-.9-.319-1.369-.836-1.532-1.05l-.069-.098.131.083.157.092.017.015.117.067.256.134a8.634 8.634 0 002.006.658 7.205 7.205 0 002.665.01c.29-.05.584-.12.883-.217l.302-.104.527-.209a5.88 5.88 0 00.712-.362l.25-.157-.036.052-.03.041c-.165.215-.65.75-1.588 1.067l-.208.064.68.833.246-.014c2.09-.166 2.9-1.55 2.9-1.55 0-3.311-1.48-5.996-1.48-5.996-1.064-.797-2.09-1.007-2.584-1.061l-.16-.014L13.642 8zm-3.559 3.837c.587 0 1.06.514 1.05 1.141 0 .628-.463 1.142-1.05 1.142-.576 0-1.049-.514-1.049-1.142 0-.627.463-1.141 1.05-1.141zm3.755 0c.586 0 1.049.514 1.049 1.141 0 .628-.463 1.142-1.05 1.142-.575 0-1.048-.514-1.048-1.142 0-.627.462-1.141 1.049-1.141z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-facebook.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--facebook {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 3a2 2 0 012 2v14a2 2 0 01-2 2h-3.356v-7.12h2.435l.35-2.716h-2.785V9.43c0-.788.217-1.322 1.346-1.322h1.439V5.68l-.35-.036-.341-.025c-.38-.026-.873-.048-1.407-.048-2.073 0-3.495 1.266-3.495 3.592v2.005h-2.443v2.716h2.447L12.839 21H5a2 2 0 01-2-2V5a2 2 0 012-2h14z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 3a2 2 0 012 2v14a2 2 0 01-2 2h-3.356v-7.12h2.435l.35-2.716h-2.785V9.43c0-.788.217-1.322 1.346-1.322h1.439V5.68l-.35-.036-.341-.025c-.38-.026-.873-.048-1.407-.048-2.073 0-3.495 1.266-3.495 3.592v2.005h-2.443v2.716h2.447L12.839 21H5a2 2 0 01-2-2V5a2 2 0 012-2h14z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-google.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--google {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-7.103 2c-3.873 0-7 3.127-7 7s3.127 7 7 7c4.039 0 6.774-2.842 6.774-6.836 0-.373-.029-.668-.074-.954l-.036-.215h-6.664v2.408h3.974c-.164 1.03-1.202 3.017-3.974 3.017-2.388 0-4.339-1.978-4.339-4.42 0-3.864 4.471-5.676 6.992-3.461l.135.125 1.906-1.832C15.44 5.692 13.853 5 11.968 5z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-7.103 2c-3.873 0-7 3.127-7 7s3.127 7 7 7c4.039 0 6.774-2.842 6.774-6.836 0-.373-.029-.668-.074-.954l-.036-.215h-6.664v2.408h3.974c-.164 1.03-1.202 3.017-3.974 3.017-2.388 0-4.339-1.978-4.339-4.42 0-3.864 4.471-5.676 6.992-3.461l.135.125 1.906-1.832C15.44 5.692 13.853 5 11.968 5z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-instagram.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--instagram {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zM9.113 5.05C7.994 5.101 7 5.357 6.18 6.176c-.822.818-1.075 1.811-1.13 2.932l-.02.437c-.046 1.423-.04 4.304.02 5.338.052 1.122.308 2.115 1.13 2.933.821.818 1.811 1.074 2.933 1.13l.436.02c1.423.046 4.304.04 5.338-.02 1.122-.052 2.115-.309 2.933-1.13.818-.818 1.075-1.811 1.13-2.933l.02-.436c.046-1.422.04-4.301-.02-5.335-.052-1.122-.308-2.115-1.13-2.933-.818-.818-1.811-1.075-2.933-1.13l-.436-.02c-1.423-.046-4.304-.04-5.338.02zm2.889 1.211l1.018-.007c1.077-.005 2.434.022 3.107.288a2.362 2.362 0 011.33 1.33c.366.922.282 3.108.282 4.126l.008 1.319c-.002 1.018-.045 2.195-.29 2.807a2.362 2.362 0 01-1.33 1.33c-.921.366-3.107.282-4.125.282l-1.019.007c-1.077.005-2.434-.023-3.107-.288a2.362 2.362 0 01-1.33-1.33c-.366-.922-.282-3.108-.282-4.127l-.007-1.018c-.005-1.077.023-2.434.288-3.107a2.362 2.362 0 011.33-1.33c.922-.366 3.108-.282 4.127-.282zm0 2.149a3.583 3.583 0 00-3.59 3.588 3.583 3.583 0 003.59 3.59 3.583 3.583 0 003.588-3.59 3.583 3.583 0 00-3.588-3.588zm0 1.255a2.335 2.335 0 012.333 2.333 2.337 2.337 0 01-2.333 2.334 2.337 2.337 0 01-2.334-2.334 2.335 2.335 0 012.334-2.333zm3.735-2.239a.837.837 0 100 1.674.837.837 0 000-1.674z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zM9.113 5.05C7.994 5.101 7 5.357 6.18 6.176c-.822.818-1.075 1.811-1.13 2.932l-.02.437c-.046 1.423-.04 4.304.02 5.338.052 1.122.308 2.115 1.13 2.933.821.818 1.811 1.074 2.933 1.13l.436.02c1.423.046 4.304.04 5.338-.02 1.122-.052 2.115-.309 2.933-1.13.818-.818 1.075-1.811 1.13-2.933l.02-.436c.046-1.422.04-4.301-.02-5.335-.052-1.122-.308-2.115-1.13-2.933-.818-.818-1.811-1.075-2.933-1.13l-.436-.02c-1.423-.046-4.304-.04-5.338.02zm2.889 1.211l1.018-.007c1.077-.005 2.434.022 3.107.288a2.362 2.362 0 011.33 1.33c.366.922.282 3.108.282 4.126l.008 1.319c-.002 1.018-.045 2.195-.29 2.807a2.362 2.362 0 01-1.33 1.33c-.921.366-3.107.282-4.125.282l-1.019.007c-1.077.005-2.434-.023-3.107-.288a2.362 2.362 0 01-1.33-1.33c-.366-.922-.282-3.108-.282-4.127l-.007-1.018c-.005-1.077.023-2.434.288-3.107a2.362 2.362 0 011.33-1.33c.922-.366 3.108-.282 4.127-.282zm0 2.149a3.583 3.583 0 00-3.59 3.588 3.583 3.583 0 003.59 3.59 3.583 3.583 0 003.588-3.59 3.583 3.583 0 00-3.588-3.588zm0 1.255a2.335 2.335 0 012.333 2.333 2.337 2.337 0 01-2.333 2.334 2.337 2.337 0 01-2.334-2.334 2.335 2.335 0 012.334-2.333zm3.735-2.239a.837.837 0 100 1.674.837.837 0 000-1.674z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-linkedin.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--linkedin {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zM5.772 18.429v-8.59h2.672v8.59H5.772zM5.56 7.119a1.548 1.548 0 113.095 0 1.548 1.548 0 01-3.095 0zm10.214 11.31V14.25c0-.996-.02-2.278-1.386-2.278-1.39 0-1.604 1.085-1.604 2.206v4.25h-2.667v-8.59h2.559v1.174h.036c.358-.675 1.23-1.387 2.527-1.387 2.7 0 3.203 1.78 3.203 4.095v4.709h-2.668z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zM5.772 18.429v-8.59h2.672v8.59H5.772zM5.56 7.119a1.548 1.548 0 113.095 0 1.548 1.548 0 01-3.095 0zm10.214 11.31V14.25c0-.996-.02-2.278-1.386-2.278-1.39 0-1.604 1.085-1.604 2.206v4.25h-2.667v-8.59h2.559v1.174h.036c.358-.675 1.23-1.387 2.527-1.387 2.7 0 3.203 1.78 3.203 4.095v4.709h-2.668z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-rss.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--rss {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19.0714286,3 C20.0854592,3 20.9172741,3.7835277 20.9941951,4.77790504 L21,4.92857143 L21,19.0714286 C21,20.0854592 20.2164723,20.9172741 19.222095,20.9941951 L19.0714286,21 L4.92857143,21 C3.91454082,21 3.08272595,20.2164723 3.00580487,19.222095 L3,19.0714286 L3,4.92857143 C3,3.91454082 3.7835277,3.08272595 4.77790504,3.00580487 L4.92857143,3 L19.0714286,3 Z M7,15 C5.8954305,15 5,15.8954305 5,17 C5,18.1045695 5.8954305,19 7,19 C8.1045695,19 9,18.1045695 9,17 C9,15.8954305 8.1045695,15 7,15 Z M5,9.5 L5,12 L5.24064975,12.004059 C8.91533222,12.1282025 11.8717975,15.0846678 11.995941,18.7593502 L12,19 L14.5,19 L14.4962236,18.7295213 C14.3555514,13.697747 10.302253,9.64444864 5.27047867,9.50377636 L5,9.5 Z M5,5 L5,7.5 L5.2922675,7.50364153 C11.4098083,7.65624559 16.3412304,12.5861648 16.4962422,18.7031076 L16.5,19 L19,19 L18.996578,18.687355 C18.8326359,11.2051357 12.7986365,5.16972457 5.31697569,5.00351759 L5,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19.0714286,3 C20.0854592,3 20.9172741,3.7835277 20.9941951,4.77790504 L21,4.92857143 L21,19.0714286 C21,20.0854592 20.2164723,20.9172741 19.222095,20.9941951 L19.0714286,21 L4.92857143,21 C3.91454082,21 3.08272595,20.2164723 3.00580487,19.222095 L3,19.0714286 L3,4.92857143 C3,3.91454082 3.7835277,3.08272595 4.77790504,3.00580487 L4.92857143,3 L19.0714286,3 Z M7,15 C5.8954305,15 5,15.8954305 5,17 C5,18.1045695 5.8954305,19 7,19 C8.1045695,19 9,18.1045695 9,17 C9,15.8954305 8.1045695,15 7,15 Z M5,9.5 L5,12 L5.24064975,12.004059 C8.91533222,12.1282025 11.8717975,15.0846678 11.995941,18.7593502 L12,19 L14.5,19 L14.4962236,18.7295213 C14.3555514,13.697747 10.302253,9.64444864 5.27047867,9.50377636 L5,9.5 Z M5,5 L5,7.5 L5.2922675,7.50364153 C11.4098083,7.65624559 16.3412304,12.5861648 16.4962422,18.7031076 L16.5,19 L19,19 L18.996578,18.687355 C18.8326359,11.2051357 12.7986365,5.16972457 5.31697569,5.00351759 L5,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-snapchat.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--snapchat {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-.26 12.652c-.141.326-.728.563-1.8.731-.057.077-.101.394-.174.64-.044.148-.148.236-.325.236h-.008c-.25 0-.514-.116-1.037-.116-.707 0-.952.16-1.502.55-.583.414-1.141.768-1.977.732-.844.064-1.55-.45-1.949-.732-.554-.39-.795-.55-1.502-.55-.503 0-.82.124-1.037.124-.217 0-.301-.132-.333-.24-.073-.246-.117-.567-.173-.644-.555-.084-1.8-.3-1.828-.86a.284.284 0 01.237-.297c1.86-.305 2.696-2.214 2.732-2.294 0-.004.004-.008.008-.012.1-.2.12-.37.064-.502-.136-.318-.72-.43-.964-.53-.635-.25-.723-.539-.683-.736.064-.341.578-.554.88-.414.237.113.45.17.63.17a.563.563 0 00.266-.057c-.057-.96-.19-2.33.152-3.098.904-2.02 2.817-2.182 3.38-2.182l.269-.004c1.394 0 2.732.716 3.387 2.182.341.768.209 2.134.152 3.098a.505.505 0 00.23.056c.172-.008.369-.064.59-.169a.734.734 0 01.546 0c.254.093.414.274.418.479.004.26-.229.486-.69.666-.057.025-.125.045-.198.069-.26.084-.659.209-.763.462-.056.132-.032.301.064.502.004.004.004.008.008.012.036.08.872 1.989 2.732 2.294.161.04.286.221.197.434z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-.26 12.652c-.141.326-.728.563-1.8.731-.057.077-.101.394-.174.64-.044.148-.148.236-.325.236h-.008c-.25 0-.514-.116-1.037-.116-.707 0-.952.16-1.502.55-.583.414-1.141.768-1.977.732-.844.064-1.55-.45-1.949-.732-.554-.39-.795-.55-1.502-.55-.503 0-.82.124-1.037.124-.217 0-.301-.132-.333-.24-.073-.246-.117-.567-.173-.644-.555-.084-1.8-.3-1.828-.86a.284.284 0 01.237-.297c1.86-.305 2.696-2.214 2.732-2.294 0-.004.004-.008.008-.012.1-.2.12-.37.064-.502-.136-.318-.72-.43-.964-.53-.635-.25-.723-.539-.683-.736.064-.341.578-.554.88-.414.237.113.45.17.63.17a.563.563 0 00.266-.057c-.057-.96-.19-2.33.152-3.098.904-2.02 2.817-2.182 3.38-2.182l.269-.004c1.394 0 2.732.716 3.387 2.182.341.768.209 2.134.152 3.098a.505.505 0 00.23.056c.172-.008.369-.064.59-.169a.734.734 0 01.546 0c.254.093.414.274.418.479.004.26-.229.486-.69.666-.057.025-.125.045-.198.069-.26.084-.659.209-.763.462-.056.132-.032.301.064.502.004.004.004.008.008.012.036.08.872 1.989 2.732 2.294.161.04.286.221.197.434z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-tiktok.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--tiktok {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-1.926 7.853a3.21 3.21 0 01-2.982-1.437v4.944a3.654 3.654 0 11-3.654-3.654c.076 0 .15.007.225.011v1.801c-.075-.009-.148-.023-.225-.023a1.865 1.865 0 000 3.73c1.03 0 1.94-.811 1.94-1.841l.018-8.398h1.723a3.21 3.21 0 002.957 2.865v2.002' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-1.926 7.853a3.21 3.21 0 01-2.982-1.437v4.944a3.654 3.654 0 11-3.654-3.654c.076 0 .15.007.225.011v1.801c-.075-.009-.148-.023-.225-.023a1.865 1.865 0 000 3.73c1.03 0 1.94-.811 1.94-1.841l.018-8.398h1.723a3.21 3.21 0 002.957 2.865v2.002' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-twitch.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--twitch {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zM19 5H8.708L6 7.708v9.75h3.25v2.709l2.708-2.709h2.167L19 12.583V5zm-1.083 1.083v5.959l-2.167 2.166h-2.167l-1.896 1.896v-1.896H9.25V6.083h8.667zM16.292 7.98h-1.084v3.25h1.084V7.98zm-2.98 0H12.23v3.25h1.084V7.98z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zM19 5H8.708L6 7.708v9.75h3.25v2.709l2.708-2.709h2.167L19 12.583V5zm-1.083 1.083v5.959l-2.167 2.166h-2.167l-1.896 1.896v-1.896H9.25V6.083h8.667zM16.292 7.98h-1.084v3.25h1.084V7.98zm-2.98 0H12.23v3.25h1.084V7.98z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-twitter.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--twitter {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-4.38 3.437a2.868 2.868 0 00-2.869 2.869c0 .222.027.444.071.657a8.156 8.156 0 01-5.916-3.002c-.249.426-.39.915-.39 1.448 0 .995.506 1.874 1.278 2.39a2.888 2.888 0 01-1.13-.279l-.167-.086v.036a2.87 2.87 0 002.301 2.816c-.24.062-.497.097-.755.097-.186 0-.364-.018-.542-.044a2.874 2.874 0 002.683 1.99 5.746 5.746 0 01-3.562 1.226c-.24 0-.462-.01-.693-.036a8.108 8.108 0 004.406 1.288c5.277 0 8.164-4.37 8.164-8.164 0-.124 0-.248-.01-.373A6.168 6.168 0 0019 7.787a5.752 5.752 0 01-1.652.444 2.862 2.862 0 001.261-1.581 5.65 5.65 0 01-1.821.693 2.862 2.862 0 00-2.096-.906z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-4.38 3.437a2.868 2.868 0 00-2.869 2.869c0 .222.027.444.071.657a8.156 8.156 0 01-5.916-3.002c-.249.426-.39.915-.39 1.448 0 .995.506 1.874 1.278 2.39a2.888 2.888 0 01-1.13-.279l-.167-.086v.036a2.87 2.87 0 002.301 2.816c-.24.062-.497.097-.755.097-.186 0-.364-.018-.542-.044a2.874 2.874 0 002.683 1.99 5.746 5.746 0 01-3.562 1.226c-.24 0-.462-.01-.693-.036a8.108 8.108 0 004.406 1.288c5.277 0 8.164-4.37 8.164-8.164 0-.124 0-.248-.01-.373A6.168 6.168 0 0019 7.787a5.752 5.752 0 01-1.652.444 2.862 2.862 0 001.261-1.581 5.65 5.65 0 01-1.821.693 2.862 2.862 0 00-2.096-.906z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-vimeo.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--vimeo {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-.65 6.01c-.057 1.25-.933 2.966-2.624 5.14-1.748 2.27-3.226 3.407-4.436 3.407-.751 0-1.382-.691-1.9-2.074-1.013-3.708-1.443-5.882-2.278-5.882-.097 0-.434.201-1.009.607l-.603-.78C7.054 8.128 8.468 6.68 9.352 6.6c1-.096 1.615.587 1.848 2.053.824 5.207 1.19 5.995 2.684 3.636.539-.851.828-1.494.864-1.94.137-1.318-1.028-1.23-1.816-.892.63-2.07 1.84-3.074 3.62-3.018 1.322.04 1.945.9 1.869 2.572z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zm-.65 6.01c-.057 1.25-.933 2.966-2.624 5.14-1.748 2.27-3.226 3.407-4.436 3.407-.751 0-1.382-.691-1.9-2.074-1.013-3.708-1.443-5.882-2.278-5.882-.097 0-.434.201-1.009.607l-.603-.78C7.054 8.128 8.468 6.68 9.352 6.6c1-.096 1.615.587 1.848 2.053.824 5.207 1.19 5.995 2.684 3.636.539-.851.828-1.494.864-1.94.137-1.318-1.028-1.23-1.816-.892.63-2.07 1.84-3.074 3.62-3.018 1.322.04 1.945.9 1.869 2.572z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-whatsapp.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--whatsapp {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M19.0714286,3 C20.0854592,3 20.9172741,3.7835277 20.9941951,4.77790504 L21,4.92857143 L21,19.0714286 C21,20.0854592 20.2164723,20.9172741 19.222095,20.9941951 L19.0714286,21 L4.92857143,21 C3.91454082,21 3.08272595,20.2164723 3.00580487,19.222095 L3,19.0714286 L3,4.92857143 C3,3.91454082 3.7835277,3.08272595 4.77790504,3.00580487 L4.92857143,3 L19.0714286,3 Z M11.9731935,6 C8.70535645,6 6.02678569,8.67856935 6.02678569,11.9464355 C6.02678569,12.9285847 6.27436767,13.8656841 6.70763528,14.6959023 L6.83035645,14.919629 L6,18 L9.13393065,17.1964355 L9.37695315,17.3159173 C10.1934002,17.6982881 11.0722258,17.919629 11.9731935,17.919629 C15.267871,17.919629 18,15.2410645 18,11.9731935 C18,10.3660694 17.3035645,8.89285645 16.1785645,7.76785645 C15.080371,6.64285645 13.580371,6 11.9731935,6 Z M10.2235081,9.21413996 C10.2973237,9.21774048 10.3738973,9.2447742 10.4616719,9.40500049 L10.5,9.48214355 L10.5690722,9.66021913 L10.955371,10.5803565 C10.982129,10.6607129 11.0089355,10.7410694 10.955371,10.8481935 C10.8839383,10.9981935 10.8086972,11.1062908 10.7398061,11.1892463 L10.6894872,11.2470108 L10.5998026,11.3405407 L10.5310713,11.4152145 C10.4753564,11.4846503 10.4625,11.5446581 10.5267871,11.6518065 C11.0767845,12.5768 11.6034462,12.9417815 12.3898956,13.3347734 L12.6253759,13.4511315 C12.7042504,13.4818887 12.7652684,13.4689863 12.8322289,13.4283241 L12.8839355,13.392871 L13.2279366,12.9602191 L13.3108814,12.8472687 C13.3220529,12.8310194 13.3316513,12.8163203 13.3393065,12.8035645 C13.4330444,12.6629577 13.5267823,12.6658684 13.6384775,12.7046772 L13.6874986,12.7231935 L14.0573567,12.8929339 L14.705371,13.205371 L14.8497983,13.2829235 C14.8965623,13.3075126 14.9335593,13.3299383 14.9559082,13.3599582 L14.9731935,13.392871 L14.9889687,13.419397 C15.0251529,13.5125705 15.0119247,13.7797581 14.892871,14.0893065 C14.7700968,14.4084839 14.2646845,14.7051771 13.9750101,14.77302 L13.7130642,14.8114298 C13.309629,14.8517849 12.919629,14.7821581 12.107129,14.4106935 C11.5821341,14.1857056 11.1227622,13.8557135 10.7439439,13.5183352 L10.5865685,13.3735769 L10.3559364,13.1443446 L10.1522936,12.9241627 L10.0609276,12.8196515 L10.0609276,12.8196515 L9.97671008,12.7200257 L9.83025551,12.5389279 L9.5625,12.1875 L9.47035726,12.0567917 L9.37400789,11.9037776 C9.1994043,11.6101285 8.9732129,11.1339339 8.9732129,10.6339306 C8.9732129,10.1332414 9.15294663,9.81228828 9.30799235,9.60885404 L9.35847947,9.54530984 L9.48214355,9.4017871 C9.5969371,9.26402903 9.73141452,9.22467255 9.83496623,9.21623923 L9.88393065,9.2142871 L10.2235081,9.21413996 Z' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M19.0714286,3 C20.0854592,3 20.9172741,3.7835277 20.9941951,4.77790504 L21,4.92857143 L21,19.0714286 C21,20.0854592 20.2164723,20.9172741 19.222095,20.9941951 L19.0714286,21 L4.92857143,21 C3.91454082,21 3.08272595,20.2164723 3.00580487,19.222095 L3,19.0714286 L3,4.92857143 C3,3.91454082 3.7835277,3.08272595 4.77790504,3.00580487 L4.92857143,3 L19.0714286,3 Z M11.9731935,6 C8.70535645,6 6.02678569,8.67856935 6.02678569,11.9464355 C6.02678569,12.9285847 6.27436767,13.8656841 6.70763528,14.6959023 L6.83035645,14.919629 L6,18 L9.13393065,17.1964355 L9.37695315,17.3159173 C10.1934002,17.6982881 11.0722258,17.919629 11.9731935,17.919629 C15.267871,17.919629 18,15.2410645 18,11.9731935 C18,10.3660694 17.3035645,8.89285645 16.1785645,7.76785645 C15.080371,6.64285645 13.580371,6 11.9731935,6 Z M10.2235081,9.21413996 C10.2973237,9.21774048 10.3738973,9.2447742 10.4616719,9.40500049 L10.5,9.48214355 L10.5690722,9.66021913 L10.955371,10.5803565 C10.982129,10.6607129 11.0089355,10.7410694 10.955371,10.8481935 C10.8839383,10.9981935 10.8086972,11.1062908 10.7398061,11.1892463 L10.6894872,11.2470108 L10.5998026,11.3405407 L10.5310713,11.4152145 C10.4753564,11.4846503 10.4625,11.5446581 10.5267871,11.6518065 C11.0767845,12.5768 11.6034462,12.9417815 12.3898956,13.3347734 L12.6253759,13.4511315 C12.7042504,13.4818887 12.7652684,13.4689863 12.8322289,13.4283241 L12.8839355,13.392871 L13.2279366,12.9602191 L13.3108814,12.8472687 C13.3220529,12.8310194 13.3316513,12.8163203 13.3393065,12.8035645 C13.4330444,12.6629577 13.5267823,12.6658684 13.6384775,12.7046772 L13.6874986,12.7231935 L14.0573567,12.8929339 L14.705371,13.205371 L14.8497983,13.2829235 C14.8965623,13.3075126 14.9335593,13.3299383 14.9559082,13.3599582 L14.9731935,13.392871 L14.9889687,13.419397 C15.0251529,13.5125705 15.0119247,13.7797581 14.892871,14.0893065 C14.7700968,14.4084839 14.2646845,14.7051771 13.9750101,14.77302 L13.7130642,14.8114298 C13.309629,14.8517849 12.919629,14.7821581 12.107129,14.4106935 C11.5821341,14.1857056 11.1227622,13.8557135 10.7439439,13.5183352 L10.5865685,13.3735769 L10.3559364,13.1443446 L10.1522936,12.9241627 L10.0609276,12.8196515 L10.0609276,12.8196515 L9.97671008,12.7200257 L9.83025551,12.5389279 L9.5625,12.1875 L9.47035726,12.0567917 L9.37400789,11.9037776 C9.1994043,11.6101285 8.9732129,11.1339339 8.9732129,10.6339306 C8.9732129,10.1332414 9.15294663,9.81228828 9.30799235,9.60885404 L9.35847947,9.54530984 L9.48214355,9.4017871 C9.5969371,9.26402903 9.73141452,9.22467255 9.83496623,9.21623923 L9.88393065,9.2142871 L10.2235081,9.21413996 Z' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-yle.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--yle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zM5.781 9.207h-.347l-.089.005C5.122 9.241 5 9.383 5 9.62c0 .14.032.337.1.616l.038.147.986 3.516.04.136c.176.523.49.771 1.025.806l.138.005h.396l-.106.522a4.166 4.166 0 01-.081.326c-.181.562-.461.681-.943.681-.285 0-.5-.016-.668-.033l-.183-.02c-.114-.013-.206-.024-.29-.024-.198 0-.322.105-.35.29l-.006.085v.232l.006.091c.024.161.11.236.208.286l.06.027c.235.107.53.165 1.416.165.888 0 1.548-.476 1.763-1.276l.278-1.08 1.207-4.967c.036-.155.084-.393.084-.53 0-.22-.125-.372-.325-.407l-.09-.007h-.328l-.08.004c-.204.024-.315.147-.398.441l-.03.119-.928 4.034h-.207l-.08-.002c-.228-.014-.346-.096-.44-.396l-.035-.123-.962-3.644c-.057-.207-.13-.388-.346-.426l-.088-.007zm10.879-.155c-1.742 0-2.52.95-2.52 3.08 0 2.077.725 2.849 2.675 2.849.87 0 1.441-.12 1.664-.22.122-.053.242-.12.27-.315l.006-.092v-.212l-.006-.085c-.028-.186-.152-.29-.35-.29a.951.951 0 00-.167.017l-.337.062c-.193.03-.458.056-.849.056-1.404 0-1.629-.243-1.681-1.331l-.006-.14h2.763l.135-.005c.56-.038.743-.317.743-.721l-.004-.23c-.039-1.095-.394-2.423-2.336-2.423zM12.138 6.25h-.83c-.137 0-.479 0-.54.296l-.01.098v.368l.003.04c.012.142.098.335.466.369l.119.005h.204v6.909l.002.096c.013.277.092.438.37.468l.1.005h.271l.095-.006c.261-.032.34-.206.355-.463l.003-.1V7.05c-.01-.418-.087-.8-.608-.8zm4.543 3.725c.803 0 1.152.447 1.211 1.312l.008.168-2.52.002.011-.177c.077-.912.474-1.305 1.29-1.305z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3H4.93A1.93 1.93 0 003 4.929V19.07A1.93 1.93 0 004.929 21H19.07A1.93 1.93 0 0021 19.071V4.93A1.93 1.93 0 0019.071 3zM5.781 9.207h-.347l-.089.005C5.122 9.241 5 9.383 5 9.62c0 .14.032.337.1.616l.038.147.986 3.516.04.136c.176.523.49.771 1.025.806l.138.005h.396l-.106.522a4.166 4.166 0 01-.081.326c-.181.562-.461.681-.943.681-.285 0-.5-.016-.668-.033l-.183-.02c-.114-.013-.206-.024-.29-.024-.198 0-.322.105-.35.29l-.006.085v.232l.006.091c.024.161.11.236.208.286l.06.027c.235.107.53.165 1.416.165.888 0 1.548-.476 1.763-1.276l.278-1.08 1.207-4.967c.036-.155.084-.393.084-.53 0-.22-.125-.372-.325-.407l-.09-.007h-.328l-.08.004c-.204.024-.315.147-.398.441l-.03.119-.928 4.034h-.207l-.08-.002c-.228-.014-.346-.096-.44-.396l-.035-.123-.962-3.644c-.057-.207-.13-.388-.346-.426l-.088-.007zm10.879-.155c-1.742 0-2.52.95-2.52 3.08 0 2.077.725 2.849 2.675 2.849.87 0 1.441-.12 1.664-.22.122-.053.242-.12.27-.315l.006-.092v-.212l-.006-.085c-.028-.186-.152-.29-.35-.29a.951.951 0 00-.167.017l-.337.062c-.193.03-.458.056-.849.056-1.404 0-1.629-.243-1.681-1.331l-.006-.14h2.763l.135-.005c.56-.038.743-.317.743-.721l-.004-.23c-.039-1.095-.394-2.423-2.336-2.423zM12.138 6.25h-.83c-.137 0-.479 0-.54.296l-.01.098v.368l.003.04c.012.142.098.335.466.369l.119.005h.204v6.909l.002.096c.013.277.092.438.37.468l.1.005h.271l.095-.006c.261-.032.34-.206.355-.463l.003-.1V7.05c-.01-.418-.087-.8-.608-.8zm4.543 3.725c.803 0 1.152.447 1.211 1.312l.008.168-2.52.002.011-.177c.077-.912.474-1.305 1.29-1.305z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/some/icon-youtube.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--youtube {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-6.605 4.002L11.708 7c-.997.006-4.258.045-5.179.292a1.755 1.755 0 00-1.238 1.24c-.226.848-.278 2.41-.289 3.07v.615c.011.66.063 2.222.29 3.07a1.73 1.73 0 001.237 1.22c.834.224 3.586.277 4.839.29h1.263c1.253-.013 4.004-.066 4.839-.29a1.73 1.73 0 001.237-1.22c.164-.613.236-1.599.268-2.347L19 11.817c-.003-.438-.034-2.322-.292-3.284a1.755 1.755 0 00-1.237-1.24c-.873-.235-3.846-.282-5.004-.291zM10.6 9.799l3.5 2.1-3.5 2.1V9.8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.071 3a1.93 1.93 0 011.923 1.778l.006.15v14.143a1.93 1.93 0 01-1.778 1.923l-.15.006H4.928a1.93 1.93 0 01-1.923-1.778L3 19.072V4.928a1.93 1.93 0 011.778-1.923L4.928 3h14.143zm-6.605 4.002L11.708 7c-.997.006-4.258.045-5.179.292a1.755 1.755 0 00-1.238 1.24c-.226.848-.278 2.41-.289 3.07v.615c.011.66.063 2.222.29 3.07a1.73 1.73 0 001.237 1.22c.834.224 3.586.277 4.839.29h1.263c1.253-.013 4.004-.066 4.839-.29a1.73 1.73 0 001.237-1.22c.164-.613.236-1.599.268-2.347L19 11.817c-.003-.438-.034-2.322-.292-3.284a1.755 1.755 0 00-1.237-1.24c-.873-.235-3.846-.282-5.004-.291zM10.6 9.799l3.5 2.1-3.5 2.1V9.8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-alert-circle-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--alert-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C16.9705627,3 21,7.02943725 21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,6 L13,14 L11,14 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-alert-circle.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--alert-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 12v2h-2v-2h2zm0-10v8h-2V6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 12v2h-2v-2h2zm0-10v8h-2V6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-angle-down.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--angle-down {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M12 13.5l5-5 1.5 1.5-6.5 6.5L5.5 10 7 8.5z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M12 13.5l5-5 1.5 1.5-6.5 6.5L5.5 10 7 8.5z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-angle-left.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--angle-left {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='24 0 24 24 0 24 0 0'/%3E %3Cpolygon fill='currentColor' points='10.5 12 15.5 17 14 18.5 7.5 12 14 5.5 15.5 7'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='24 0 24 24 0 24 0 0'/%3E %3Cpolygon fill='currentColor' points='10.5 12 15.5 17 14 18.5 7.5 12 14 5.5 15.5 7'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-angle-right.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--angle-right {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpolygon fill='currentColor' points='13.5 12 8.5 7 10 5.5 16.5 12 10 18.5 8.5 17'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpolygon fill='currentColor' points='13.5 12 8.5 7 10 5.5 16.5 12 10 18.5 8.5 17'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-angle-up.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--angle-up {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 24h24V0H0z'/%3E%3Cpath fill='currentColor' d='M12 11.5l5 5 1.5-1.5L12 8.5 5.5 15 7 16.5z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 24h24V0H0z'/%3E%3Cpath fill='currentColor' d='M12 11.5l5 5 1.5-1.5L12 8.5 5.5 15 7 16.5z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-bottom-left.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-bottom-left {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='6.001 17.999 15.001 17.999 15.001 15.999 9.447 15.998 18.016 7.431 16.602 6.016 8.001 14.616 8.001 8.999 6.001 8.999'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='6.001 17.999 15.001 17.999 15.001 15.999 9.447 15.998 18.016 7.431 16.602 6.016 8.001 14.616 8.001 8.999 6.001 8.999'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-bottom-right.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-bottom-right {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18.016 17.999 9.016 17.999 9.016 15.999 14.57 15.998 6.001 7.431 7.416 6.016 16.016 14.616 16.016 8.999 18.016 8.999'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18.016 17.999 9.016 17.999 9.016 15.999 14.57 15.998 6.001 7.431 7.416 6.016 16.016 14.616 16.016 8.999 18.016 8.999'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-down.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-down {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M13 4v12.5l4-4 1.5 1.5-6.5 6.5L5.5 14 7 12.5l4 4V4z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M13 4v12.5l4-4 1.5 1.5-6.5 6.5L5.5 14 7 12.5l4 4V4z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-left.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-left {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='10 5.5 11.5 7 7.5 11 20 11 20 13 7.5 13 11.5 17 10 18.5 3.5 12'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='10 5.5 11.5 7 7.5 11 20 11 20 13 7.5 13 11.5 17 10 18.5 3.5 12'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-redo.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-redo {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M10,10 C7.790861,10 6,11.790861 6,14 C6,16.209139 7.790861,18 10,18 L14,18 L14,20 L9.96363636,20 L9.81199973,19.9980989 C6.58689824,19.9171471 4,17.261126 4,14 C4,10.738874 6.58689824,8.08285293 9.81199973,8.00190107 L15.5,8 L12,4.5 L13.5,3 L19.5,9 L13.5,15 L12,13.5 L15.5,10 L10,10 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M10,10 C7.790861,10 6,11.790861 6,14 C6,16.209139 7.790861,18 10,18 L14,18 L14,20 L9.96363636,20 L9.81199973,19.9980989 C6.58689824,19.9171471 4,17.261126 4,14 C4,10.738874 6.58689824,8.08285293 9.81199973,8.00190107 L15.5,8 L12,4.5 L13.5,3 L19.5,9 L13.5,15 L12,13.5 L15.5,10 L10,10 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-right.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-right {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='10.5 5.5 12 7 8 11 20.5 11 20.5 13 8 13 12 17 10.5 18.5 4 12' transform='matrix(-1 0 0 1 24.5 0)'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='10.5 5.5 12 7 8 11 20.5 11 20.5 13 8 13 12 17 10.5 18.5 4 12' transform='matrix(-1 0 0 1 24.5 0)'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-top-left.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-top-left {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='6.018 6 6.018 15 8.018 15 8.018 9.446 16.586 18.015 18 16.601 9.4 8 15.018 8 15.018 6'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='6.018 6 6.018 15 8.018 15 8.018 9.446 16.586 18.015 18 16.601 9.4 8 15.018 8 15.018 6'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-top-right.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-top-right {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18 6 18 15 16 15 16 9.446 7.432 18.015 6.018 16.601 14.618 8 9 8 9 6'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18 6 18 15 16 15 16 9.446 7.432 18.015 6.018 16.601 14.618 8 9 8 9 6'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-undo.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-undo {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M14,10 C16.209139,10 18,11.790861 18,14 C18,16.209139 16.209139,18 14,18 L10,18 L10,20 L14.0363636,20 L14.1880003,19.9980989 C17.4131018,19.9171471 20,17.261126 20,14 C20,10.738874 17.4131018,8.08285293 14.1880003,8.00190107 L8.5,8 L12,4.5 L10.5,3 L4.5,9 L10.5,15 L12,13.5 L8.5,10 L14,10 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M14,10 C16.209139,10 18,11.790861 18,14 C18,16.209139 16.209139,18 14,18 L10,18 L10,20 L14.0363636,20 L14.1880003,19.9980989 C17.4131018,19.9171471 20,17.261126 20,14 C20,10.738874 17.4131018,8.08285293 14.1880003,8.00190107 L8.5,8 L12,4.5 L10.5,3 L4.5,9 L10.5,15 L12,13.5 L8.5,10 L14,10 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-arrow-up.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--arrow-up {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='12 3.5 18.5 10 17 11.5 13 7.5 13 20 11 20 11 7.5 7 11.5 5.5 10'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='12 3.5 18.5 10 17 11.5 13 7.5 13 20 11 20 11 7.5 7 11.5 5.5 10'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-bell-crossed.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--bell-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 9.534V11l.002.2c.017.827.147 1.164.55 1.655l.341.405c.732.906 1.067 1.805 1.104 3.427L20 17v2h-5a3 3 0 01-5.995.176L9 19h-.466l2-2H18l-.002-.244c-.015-.842-.11-1.334-.333-1.756h-5.131l2-2 1.78.001c-.17-.42-.267-.889-.3-1.48L18 9.535zm1.793-6.741l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM13 19h-2a1 1 0 001.993.117L13 19zM12 2c1.776 0 3.371.771 4.47 1.997l-1.418 1.417A4 4 0 008.005 7.8L8 8v3c0 .677-.061 1.205-.196 1.665L4.01 16.453c.063-1.476.4-2.332 1.096-3.193l.235-.279c.486-.564.638-.885.656-1.78L6 8a6 6 0 016-6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 9.534V11l.002.2c.017.827.147 1.164.55 1.655l.341.405c.732.906 1.067 1.805 1.104 3.427L20 17v2h-5a3 3 0 01-5.995.176L9 19h-.466l2-2H18l-.002-.244c-.015-.842-.11-1.334-.333-1.756h-5.131l2-2 1.78.001c-.17-.42-.267-.889-.3-1.48L18 9.535zm1.793-6.741l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM13 19h-2a1 1 0 001.993.117L13 19zM12 2c1.776 0 3.371.771 4.47 1.997l-1.418 1.417A4 4 0 008.005 7.8L8 8v3c0 .677-.061 1.205-.196 1.665L4.01 16.453c.063-1.476.4-2.332 1.096-3.193l.235-.279c.486-.564.638-.885.656-1.78L6 8a6 6 0 016-6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-bell.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--bell {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 17l-.002-.244c-.015-.842-.11-1.334-.333-1.756H6.335c-.223.422-.318.914-.333 1.756L6 17h12zm-5 2h-2a1 1 0 001.993.117L13 19zM12 4a4 4 0 00-3.995 3.8L8 8v3c0 .848-.096 1.464-.314 2.001h8.628c-.194-.478-.291-1.017-.31-1.727L16 11V8a4 4 0 00-4-4zm-6.893 9.26l.235-.279c.486-.564.638-.885.656-1.78L6 11V8a6 6 0 0111.996-.225L18 8l.002 3.2c.017.827.147 1.164.55 1.655l.341.405c.732.906 1.067 1.805 1.104 3.427L20 17v2h-5a3 3 0 01-5.995.176L9 19H4v-2c0-1.822.33-2.778 1.107-3.74z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 17l-.002-.244c-.015-.842-.11-1.334-.333-1.756H6.335c-.223.422-.318.914-.333 1.756L6 17h12zm-5 2h-2a1 1 0 001.993.117L13 19zM12 4a4 4 0 00-3.995 3.8L8 8v3c0 .848-.096 1.464-.314 2.001h8.628c-.194-.478-.291-1.017-.31-1.727L16 11V8a4 4 0 00-4-4zm-6.893 9.26l.235-.279c.486-.564.638-.885.656-1.78L6 11V8a6 6 0 0111.996-.225L18 8l.002 3.2c.017.827.147 1.164.55 1.655l.341.405c.732.906 1.067 1.805 1.104 3.427L20 17v2h-5a3 3 0 01-5.995.176L9 19H4v-2c0-1.822.33-2.778 1.107-3.74z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-cake.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--cake {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,2.18036665 L18.6170955,3.07374524 C19.7056028,4.64959381 20.25,5.73838824 20.25,6.5 C20.25,7.47956939 19.6240154,8.31293223 18.7502535,8.6218811 L18.750584,10.007947 C20.6239926,10.1275594 22,11.5844616 22,13.5000171 L22,22.0000171 L2,22.0000171 L2,13.5000171 C2,11.5841197 3.37649862,10.1270394 5.25041913,10.0078831 L5.25076538,8.62224108 C4.37647132,8.31357999 3.75,7.4799501 3.75,6.5 C3.75,5.78318893 4.23223421,4.77655515 5.19646322,3.34681278 L5.38290448,3.07374524 L6,2.18036665 L6.61709552,3.07374524 C7.70560278,4.64959381 8.25,5.73838824 8.25,6.5 C8.25,7.47956939 7.62401536,8.31293223 6.7502535,8.6218811 L6.75,9.99936665 L11.25,9.99936665 L11.2507654,8.62224108 C10.4226656,8.32988842 9.81689238,7.566576 9.75519081,6.65404881 L9.75,6.5 C9.75,5.78318893 10.2322342,4.77655515 11.1964632,3.34681278 L11.3829045,3.07374524 L12,2.18036665 L12.6170955,3.07374524 C13.7056028,4.64959381 14.25,5.73838824 14.25,6.5 C14.25,7.47956939 13.6240154,8.31293223 12.7502535,8.6218811 L12.75,9.99936665 L17.25,9.99936665 L17.2507654,8.62224108 C16.4226656,8.32988842 15.8168924,7.566576 15.7551908,6.65404881 L15.75,6.5 C15.75,5.78318893 16.2322342,4.77655515 17.1964632,3.34681278 L17.3829045,3.07374524 L18,2.18036665 Z M15.2524986,17.1749293 L15,17.025 L14.9911282,17.0311542 C14.1889167,17.533117 13.2875201,17.8080212 12.2991185,17.8538553 L12,17.8607314 C10.9943191,17.8607314 10.0744254,17.6314602 9.25249863,17.1749293 L9,17.025 L8.99112819,17.0311542 C8.18891668,17.533117 7.28752013,17.8080212 6.29911847,17.8538553 L6,17.8607314 C5.28908765,17.8607314 4.62104336,17.746164 4.00016954,17.5177396 L4,20 L20,20 L20.00084,17.5173681 C19.3796808,17.7460397 18.7112977,17.8607314 18,17.8607314 C16.9943191,17.8607314 16.0744254,17.6314602 15.2524986,17.1749293 Z M18.5,12.0000171 L5.5,12.0000171 C4.5,12.0000171 3.99984155,12.5000171 3.99984155,13.5000171 L3.99984155,15.8740735 C4.59297228,16.1991606 5.25576505,16.3607314 6,16.3607314 C6.88939013,16.3607314 7.66247112,16.129989 8.33934762,15.665184 L8.53954454,15.5187173 L9,15.1605852 L9.46045546,15.5187173 C10.1840758,16.0815331 11.0216709,16.3607314 12,16.3607314 C12.8893901,16.3607314 13.6624711,16.129989 14.3393476,15.665184 L14.5395445,15.5187173 L15,15.1605852 L15.4604555,15.5187173 C16.1840758,16.0815331 17.0216709,16.3607314 18,16.3607314 C18.7446545,16.3607314 19.4077749,16.1989784 20.0011614,15.8735236 L20,13.5000171 C20,12.5000171 19.5,12.0000171 18.5,12.0000171 Z M12.1776599,5.16381918 L12,4.868 L11.7714885,5.25185018 L11.7714885,5.25185018 L11.5527141,5.65496405 C11.3508947,6.0513759 11.25,6.33860812 11.25,6.5 C11.25,6.91421356 11.5857864,7.25 12,7.25 C12.4142136,7.25 12.75,6.91421356 12.75,6.5 C12.75,6.35878211 12.6727525,6.1212177 12.5182374,5.79846816 L12.4472859,5.65496405 L12.2769975,5.33744432 L12.1776599,5.16381918 L12.1776599,5.16381918 Z M18.1776599,5.16381918 L18,4.868 L17.7714885,5.25185018 L17.7714885,5.25185018 L17.5527141,5.65496405 C17.3508947,6.0513759 17.25,6.33860812 17.25,6.5 C17.25,6.91421356 17.5857864,7.25 18,7.25 C18.4142136,7.25 18.75,6.91421356 18.75,6.5 C18.75,6.35878211 18.6727525,6.1212177 18.5182374,5.79846816 L18.4472859,5.65496405 L18.2769975,5.33744432 L18.1776599,5.16381918 L18.1776599,5.16381918 Z M6.17765988,5.16381918 L6,4.868 L5.7714885,5.25185018 L5.7714885,5.25185018 L5.55271413,5.65496405 C5.35089473,6.0513759 5.25,6.33860812 5.25,6.5 C5.25,6.91421356 5.58578644,7.25 6,7.25 C6.41421356,7.25 6.75,6.91421356 6.75,6.5 C6.75,6.35878211 6.67275247,6.1212177 6.51823736,5.79846816 L6.44728587,5.65496405 L6.27699748,5.33744432 L6.17765988,5.16381918 L6.17765988,5.16381918 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,2.18036665 L18.6170955,3.07374524 C19.7056028,4.64959381 20.25,5.73838824 20.25,6.5 C20.25,7.47956939 19.6240154,8.31293223 18.7502535,8.6218811 L18.750584,10.007947 C20.6239926,10.1275594 22,11.5844616 22,13.5000171 L22,22.0000171 L2,22.0000171 L2,13.5000171 C2,11.5841197 3.37649862,10.1270394 5.25041913,10.0078831 L5.25076538,8.62224108 C4.37647132,8.31357999 3.75,7.4799501 3.75,6.5 C3.75,5.78318893 4.23223421,4.77655515 5.19646322,3.34681278 L5.38290448,3.07374524 L6,2.18036665 L6.61709552,3.07374524 C7.70560278,4.64959381 8.25,5.73838824 8.25,6.5 C8.25,7.47956939 7.62401536,8.31293223 6.7502535,8.6218811 L6.75,9.99936665 L11.25,9.99936665 L11.2507654,8.62224108 C10.4226656,8.32988842 9.81689238,7.566576 9.75519081,6.65404881 L9.75,6.5 C9.75,5.78318893 10.2322342,4.77655515 11.1964632,3.34681278 L11.3829045,3.07374524 L12,2.18036665 L12.6170955,3.07374524 C13.7056028,4.64959381 14.25,5.73838824 14.25,6.5 C14.25,7.47956939 13.6240154,8.31293223 12.7502535,8.6218811 L12.75,9.99936665 L17.25,9.99936665 L17.2507654,8.62224108 C16.4226656,8.32988842 15.8168924,7.566576 15.7551908,6.65404881 L15.75,6.5 C15.75,5.78318893 16.2322342,4.77655515 17.1964632,3.34681278 L17.3829045,3.07374524 L18,2.18036665 Z M15.2524986,17.1749293 L15,17.025 L14.9911282,17.0311542 C14.1889167,17.533117 13.2875201,17.8080212 12.2991185,17.8538553 L12,17.8607314 C10.9943191,17.8607314 10.0744254,17.6314602 9.25249863,17.1749293 L9,17.025 L8.99112819,17.0311542 C8.18891668,17.533117 7.28752013,17.8080212 6.29911847,17.8538553 L6,17.8607314 C5.28908765,17.8607314 4.62104336,17.746164 4.00016954,17.5177396 L4,20 L20,20 L20.00084,17.5173681 C19.3796808,17.7460397 18.7112977,17.8607314 18,17.8607314 C16.9943191,17.8607314 16.0744254,17.6314602 15.2524986,17.1749293 Z M18.5,12.0000171 L5.5,12.0000171 C4.5,12.0000171 3.99984155,12.5000171 3.99984155,13.5000171 L3.99984155,15.8740735 C4.59297228,16.1991606 5.25576505,16.3607314 6,16.3607314 C6.88939013,16.3607314 7.66247112,16.129989 8.33934762,15.665184 L8.53954454,15.5187173 L9,15.1605852 L9.46045546,15.5187173 C10.1840758,16.0815331 11.0216709,16.3607314 12,16.3607314 C12.8893901,16.3607314 13.6624711,16.129989 14.3393476,15.665184 L14.5395445,15.5187173 L15,15.1605852 L15.4604555,15.5187173 C16.1840758,16.0815331 17.0216709,16.3607314 18,16.3607314 C18.7446545,16.3607314 19.4077749,16.1989784 20.0011614,15.8735236 L20,13.5000171 C20,12.5000171 19.5,12.0000171 18.5,12.0000171 Z M12.1776599,5.16381918 L12,4.868 L11.7714885,5.25185018 L11.7714885,5.25185018 L11.5527141,5.65496405 C11.3508947,6.0513759 11.25,6.33860812 11.25,6.5 C11.25,6.91421356 11.5857864,7.25 12,7.25 C12.4142136,7.25 12.75,6.91421356 12.75,6.5 C12.75,6.35878211 12.6727525,6.1212177 12.5182374,5.79846816 L12.4472859,5.65496405 L12.2769975,5.33744432 L12.1776599,5.16381918 L12.1776599,5.16381918 Z M18.1776599,5.16381918 L18,4.868 L17.7714885,5.25185018 L17.7714885,5.25185018 L17.5527141,5.65496405 C17.3508947,6.0513759 17.25,6.33860812 17.25,6.5 C17.25,6.91421356 17.5857864,7.25 18,7.25 C18.4142136,7.25 18.75,6.91421356 18.75,6.5 C18.75,6.35878211 18.6727525,6.1212177 18.5182374,5.79846816 L18.4472859,5.65496405 L18.2769975,5.33744432 L18.1776599,5.16381918 L18.1776599,5.16381918 Z M6.17765988,5.16381918 L6,4.868 L5.7714885,5.25185018 L5.7714885,5.25185018 L5.55271413,5.65496405 C5.35089473,6.0513759 5.25,6.33860812 5.25,6.5 C5.25,6.91421356 5.58578644,7.25 6,7.25 C6.41421356,7.25 6.75,6.91421356 6.75,6.5 C6.75,6.35878211 6.67275247,6.1212177 6.51823736,5.79846816 L6.44728587,5.65496405 L6.27699748,5.33744432 L6.17765988,5.16381918 L6.17765988,5.16381918 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-calendar-clock.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--calendar-clock {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 12a6 6 0 110 12 6 6 0 010-12zm0 2a4 4 0 100 8 4 4 0 000-8zm0-12a1 1 0 011 1v1h4l.002 9.103A7.018 7.018 0 0020 11.674L20 11H4v8l6.071.001a6.95 6.95 0 00.603 2L2 21V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm.5 13v2.94l1.53 1.53-1.06 1.06L16 18.56V15h1.5zM20 6H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 12a6 6 0 110 12 6 6 0 010-12zm0 2a4 4 0 100 8 4 4 0 000-8zm0-12a1 1 0 011 1v1h4l.002 9.103A7.018 7.018 0 0020 11.674L20 11H4v8l6.071.001a6.95 6.95 0 00.603 2L2 21V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm.5 13v2.94l1.53 1.53-1.06 1.06L16 18.56V15h1.5zM20 6H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-calendar-cross.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--calendar-cross {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,13 L20,13 L20,11 L4,11 L4,19 L13.5,19 L13.5,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z M22.5355339,16.4142136 L20.5,18.5 L22.5,20.5 L21,22 L19,20 L17,22 L15.4644661,20.6568542 L17.5,18.5 L15.5,16.5 L17,15 L19,17 L21,15 L22.5355339,16.4142136 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,13 L20,13 L20,11 L4,11 L4,19 L13.5,19 L13.5,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z M22.5355339,16.4142136 L20.5,18.5 L22.5,20.5 L21,22 L19,20 L17,22 L15.4644661,20.6568542 L17.5,18.5 L15.5,16.5 L17,15 L19,17 L21,15 L22.5355339,16.4142136 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-calendar-plus.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--calendar-plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20 14v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM17 2a1 1 0 011 1v1h4v8h-2v-1H4v8h9v2H2V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm3 4H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20 14v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zM17 2a1 1 0 011 1v1h4v8h-2v-1H4v8h9v2H2V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm3 4H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-calendar-recurring.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--calendar-recurring {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16.5,24 L16.2787929,23.9956328 C13.34378,23.8795391 11,21.4634791 11,18.5 C11,15.5365209 13.34378,13.1204609 16.2787929,13.0043672 L16.5,13 L16.7732784,13.0067242 C18.0431499,13.0693776 19.233589,13.5683903 20.1999204,14.4417422 L20.422,14.653 L20.4210526,13 L22,13 L22,18 L17,18 L17,16.4210526 L19.299,16.421 L19.0723651,16.1265857 L18.9156533,15.9672102 C18.2708361,15.3515202 17.4146317,15 16.5,15 C14.5670034,15 13,16.5670034 13,18.5 C13,20.4329966 14.5670034,22 16.5,22 L16.6058825,21.9984281 L16.6058825,21.9984281 L16.7500024,21.9912088 L16.9499759,21.971343 L17.118356,21.9455928 L17.2213075,21.9255927 L17.3972515,21.883929 L17.5850289,21.8285631 L17.6959994,21.7905955 L17.8733374,21.7206279 L18.0690175,21.6298559 L18.1649577,21.5793864 L18.3374394,21.4794671 L18.3374394,21.4794671 L18.2260872,21.5458731 C18.3669611,21.4658472 18.5024167,21.3758927 18.6315119,21.2765307 L18.8060993,21.1329137 C19.229017,20.7621923 19.5618464,20.2912056 19.7674734,19.7570681 L21.6347628,20.4749725 C21.3907662,21.1089351 21.0327422,21.6862961 20.5858175,22.1819289 L20.3890873,22.3890873 L20.1633223,22.6025548 L20.1633223,22.6025548 L19.9501038,22.7836402 L19.9501038,22.7836402 L19.7949017,22.9043159 L19.7949017,22.9043159 L19.6184802,23.0311641 L19.6184802,23.0311641 L19.4441479,23.1464729 L19.4441479,23.1464729 L19.2063141,23.289208 L19.2063141,23.289208 L18.9788104,23.4110622 L18.9788104,23.4110622 L18.7397969,23.5247595 L18.7397969,23.5247595 L18.4974858,23.6260162 L18.4974858,23.6260162 L18.3538,23.6794869 L18.3538,23.6794869 L18.1096346,23.7606795 L18.1096346,23.7606795 L17.8371768,23.8360421 L17.8371768,23.8360421 L17.5225645,23.9048532 L17.5225645,23.9048532 L17.3735885,23.9310058 L17.3735885,23.9310058 L17.0542405,23.9723156 L17.0542405,23.9723156 L16.8756787,23.9873711 L16.8756787,23.9873711 L16.7212071,23.9956328 L16.7212071,23.9956328 L16.5,24 Z M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,11 L4,11 L4,19 L10,19 C10,19.5 10.2046135,20.3783843 10.5,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16.5,24 L16.2787929,23.9956328 C13.34378,23.8795391 11,21.4634791 11,18.5 C11,15.5365209 13.34378,13.1204609 16.2787929,13.0043672 L16.5,13 L16.7732784,13.0067242 C18.0431499,13.0693776 19.233589,13.5683903 20.1999204,14.4417422 L20.422,14.653 L20.4210526,13 L22,13 L22,18 L17,18 L17,16.4210526 L19.299,16.421 L19.0723651,16.1265857 L18.9156533,15.9672102 C18.2708361,15.3515202 17.4146317,15 16.5,15 C14.5670034,15 13,16.5670034 13,18.5 C13,20.4329966 14.5670034,22 16.5,22 L16.6058825,21.9984281 L16.6058825,21.9984281 L16.7500024,21.9912088 L16.9499759,21.971343 L17.118356,21.9455928 L17.2213075,21.9255927 L17.3972515,21.883929 L17.5850289,21.8285631 L17.6959994,21.7905955 L17.8733374,21.7206279 L18.0690175,21.6298559 L18.1649577,21.5793864 L18.3374394,21.4794671 L18.3374394,21.4794671 L18.2260872,21.5458731 C18.3669611,21.4658472 18.5024167,21.3758927 18.6315119,21.2765307 L18.8060993,21.1329137 C19.229017,20.7621923 19.5618464,20.2912056 19.7674734,19.7570681 L21.6347628,20.4749725 C21.3907662,21.1089351 21.0327422,21.6862961 20.5858175,22.1819289 L20.3890873,22.3890873 L20.1633223,22.6025548 L20.1633223,22.6025548 L19.9501038,22.7836402 L19.9501038,22.7836402 L19.7949017,22.9043159 L19.7949017,22.9043159 L19.6184802,23.0311641 L19.6184802,23.0311641 L19.4441479,23.1464729 L19.4441479,23.1464729 L19.2063141,23.289208 L19.2063141,23.289208 L18.9788104,23.4110622 L18.9788104,23.4110622 L18.7397969,23.5247595 L18.7397969,23.5247595 L18.4974858,23.6260162 L18.4974858,23.6260162 L18.3538,23.6794869 L18.3538,23.6794869 L18.1096346,23.7606795 L18.1096346,23.7606795 L17.8371768,23.8360421 L17.8371768,23.8360421 L17.5225645,23.9048532 L17.5225645,23.9048532 L17.3735885,23.9310058 L17.3735885,23.9310058 L17.0542405,23.9723156 L17.0542405,23.9723156 L16.8756787,23.9873711 L16.8756787,23.9873711 L16.7212071,23.9956328 L16.7212071,23.9956328 L16.5,24 Z M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,11 L4,11 L4,19 L10,19 C10,19.5 10.2046135,20.3783843 10.5,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-calendar.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--calendar {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 2a1 1 0 011 1v1h4v17H2V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm3 9H4v8h16v-8zm0-5H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 2a1 1 0 011 1v1h4v17H2V4h4V3a1 1 0 112 0v1h8V3a1 1 0 011-1zm3 9H4v8h16v-8zm0-5H4v3h16V6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-camera.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--camera {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 3c1.093 0 1.707.327 2.538 1.127l.297.292c.442.43.661.558 1.045.578L18 5h1a4 4 0 013.995 3.8L23 9v7a4 4 0 01-3.8 3.995L19 20H5a4 4 0 01-3.995-3.8L1 16V9a4 4 0 013.8-3.995L5 5h1c.462 0 .68-.109 1.165-.581l.297-.292c.776-.747 1.362-1.081 2.326-1.123L10 3h4zm0 2h-4c-.462 0-.68.109-1.165.581l-.297.292c-.776.747-1.362 1.081-2.326 1.123L6 7H5a2 2 0 00-1.995 1.85L3 9v7a2 2 0 001.85 1.995L5 18h14a2 2 0 001.995-1.85L21 16V9a2 2 0 00-1.85-1.995L19 7h-1c-1.093 0-1.707-.327-2.538-1.127l-.297-.292c-.442-.43-.661-.558-1.045-.578L14 5zm-2 2a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6zm7-1a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 3c1.093 0 1.707.327 2.538 1.127l.297.292c.442.43.661.558 1.045.578L18 5h1a4 4 0 013.995 3.8L23 9v7a4 4 0 01-3.8 3.995L19 20H5a4 4 0 01-3.995-3.8L1 16V9a4 4 0 013.8-3.995L5 5h1c.462 0 .68-.109 1.165-.581l.297-.292c.776-.747 1.362-1.081 2.326-1.123L10 3h4zm0 2h-4c-.462 0-.68.109-1.165.581l-.297.292c-.776.747-1.362 1.081-2.326 1.123L6 7H5a2 2 0 00-1.995 1.85L3 9v7a2 2 0 001.85 1.995L5 18h14a2 2 0 001.995-1.85L21 16V9a2 2 0 00-1.85-1.995L19 7h-1c-1.093 0-1.707-.327-2.538-1.127l-.297-.292c-.442-.43-.661-.558-1.045-.578L14 5zm-2 2a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6zm7-1a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-check-circle-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--check-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-check-circle.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--check-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 Z M16.5,8 L18,9.5 L10.5,17 L6,12.5 L7.5,11 L10.5,14 L16.5,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-check.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--check {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='21 7 10 18 4.5 12.5 6 11 10 15 19.5 5.5'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='21 7 10 18 4.5 12.5 6 11 10 15 19.5 5.5'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-clock-cross.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--clock-cross {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,12.1680222 21.9958561,12.3350766 21.9876649,12.5010665 L19.9845993,12.500482 C19.994816,12.3349662 20,12.1680885 20,12 C20,7.581722 16.418278,4 12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C12.3389895,20 12.6730544,19.9789157 13.0009551,19.9379871 L13.0010997,21.9505155 C12.6718374,21.9832433 12.3378756,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M20.5,14.5 L22,16 L20,18 C20.8902438,18.87157 21.5569105,19.5382367 22,20 C22.4430895,20.4617633 22.4549342,20.5022034 22.0355339,20.1213203 L20.5,21.5 L18.5,19.5 L16.5,21.5 L15,20 L17,18 L15,16 L16.5,14.5 L18.5,16.5 L20.5,14.5 Z M13,6 L12.9992525,12.4137864 L12.7053593,12.706 L12.7071068,12.7071068 L9.17157288,16.2426407 L7.75735931,14.8284271 L10.9993593,11.584 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,12.1680222 21.9958561,12.3350766 21.9876649,12.5010665 L19.9845993,12.500482 C19.994816,12.3349662 20,12.1680885 20,12 C20,7.581722 16.418278,4 12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C12.3389895,20 12.6730544,19.9789157 13.0009551,19.9379871 L13.0010997,21.9505155 C12.6718374,21.9832433 12.3378756,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M20.5,14.5 L22,16 L20,18 C20.8902438,18.87157 21.5569105,19.5382367 22,20 C22.4430895,20.4617633 22.4549342,20.5022034 22.0355339,20.1213203 L20.5,21.5 L18.5,19.5 L16.5,21.5 L15,20 L17,18 L15,16 L16.5,14.5 L18.5,16.5 L20.5,14.5 Z M13,6 L12.9992525,12.4137864 L12.7053593,12.706 L12.7071068,12.7071068 L9.17157288,16.2426407 L7.75735931,14.8284271 L10.9993593,11.584 L11,6 L13,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-clock-plus.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--clock-plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10 0 .338-.017.672-.05 1.001h-2.012a8 8 0 10-6.937 6.937v2.013c-.33.032-.663.049-1.001.049-5.523 0-10-4.477-10-10S6.477 2 12 2zm7 12v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zm-6-8v6.414l-.295.292.002.001-3.535 3.536-1.415-1.415L11 11.584 11 6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10 0 .338-.017.672-.05 1.001h-2.012a8 8 0 10-6.937 6.937v2.013c-.33.032-.663.049-1.001.049-5.523 0-10-4.477-10-10S6.477 2 12 2zm7 12v3h3v2h-3v3h-2v-3h-3v-2h3v-3h2zm-6-8v6.414l-.295.292.002.001-3.535 3.536-1.415-1.415L11 11.584 11 6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-clock.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--clock {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 2v5.584l3.243 3.244-1.415 1.415-3.535-3.536.002-.001-.294-.292L11 6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 2v5.584l3.243 3.244-1.415 1.415-3.535-3.536.002-.001-.294-.292L11 6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-coffee-cup-saucer.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--coffee-cup-saucer {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,18 C19,19.1045695 18.1045695,20 17,20 L4,20 C2.8954305,20 2,19.1045695 2,18 L19,18 Z M16,5 C16.5522847,5 17,5.44771525 17,6 L19,6 C20.6568542,6 22,7.790861 22,10 C22,12.1302412 20.75108,13.8715478 19.1762728,13.9932097 L19,14 L16.8737865,14.0007613 C16.429479,15.7256022 14.8635652,17 13,17 L8,17 C5.790861,17 4,15.209139 4,13 L4,6 C4,5.44771525 4.44771525,5 5,5 L16,5 Z M17,12 L19,12 L19.0587576,11.9966049 C19.5836933,11.9357739 20,11.0651206 20,10 C20,8.8954305 19.5522847,8 19,8 L17,8 L17,12 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,18 C19,19.1045695 18.1045695,20 17,20 L4,20 C2.8954305,20 2,19.1045695 2,18 L19,18 Z M16,5 C16.5522847,5 17,5.44771525 17,6 L19,6 C20.6568542,6 22,7.790861 22,10 C22,12.1302412 20.75108,13.8715478 19.1762728,13.9932097 L19,14 L16.8737865,14.0007613 C16.429479,15.7256022 14.8635652,17 13,17 L8,17 C5.790861,17 4,15.209139 4,13 L4,6 C4,5.44771525 4.44771525,5 5,5 L16,5 Z M17,12 L19,12 L19.0587576,11.9966049 C19.5836933,11.9357739 20,11.0651206 20,10 C20,8.8954305 19.5522847,8 19,8 L17,8 L17,12 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-cogwheel.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--cogwheel {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.727 2c.964 0 1.783.502 2.146 1.335l.06.15.372 1.003c.041.167.163.29.329.331a.829.829 0 00.505-.013l.1-.042.826-.295c.831-.419 1.762-.381 2.408.14.864.62 1.184 1.676.856 2.678l-.057.157-.428.923a.567.567 0 000 .54c.07.14.162.232.32.324l.103.057 1.093.366c.826.277 1.47.965 1.602 1.756.19 1.02-.337 2-1.28 2.446l-.137.06-1.233.434a.446.446 0 00-.33.332.844.844 0 00.007.495l.038.09.425.855c.39.785.381 1.657-.048 2.3l-.091.124c-.637.899-1.706 1.243-2.66.872l-.142-.061-.993-.376a.557.557 0 00-.536 0c-.17.086-.288.197-.347.333l-.03.085-.308 1.056c-.312.815-1.001 1.397-1.865 1.52l-.164.019-.177.006a2.329 2.329 0 01-2.084-1.341l-.061-.145-.372-1.002a.446.446 0 00-.33-.331.826.826 0 00-.498.01l-.933.401c-.83.419-1.762.381-2.408-.14-.864-.62-1.183-1.676-.858-2.674l.057-.157.43-.988a.567.567 0 000-.54.735.735 0 00-.32-.324l-.102-.057-.911-.305a2.528 2.528 0 01-1.663-1.819c-.187-1.07.331-2.056 1.274-2.504l.138-.06.995-.374a.446.446 0 00.33-.332.844.844 0 00-.013-.509l-.042-.1-.29-.824c-.419-.774-.382-1.716.135-2.431.638-.899 1.707-1.243 2.67-.868l1.125.494a.557.557 0 00.537 0c.17-.086.287-.197.347-.333l.029-.085.307-1.05a2.372 2.372 0 011.959-1.594L11.727 2zm.002 1.75c-.23 0-.444.13-.546.361l-.032.092-.304 1.038a2.382 2.382 0 01-1.28 1.41 2.878 2.878 0 01-1.643.05l-.206-.061-.936-.474c-.304-.102-.583-.01-.68.099l-.025.036-.063.076c-.162.123-.228.349-.153.605l.035.098.486.98c.28.635.315 1.296.06 1.873-.238.54-.64.973-1.16 1.248l-.16.078-.924.371c-.273.079-.448.363-.448.643 0 .198.104.42.35.542l.1.04 1.03.306a2.37 2.37 0 011.393 1.27c.241.547.263 1.15.063 1.715l-.067.167-.477.96a.656.656 0 00.136.734c.175.177.374.253.63.13l.087-.049.98-.493a2.693 2.693 0 011.043-.197c.225 0 .396.032.79.132.526.177.97.61 1.262 1.183l.076.16.364.978c.06.184.162.29.3.347.1.041.193.052.34.052.23 0 .444-.13.546-.361l.033-.092.303-1.038a2.376 2.376 0 011.26-1.403 2.253 2.253 0 011.695-.067l.165.066.973.43c.196.099.367.072.563-.046l.155-.103.043-.062c.134-.21.17-.408.083-.622l-.532-1.072c-.255-.578-.306-1.177-.128-1.7l.06-.154c.176-.53.606-.978 1.175-1.272l.159-.076 1.134-.42c.298-.129.413-.32.413-.592a.525.525 0 00-.307-.494l-1.234-.394a2.37 2.37 0 01-1.392-1.27 2.301 2.301 0 01-.066-1.707l.065-.165.421-.97a.656.656 0 00-.135-.734c-.176-.176-.374-.252-.63-.13l-.088.05-.972.489c-.573.256-1.168.308-1.688.129l-.153-.061c-.525-.176-.97-.61-1.26-1.18l-.075-.158-.355-.894a.748.748 0 00-.652-.427zM12 8c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4zm0 1.75A2.257 2.257 0 009.75 12 2.257 2.257 0 0012 14.25 2.257 2.257 0 0014.25 12 2.257 2.257 0 0012 9.75z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.727 2c.964 0 1.783.502 2.146 1.335l.06.15.372 1.003c.041.167.163.29.329.331a.829.829 0 00.505-.013l.1-.042.826-.295c.831-.419 1.762-.381 2.408.14.864.62 1.184 1.676.856 2.678l-.057.157-.428.923a.567.567 0 000 .54c.07.14.162.232.32.324l.103.057 1.093.366c.826.277 1.47.965 1.602 1.756.19 1.02-.337 2-1.28 2.446l-.137.06-1.233.434a.446.446 0 00-.33.332.844.844 0 00.007.495l.038.09.425.855c.39.785.381 1.657-.048 2.3l-.091.124c-.637.899-1.706 1.243-2.66.872l-.142-.061-.993-.376a.557.557 0 00-.536 0c-.17.086-.288.197-.347.333l-.03.085-.308 1.056c-.312.815-1.001 1.397-1.865 1.52l-.164.019-.177.006a2.329 2.329 0 01-2.084-1.341l-.061-.145-.372-1.002a.446.446 0 00-.33-.331.826.826 0 00-.498.01l-.933.401c-.83.419-1.762.381-2.408-.14-.864-.62-1.183-1.676-.858-2.674l.057-.157.43-.988a.567.567 0 000-.54.735.735 0 00-.32-.324l-.102-.057-.911-.305a2.528 2.528 0 01-1.663-1.819c-.187-1.07.331-2.056 1.274-2.504l.138-.06.995-.374a.446.446 0 00.33-.332.844.844 0 00-.013-.509l-.042-.1-.29-.824c-.419-.774-.382-1.716.135-2.431.638-.899 1.707-1.243 2.67-.868l1.125.494a.557.557 0 00.537 0c.17-.086.287-.197.347-.333l.029-.085.307-1.05a2.372 2.372 0 011.959-1.594L11.727 2zm.002 1.75c-.23 0-.444.13-.546.361l-.032.092-.304 1.038a2.382 2.382 0 01-1.28 1.41 2.878 2.878 0 01-1.643.05l-.206-.061-.936-.474c-.304-.102-.583-.01-.68.099l-.025.036-.063.076c-.162.123-.228.349-.153.605l.035.098.486.98c.28.635.315 1.296.06 1.873-.238.54-.64.973-1.16 1.248l-.16.078-.924.371c-.273.079-.448.363-.448.643 0 .198.104.42.35.542l.1.04 1.03.306a2.37 2.37 0 011.393 1.27c.241.547.263 1.15.063 1.715l-.067.167-.477.96a.656.656 0 00.136.734c.175.177.374.253.63.13l.087-.049.98-.493a2.693 2.693 0 011.043-.197c.225 0 .396.032.79.132.526.177.97.61 1.262 1.183l.076.16.364.978c.06.184.162.29.3.347.1.041.193.052.34.052.23 0 .444-.13.546-.361l.033-.092.303-1.038a2.376 2.376 0 011.26-1.403 2.253 2.253 0 011.695-.067l.165.066.973.43c.196.099.367.072.563-.046l.155-.103.043-.062c.134-.21.17-.408.083-.622l-.532-1.072c-.255-.578-.306-1.177-.128-1.7l.06-.154c.176-.53.606-.978 1.175-1.272l.159-.076 1.134-.42c.298-.129.413-.32.413-.592a.525.525 0 00-.307-.494l-1.234-.394a2.37 2.37 0 01-1.392-1.27 2.301 2.301 0 01-.066-1.707l.065-.165.421-.97a.656.656 0 00-.135-.734c-.176-.176-.374-.252-.63-.13l-.088.05-.972.489c-.573.256-1.168.308-1.688.129l-.153-.061c-.525-.176-.97-.61-1.26-1.18l-.075-.158-.355-.894a.748.748 0 00-.652-.427zM12 8c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4zm0 1.75A2.257 2.257 0 009.75 12 2.257 2.257 0 0012 14.25 2.257 2.257 0 0014.25 12 2.257 2.257 0 0012 9.75z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-copy.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--copy {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,10 L6,12 L5,12 L5,18 L12,18 L12,17 L14,17 L14,19 C14,19.5522847 13.5522847,20 13,20 L4,20 C3.44771525,20 3,19.5522847 3,19 L3,11 C3,10.4477153 3.44771525,10 4,10 L6,10 Z M20,4 C20.5522847,4 21,4.44771525 21,5 L21,15 C21,15.5522847 20.5522847,16 20,16 L8,16 C7.44771525,16 7,15.5522847 7,15 L7,5 C7,4.44771525 7.44771525,4 8,4 L20,4 Z M19,6 L9,6 L9,14 L19,14 L19,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,10 L6,12 L5,12 L5,18 L12,18 L12,17 L14,17 L14,19 C14,19.5522847 13.5522847,20 13,20 L4,20 C3.44771525,20 3,19.5522847 3,19 L3,11 C3,10.4477153 3.44771525,10 4,10 L6,10 Z M20,4 C20.5522847,4 21,4.44771525 21,5 L21,15 C21,15.5522847 20.5522847,16 20,16 L8,16 C7.44771525,16 7,15.5522847 7,15 L7,5 C7,4.44771525 7.44771525,4 8,4 L20,4 Z M19,6 L9,6 L9,14 L19,14 L19,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-cross-circle-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--cross-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M15,7.5 L16.5,9 L13.5,12 L16.5,15 L15,16.5 L12,13.5 L9,16.5 L7.5,15 L10.5,12 L7.5,9 L9,7.5 L12,10.5 L15,7.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M15,7.5 L16.5,9 L13.5,12 L16.5,15 L15,16.5 L12,13.5 L9,16.5 L7.5,15 L10.5,12 L7.5,9 L9,7.5 L12,10.5 L15,7.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-cross-circle.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--cross-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 Z M15,7.5 L16.5,9 L13.5,12 L16.5,15 L15,16.5 L12,13.5 L9,16.5 L7.5,15 L10.5,12 L7.5,9 L9,7.5 L12,10.5 L15,7.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 Z M15,7.5 L16.5,9 L13.5,12 L16.5,15 L15,16.5 L12,13.5 L9,16.5 L7.5,15 L10.5,12 L7.5,9 L9,7.5 L12,10.5 L15,7.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-cross.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--cross {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18 7.5 13.5 12 18 16.5 16.5 18 12 13.5 7.5 18 6 16.5 10.5 12 6 7.5 7.5 6 12 10.5 16.5 6'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpolygon fill='currentColor' points='18 7.5 13.5 12 18 16.5 16.5 18 12 13.5 7.5 18 6 16.5 10.5 12 6 7.5 7.5 6 12 10.5 16.5 6'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-customer-bot-negative.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--customer-bot-negative {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M11.9999453,13 C10.4068883,13 9.10378439,13.8781142 9.00590222,14.9871454 L9.00590222,14.9871454 L9.003,15.028 L9,15.0286701 L9,17 L15,17 L15,15.0286701 C14.928069,13.8997398 13.6126059,13 11.9999453,13 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M11.9999453,13 C10.4068883,13 9.10378439,13.8781142 9.00590222,14.9871454 L9.00590222,14.9871454 L9.003,15.028 L9,15.0286701 L9,17 L15,17 L15,15.0286701 C14.928069,13.8997398 13.6126059,13 11.9999453,13 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-customer-bot-neutral.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--customer-bot-neutral {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M17,15.0286701 L7,15.0286701 L7,17 L17,17 L17,15.0286701 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M17,15.0286701 L7,15.0286701 L7,17 L17,17 L17,15.0286701 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-customer-bot-positive.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--customer-bot-positive {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M15,14.0286701 L9,14.0286701 L9,16 C9.09367524,17.1150574 10.4007101,18 12.0000547,18 C13.5931117,18 14.8962156,17.1218858 14.9940978,16.0128546 L14.9940978,16.0128546 L14.995,15.9996701 L15,16 L15,14.0286701 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M18,5 L6,5 C3.790861,5 2,6.790861 2,9 L2,17 C2,19.209139 3.790861,21 6,21 L18,21 C20.209139,21 22,19.209139 22,17 L22,9 C22,6.790861 20.209139,5 18,5 Z M18,7 C19.1045695,7 20,7.8954305 20,9 L20,17 C20,18.1045695 19.1045695,19 18,19 L6,19 C4.8954305,19 4,18.1045695 4,17 L4,9 C4,7.8954305 4.8954305,7 6,7 L18,7 Z M15,14.0286701 L9,14.0286701 L9,16 C9.09367524,17.1150574 10.4007101,18 12.0000547,18 C13.5931117,18 14.8962156,17.1218858 14.9940978,16.0128546 L14.9940978,16.0128546 L14.995,15.9996701 L15,16 L15,14.0286701 Z M8.50003646,9 C7.39544402,9 6.5,9.89538742 6.5,11 C6.5,12.1045397 7.39544402,13 8.50003646,13 C9.60455598,13 10.5,12.1045397 10.5,11 C10.5,9.89538742 9.60455598,9 8.50003646,9 Z M15.5000365,9 C14.395444,9 13.5,9.89538742 13.5,11 C13.5,12.1045397 14.395444,13 15.5000365,13 C16.604556,13 17.5,12.1045397 17.5,11 C17.5,9.89538742 16.604556,9 15.5000365,9 Z M12.0000273,1 C12.828417,1 13.5,1.67154057 13.5,2.5 C13.5,2.94372132 13.3073207,3.34245349 13.0010702,3.61708682 L13,5 L11,5 L10.9999087,3.61795642 C10.6930865,3.34329553 10.5,2.94418987 10.5,2.5 C10.5,1.67154057 11.171583,1 12.0000273,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-display.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--display {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,18 C3.85780461,18 2.10892112,16.3160315 2.00489531,14.1996403 L2,14 L2,7 C2,4.85780461 3.68396847,3.10892112 5.80035966,3.00489531 L6,3 L18,3 C20.1421954,3 21.8910789,4.68396847 21.9951047,6.80035966 L22,7 L22,14 C22,16.1421954 20.3160315,17.8910789 18.1996403,17.9951047 L18,18 L13,18 C13,19.1045695 13.8954305,20 15,20 L18,20 L18,22 L6,22 L6,20 L9,20 C10.1045695,20 11,19.1045695 11,18 L6,18 Z M18,5 L6,5 C4.9456382,5 4.08183488,5.81587779 4.00548574,6.85073766 L4,7 L4,14 C4,15.0543618 4.81587779,15.9181651 5.85073766,15.9945143 L6,16 L18,16 C19.0543618,16 19.9181651,15.1841222 19.9945143,14.1492623 L20,14 L20,7 C20,5.9456382 19.1841222,5.08183488 18.1492623,5.00548574 L18,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,18 C3.85780461,18 2.10892112,16.3160315 2.00489531,14.1996403 L2,14 L2,7 C2,4.85780461 3.68396847,3.10892112 5.80035966,3.00489531 L6,3 L18,3 C20.1421954,3 21.8910789,4.68396847 21.9951047,6.80035966 L22,7 L22,14 C22,16.1421954 20.3160315,17.8910789 18.1996403,17.9951047 L18,18 L13,18 C13,19.1045695 13.8954305,20 15,20 L18,20 L18,22 L6,22 L6,20 L9,20 C10.1045695,20 11,19.1045695 11,18 L6,18 Z M18,5 L6,5 C4.9456382,5 4.08183488,5.81587779 4.00548574,6.85073766 L4,7 L4,14 C4,15.0543618 4.81587779,15.9181651 5.85073766,15.9945143 L6,16 L18,16 C19.0543618,16 19.9181651,15.1841222 19.9945143,14.1492623 L20,14 L20,7 C20,5.9456382 19.1841222,5.08183488 18.1492623,5.00548574 L18,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-document.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--document {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2 L20,7 L20,22 L4,22 L4,2 L15,2 Z M14,4 L14,8 L18,8 L14,4 Z M14.0082581,4 L18,8 L18,20 L6,20 L6,4 L14.0082581,4 Z M17,16 L7,16 L7,18 L17,18 L17,16 Z M17,12 L7,12 L7,14 L17,14 L17,12 Z M13,8 L7,8 L7,10 L13,10 L13,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2 L20,7 L20,22 L4,22 L4,2 L15,2 Z M14,4 L14,8 L18,8 L14,4 Z M14.0082581,4 L18,8 L18,20 L6,20 L6,4 L14.0082581,4 Z M17,16 L7,16 L7,18 L17,18 L17,16 Z M17,12 L7,12 L7,14 L17,14 L17,12 Z M13,8 L7,8 L7,10 L13,10 L13,8 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-download-cloud.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--download-cloud {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13,9 L13,19 L15,17 L16.5,18.5 L12,23 L7.5,18.5 L9,17 L11,19 L11,9 L13,9 Z M11.5,1 C14.0570069,1 16.3672564,2.55157482 17.2358321,4.93092178 L17.2835,5.0665 L17.4145183,5.08731097 C20.0449239,5.53520702 21.9316381,7.61876864 21.9981819,10.350367 L22,10.5 C22,13.6411668 19.7996323,15.9265021 16.7006468,15.998261 L15.5,16 L15.5,14 L16.55,14 C18.6163623,14 20,12.5942857 20,10.5 C20,8.538055 18.6018237,7.11877635 16.6000787,7.00507103 L16.4714957,6.99959367 L15.6755756,6.97689732 L15.5194193,6.19611614 C15.1395428,4.29673328 13.433695,3 11.5,3 C9.26285888,3 7.62213728,4.5585359 7.5065992,6.75063225 L7.50156899,6.88030287 L7.48772078,7.99175409 L6.33061979,8.0012438 C4.84064582,8.04438683 3.6,9.45296792 3.6,11.1 C3.6,12.6643787 4.83868693,13.9394465 6.38876321,13.9979059 L6.5,14 L8.5,14 L8.5,16 L6.5,16 C3.79380473,16 1.6,13.8061953 1.6,11.1 C1.6,8.68983052 3.25231852,6.56452435 5.49502278,6.09571076 L5.5645,6.082 L5.58684851,5.93675031 C6.05502185,3.09688845 8.36434526,1.06966277 11.3452237,1.00175907 L11.5,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13,9 L13,19 L15,17 L16.5,18.5 L12,23 L7.5,18.5 L9,17 L11,19 L11,9 L13,9 Z M11.5,1 C14.0570069,1 16.3672564,2.55157482 17.2358321,4.93092178 L17.2835,5.0665 L17.4145183,5.08731097 C20.0449239,5.53520702 21.9316381,7.61876864 21.9981819,10.350367 L22,10.5 C22,13.6411668 19.7996323,15.9265021 16.7006468,15.998261 L15.5,16 L15.5,14 L16.55,14 C18.6163623,14 20,12.5942857 20,10.5 C20,8.538055 18.6018237,7.11877635 16.6000787,7.00507103 L16.4714957,6.99959367 L15.6755756,6.97689732 L15.5194193,6.19611614 C15.1395428,4.29673328 13.433695,3 11.5,3 C9.26285888,3 7.62213728,4.5585359 7.5065992,6.75063225 L7.50156899,6.88030287 L7.48772078,7.99175409 L6.33061979,8.0012438 C4.84064582,8.04438683 3.6,9.45296792 3.6,11.1 C3.6,12.6643787 4.83868693,13.9394465 6.38876321,13.9979059 L6.5,14 L8.5,14 L8.5,16 L6.5,16 C3.79380473,16 1.6,13.8061953 1.6,11.1 C1.6,8.68983052 3.25231852,6.56452435 5.49502278,6.09571076 L5.5645,6.082 L5.58684851,5.93675031 C6.05502185,3.09688845 8.36434526,1.06966277 11.3452237,1.00175907 L11.5,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-download.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--download {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M5 15v5h14v-5h2v7H3v-7h2zm8-13v12.24L16.243 11l1.414 1.414L12 18.071l-5.657-5.657L7.757 11 11 14.242V2h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M5 15v5h14v-5h2v7H3v-7h2zm8-13v12.24L16.243 11l1.414 1.414L12 18.071l-5.657-5.657L7.757 11 11 14.242V2h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-drag.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--drag {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,16 C9.1045695,16 10,16.8954305 10,18 C10,19.1045695 9.1045695,20 8,20 C6.8954305,20 6,19.1045695 6,18 C6,16.8954305 6.8954305,16 8,16 Z M16,16 C17.1045695,16 18,16.8954305 18,18 C18,19.1045695 17.1045695,20 16,20 C14.8954305,20 14,19.1045695 14,18 C14,16.8954305 14.8954305,16 16,16 Z M8,10 C9.1045695,10 10,10.8954305 10,12 C10,13.1045695 9.1045695,14 8,14 C6.8954305,14 6,13.1045695 6,12 C6,10.8954305 6.8954305,10 8,10 Z M16,10 C17.1045695,10 18,10.8954305 18,12 C18,13.1045695 17.1045695,14 16,14 C14.8954305,14 14,13.1045695 14,12 C14,10.8954305 14.8954305,10 16,10 Z M8,4 C9.1045695,4 10,4.8954305 10,6 C10,7.1045695 9.1045695,8 8,8 C6.8954305,8 6,7.1045695 6,6 C6,4.8954305 6.8954305,4 8,4 Z M16,4 C17.1045695,4 18,4.8954305 18,6 C18,7.1045695 17.1045695,8 16,8 C14.8954305,8 14,7.1045695 14,6 C14,4.8954305 14.8954305,4 16,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,16 C9.1045695,16 10,16.8954305 10,18 C10,19.1045695 9.1045695,20 8,20 C6.8954305,20 6,19.1045695 6,18 C6,16.8954305 6.8954305,16 8,16 Z M16,16 C17.1045695,16 18,16.8954305 18,18 C18,19.1045695 17.1045695,20 16,20 C14.8954305,20 14,19.1045695 14,18 C14,16.8954305 14.8954305,16 16,16 Z M8,10 C9.1045695,10 10,10.8954305 10,12 C10,13.1045695 9.1045695,14 8,14 C6.8954305,14 6,13.1045695 6,12 C6,10.8954305 6.8954305,10 8,10 Z M16,10 C17.1045695,10 18,10.8954305 18,12 C18,13.1045695 17.1045695,14 16,14 C14.8954305,14 14,13.1045695 14,12 C14,10.8954305 14.8954305,10 16,10 Z M8,4 C9.1045695,4 10,4.8954305 10,6 C10,7.1045695 9.1045695,8 8,8 C6.8954305,8 6,7.1045695 6,6 C6,4.8954305 6.8954305,4 8,4 Z M16,4 C17.1045695,4 18,4.8954305 18,6 C18,7.1045695 17.1045695,8 16,8 C14.8954305,8 14,7.1045695 14,6 C14,4.8954305 14.8954305,4 16,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-envelope.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--envelope {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 4v16H2V4h20zm-7.862 9.436L12 15.338l-2.14-1.902L4.536 18h14.927l-5.325-4.564zM20 8.226l-4.353 3.869L20 15.826v-7.6zM4 8.227v7.598l4.352-3.73L4 8.227zM19.493 6H4.505L12 12.661 19.493 6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 4v16H2V4h20zm-7.862 9.436L12 15.338l-2.14-1.902L4.536 18h14.927l-5.325-4.564zM20 8.226l-4.353 3.869L20 15.826v-7.6zM4 8.227v7.598l4.352-3.73L4 8.227zM19.493 6H4.505L12 12.661 19.493 6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-error-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--error-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M11.1749534,3.45608205 C11.5239234,2.86969084 12.3977071,2.8487483 12.7841638,3.39325442 L12.8250466,3.45608205 L21.8770534,18.6666084 C22.2201691,19.2431624 21.8055019,19.9510257 21.123493,19.997576 L21.0520068,20 L2.94799316,20 C2.24813009,20 1.7986969,19.3113552 2.09013491,18.7266878 L2.1229466,18.6666084 L11.1749534,3.45608205 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,8.5 L13,14.5 L11,14.5 L11,8.5 L13,8.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M11.1749534,3.45608205 C11.5239234,2.86969084 12.3977071,2.8487483 12.7841638,3.39325442 L12.8250466,3.45608205 L21.8770534,18.6666084 C22.2201691,19.2431624 21.8055019,19.9510257 21.123493,19.997576 L21.0520068,20 L2.94799316,20 C2.24813009,20 1.7986969,19.3113552 2.09013491,18.7266878 L2.1229466,18.6666084 L11.1749534,3.45608205 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M13,8.5 L13,14.5 L11,14.5 L11,8.5 L13,8.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-error.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--error {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.128 2.51a1 1 0 011.7-.07l.044.07 9.562 17a1 1 0 01-.796 1.487l-.076.003H2.438a1 1 0 01-.906-1.423l.035-.067 9.562-17zM12 5.04L4.147 19h15.705L12 5.04zM13 16v2h-2v-2h2zm0-6.5v5h-2v-5h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.128 2.51a1 1 0 011.7-.07l.044.07 9.562 17a1 1 0 01-.796 1.487l-.076.003H2.438a1 1 0 01-.906-1.423l.035-.067 9.562-17zM12 5.04L4.147 19h15.705L12 5.04zM13 16v2h-2v-2h2zm0-6.5v5h-2v-5h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-event.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--event {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15.4553546,22.2312419 L15.5474929,21.4985553 L15.8597217,19.0199278 L14.1757404,17.2064174 L13.6741207,16.6711966 L14.3907164,16.5308966 L16.811751,16.0736222 L17.9890116,13.880781 L18.3370674,13.2312419 L18.6851232,13.880781 L19.8623705,16.0736222 L22.2834049,16.5308966 L23,16.6711966 L22.498381,17.2064174 L20.8092852,19.0251222 L21.1215139,21.4985553 L21.2187667,22.2312419 L20.5584822,21.9142594 L18.3370674,20.8490202 L16.1156393,21.9142594 L15.4553548,22.2312419 L15.4553546,22.2312419 Z M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,12 L20,12 L20,11 L4,11 L4,19 L13,19 L13,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15.4553546,22.2312419 L15.5474929,21.4985553 L15.8597217,19.0199278 L14.1757404,17.2064174 L13.6741207,16.6711966 L14.3907164,16.5308966 L16.811751,16.0736222 L17.9890116,13.880781 L18.3370674,13.2312419 L18.6851232,13.880781 L19.8623705,16.0736222 L22.2834049,16.5308966 L23,16.6711966 L22.498381,17.2064174 L20.8092852,19.0251222 L21.1215139,21.4985553 L21.2187667,22.2312419 L20.5584822,21.9142594 L18.3370674,20.8490202 L16.1156393,21.9142594 L15.4553548,22.2312419 L15.4553546,22.2312419 Z M17,2 C17.5522847,2 18,2.44771525 18,3 L18,4 L22,4 L22,12 L20,12 L20,11 L4,11 L4,19 L13,19 L13,21 L2,21 L2,4 L6,4 L6,3 C6,2.44771525 6.44771525,2 7,2 C7.55228475,2 8,2.44771525 8,3 L8,4 L16,4 L16,3 C16,2.44771525 16.4477153,2 17,2 Z M20,6 L4,6 L4,9 L20,9 L20,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-eye-crossed.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--eye-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zm-.147 5.095C20.806 8.99 21.923 10.36 23 12c-3.283 5-6.95 7.5-11 7.5a9.59 9.59 0 01-3.359-.605l1.602-1.602a7.53 7.53 0 001.59.205L12 17.5c2.951 0 5.75-1.704 8.425-5.302L20.57 12l-.145-.198A19.084 19.084 0 0018.233 9.3l1.413-1.412zM12 4.5c1.15 0 2.27.202 3.359.605l-1.601 1.602a7.53 7.53 0 00-1.591-.205L12 6.5c-2.951 0-5.75 1.704-8.425 5.302L3.43 12l.145.198c.722.97 1.452 1.803 2.192 2.502l-1.413 1.412C3.194 15.01 2.077 13.64 1 12c3.283-5 6.95-7.5 11-7.5zm3.976 7.06a4 4 0 01-4.417 4.417l4.417-4.418zM12 8c.149 0 .296.008.44.024l-4.416 4.417A4 4 0 0112 8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zm-.147 5.095C20.806 8.99 21.923 10.36 23 12c-3.283 5-6.95 7.5-11 7.5a9.59 9.59 0 01-3.359-.605l1.602-1.602a7.53 7.53 0 001.59.205L12 17.5c2.951 0 5.75-1.704 8.425-5.302L20.57 12l-.145-.198A19.084 19.084 0 0018.233 9.3l1.413-1.412zM12 4.5c1.15 0 2.27.202 3.359.605l-1.601 1.602a7.53 7.53 0 00-1.591-.205L12 6.5c-2.951 0-5.75 1.704-8.425 5.302L3.43 12l.145.198c.722.97 1.452 1.803 2.192 2.502l-1.413 1.412C3.194 15.01 2.077 13.64 1 12c3.283-5 6.95-7.5 11-7.5zm3.976 7.06a4 4 0 01-4.417 4.417l4.417-4.418zM12 8c.149 0 .296.008.44.024l-4.416 4.417A4 4 0 0112 8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-eye.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--eye {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 4.5c4.05 0 7.717 2.5 11 7.5-3.283 5-6.95 7.5-11 7.5S4.283 17 1 12c3.283-5 6.95-7.5 11-7.5zm0 2c-2.951 0-5.75 1.704-8.425 5.302L3.43 12l.145.198c2.624 3.53 5.368 5.237 8.258 5.3L12 17.5c2.951 0 5.75-1.704 8.425-5.302L20.57 12l-.145-.198c-2.624-3.53-5.368-5.237-8.258-5.3L12 6.5zM12 8a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 4.5c4.05 0 7.717 2.5 11 7.5-3.283 5-6.95 7.5-11 7.5S4.283 17 1 12c3.283-5 6.95-7.5 11-7.5zm0 2c-2.951 0-5.75 1.704-8.425 5.302L3.43 12l.145.198c2.624 3.53 5.368 5.237 8.258 5.3L12 17.5c2.951 0 5.75-1.704 8.425-5.302L20.57 12l-.145-.198c-2.624-3.53-5.368-5.237-8.258-5.3L12 6.5zM12 8a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-face-neutral.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--face-neutral {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm4 10v2H8v-2h8zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm4 10v2H8v-2h8zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-face-sad.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--face-sad {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm.005 9a5.46 5.46 0 014.78 2.822l.11.21-1.79.893-.062-.12A3.461 3.461 0 0012.005 15a3.461 3.461 0 00-3.011 1.759l-.097.183-1.794-.884.07-.138A5.462 5.462 0 0112.005 13zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm.005 9a5.46 5.46 0 014.78 2.822l.11.21-1.79.893-.062-.12A3.461 3.461 0 0012.005 15a3.461 3.461 0 00-3.011 1.759l-.097.183-1.794-.884.07-.138A5.462 5.462 0 0112.005 13zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-face-smile.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--face-smile {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm-3.103 9.558a3.463 3.463 0 003.108 1.942c1.28 0 2.434-.703 3.038-1.805l.062-.12 1.79.893a5.463 5.463 0 01-4.89 3.032 5.462 5.462 0 01-4.832-2.92l-.07-.138 1.794-.884zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm-3.103 9.558a3.463 3.463 0 003.108 1.942c1.28 0 2.434-.703 3.038-1.805l.062-.12 1.79.893a5.463 5.463 0 01-4.89 3.032 5.462 5.462 0 01-4.832-2.92l-.07-.138 1.794-.884zM8.5 8a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm7 0a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-globe.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--globe {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zM7.345 17.04c-.666.07-1.33.157-1.991.258a8.509 8.509 0 003.898 2.748 12.433 12.433 0 01-1.907-3.005zm9.311.009a12.437 12.437 0 01-1.9 2.995 8.519 8.519 0 003.883-2.735l-.697-.103a43.226 43.226 0 00-1.286-.157zm-3.906-.245v3.18c.961-.902 1.74-1.942 2.317-3.076-.77-.056-1.543-.09-2.317-.104zm-1.5-.001c-.737.012-1.474.042-2.209.091l-.105.008a11.137 11.137 0 002.314 3.077v-3.176zm9.217-4.053h-2.759c-.058.98-.23 1.935-.51 2.853.783.091 1.562.203 2.336.335a8.437 8.437 0 00.933-3.188zM4.46 15.926l.05-.008a44.627 44.627 0 012.296-.324 12.278 12.278 0 01-.508-2.844H3.533c.1 1.138.423 2.212.926 3.176zm8.291-3.176v2.556c.977.017 1.954.065 2.927.146.29-.866.47-1.771.534-2.702H12.75zm-1.5 0H7.795c.063.928.243 1.832.532 2.696.972-.08 1.947-.126 2.923-.142V12.75zm8.284-4.689l-.316.054c-.67.11-1.344.204-2.02.283.28.917.452 1.872.51 2.852h2.76a8.446 8.446 0 00-.934-3.189zM4.46 8.074l-.017.033a8.446 8.446 0 00-.91 3.143h2.765c.059-.977.23-1.93.508-2.845-.786-.089-1.568-.2-2.346-.33zm11.218.474l-.47.037c-.817.058-1.637.095-2.457.11v2.554h3.461a10.803 10.803 0 00-.534-2.7zm-7.35.007l-.039.116a10.808 10.808 0 00-.493 2.579h3.455V8.695a45.328 45.328 0 01-2.923-.141zm2.923-4.533a11.137 11.137 0 00-2.315 3.077c.77.053 1.543.086 2.315.099V4.022zm1.5-.005v3.18a43.965 43.965 0 002.317-.103 11.127 11.127 0 00-2.316-3.077zm-3.497-.064l-.027.01a8.517 8.517 0 00-3.873 2.74c.661.101 1.326.187 1.993.257a12.43 12.43 0 011.907-3.007zm5.504.004l.142.169a12.424 12.424 0 011.758 2.825c.663-.07 1.324-.157 1.982-.259a8.51 8.51 0 00-3.882-2.735z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zM7.345 17.04c-.666.07-1.33.157-1.991.258a8.509 8.509 0 003.898 2.748 12.433 12.433 0 01-1.907-3.005zm9.311.009a12.437 12.437 0 01-1.9 2.995 8.519 8.519 0 003.883-2.735l-.697-.103a43.226 43.226 0 00-1.286-.157zm-3.906-.245v3.18c.961-.902 1.74-1.942 2.317-3.076-.77-.056-1.543-.09-2.317-.104zm-1.5-.001c-.737.012-1.474.042-2.209.091l-.105.008a11.137 11.137 0 002.314 3.077v-3.176zm9.217-4.053h-2.759c-.058.98-.23 1.935-.51 2.853.783.091 1.562.203 2.336.335a8.437 8.437 0 00.933-3.188zM4.46 15.926l.05-.008a44.627 44.627 0 012.296-.324 12.278 12.278 0 01-.508-2.844H3.533c.1 1.138.423 2.212.926 3.176zm8.291-3.176v2.556c.977.017 1.954.065 2.927.146.29-.866.47-1.771.534-2.702H12.75zm-1.5 0H7.795c.063.928.243 1.832.532 2.696.972-.08 1.947-.126 2.923-.142V12.75zm8.284-4.689l-.316.054c-.67.11-1.344.204-2.02.283.28.917.452 1.872.51 2.852h2.76a8.446 8.446 0 00-.934-3.189zM4.46 8.074l-.017.033a8.446 8.446 0 00-.91 3.143h2.765c.059-.977.23-1.93.508-2.845-.786-.089-1.568-.2-2.346-.33zm11.218.474l-.47.037c-.817.058-1.637.095-2.457.11v2.554h3.461a10.803 10.803 0 00-.534-2.7zm-7.35.007l-.039.116a10.808 10.808 0 00-.493 2.579h3.455V8.695a45.328 45.328 0 01-2.923-.141zm2.923-4.533a11.137 11.137 0 00-2.315 3.077c.77.053 1.543.086 2.315.099V4.022zm1.5-.005v3.18a43.965 43.965 0 002.317-.103 11.127 11.127 0 00-2.316-3.077zm-3.497-.064l-.027.01a8.517 8.517 0 00-3.873 2.74c.661.101 1.326.187 1.993.257a12.43 12.43 0 011.907-3.007zm5.504.004l.142.169a12.424 12.424 0 011.758 2.825c.663-.07 1.324-.157 1.982-.259a8.51 8.51 0 00-3.882-2.735z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-glyph-at.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--glyph-at {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M11.8769231,20 C14.8307692,20 17.0666667,18.8307692 18.2153846,17.6205128 L16.3692308,16.5333333 C15.5487179,17.7435897 13.8871795,18.3589744 11.8769231,18.3589744 C8.38974359,18.3589744 5.86666667,15.7948718 5.86666667,11.9794872 C5.86666667,8.24615385 8.36923077,5.68205128 11.9589744,5.68205128 C15.3230769,5.68205128 17.7025641,8 17.7025641,11.3435897 C17.7025641,12.9641026 16.9846154,14.174359 15.9589744,14.174359 C15.3025641,14.174359 14.974359,13.8051282 14.974359,13.025641 L14.974359,10.625641 C14.974359,8.71794872 13.7230769,7.83589744 12.0410256,7.83589744 C10.2564103,7.83589744 9.08717949,8.82051282 8.49230769,9.92820513 L10.1538462,10.8512821 C10.3384615,10.0923077 10.9333333,9.37435897 11.9794872,9.37435897 C12.5948718,9.37435897 13.1487179,9.7025641 13.1487179,10.2564103 C13.1487179,10.7897436 12.4102564,10.9538462 11.3846154,11.1589744 C10.0717949,11.425641 8.67692308,11.9384615 8.67692308,13.4974359 C8.67692308,14.7692308 9.80512821,15.6923077 11.1384615,15.6923077 C12.3282051,15.6923077 13.1487179,15.0153846 13.4769231,14.5846154 L13.5179487,14.5846154 C13.9487179,15.3846154 14.8923077,15.6923077 15.8974359,15.6923077 C17.6410256,15.6923077 19.5692308,14.3794872 19.5692308,11.3435897 C19.5692308,7.03589744 16.2666667,4 11.9589744,4 C7.40512821,4 4,7.28205128 4,11.9794872 C4,16.8410256 7.42564103,20 11.8769231,20 Z M11.5692308,14.174359 C10.974359,14.174359 10.5025641,13.8871795 10.5025641,13.374359 C10.5025641,12.8 11.0679487,12.586859 11.6215545,12.4326122 L11.8564103,12.3692308 L11.8564103,12.3692308 C12.5128205,12.2051282 13.025641,12.0615385 13.2102564,11.7948718 L13.2102564,12.5948718 C13.2102564,13.6615385 12.3692308,14.174359 11.5692308,14.174359 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M11.8769231,20 C14.8307692,20 17.0666667,18.8307692 18.2153846,17.6205128 L16.3692308,16.5333333 C15.5487179,17.7435897 13.8871795,18.3589744 11.8769231,18.3589744 C8.38974359,18.3589744 5.86666667,15.7948718 5.86666667,11.9794872 C5.86666667,8.24615385 8.36923077,5.68205128 11.9589744,5.68205128 C15.3230769,5.68205128 17.7025641,8 17.7025641,11.3435897 C17.7025641,12.9641026 16.9846154,14.174359 15.9589744,14.174359 C15.3025641,14.174359 14.974359,13.8051282 14.974359,13.025641 L14.974359,10.625641 C14.974359,8.71794872 13.7230769,7.83589744 12.0410256,7.83589744 C10.2564103,7.83589744 9.08717949,8.82051282 8.49230769,9.92820513 L10.1538462,10.8512821 C10.3384615,10.0923077 10.9333333,9.37435897 11.9794872,9.37435897 C12.5948718,9.37435897 13.1487179,9.7025641 13.1487179,10.2564103 C13.1487179,10.7897436 12.4102564,10.9538462 11.3846154,11.1589744 C10.0717949,11.425641 8.67692308,11.9384615 8.67692308,13.4974359 C8.67692308,14.7692308 9.80512821,15.6923077 11.1384615,15.6923077 C12.3282051,15.6923077 13.1487179,15.0153846 13.4769231,14.5846154 L13.5179487,14.5846154 C13.9487179,15.3846154 14.8923077,15.6923077 15.8974359,15.6923077 C17.6410256,15.6923077 19.5692308,14.3794872 19.5692308,11.3435897 C19.5692308,7.03589744 16.2666667,4 11.9589744,4 C7.40512821,4 4,7.28205128 4,11.9794872 C4,16.8410256 7.42564103,20 11.8769231,20 Z M11.5692308,14.174359 C10.974359,14.174359 10.5025641,13.8871795 10.5025641,13.374359 C10.5025641,12.8 11.0679487,12.586859 11.6215545,12.4326122 L11.8564103,12.3692308 L11.8564103,12.3692308 C12.5128205,12.2051282 13.025641,12.0615385 13.2102564,11.7948718 L13.2102564,12.5948718 C13.2102564,13.6615385 12.3692308,14.174359 11.5692308,14.174359 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-glyph-euro.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--glyph-euro {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12.6201117,20 C15.5698324,20 17.2234637,17.877095 17.7821229,15.7318436 L15.4357542,14.2569832 C15.3240223,16.0670391 14.6759777,17.877095 12.6201117,17.877095 C10.6759777,17.877095 9.78212291,16.5139665 9.42458101,14.6592179 L12.5083799,14.6592179 L13.1564246,12.8268156 L9.24581006,12.8268156 C9.23091248,12.6480447 9.22594662,12.459342 9.22429133,12.2673288 L9.22346369,11.396648 L13.5810056,11.396648 L14.2067039,9.54189944 L9.44692737,9.54189944 C9.82681564,7.62011173 10.7877095,6.1452514 12.6201117,6.1452514 C14.6536313,6.1452514 15.3240223,7.75418994 15.4357542,9.58659218 L17.7821229,8.11173184 C17.2234637,5.96648045 15.5251397,4 12.6201117,4 C9.84916201,4 7.63687151,5.94413408 6.94413408,9.54189944 L5,9.54189944 L5,11.396648 L6.74301676,11.396648 L6.74301676,11.9776536 C6.74301676,12.2681564 6.74301676,12.5586592 6.76536313,12.8268156 L5,12.8268156 L5,14.6592179 L6.96648045,14.6592179 C7.61452514,18.1899441 9.67039106,20 12.6201117,20 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12.6201117,20 C15.5698324,20 17.2234637,17.877095 17.7821229,15.7318436 L15.4357542,14.2569832 C15.3240223,16.0670391 14.6759777,17.877095 12.6201117,17.877095 C10.6759777,17.877095 9.78212291,16.5139665 9.42458101,14.6592179 L12.5083799,14.6592179 L13.1564246,12.8268156 L9.24581006,12.8268156 C9.23091248,12.6480447 9.22594662,12.459342 9.22429133,12.2673288 L9.22346369,11.396648 L13.5810056,11.396648 L14.2067039,9.54189944 L9.44692737,9.54189944 C9.82681564,7.62011173 10.7877095,6.1452514 12.6201117,6.1452514 C14.6536313,6.1452514 15.3240223,7.75418994 15.4357542,9.58659218 L17.7821229,8.11173184 C17.2234637,5.96648045 15.5251397,4 12.6201117,4 C9.84916201,4 7.63687151,5.94413408 6.94413408,9.54189944 L5,9.54189944 L5,11.396648 L6.74301676,11.396648 L6.74301676,11.9776536 C6.74301676,12.2681564 6.74301676,12.5586592 6.76536313,12.8268156 L5,12.8268156 L5,14.6592179 L6.96648045,14.6592179 C7.61452514,18.1899441 9.67039106,20 12.6201117,20 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-group.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--group {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14.5 16a3.5 3.5 0 013.498 3.38l.002.12V22h-2v-2.5a1.5 1.5 0 00-1.412-1.497L14.5 18h-5a1.5 1.5 0 00-1.497 1.412L8 19.5V22H6v-2.5a3.5 3.5 0 013.38-3.498L9.5 16h5zm2.4-6.001l3.6.001.12.002a3.5 3.5 0 013.375 3.31L24 13.5V16h-2v-2.5l-.003-.088a1.5 1.5 0 00-1.358-1.406L20.5 12l-3.6.001a5.023 5.023 0 000-2.002zm-9.8 0A5.023 5.023 0 007.1 12L3.5 12a1.5 1.5 0 00-1.497 1.412L2 13.5V16H0v-2.5a3.5 3.5 0 013.38-3.498L3.5 10l3.6-.001zM12 7a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4zM5.5 2a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm13 0a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm-13 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13 0a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14.5 16a3.5 3.5 0 013.498 3.38l.002.12V22h-2v-2.5a1.5 1.5 0 00-1.412-1.497L14.5 18h-5a1.5 1.5 0 00-1.497 1.412L8 19.5V22H6v-2.5a3.5 3.5 0 013.38-3.498L9.5 16h5zm2.4-6.001l3.6.001.12.002a3.5 3.5 0 013.375 3.31L24 13.5V16h-2v-2.5l-.003-.088a1.5 1.5 0 00-1.358-1.406L20.5 12l-3.6.001a5.023 5.023 0 000-2.002zm-9.8 0A5.023 5.023 0 007.1 12L3.5 12a1.5 1.5 0 00-1.497 1.412L2 13.5V16H0v-2.5a3.5 3.5 0 013.38-3.498L3.5 10l3.6-.001zM12 7a4 4 0 110 8 4 4 0 010-8zm0 2a2 2 0 100 4 2 2 0 000-4zM5.5 2a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm13 0a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm-13 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13 0a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-headphones.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--headphones {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C17.5228475,3 22,7.4771525 22,13 L22,18 C22,19.6568542 20.6568542,21 19,21 C17.3431458,21 16,19.6568542 16,18 L16,18 L16,14.5 L16.0068666,14.35554 C16.0795513,13.5948881 16.7203039,13 17.5,13 L17.5,13 L20,13 C20,8.581722 16.418278,5 12,5 C7.581722,5 4,8.581722 4,13 L6.5,13 C7.32842712,13 8,13.6715729 8,14.5 L8,14.5 L8,18 C8,19.6568542 6.65685425,21 5,21 C3.34314575,21 2,19.6568542 2,18 L2,18 L2,13 C2,7.4771525 6.4771525,3 12,3 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C17.5228475,3 22,7.4771525 22,13 L22,18 C22,19.6568542 20.6568542,21 19,21 C17.3431458,21 16,19.6568542 16,18 L16,18 L16,14.5 L16.0068666,14.35554 C16.0795513,13.5948881 16.7203039,13 17.5,13 L17.5,13 L20,13 C20,8.581722 16.418278,5 12,5 C7.581722,5 4,8.581722 4,13 L6.5,13 C7.32842712,13 8,13.6715729 8,14.5 L8,14.5 L8,18 C8,19.6568542 6.65685425,21 5,21 C3.34314575,21 2,19.6568542 2,18 L2,18 L2,13 C2,7.4771525 6.4771525,3 12,3 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-heart-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--heart-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.842 2c-2.91 0-4.376 1.806-4.84 2.518C11.536 3.806 10.071 2 7.16 2h-.004a6.057 6.057 0 00-4.356 1.842A6.317 6.317 0 001 8.29c0 1.682.64 3.261 1.801 4.448 1.266 1.292 2.426 2.336 3.548 3.345 1.581 1.423 3.075 2.767 4.64 4.612.18.211.858 1.103.865 1.112L12 22l.146-.193c.007-.01.684-.9.864-1.112 1.566-1.845 3.06-3.189 4.641-4.612 1.122-1.01 2.282-2.053 3.547-3.345A6.314 6.314 0 0023 8.29c0-1.682-.64-3.261-1.802-4.448A6.054 6.054 0 0016.842 2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.842 2c-2.91 0-4.376 1.806-4.84 2.518C11.536 3.806 10.071 2 7.16 2h-.004a6.057 6.057 0 00-4.356 1.842A6.317 6.317 0 001 8.29c0 1.682.64 3.261 1.801 4.448 1.266 1.292 2.426 2.336 3.548 3.345 1.581 1.423 3.075 2.767 4.64 4.612.18.211.858 1.103.865 1.112L12 22l.146-.193c.007-.01.684-.9.864-1.112 1.566-1.845 3.06-3.189 4.641-4.612 1.122-1.01 2.282-2.053 3.547-3.345A6.314 6.314 0 0023 8.29c0-1.682-.64-3.261-1.802-4.448A6.054 6.054 0 0016.842 2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-heart.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--heart {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.732 11.542c-1.185 1.206-2.282 2.191-3.344 3.144C14.9 16.02 13.492 17.284 12 19c-1.492-1.715-2.9-2.979-4.389-4.315-1.061-.952-2.159-1.937-3.343-3.143A4.43 4.43 0 013 8.418a4.43 4.43 0 011.268-3.124A4.273 4.273 0 017.34 4c3.073 0 4.099 2.71 4.662 3.725C12.566 6.71 13.591 4 16.664 4c1.159 0 2.248.46 3.068 1.294A4.43 4.43 0 0121 8.418a4.43 4.43 0 01-1.268 3.124M16.842 2c-2.91 0-4.376 1.806-4.84 2.518C11.536 3.806 10.071 2 7.16 2h-.004a6.057 6.057 0 00-4.356 1.842A6.317 6.317 0 001 8.29c0 1.682.64 3.261 1.801 4.448 1.266 1.292 2.426 2.336 3.548 3.345 1.581 1.423 3.075 2.767 4.64 4.612.18.211.858 1.103.865 1.112L12 22l.146-.193c.007-.01.684-.9.864-1.112 1.566-1.845 3.06-3.189 4.641-4.612 1.122-1.01 2.282-2.053 3.547-3.345A6.314 6.314 0 0023 8.29c0-1.682-.64-3.261-1.802-4.448A6.054 6.054 0 0016.842 2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.732 11.542c-1.185 1.206-2.282 2.191-3.344 3.144C14.9 16.02 13.492 17.284 12 19c-1.492-1.715-2.9-2.979-4.389-4.315-1.061-.952-2.159-1.937-3.343-3.143A4.43 4.43 0 013 8.418a4.43 4.43 0 011.268-3.124A4.273 4.273 0 017.34 4c3.073 0 4.099 2.71 4.662 3.725C12.566 6.71 13.591 4 16.664 4c1.159 0 2.248.46 3.068 1.294A4.43 4.43 0 0121 8.418a4.43 4.43 0 01-1.268 3.124M16.842 2c-2.91 0-4.376 1.806-4.84 2.518C11.536 3.806 10.071 2 7.16 2h-.004a6.057 6.057 0 00-4.356 1.842A6.317 6.317 0 001 8.29c0 1.682.64 3.261 1.801 4.448 1.266 1.292 2.426 2.336 3.548 3.345 1.581 1.423 3.075 2.767 4.64 4.612.18.211.858 1.103.865 1.112L12 22l.146-.193c.007-.01.684-.9.864-1.112 1.566-1.845 3.06-3.189 4.641-4.612 1.122-1.01 2.282-2.053 3.547-3.345A6.314 6.314 0 0023 8.29c0-1.682-.64-3.261-1.802-4.448A6.054 6.054 0 0016.842 2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-home-smoke.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--home-smoke {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 4l11 11-1.5 1.5L20 15v8H4v-8l-1.5 1.5L1 15 12 4zm0 3l-6 6v8l2.999-.001L9 14h6l-.001 6.999L18 21v-8l-6-6zm1 9h-2l-.001 4.999h2L13 16zm7-15c0 .901-.237 1.406-.833 2.123l-.098.115c-.456.533-.569.752-.569 1.262 0 .478.099.7.488 1.166l.081.096c.635.74.904 1.238.929 2.099L20 8h-1.5c0-.478-.099-.7-.488-1.166l-.081-.096C17.262 5.958 17 5.448 17 4.5c0-.901.237-1.406.833-2.123l.098-.115c.428-.5.554-.723.568-1.17L18.5 1H20z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 4l11 11-1.5 1.5L20 15v8H4v-8l-1.5 1.5L1 15 12 4zm0 3l-6 6v8l2.999-.001L9 14h6l-.001 6.999L18 21v-8l-6-6zm1 9h-2l-.001 4.999h2L13 16zm7-15c0 .901-.237 1.406-.833 2.123l-.098.115c-.456.533-.569.752-.569 1.262 0 .478.099.7.488 1.166l.081.096c.635.74.904 1.238.929 2.099L20 8h-1.5c0-.478-.099-.7-.488-1.166l-.081-.096C17.262 5.958 17 5.448 17 4.5c0-.901.237-1.406.833-2.123l.098-.115c.428-.5.554-.723.568-1.17L18.5 1H20z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-home.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--home {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M1 13L12 2l11 11-1.5 1.5L20 13v8H4v-8l-1.5 1.5L1 13zm11-8l-6 6v8l2.999-.001L9 12h6l-.001 6.999L18 19v-8l-6-6zm1 9h-2l-.001 4.999h2L13 14z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M1 13L12 2l11 11-1.5 1.5L20 13v8H4v-8l-1.5 1.5L1 13zm11-8l-6 6v8l2.999-.001L9 12h6l-.001 6.999L18 19v-8l-6-6zm1 9h-2l-.001 4.999h2L13 14z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-info-circle-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--info-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,10 L13,16.5 L15,16.5 L15,18 L9,18 L9,16.5 L11,16.5 L11,11.5 L9,11.5 L9,10 L13,10 Z M11.8125239,6 C12.5373649,6 13.125,6.58759799 13.125,7.3125 C13.125,8.03735415 12.5373649,8.625 11.8125239,8.625 C11.0876351,8.625 10.5,8.03735415 10.5,7.3125 C10.5,6.58759799 11.0876351,6 11.8125239,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,10 L13,16.5 L15,16.5 L15,18 L9,18 L9,16.5 L11,16.5 L11,11.5 L9,11.5 L9,10 L13,10 Z M11.8125239,6 C12.5373649,6 13.125,6.58759799 13.125,7.3125 C13.125,8.03735415 12.5373649,8.625 11.8125239,8.625 C11.0876351,8.625 10.5,8.03735415 10.5,7.3125 C10.5,6.58759799 11.0876351,6 11.8125239,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-info-circle.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--info-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 6v6.5h2V18H9v-1.5h2v-5H9V10h4zm-1.187-4a1.312 1.312 0 110 2.625 1.312 1.312 0 010-2.625z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 6v6.5h2V18H9v-1.5h2v-5H9V10h4zm-1.187-4a1.312 1.312 0 110 2.625 1.312 1.312 0 010-2.625z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-layers.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--layers {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,14.5 L21,15.5 L12,20 L3,15.5 L5,14.5 L12.0005205,18 L19,14.5 Z M19,11 L21,12 L12,16.5 L3,12 L5,11 L12.0005205,14.5 L19,11 Z M12,4 L21,8.5 L12,13 L3,8.5 L12,4 Z M12.0005205,6 L7,8.50052056 L12.0005205,11 L17,8.50052056 L12.0005205,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,14.5 L21,15.5 L12,20 L3,15.5 L5,14.5 L12.0005205,18 L19,14.5 Z M19,11 L21,12 L12,16.5 L3,12 L5,11 L12.0005205,14.5 L19,11 Z M12,4 L21,8.5 L12,13 L3,8.5 L12,4 Z M12.0005205,6 L7,8.50052056 L12.0005205,11 L17,8.50052056 L12.0005205,6 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-link-external.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--link-external {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M10 3v2H5v14h14v-5h2v7H3V3h7zm11 0v8h-2V6.413l-7 7.001L10.586 12l6.999-7H13V3h8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M10 3v2H5v14h14v-5h2v7H3V3h7zm11 0v8h-2V6.413l-7 7.001L10.586 12l6.999-7H13V3h8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-link.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--link {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.489 6.42l2.074-2.055A4.575 4.575 0 0116.698 3a4.142 4.142 0 013.072 1.21 4.157 4.157 0 011.229 3.071 4.565 4.565 0 01-1.255 3.023l-.109.112-3.432 3.432a4.575 4.575 0 01-3.135 1.364 4.142 4.142 0 01-3.071-1.21l.2-.195c.353-.348.997-.993 1.235-1.24.84.86 2.36.848 3.3-.002l.087-.082 3.394-3.45c.95-.95.988-2.483.084-3.387-.84-.86-2.36-.848-3.3.002l-.087.082-2.055 2.055-1.366-1.365zm-7.201 7.202L7.6 10.327c1.685-1.704 4.422-1.72 6.106-.035l-.567.576c-.343.343-.71.708-.818.81-.88-.88-2.324-.899-3.247-.062l-.085.08-3.314 3.314c-.917.917-.926 2.425-.019 3.332.88.88 2.324.898 3.248.062l.085-.08 1.984-2.004 1.37 1.389-1.985 1.984a4.38 4.38 0 01-3.06 1.283 4.282 4.282 0 01-3.046-1.248c-1.652-1.634-1.669-4.298-.062-6.007l.097-.1z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.489 6.42l2.074-2.055A4.575 4.575 0 0116.698 3a4.142 4.142 0 013.072 1.21 4.157 4.157 0 011.229 3.071 4.565 4.565 0 01-1.255 3.023l-.109.112-3.432 3.432a4.575 4.575 0 01-3.135 1.364 4.142 4.142 0 01-3.071-1.21l.2-.195c.353-.348.997-.993 1.235-1.24.84.86 2.36.848 3.3-.002l.087-.082 3.394-3.45c.95-.95.988-2.483.084-3.387-.84-.86-2.36-.848-3.3.002l-.087.082-2.055 2.055-1.366-1.365zm-7.201 7.202L7.6 10.327c1.685-1.704 4.422-1.72 6.106-.035l-.567.576c-.343.343-.71.708-.818.81-.88-.88-2.324-.899-3.247-.062l-.085.08-3.314 3.314c-.917.917-.926 2.425-.019 3.332.88.88 2.324.898 3.248.062l.085-.08 1.984-2.004 1.37 1.389-1.985 1.984a4.38 4.38 0 01-3.06 1.283 4.282 4.282 0 01-3.046-1.248c-1.652-1.634-1.669-4.298-.062-6.007l.097-.1z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-locate.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--locate {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M13 2l.001 2.062A8.004 8.004 0 0119.938 11H22v2l-2.062.001a8.004 8.004 0 01-6.937 6.937L13 22h-2v-2.062a8.004 8.004 0 01-6.938-6.937L2 13v-2h2.062A8.004 8.004 0 0111 4.062V2h2zm-1 4a6 6 0 100 12 6 6 0 000-12zm0 2.5a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm0 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M13 2l.001 2.062A8.004 8.004 0 0119.938 11H22v2l-2.062.001a8.004 8.004 0 01-6.937 6.937L13 22h-2v-2.062a8.004 8.004 0 01-6.938-6.937L2 13v-2h2.062A8.004 8.004 0 0111 4.062V2h2zm-1 4a6 6 0 100 12 6 6 0 000-12zm0 2.5a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm0 2a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-location.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--location {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.967 1.5c2.06 0 4.12.778 5.69 2.334 3.143 3.111 2.93 7.96 0 11.268l-.622.709c-2.612 2.991-4.066 4.96-5.068 6.937-1.073-2.13-2.682-4.249-5.689-7.646-2.93-3.308-3.143-8.157 0-11.268A8.06 8.06 0 0111.967 1.5zm.032 2a6.072 6.072 0 00-4.3 1.762A5.606 5.606 0 006.002 9.41c.02 1.573.648 3.134 1.766 4.398l.66.752c1.59 1.823 2.717 3.239 3.573 4.503.975-1.437 2.292-3.063 4.233-5.255 1.118-1.264 1.746-2.825 1.766-4.398a5.616 5.616 0 00-1.698-4.15A6.077 6.077 0 0011.999 3.5zM12 6a3.5 3.5 0 110 6.999A3.5 3.5 0 0112 6zm0 2c-.827 0-1.5.673-1.5 1.5S11.173 11 12 11s1.5-.673 1.5-1.5S12.827 8 12 8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11.967 1.5c2.06 0 4.12.778 5.69 2.334 3.143 3.111 2.93 7.96 0 11.268l-.622.709c-2.612 2.991-4.066 4.96-5.068 6.937-1.073-2.13-2.682-4.249-5.689-7.646-2.93-3.308-3.143-8.157 0-11.268A8.06 8.06 0 0111.967 1.5zm.032 2a6.072 6.072 0 00-4.3 1.762A5.606 5.606 0 006.002 9.41c.02 1.573.648 3.134 1.766 4.398l.66.752c1.59 1.823 2.717 3.239 3.573 4.503.975-1.437 2.292-3.063 4.233-5.255 1.118-1.264 1.746-2.825 1.766-4.398a5.616 5.616 0 00-1.698-4.15A6.077 6.077 0 0011.999 3.5zM12 6a3.5 3.5 0 110 6.999A3.5 3.5 0 0112 6zm0 2c-.827 0-1.5.673-1.5 1.5S11.173 11 12 11s1.5-.673 1.5-1.5S12.827 8 12 8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-lock-open.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--lock-open {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 2a5 5 0 014.998 4.86L22 7v2h-2V7a3 3 0 00-5.998-.112L14 7v2h2v13H2V9h10V7a5 5 0 015-5zm-3 9H4v9h10v-9zm-4 2v5H8v-5h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M17 2a5 5 0 014.998 4.86L22 7v2h-2V7a3 3 0 00-5.998-.112L14 7v2h2v13H2V9h10V7a5 5 0 015-5zm-3 9H4v9h10v-9zm-4 2v5H8v-5h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-lock.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--lock {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2a5 5 0 014.998 4.86L17 7v2h2v13H5V9h2V7a5 5 0 015-5zm5 9H7v9h10v-9zm-4 2v5h-2v-5h2zm-1-9a3 3 0 00-2.998 2.888L9 7v2h6V7a3 3 0 00-3-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2a5 5 0 014.998 4.86L17 7v2h2v13H5V9h2V7a5 5 0 015-5zm5 9H7v9h10v-9zm-4 2v5h-2v-5h2zm-1-9a3 3 0 00-2.998 2.888L9 7v2h6V7a3 3 0 00-3-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-map.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--map {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 4.113V17.72l-7 2.333-6-2-7 2.333V6.78l7-2.333 6 2 7-2.333zM8 6.887L4 8.22v9.392l4-1.333V6.887zm2 0v9.392l4 1.333V8.22l-4-1.334zm10 0l-4 1.334v9.39l4-1.332V6.887z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 4.113V17.72l-7 2.333-6-2-7 2.333V6.78l7-2.333 6 2 7-2.333zM8 6.887L4 8.22v9.392l4-1.333V6.887zm2 0v9.392l4 1.333V8.22l-4-1.334zm10 0l-4 1.334v9.39l4-1.332V6.887z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-menu-dots.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--menu-dots {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 10a2 2 0 110 4 2 2 0 010-4zm7 0a2 2 0 110 4 2 2 0 010-4zM5 10a2 2 0 110 4 2 2 0 010-4z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 10a2 2 0 110 4 2 2 0 010-4zm7 0a2 2 0 110 4 2 2 0 010-4zM5 10a2 2 0 110 4 2 2 0 010-4z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-menu-hamburger.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--menu-hamburger {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 17v2H2v-2h20zm0-6v2H2v-2h20zm0-6v2H2V5h20z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M22 17v2H2v-2h20zm0-6v2H2v-2h20zm0-6v2H2V5h20z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-microphone-crossed.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--microphone-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,11.5 C19,15.0261219 16.3928118,17.9433024 13.0010101,18.4289666 L12.9998932,21 L16,21 L16,23 L8,23 L8,21 L10.9998932,21 L11,18.42911 C10.4779709,18.3544401 9.97452935,18.2221752 9.49631076,18.038959 L11.1140992,16.4217592 C11.401632,16.4731693 11.6976827,16.5 12,16.5 C14.6887547,16.5 16.8818181,14.3776933 16.9953805,11.7168896 L17,11.5 L19,11.5 Z M19.7928932,2.79289322 L21.2071068,4.20710678 L4.70710678,20.7071068 L3.29289322,19.2928932 L19.7928932,2.79289322 Z M7,11.5 C7,12.0885063 7.10167356,12.6532655 7.28841324,13.1776701 L5.7699238,14.6948072 C5.31220839,13.804027 5.0399257,12.8023134 5.00405902,11.7406498 L5,11.5 L7,11.5 Z M12,1 C13.6568542,1 15,2.34314575 15,4 L15,5.463 L8.99995167,11.464 L8.99995167,4 C8.99995167,2.34314575 10.3431458,1 12,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,11.5 C19,15.0261219 16.3928118,17.9433024 13.0010101,18.4289666 L12.9998932,21 L16,21 L16,23 L8,23 L8,21 L10.9998932,21 L11,18.42911 C10.4779709,18.3544401 9.97452935,18.2221752 9.49631076,18.038959 L11.1140992,16.4217592 C11.401632,16.4731693 11.6976827,16.5 12,16.5 C14.6887547,16.5 16.8818181,14.3776933 16.9953805,11.7168896 L17,11.5 L19,11.5 Z M19.7928932,2.79289322 L21.2071068,4.20710678 L4.70710678,20.7071068 L3.29289322,19.2928932 L19.7928932,2.79289322 Z M7,11.5 C7,12.0885063 7.10167356,12.6532655 7.28841324,13.1776701 L5.7699238,14.6948072 C5.31220839,13.804027 5.0399257,12.8023134 5.00405902,11.7406498 L5,11.5 L7,11.5 Z M12,1 C13.6568542,1 15,2.34314575 15,4 L15,5.463 L8.99995167,11.464 L8.99995167,4 C8.99995167,2.34314575 10.3431458,1 12,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-microphone.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--microphone {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M7,11.5 C7,14.2614237 9.23857625,16.5 12,16.5 C14.6887547,16.5 16.8818181,14.3776933 16.9953805,11.7168896 L17,11.5 L19,11.5 C19,15.0261219 16.3928118,17.9433024 13.0010101,18.4289666 L13,21 L16,21 L16,23 L8,23 L8,21 L11,21 L11,18.42911 C7.68517863,17.9549591 5.1195246,15.1584625 5.00405902,11.7406498 L5,11.5 L7,11.5 Z M12,1 C13.6568542,1 15,2.34314575 15,4 L15,11.5 C15,13.1568542 13.6568542,14.5 12,14.5 C10.3431458,14.5 9,13.1568542 9,11.5 L9,4 C9,2.34314575 10.3431458,1 12,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M7,11.5 C7,14.2614237 9.23857625,16.5 12,16.5 C14.6887547,16.5 16.8818181,14.3776933 16.9953805,11.7168896 L17,11.5 L19,11.5 C19,15.0261219 16.3928118,17.9433024 13.0010101,18.4289666 L13,21 L16,21 L16,23 L8,23 L8,21 L11,21 L11,18.42911 C7.68517863,17.9549591 5.1195246,15.1584625 5.00405902,11.7406498 L5,11.5 L7,11.5 Z M12,1 C13.6568542,1 15,2.34314575 15,4 L15,11.5 C15,13.1568542 13.6568542,14.5 12,14.5 C10.3431458,14.5 9,13.1568542 9,11.5 L9,4 C9,2.34314575 10.3431458,1 12,1 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-minus-circle-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--minus-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M17,11 L17,13 L7,13 L7,11 L17,11 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M17,11 L17,13 L7,13 L7,11 L17,11 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-minus-circle.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--minus-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm5 7v2H7v-2h10z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm5 7v2H7v-2h10z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-minus.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--minus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M6 11h12v2H6z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M6 11h12v2H6z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-mobile.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--mobile {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2a4 4 0 013.995 3.8L19 6v12a4 4 0 01-3.8 3.995L15 22H9a4 4 0 01-3.995-3.8L5 18V6a4 4 0 013.8-3.995L9 2h6zm0 2H9a2 2 0 00-1.995 1.85L7 6v12a2 2 0 001.85 1.995L9 20h6a2 2 0 001.995-1.85L17 18V6a2 2 0 00-1.85-1.995L15 4zm-3 11.5a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2a4 4 0 013.995 3.8L19 6v12a4 4 0 01-3.8 3.995L15 22H9a4 4 0 01-3.995-3.8L5 18V6a4 4 0 013.8-3.995L9 2h6zm0 2H9a2 2 0 00-1.995 1.85L7 6v12a2 2 0 001.85 1.995L9 20h6a2 2 0 001.995-1.85L17 18V6a2 2 0 00-1.85-1.995L15 4zm-3 11.5a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-paperclip.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--paperclip {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16 7h2v9a6 6 0 01-11.996.225L6 16V6.5a4.5 4.5 0 018.995-.212L15 6.5V15a3 3 0 01-5.995.176L9 15V7h2v8a1 1 0 001.993.117L13 15V6.5a2.5 2.5 0 00-4.995-.164L8 6.5V16a4 4 0 007.995.2L16 16V7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16 7h2v9a6 6 0 01-11.996.225L6 16V6.5a4.5 4.5 0 018.995-.212L15 6.5V15a3 3 0 01-5.995.176L9 15V7h2v8a1 1 0 001.993.117L13 15V6.5a2.5 2.5 0 00-4.995-.164L8 6.5V16a4 4 0 007.995.2L16 16V7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-pen-line.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--pen-line {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20.5 20v2h-17v-2h17zM14.25 2.5L19 7.25 8.25 18l-4.736-.014L3.5 13.25 14.25 2.5zm0 2.75L5.5 14l.007 1.994L7.5 16l8.75-8.75-2-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20.5 20v2h-17v-2h17zM14.25 2.5L19 7.25 8.25 18l-4.736-.014L3.5 13.25 14.25 2.5zm0 2.75L5.5 14l.007 1.994L7.5 16l8.75-8.75-2-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-pen.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--pen {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.75 3L4.5 15.25l.014 4.736L9.25 20 21.5 7.75 16.75 3zM6.5 16L16.75 5.75l2 2L8.5 18l-1.993-.006L6.5 16z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.75 3L4.5 15.25l.014 4.736L9.25 20 21.5 7.75 16.75 3zM6.5 16L16.75 5.75l2 2L8.5 18l-1.993-.006L6.5 16z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-person-female.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--person-female {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11 18v4h2v-4h2v6H9v-6h2zm2.048-11c1.923 0 3.125 1.175 3.588 3.005l1.833 7.25-1.938.49-1.834-7.25c-.247-.977-.71-1.457-1.547-1.493L13.048 9h-2.096c-.902 0-1.392.478-1.65 1.495l-1.833 7.25-1.938-.49 1.833-7.25c.451-1.785 1.605-2.946 3.445-3.003L10.952 7h2.096zM12 0a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11 18v4h2v-4h2v6H9v-6h2zm2.048-11c1.923 0 3.125 1.175 3.588 3.005l1.833 7.25-1.938.49-1.834-7.25c-.247-.977-.71-1.457-1.547-1.493L13.048 9h-2.096c-.902 0-1.392.478-1.65 1.495l-1.833 7.25-1.938-.49 1.833-7.25c.451-1.785 1.605-2.946 3.445-3.003L10.952 7h2.096zM12 0a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-person-male.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--person-male {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11 16v6h2v-6h2v8H9v-8h2zm3.5-9a3.5 3.5 0 013.498 3.38l.002.12V16h-2v-5.5a1.5 1.5 0 00-1.412-1.497L14.5 9h-5a1.5 1.5 0 00-1.497 1.412L8 10.5V16H6v-5.5a3.5 3.5 0 013.38-3.498L9.5 7h5zM12 0a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M11 16v6h2v-6h2v8H9v-8h2zm3.5-9a3.5 3.5 0 013.498 3.38l.002.12V16h-2v-5.5a1.5 1.5 0 00-1.412-1.497L14.5 9h-5a1.5 1.5 0 00-1.497 1.412L8 10.5V16H6v-5.5a3.5 3.5 0 013.38-3.498L9.5 7h5zM12 0a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-person-wheelchair.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--person-wheelchair {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M8 9.498v2.26a4.5 4.5 0 105.587 7.017l.095-.093 1.414 1.414A6.5 6.5 0 118 9.498zM11 1a3 3 0 011 5.83L11.999 9H16v2h-4.001l.001.791c0 .528.205 1.032.586 1.413.541.541.93.688 1.88.752l.289.017c1.617.077 2.46.324 3.488 1.352.93.931 1.222 1.71 1.325 3.053l.027.435c.053 1.116.166 1.539.694 2.092l.075.077-1.414 1.414c-.99-.99-1.256-1.807-1.343-3.311l-.01-.177c-.055-1.166-.176-1.576-.769-2.169-.567-.567-.966-.702-2.02-.761l-.148-.008c-1.618-.077-2.46-.325-3.488-1.352a3.989 3.989 0 01-1.17-2.675L10 6.829A3.001 3.001 0 0111 1zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M8 9.498v2.26a4.5 4.5 0 105.587 7.017l.095-.093 1.414 1.414A6.5 6.5 0 118 9.498zM11 1a3 3 0 011 5.83L11.999 9H16v2h-4.001l.001.791c0 .528.205 1.032.586 1.413.541.541.93.688 1.88.752l.289.017c1.617.077 2.46.324 3.488 1.352.93.931 1.222 1.71 1.325 3.053l.027.435c.053 1.116.166 1.539.694 2.092l.075.077-1.414 1.414c-.99-.99-1.256-1.807-1.343-3.311l-.01-.177c-.055-1.166-.176-1.576-.769-2.169-.567-.567-.966-.702-2.02-.761l-.148-.008c-1.618-.077-2.46-.325-3.488-1.352a3.989 3.989 0 01-1.17-2.675L10 6.829A3.001 3.001 0 0111 1zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-phone.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--phone {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M4.885 2.506L3.043 4.348l-.034.035C.572 7.07 2.784 12.452 7.191 16.818c4.445 4.404 9.751 6.6 12.426 4.173l1.877-1.876c.678-.678.655-1.563.058-2.272l-.058-.063-4.144-4.144c-.678-.678-1.564-.656-2.273-.058l-.063.058-1.046 1.046-.037-.008c-.585-.144-1.241-.602-2.123-1.484l-.123-.124c-.8-.819-1.222-1.44-1.359-1.997l-.008-.038 1.046-1.045.058-.063c.598-.71.62-1.595-.058-2.273L7.22 2.506l-.063-.058c-.709-.597-1.594-.62-2.272.058zm1.167 1.66l3.652 3.652-1.428 1.428v.414c0 1.355.687 2.513 2.118 3.945 1.432 1.431 2.591 2.12 3.946 2.12h.414l1.428-1.428 3.651 3.65-1.595 1.596c-1.525 1.382-5.878-.42-9.64-4.146l-.152-.152c-3.57-3.607-5.315-7.847-4.012-9.452l.047-.056 1.571-1.57z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M4.885 2.506L3.043 4.348l-.034.035C.572 7.07 2.784 12.452 7.191 16.818c4.445 4.404 9.751 6.6 12.426 4.173l1.877-1.876c.678-.678.655-1.563.058-2.272l-.058-.063-4.144-4.144c-.678-.678-1.564-.656-2.273-.058l-.063.058-1.046 1.046-.037-.008c-.585-.144-1.241-.602-2.123-1.484l-.123-.124c-.8-.819-1.222-1.44-1.359-1.997l-.008-.038 1.046-1.045.058-.063c.598-.71.62-1.595-.058-2.273L7.22 2.506l-.063-.058c-.709-.597-1.594-.62-2.272.058zm1.167 1.66l3.652 3.652-1.428 1.428v.414c0 1.355.687 2.513 2.118 3.945 1.432 1.431 2.591 2.12 3.946 2.12h.414l1.428-1.428 3.651 3.65-1.595 1.596c-1.525 1.382-5.878-.42-9.64-4.146l-.152-.152c-3.57-3.607-5.315-7.847-4.012-9.452l.047-.056 1.571-1.57z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-photo-plus.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--photo-plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2v2H6l.001 9.44c.502.243.928.59 1.51 1.159l.196.194C8.661 15.747 9.083 16 10 16c.86 0 1.284-.222 2.12-1.036l.173-.171C13.589 13.497 14.417 13 16 13c.81 0 1.422.13 2 .43V11h2v11H4V2h8zm4 13c-.86 0-1.284.222-2.12 1.036l-.173.171C12.411 17.503 11.583 18 10 18c-1.5 0-2.322-.446-3.506-1.595L6 15.92V20h12v-4.078l-.042-.04C17.226 15.193 16.803 15 16 15zm-6-9a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2zm9-7v3h3v2h-3v3h-2V6h-3V4h3V1h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2v2H6l.001 9.44c.502.243.928.59 1.51 1.159l.196.194C8.661 15.747 9.083 16 10 16c.86 0 1.284-.222 2.12-1.036l.173-.171C13.589 13.497 14.417 13 16 13c.81 0 1.422.13 2 .43V11h2v11H4V2h8zm4 13c-.86 0-1.284.222-2.12 1.036l-.173.171C12.411 17.503 11.583 18 10 18c-1.5 0-2.322-.446-3.506-1.595L6 15.92V20h12v-4.078l-.042-.04C17.226 15.193 16.803 15 16 15zm-6-9a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2zm9-7v3h3v2h-3v3h-2V6h-3V4h3V1h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-photo.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--photo {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20 2v20H4V2h16zm-4 13c-.86 0-1.284.222-2.12 1.036l-.173.171C12.411 17.503 11.583 18 10 18c-1.5 0-2.322-.446-3.506-1.595L6 15.92V20h12v-4.078l-.042-.04C17.226 15.193 16.803 15 16 15zm2-11H6l.001 9.44c.502.243.928.59 1.51 1.159l.196.194C8.661 15.747 9.083 16 10 16c.86 0 1.284-.222 2.12-1.036l.173-.171C13.589 13.497 14.417 13 16 13c.81 0 1.422.13 2 .43V4zm-8 2a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M20 2v20H4V2h16zm-4 13c-.86 0-1.284.222-2.12 1.036l-.173.171C12.411 17.503 11.583 18 10 18c-1.5 0-2.322-.446-3.506-1.595L6 15.92V20h12v-4.078l-.042-.04C17.226 15.193 16.803 15 16 15zm2-11H6l.001 9.44c.502.243.928.59 1.51 1.159l.196.194C8.661 15.747 9.083 16 10 16c.86 0 1.284-.222 2.12-1.036l.173-.171C13.589 13.497 14.417 13 16 13c.81 0 1.422.13 2 .43V4zm-8 2a3 3 0 110 6 3 3 0 010-6zm0 2a1 1 0 100 2 1 1 0 000-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-playback-fastforward.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--playback-fastforward {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M5,5 L13,12 L5,19 L5,5 Z M13,5 L21,12 L13,19 L13,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M5,5 L13,12 L5,19 L5,5 Z M13,5 L21,12 L13,19 L13,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-playback-next.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--playback-next {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M19,4 L19,20 L17,20 L17,4 L19,4 Z M5,5 L17,12 L5,19 L5,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M19,4 L19,20 L17,20 L17,4 L19,4 Z M5,5 L17,12 L5,19 L5,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-playback-pause.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--playback-pause {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M17,5 L17,19 L14,19 L14,5 L17,5 Z M10,5 L10,19 L7,19 L7,5 L10,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M17,5 L17,19 L14,19 L14,5 L17,5 Z M10,5 L10,19 L7,19 L7,5 L10,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-playback-play.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--playback-play {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpolygon fill='currentColor' points='7 5 19 12 7 19'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpolygon fill='currentColor' points='7 5 19 12 7 19'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-playback-previous.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--playback-previous {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M5,4 L5,20 L7,20 L7,4 L5,4 Z M19,5 L7,12 L19,19 L19,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Cpath fill='currentColor' d='M5,4 L5,20 L7,20 L7,4 L5,4 Z M19,5 L7,12 L19,19 L19,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-playback-record.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--playback-record {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Ccircle cx='12' cy='12' r='6' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Ccircle cx='12' cy='12' r='6' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-playback-rewind.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--playback-rewind {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24' transform='matrix(-1 0 0 1 24 0)'/%3E %3Cpath fill='currentColor' d='M3,5 L11,12 L3,19 L3,5 Z M11,5 L19,12 L11,19 L11,5 Z' transform='matrix(-1 0 0 1 22 0)'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24' transform='matrix(-1 0 0 1 24 0)'/%3E %3Cpath fill='currentColor' d='M3,5 L11,12 L3,19 L3,5 Z M11,5 L19,12 L11,19 L11,5 Z' transform='matrix(-1 0 0 1 22 0)'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-playback-stop.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--playback-stop {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Crect width='12' height='12' x='6' y='6' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 24 0 0 24 0 24 24'/%3E %3Crect width='12' height='12' x='6' y='6' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-plus-circle-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--plus-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,7 L13,11 L17,11 L17,13 L13,13 L13,17 L11,17 L11,13 L7,13 L7,11 L11,11 L11,7 L13,7 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,7 L13,11 L17,11 L17,13 L13,13 L13,17 L11,17 L11,13 L7,13 L7,11 L11,11 L11,7 L13,7 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-plus-circle.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--plus-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 3v4h4v2h-4v4h-2v-4H7v-2h4V7h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 3v4h4v2h-4v4h-2v-4H7v-2h4V7h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-plus.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M13 6v5h5v2h-5v5h-2v-5H6v-2h5V6z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M13 6v5h5v2h-5v5h-2v-5H6v-2h5V6z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-podcast.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--podcast {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M9,24 L9,22 L10.999039,22 L10.9991931,19.9169061 C8.23375814,19.4525651 6.10997266,17.0964753 6.00413847,14.2249383 L6,14 L8,14 C8,16.209139 9.790861,18 12,18 C14.1421954,18 15.8910789,16.3160315 15.9951047,14.1996403 L16,14 L18,14 C18,16.9730632 15.8376161,19.4410745 12.9998085,19.9170737 L12.999039,22 L15,22 L15,24 L9,24 Z M16.0595763,4.58173892 L16.2426407,4.75735931 L14.8284271,6.17157288 C13.3183999,4.66154561 10.9014356,4.61121137 9.33094591,6.02057015 L9.17157288,6.17157288 L7.75735931,4.75735931 C10.0404244,2.47429422 13.7056321,2.41575409 16.0595763,4.58173892 Z M12,7 C13.1045695,7 14,7.8954305 14,9 L14,14 C14,15.1045695 13.1045695,16 12,16 C10.8954305,16 10,15.1045695 10,14 L10,9 C10,7.8954305 10.8954305,7 12,7 Z M18.154727,2.4333447 L18.363961,2.63603897 L16.9497475,4.05025253 C14.2782063,1.37871135 9.98450684,1.31799451 7.2392312,3.868102 L7.05025253,4.05025253 L5.63603897,2.63603897 C9.08184154,-0.809763605 14.626612,-0.877328361 18.154727,2.4333447 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M9,24 L9,22 L10.999039,22 L10.9991931,19.9169061 C8.23375814,19.4525651 6.10997266,17.0964753 6.00413847,14.2249383 L6,14 L8,14 C8,16.209139 9.790861,18 12,18 C14.1421954,18 15.8910789,16.3160315 15.9951047,14.1996403 L16,14 L18,14 C18,16.9730632 15.8376161,19.4410745 12.9998085,19.9170737 L12.999039,22 L15,22 L15,24 L9,24 Z M16.0595763,4.58173892 L16.2426407,4.75735931 L14.8284271,6.17157288 C13.3183999,4.66154561 10.9014356,4.61121137 9.33094591,6.02057015 L9.17157288,6.17157288 L7.75735931,4.75735931 C10.0404244,2.47429422 13.7056321,2.41575409 16.0595763,4.58173892 Z M12,7 C13.1045695,7 14,7.8954305 14,9 L14,14 C14,15.1045695 13.1045695,16 12,16 C10.8954305,16 10,15.1045695 10,14 L10,9 C10,7.8954305 10.8954305,7 12,7 Z M18.154727,2.4333447 L18.363961,2.63603897 L16.9497475,4.05025253 C14.2782063,1.37871135 9.98450684,1.31799451 7.2392312,3.868102 L7.05025253,4.05025253 L5.63603897,2.63603897 C9.08184154,-0.809763605 14.626612,-0.877328361 18.154727,2.4333447 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-printer.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--printer {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 24 0 24 12 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M18,3 L18,8 L18.5,8 C20.5,8 22,9.50001713 22,11.5000171 L22,19.0000171 L18,19 L18,22 L6,22 L6,19 L2,19.0000171 L2,11.5000171 C2,9.50001713 3.5,8 5.5,8 L6,8 L6,3 L18,3 Z M16,16 L8,16 L8,20 L16,20 L16,16 Z M18.5,10.0000171 L5.5,10.0000171 C4.5,10.0000171 4,10.5000171 4,11.5000171 L4,17 L6,17 L6,14 L18,14 L18,17 L20,17 L20,11.5000171 C20,10.5000171 19.5,10.0000171 18.5,10.0000171 Z M6,11 C6.55228475,11 7,11.4477153 7,12 C7,12.5522847 6.55228475,13 6,13 C5.44771525,13 5,12.5522847 5,12 C5,11.4477153 5.44771525,11 6,11 Z M16,5 L8,5 L8,8 L16,8 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 24 0 24 12 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M18,3 L18,8 L18.5,8 C20.5,8 22,9.50001713 22,11.5000171 L22,19.0000171 L18,19 L18,22 L6,22 L6,19 L2,19.0000171 L2,11.5000171 C2,9.50001713 3.5,8 5.5,8 L6,8 L6,3 L18,3 Z M16,16 L8,16 L8,20 L16,20 L16,16 Z M18.5,10.0000171 L5.5,10.0000171 C4.5,10.0000171 4,10.5000171 4,11.5000171 L4,17 L6,17 L6,14 L18,14 L18,17 L20,17 L20,11.5000171 C20,10.5000171 19.5,10.0000171 18.5,10.0000171 Z M6,11 C6.55228475,11 7,11.4477153 7,12 C7,12.5522847 6.55228475,13 6,13 C5.44771525,13 5,12.5522847 5,12 C5,11.4477153 5.44771525,11 6,11 Z M16,5 L8,5 L8,8 L16,8 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-question-circle-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--question-circle-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M12.0436666,5.75 C14.0342698,5.75 15.7172813,7.29463804 15.7172813,9.4236147 C15.7172813,10.7805773 15.2461461,11.4889681 14.160958,12.3060246 L13.9186951,12.4844002 C13.1752868,13.0294825 12.9556121,13.3359034 12.9385965,14.1419671 L12.9375,14.25 L10.9375,14.25 C10.9375,12.6745767 11.4591297,11.8377931 12.6143192,10.9622473 L12.8617612,10.7796271 C13.5684825,10.2628161 13.7172813,10.053863 13.7172813,9.4236147 C13.7172813,8.43933936 12.9661887,7.75 12.0436666,7.75 C11.1906565,7.75 10.4785101,8.34077372 10.3815862,9.20834909 L10.3733727,9.3058695 L8.37662729,9.19181821 C8.49191238,7.1734721 10.1344277,5.75 12.0436666,5.75 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M12,3 C7.02943725,3 3,7.02943725 3,12 C3,16.9705627 7.02943725,21 12,21 C16.9705627,21 21,16.9705627 21,12 C21,7.02943725 16.9705627,3 12,3 Z M13,16 L13,18 L11,18 L11,16 L13,16 Z M12.0436666,5.75 C14.0342698,5.75 15.7172813,7.29463804 15.7172813,9.4236147 C15.7172813,10.7805773 15.2461461,11.4889681 14.160958,12.3060246 L13.9186951,12.4844002 C13.1752868,13.0294825 12.9556121,13.3359034 12.9385965,14.1419671 L12.9375,14.25 L10.9375,14.25 C10.9375,12.6745767 11.4591297,11.8377931 12.6143192,10.9622473 L12.8617612,10.7796271 C13.5684825,10.2628161 13.7172813,10.053863 13.7172813,9.4236147 C13.7172813,8.43933936 12.9661887,7.75 12.0436666,7.75 C11.1906565,7.75 10.4785101,8.34077372 10.3815862,9.20834909 L10.3733727,9.3058695 L8.37662729,9.19181821 C8.49191238,7.1734721 10.1344277,5.75 12.0436666,5.75 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-question-circle.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--question-circle {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 12v2h-2v-2h2zm-.956-10.25c1.99 0 3.673 1.545 3.673 3.674 0 1.357-.47 2.065-1.556 2.882l-.242.178c-.744.545-.963.852-.98 1.658l-.002.108h-2c0-1.575.522-2.412 1.677-3.288l.248-.182c.706-.517.855-.726.855-1.356 0-.985-.75-1.674-1.673-1.674-.853 0-1.565.59-1.662 1.458l-.009.098-1.996-.114c.115-2.019 1.757-3.442 3.667-3.442z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 100 16 8 8 0 000-16zm1 12v2h-2v-2h2zm-.956-10.25c1.99 0 3.673 1.545 3.673 3.674 0 1.357-.47 2.065-1.556 2.882l-.242.178c-.744.545-.963.852-.98 1.658l-.002.108h-2c0-1.575.522-2.412 1.677-3.288l.248-.182c.706-.517.855-.726.855-1.356 0-.985-.75-1.674-1.673-1.674-.853 0-1.565.59-1.662 1.458l-.009.098-1.996-.114c.115-2.019 1.757-3.442 3.667-3.442z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-refresh.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--refresh {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M20,2 L20,9 L13,9 L13,7 L16.8992186,7.00023118 C15.636661,5.762908 13.9074239,5 12,5 C8.13400675,5 5,8.13400675 5,12 C5,15.8659932 8.13400675,19 12,19 C15.8659932,19 19,15.8659932 19,12 L21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 C14.3056345,3 16.4087725,3.86699019 18.0011835,5.29273993 L18,2 L20,2 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M20,2 L20,9 L13,9 L13,7 L16.8992186,7.00023118 C15.636661,5.762908 13.9074239,5 12,5 C8.13400675,5 5,8.13400675 5,12 C5,15.8659932 8.13400675,19 12,19 C15.8659932,19 19,15.8659932 19,12 L21,12 C21,16.9705627 16.9705627,21 12,21 C7.02943725,21 3,16.9705627 3,12 C3,7.02943725 7.02943725,3 12,3 C14.3056345,3 16.4087725,3.86699019 18.0011835,5.29273993 L18,2 L20,2 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-restaurant.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--restaurant {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M10.9910906,4.085 C11.3530672,4.085 11.6522186,4.3539867 11.6995635,4.70297874 L11.7060906,4.8 L11.7060906,7.8 C11.7060906,9.04863681 10.8631864,10.1004028 9.71534818,10.4173278 L9.71463289,13.3004998 C9.86174666,13.4507761 9.96184242,13.6472631 9.99112118,13.8661618 L10,14 L10,19 C10,19.5522847 9.55228475,20 9,20 C8.48716416,20 8.06449284,19.6139598 8.00672773,19.1166211 L8,19 L8,14 L8.00672773,13.8833789 C8.03295504,13.6575703 8.13440655,13.4547056 8.28536711,13.3004998 L8.28537109,10.4223752 C7.179279,10.125449 6.35207044,9.147354 6.28104552,7.96539023 L6.2760906,7.8 L6.2760906,4.8 C6.2760906,4.4051164 6.596207,4.085 6.9910906,4.085 C7.35306723,4.085 7.65221865,4.3539867 7.69956349,4.70297874 L7.7060906,4.8 L7.7060906,7.8 L8.2840906,7.8 L8.285,4.8 C8.285,4.4051164 8.6051164,4.085 9,4.085 C9.36197663,4.085 9.66112805,4.3539867 9.70847289,4.70297874 L9.715,4.8 L9.7140906,7.8 L10.2760906,7.8 L10.2760906,4.8 C10.2760906,4.4051164 10.596207,4.085 10.9910906,4.085 Z M17,4 C17.5522847,4 18,4.44771525 18,5 L18,19 C18,19.5522847 17.5522847,20 17,20 C16.4871642,20 16.0644928,19.6139598 16.0067277,19.1166211 L16,19 L15.9990069,12.5 L14.9652205,12.242251 C14.4675282,12.1185447 14.1509559,11.6416485 14.2153915,11.1451328 L14.2371157,11.0303558 C14.2371631,11.0301659 14.2372106,11.0299761 14.2378274,11.0299288 L15.7543798,4.97128214 C15.8972744,4.40041638 16.4102735,4 16.9987517,4 L17,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M10.9910906,4.085 C11.3530672,4.085 11.6522186,4.3539867 11.6995635,4.70297874 L11.7060906,4.8 L11.7060906,7.8 C11.7060906,9.04863681 10.8631864,10.1004028 9.71534818,10.4173278 L9.71463289,13.3004998 C9.86174666,13.4507761 9.96184242,13.6472631 9.99112118,13.8661618 L10,14 L10,19 C10,19.5522847 9.55228475,20 9,20 C8.48716416,20 8.06449284,19.6139598 8.00672773,19.1166211 L8,19 L8,14 L8.00672773,13.8833789 C8.03295504,13.6575703 8.13440655,13.4547056 8.28536711,13.3004998 L8.28537109,10.4223752 C7.179279,10.125449 6.35207044,9.147354 6.28104552,7.96539023 L6.2760906,7.8 L6.2760906,4.8 C6.2760906,4.4051164 6.596207,4.085 6.9910906,4.085 C7.35306723,4.085 7.65221865,4.3539867 7.69956349,4.70297874 L7.7060906,4.8 L7.7060906,7.8 L8.2840906,7.8 L8.285,4.8 C8.285,4.4051164 8.6051164,4.085 9,4.085 C9.36197663,4.085 9.66112805,4.3539867 9.70847289,4.70297874 L9.715,4.8 L9.7140906,7.8 L10.2760906,7.8 L10.2760906,4.8 C10.2760906,4.4051164 10.596207,4.085 10.9910906,4.085 Z M17,4 C17.5522847,4 18,4.44771525 18,5 L18,19 C18,19.5522847 17.5522847,20 17,20 C16.4871642,20 16.0644928,19.6139598 16.0067277,19.1166211 L16,19 L15.9990069,12.5 L14.9652205,12.242251 C14.4675282,12.1185447 14.1509559,11.6416485 14.2153915,11.1451328 L14.2371157,11.0303558 C14.2371631,11.0301659 14.2372106,11.0299761 14.2378274,11.0299288 L15.7543798,4.97128214 C15.8972744,4.40041638 16.4102735,4 16.9987517,4 L17,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-save-diskette-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--save-diskette-fill{\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,2 L22,5 L22,21 C22,21.5522847 21.5522847,22 21,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,3 C2,2.44771525 2.44771525,2 3,2 L19,2 Z M19,12 L5,12 L5,20 L19,20 L19,12 Z M17,3 L7,3 L7,10 L17,10 L17,3 Z M15,5 L15,8 L13,8 L13,5 L15,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M19,2 L22,5 L22,21 C22,21.5522847 21.5522847,22 21,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,3 C2,2.44771525 2.44771525,2 3,2 L19,2 Z M19,12 L5,12 L5,20 L19,20 L19,12 Z M17,3 L7,3 L7,10 L17,10 L17,3 Z M15,5 L15,8 L13,8 L13,5 L15,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-save-diskette.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--save-diskette {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M22,5 L22,21 C22,21.5522847 21.5522847,22 21,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,3 C2,2.44771525 2.44771525,2 3,2 L19,2 L19,2 L22,5 Z M18.0082581,4 L20,6 L20,20 L4,20 L4,4 L18.0082581,4 Z M17,12 L7,12 L7,14 L17,14 L17,12 Z M16,9 L8,9 L8,11 L16,11 L16,9 Z M6,4 L8,4 L8,11 L6,11 L6,4 Z M5,12 L7,12 L7,20 L5,20 L5,12 Z M16,4 L18,4 L18,11 L16,11 L16,4 Z M13,5 L15,5 L15,8 L13,8 L13,5 Z M17,12 L19,12 L19,20 L17,20 L17,12 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M22,5 L22,21 C22,21.5522847 21.5522847,22 21,22 L3,22 C2.44771525,22 2,21.5522847 2,21 L2,3 C2,2.44771525 2.44771525,2 3,2 L19,2 L19,2 L22,5 Z M18.0082581,4 L20,6 L20,20 L4,20 L4,4 L18.0082581,4 Z M17,12 L7,12 L7,14 L17,14 L17,12 Z M16,9 L8,9 L8,11 L16,11 L16,9 Z M6,4 L8,4 L8,11 L6,11 L6,4 Z M5,12 L7,12 L7,20 L5,20 L5,12 Z M16,4 L18,4 L18,11 L16,11 L16,4 Z M13,5 L15,5 L15,8 L13,8 L13,5 Z M17,12 L19,12 L19,20 L17,20 L17,12 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-search.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--search {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 1a8 8 0 11-4.798 14.402l-6.401 6.4-1.591-1.59 6.398-6.4A8 8 0 0115 1zm0 2a6 6 0 100 12 6 6 0 000-12z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 1a8 8 0 11-4.798 14.402l-6.401 6.4-1.591-1.59 6.398-6.4A8 8 0 0115 1zm0 2a6 6 0 100 12 6 6 0 000-12z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-share.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--share {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18.5 2.25a3.5 3.5 0 11-2.615 5.827L8.97 11.534a3.532 3.532 0 010 .932l6.916 3.457a3.5 3.5 0 11-.862 1.923l-6.95-3.474a3.5 3.5 0 110-4.743l6.95-3.475A3.5 3.5 0 0118.5 2.25zm0 14.5a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm-13-6.25a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13-6.25a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18.5 2.25a3.5 3.5 0 11-2.615 5.827L8.97 11.534a3.532 3.532 0 010 .932l6.916 3.457a3.5 3.5 0 11-.862 1.923l-6.95-3.474a3.5 3.5 0 110-4.743l6.95-3.475A3.5 3.5 0 0118.5 2.25zm0 14.5a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm-13-6.25a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm13-6.25a1.5 1.5 0 100 3 1.5 1.5 0 000-3z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-shopping-cart.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--shopping-cart {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M16.6,13 C17.3,13 18,12.6 18.3,12 L21.9,5.5 C22.2,4.8 21.8,4 21,4 L6.2,4 L5.3,2 L2,2 L2,4 L4,4 L7.6,11.6 L6.2,14 C5.5,15.3 6.4,17 8,17 L20,17 L20,15 L8,15 L9.1,13 L16.6,13 Z M7.2,6 L19.3,6 L16.5,11 L9.5,11 L7.2,6 Z M8,18 C6.9,18 6,18.9 6,20 C6,21.1 6.9,22 8,22 C9.1,22 10,21.1 10,20 C10,18.9 9.1,18 8,18 Z M18,18 C16.9,18 16,18.9 16,20 C16,21.1 16.9,22 18,22 C19.1,22 20,21.1 20,20 C20,18.9 19.1,18 18,18 Z' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpath d='M16.6,13 C17.3,13 18,12.6 18.3,12 L21.9,5.5 C22.2,4.8 21.8,4 21,4 L6.2,4 L5.3,2 L2,2 L2,4 L4,4 L7.6,11.6 L6.2,14 C5.5,15.3 6.4,17 8,17 L20,17 L20,15 L8,15 L9.1,13 L16.6,13 Z M7.2,6 L19.3,6 L16.5,11 L9.5,11 L7.2,6 Z M8,18 C6.9,18 6,18.9 6,20 C6,21.1 6.9,22 8,22 C9.1,22 10,21.1 10,20 C10,18.9 9.1,18 8,18 Z M18,18 C16.9,18 16,18.9 16,20 C16,21.1 16.9,22 18,22 C19.1,22 20,21.1 20,20 C20,18.9 19.1,18 18,18 Z' fill='currentColor'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-signin.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--signin {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M21 2v20H8v-5h2v3h9V4h-9v3H8V2h13zm-8.5 5l5 5-5 5-1.5-1.5 2.5-2.501L2 13v-2l11.499-.001L11 8.5 12.5 7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M21 2v20H8v-5h2v3h9V4h-9v3H8V2h13zm-8.5 5l5 5-5 5-1.5-1.5 2.5-2.501L2 13v-2l11.499-.001L11 8.5 12.5 7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-signout.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--signout {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16 2v5h-2V4H5v16h9v-3h2v5H3V2h13zm2 5l5 5-5 5-1.5-1.5 2.5-2.501L8 13v-2l10.999-.001L16.5 8.5 18 7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16 2v5h-2V4H5v16h9v-3h2v5H3V2h13zm2 5l5 5-5 5-1.5-1.5 2.5-2.501L8 13v-2l10.999-.001L16.5 8.5 18 7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-sitemap.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--sitemap {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 9.438 0 24 0 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M15,3 L15,9 L13,9 L13,11 L20,11 L20,15 L22,15 L22,21 L16,21 L16,15 L18,15 L18,13 L13,13 L13,15 L15,15 L15,21 L9,21 L9,15 L11,15 L11,13 L6,13 L6,15 L8,15 L8,21 L2,21 L2,15 L4,15 L4,11 L11,11 L11,9 L9,9 L9,3 L15,3 Z M6,17 L4,17 L4,19 L6,19 L6,17 Z M13,17 L11,17 L11,19 L13,19 L13,17 Z M20,17 L18,17 L18,19 L20,19 L20,17 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 9.438 0 24 0 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M15,3 L15,9 L13,9 L13,11 L20,11 L20,15 L22,15 L22,21 L16,21 L16,15 L18,15 L18,13 L13,13 L13,15 L15,15 L15,21 L9,21 L9,15 L11,15 L11,13 L6,13 L6,15 L8,15 L8,21 L2,21 L2,15 L4,15 L4,11 L11,11 L11,9 L9,9 L9,3 L15,3 Z M6,17 L4,17 L4,19 L6,19 L6,17 Z M13,17 L11,17 L11,19 L13,19 L13,17 Z M20,17 L18,17 L18,19 L20,19 L20,17 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-sliders.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--sliders {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 24 0 24 12 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M16,15 C17.3062521,15 18.4175144,15.8348501 18.8293257,17.0000889 L22,17 L22,19 L18.8289758,19.0009007 C18.4168852,20.1656226 17.3058822,21 16,21 C14.6941178,21 13.5831148,20.1656226 13.1710242,19.0009007 L2,19 L2,17 L13.1706743,17.0000889 C13.5824856,15.8348501 14.6937479,15 16,15 Z M16,17 C15.4477153,17 15,17.4477153 15,18 C15,18.5522847 15.4477153,19 16,19 C16.5522847,19 17,18.5522847 17,18 C17,17.4477153 16.5522847,17 16,17 Z M7,9 C8.30625206,9 9.41751442,9.8348501 9.82932572,11.0000889 L22,11 L22,13 L9.82897577,13.0009007 L9.82510412,13.0117763 C9.42883126,14.1181296 8.40112287,14.9239379 7.17627279,14.9949073 L7,15 C5.69411778,15 4.58311485,14.1656226 4.17102423,13.0009007 L2,13 L2,11 L4.17067428,11.0000889 L4.17489588,10.9882237 C4.59003888,9.82918692 5.69818595,9 7,9 Z M7,11 C6.44771525,11 6,11.4477153 6,12 C6,12.5522847 6.44771525,13 7,13 C7.55228475,13 8,12.5522847 8,12 C8,11.4477153 7.55228475,11 7,11 Z M12,3 C13.3062521,3 14.4175144,3.8348501 14.8293257,5.00008893 L22,5 L22,7 L14.8289758,7.00090072 C14.4168852,8.16562257 13.3058822,9 12,9 C10.6941178,9 9.58311485,8.16562257 9.17102423,7.00090072 L2,7 L2,5 L9.17067428,5.00008893 C9.58248558,3.8348501 10.6937479,3 12,3 Z M12,5 C11.4477153,5 11,5.44771525 11,6 C11,6.55228475 11.4477153,7 12,7 C12.5522847,7 13,6.55228475 13,6 C13,5.44771525 12.5522847,5 12,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Cpolygon points='0 0 24 0 24 12 24 24 0 24'/%3E %3Cpath fill='currentColor' d='M16,15 C17.3062521,15 18.4175144,15.8348501 18.8293257,17.0000889 L22,17 L22,19 L18.8289758,19.0009007 C18.4168852,20.1656226 17.3058822,21 16,21 C14.6941178,21 13.5831148,20.1656226 13.1710242,19.0009007 L2,19 L2,17 L13.1706743,17.0000889 C13.5824856,15.8348501 14.6937479,15 16,15 Z M16,17 C15.4477153,17 15,17.4477153 15,18 C15,18.5522847 15.4477153,19 16,19 C16.5522847,19 17,18.5522847 17,18 C17,17.4477153 16.5522847,17 16,17 Z M7,9 C8.30625206,9 9.41751442,9.8348501 9.82932572,11.0000889 L22,11 L22,13 L9.82897577,13.0009007 L9.82510412,13.0117763 C9.42883126,14.1181296 8.40112287,14.9239379 7.17627279,14.9949073 L7,15 C5.69411778,15 4.58311485,14.1656226 4.17102423,13.0009007 L2,13 L2,11 L4.17067428,11.0000889 L4.17489588,10.9882237 C4.59003888,9.82918692 5.69818595,9 7,9 Z M7,11 C6.44771525,11 6,11.4477153 6,12 C6,12.5522847 6.44771525,13 7,13 C7.55228475,13 8,12.5522847 8,12 C8,11.4477153 7.55228475,11 7,11 Z M12,3 C13.3062521,3 14.4175144,3.8348501 14.8293257,5.00008893 L22,5 L22,7 L14.8289758,7.00090072 C14.4168852,8.16562257 13.3058822,9 12,9 C10.6941178,9 9.58311485,8.16562257 9.17102423,7.00090072 L2,7 L2,5 L9.17067428,5.00008893 C9.58248558,3.8348501 10.6937479,3 12,3 Z M12,5 C11.4477153,5 11,5.44771525 11,6 C11,6.55228475 11.4477153,7 12,7 C12.5522847,7 13,6.55228475 13,6 C13,5.44771525 12.5522847,5 12,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-sort-alphabetical-ascending.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--sort-alphabetical-ascending {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,4 L8,16.5 L10,14.5 L11.5,16 L7,20.5 L2.5,16 L4,14.5 L6,16.5 L6,4 L8,4 Z M16.995,12.96 C18.835,12.96 20.275,14.28 20.275,16.52 C20.275,18.76 18.835,20.12 16.995,20.12 C15.165,20.12 13.725,18.76 13.725,16.52 C13.725,14.28 15.165,12.96 16.995,12.96 Z M16.995,14.59 C16.015,14.59 15.625,15.46 15.625,16.52 C15.625,17.58 16.015,18.49 16.995,18.49 C17.975,18.49 18.375,17.58 18.375,16.52 C18.375,15.46 17.975,14.59 16.995,14.59 Z M15.935,11 C16.435,11 16.805,11.36 16.805,11.86 C16.805,12.36 16.435,12.72 15.935,12.72 C15.435,12.72 15.065,12.36 15.065,11.86 C15.065,11.36 15.435,11 15.935,11 Z M18.065,11 C18.565,11 18.935,11.36 18.935,11.86 C18.935,12.36 18.565,12.72 18.065,12.72 C17.565,12.72 17.195,12.36 17.195,11.86 C17.195,11.36 17.565,11 18.065,11 Z M18.135,3.08 L20.465,10 L18.545,10 L18.125,8.68 L15.785,8.68 L15.375,10 L13.535,10 L15.865,3.08 L18.135,3.08 Z M16.985,4.86 L16.945,4.86 L16.86508,5.21208 L16.86508,5.21208 L16.80676,5.43216 L16.80676,5.43216 L16.735,5.67 L16.265,7.16 L17.655,7.16 L17.14781,5.55012 L17.14781,5.55012 L17.08447,5.31864 L17.08447,5.31864 L17.01796,5.02992 L17.01796,5.02992 L16.985,4.86 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,4 L8,16.5 L10,14.5 L11.5,16 L7,20.5 L2.5,16 L4,14.5 L6,16.5 L6,4 L8,4 Z M16.995,12.96 C18.835,12.96 20.275,14.28 20.275,16.52 C20.275,18.76 18.835,20.12 16.995,20.12 C15.165,20.12 13.725,18.76 13.725,16.52 C13.725,14.28 15.165,12.96 16.995,12.96 Z M16.995,14.59 C16.015,14.59 15.625,15.46 15.625,16.52 C15.625,17.58 16.015,18.49 16.995,18.49 C17.975,18.49 18.375,17.58 18.375,16.52 C18.375,15.46 17.975,14.59 16.995,14.59 Z M15.935,11 C16.435,11 16.805,11.36 16.805,11.86 C16.805,12.36 16.435,12.72 15.935,12.72 C15.435,12.72 15.065,12.36 15.065,11.86 C15.065,11.36 15.435,11 15.935,11 Z M18.065,11 C18.565,11 18.935,11.36 18.935,11.86 C18.935,12.36 18.565,12.72 18.065,12.72 C17.565,12.72 17.195,12.36 17.195,11.86 C17.195,11.36 17.565,11 18.065,11 Z M18.135,3.08 L20.465,10 L18.545,10 L18.125,8.68 L15.785,8.68 L15.375,10 L13.535,10 L15.865,3.08 L18.135,3.08 Z M16.985,4.86 L16.945,4.86 L16.86508,5.21208 L16.86508,5.21208 L16.80676,5.43216 L16.80676,5.43216 L16.735,5.67 L16.265,7.16 L17.655,7.16 L17.14781,5.55012 L17.14781,5.55012 L17.08447,5.31864 L17.08447,5.31864 L17.01796,5.02992 L17.01796,5.02992 L16.985,4.86 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-sort-alphabetical-descending.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--sort-alphabetical-descending {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16.995,12.96 C18.835,12.96 20.275,14.28 20.275,16.52 C20.275,18.76 18.835,20.12 16.995,20.12 C15.165,20.12 13.725,18.76 13.725,16.52 C13.725,14.28 15.165,12.96 16.995,12.96 Z M7,3.5 L11.5,8 L10,9.5 L8,7.5 L8,20 L6,20 L6,7.5 L4,9.5 L2.5,8 L7,3.5 Z M16.995,14.59 C16.015,14.59 15.625,15.46 15.625,16.52 C15.625,17.58 16.015,18.49 16.995,18.49 C17.975,18.49 18.375,17.58 18.375,16.52 C18.375,15.46 17.975,14.59 16.995,14.59 Z M15.935,11 C16.435,11 16.805,11.36 16.805,11.86 C16.805,12.36 16.435,12.72 15.935,12.72 C15.435,12.72 15.065,12.36 15.065,11.86 C15.065,11.36 15.435,11 15.935,11 Z M18.065,11 C18.565,11 18.935,11.36 18.935,11.86 C18.935,12.36 18.565,12.72 18.065,12.72 C17.565,12.72 17.195,12.36 17.195,11.86 C17.195,11.36 17.565,11 18.065,11 Z M18.135,3.08 L20.465,10 L18.545,10 L18.125,8.68 L15.785,8.68 L15.375,10 L13.535,10 L15.865,3.08 L18.135,3.08 Z M16.985,4.86 L16.945,4.86 L16.86508,5.21208 L16.86508,5.21208 L16.80676,5.43216 L16.80676,5.43216 L16.735,5.67 L16.265,7.16 L17.655,7.16 L17.14781,5.55012 L17.14781,5.55012 L17.08447,5.31864 L17.08447,5.31864 L17.01796,5.02992 L17.01796,5.02992 L16.985,4.86 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16.995,12.96 C18.835,12.96 20.275,14.28 20.275,16.52 C20.275,18.76 18.835,20.12 16.995,20.12 C15.165,20.12 13.725,18.76 13.725,16.52 C13.725,14.28 15.165,12.96 16.995,12.96 Z M7,3.5 L11.5,8 L10,9.5 L8,7.5 L8,20 L6,20 L6,7.5 L4,9.5 L2.5,8 L7,3.5 Z M16.995,14.59 C16.015,14.59 15.625,15.46 15.625,16.52 C15.625,17.58 16.015,18.49 16.995,18.49 C17.975,18.49 18.375,17.58 18.375,16.52 C18.375,15.46 17.975,14.59 16.995,14.59 Z M15.935,11 C16.435,11 16.805,11.36 16.805,11.86 C16.805,12.36 16.435,12.72 15.935,12.72 C15.435,12.72 15.065,12.36 15.065,11.86 C15.065,11.36 15.435,11 15.935,11 Z M18.065,11 C18.565,11 18.935,11.36 18.935,11.86 C18.935,12.36 18.565,12.72 18.065,12.72 C17.565,12.72 17.195,12.36 17.195,11.86 C17.195,11.36 17.565,11 18.065,11 Z M18.135,3.08 L20.465,10 L18.545,10 L18.125,8.68 L15.785,8.68 L15.375,10 L13.535,10 L15.865,3.08 L18.135,3.08 Z M16.985,4.86 L16.945,4.86 L16.86508,5.21208 L16.86508,5.21208 L16.80676,5.43216 L16.80676,5.43216 L16.735,5.67 L16.265,7.16 L17.655,7.16 L17.14781,5.55012 L17.14781,5.55012 L17.08447,5.31864 L17.08447,5.31864 L17.01796,5.02992 L17.01796,5.02992 L16.985,4.86 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-sort-ascending.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--sort-ascending {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,4 L6,16.5 L8,14.5 L9.5,16 L5,20.5 L0.5,16 L2,14.5 L4,16.5 L4,4 L6,4 Z M23,17 L23,19 L11,19 L11,17 L23,17 Z M21,13 L21,15 L11,15 L11,13 L21,13 Z M19,9 L19,11 L11,11 L11,9 L19,9 Z M16,5 L16,7 L11,7 L11,5 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M6,4 L6,16.5 L8,14.5 L9.5,16 L5,20.5 L0.5,16 L2,14.5 L4,16.5 L4,4 L6,4 Z M23,17 L23,19 L11,19 L11,17 L23,17 Z M21,13 L21,15 L11,15 L11,13 L21,13 Z M19,9 L19,11 L11,11 L11,9 L19,9 Z M16,5 L16,7 L11,7 L11,5 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-sort-descending.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--sort-descending {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M5,3.5 L9.5,8 L8,9.5 L6,7.5 L6,20 L4,20 L4,7.5 L2,9.5 L0.5,8 L5,3.5 Z M23,17 L23,19 L11,19 L11,17 L23,17 Z M21,13 L21,15 L11,15 L11,13 L21,13 Z M19,9 L19,11 L11,11 L11,9 L19,9 Z M16,5 L16,7 L11,7 L11,5 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M5,3.5 L9.5,8 L8,9.5 L6,7.5 L6,20 L4,20 L4,7.5 L2,9.5 L0.5,8 L5,3.5 Z M23,17 L23,19 L11,19 L11,17 L23,17 Z M21,13 L21,15 L11,15 L11,13 L21,13 Z M19,9 L19,11 L11,11 L11,9 L19,9 Z M16,5 L16,7 L11,7 L11,5 L16,5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-sort.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--sort {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,14.5 L16.5,16 L12,20.5 L7.5,16 L9,14.5 L12,17.5 L15,14.5 Z M12,3.5 L16.5,8 L15,9.5 L12,6.5 L9,9.5 L7.5,8 L12,3.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,14.5 L16.5,16 L12,20.5 L7.5,16 L9,14.5 L12,17.5 L15,14.5 Z M12,3.5 L16.5,8 L15,9.5 L12,6.5 L9,9.5 L7.5,8 L12,3.5 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-speechbubble-text.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--speechbubble-text {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 4a4 4 0 013.995 3.8L23 8v8a4 4 0 01-3.8 3.995L19 20h-1c-.988 0-1.846.338-2.617 1.039l-.176.168-.707.707-.707-.707c-.757-.757-1.6-1.149-2.567-1.201L11 20H5a4 4 0 01-3.995-3.8L1 16V8a4 4 0 013.8-3.995L5 4h14zm0 2H5a2 2 0 00-1.995 1.85L3 8v8a2 2 0 001.85 1.995L5 18h6a5.68 5.68 0 013.5 1.175 5.67 5.67 0 013.036-1.158l.28-.014L18 18h1a2 2 0 001.995-1.85L21 16V8a2 2 0 00-1.85-1.995L19 6zm-1 7v2H6v-2h12zm0-4v2H6V9h12z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 4a4 4 0 013.995 3.8L23 8v8a4 4 0 01-3.8 3.995L19 20h-1c-.988 0-1.846.338-2.617 1.039l-.176.168-.707.707-.707-.707c-.757-.757-1.6-1.149-2.567-1.201L11 20H5a4 4 0 01-3.995-3.8L1 16V8a4 4 0 013.8-3.995L5 4h14zm0 2H5a2 2 0 00-1.995 1.85L3 8v8a2 2 0 001.85 1.995L5 18h6a5.68 5.68 0 013.5 1.175 5.67 5.67 0 013.036-1.158l.28-.014L18 18h1a2 2 0 001.995-1.85L21 16V8a2 2 0 00-1.85-1.995L19 6zm-1 7v2H6v-2h12zm0-4v2H6V9h12z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-speechbubble.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--speechbubble {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 4H5a4 4 0 00-4 4v8a4 4 0 004 4h6c1.064 0 1.977.392 2.793 1.207l.707.707.707-.707C16.023 20.392 16.937 20 18 20h1a4 4 0 004-4V8a4 4 0 00-4-4zM5 6h14a2 2 0 012 2v8a2 2 0 01-2 2h-1l-.184.003a5.675 5.675 0 00-3.316 1.172A5.68 5.68 0 0011 18H5a2 2 0 01-2-2V8a2 2 0 012-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19 4H5a4 4 0 00-4 4v8a4 4 0 004 4h6c1.064 0 1.977.392 2.793 1.207l.707.707.707-.707C16.023 20.392 16.937 20 18 20h1a4 4 0 004-4V8a4 4 0 00-4-4zM5 6h14a2 2 0 012 2v8a2 2 0 01-2 2h-1l-.184.003a5.675 5.675 0 00-3.316 1.172A5.68 5.68 0 0011 18H5a2 2 0 01-2-2V8a2 2 0 012-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-star-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--star-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M5.202 22.231l.217-1.728.737-5.847-3.973-4.278L1 9.115l1.69-.331 5.712-1.079 2.777-5.173L12 1l.821 1.532 2.777 5.173 5.712 1.079 1.69.33-1.183 1.264-3.985 4.29.737 5.835.229 1.728-1.558-.748L12 18.971l-5.24 2.512-1.558.748z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M5.202 22.231l.217-1.728.737-5.847-3.973-4.278L1 9.115l1.69-.331 5.712-1.079 2.777-5.173L12 1l.821 1.532 2.777 5.173 5.712 1.079 1.69.33-1.183 1.264-3.985 4.29.737 5.835.229 1.728-1.558-.748L12 18.971l-5.24 2.512-1.558.748z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-star.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--star {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M5.202 22.231l.217-1.728.737-5.847-3.973-4.278L1 9.115l1.69-.331 5.712-1.079 2.777-5.173L12 1l.821 1.532 2.777 5.173 5.712 1.079 1.69.33-1.183 1.264-3.985 4.29.737 5.835.229 1.728-1.558-.748L12 18.971l-5.24 2.512-1.558.748zm2.294-3.211l4.106-1.974.398-.184.398.184 4.094 1.974-.58-4.56-.06-.454.314-.319 3.103-3.346-4.444-.846-.446-.086-.206-.404L12 4.959 9.827 9.005l-.218.404-.434.086-4.444.846 3.103 3.346.302.319-.048.454-.592 4.56z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M5.202 22.231l.217-1.728.737-5.847-3.973-4.278L1 9.115l1.69-.331 5.712-1.079 2.777-5.173L12 1l.821 1.532 2.777 5.173 5.712 1.079 1.69.33-1.183 1.264-3.985 4.29.737 5.835.229 1.728-1.558-.748L12 18.971l-5.24 2.512-1.558.748zm2.294-3.211l4.106-1.974.398-.184.398.184 4.094 1.974-.58-4.56-.06-.454.314-.319 3.103-3.346-4.444-.846-.446-.086-.206-.404L12 4.959 9.827 9.005l-.218.404-.434.086-4.444.846 3.103 3.346.302.319-.048.454-.592 4.56z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-text-bold.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--text-bold {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M3,20 L3,17 L5,17 L5,7 L3,7 L3,4 L14,4 L14,4.027 L14.2481427,4.00692918 C14.3315104,4.00232997 14.4154831,4 14.5,4 C16.9852814,4 19,6.01471863 19,8.5 C19,9.47920963 18.6872375,10.3853697 18.1561603,11.1240324 C19.2814801,12.0388846 20,13.4355326 20,15 C20,17.6887547 17.8776933,19.8818181 15.2168896,19.9953805 L15,20 L3,20 Z M15,13 L8,13 L8,17 L15,17 L15.1492623,16.9945143 C16.1841222,16.9181651 17,16.0543618 17,15 C17,13.9456382 16.1841222,13.0818349 15.1492623,13.0054857 L15,13 Z M14,7 L8,7 L8,10 L14,10 C15.1045695,10 16,9.32842712 16,8.5 C16,7.67157288 15.1045695,7 14,7 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M3,20 L3,17 L5,17 L5,7 L3,7 L3,4 L14,4 L14,4.027 L14.2481427,4.00692918 C14.3315104,4.00232997 14.4154831,4 14.5,4 C16.9852814,4 19,6.01471863 19,8.5 C19,9.47920963 18.6872375,10.3853697 18.1561603,11.1240324 C19.2814801,12.0388846 20,13.4355326 20,15 C20,17.6887547 17.8776933,19.8818181 15.2168896,19.9953805 L15,20 L3,20 Z M15,13 L8,13 L8,17 L15,17 L15.1492623,16.9945143 C16.1841222,16.9181651 17,16.0543618 17,15 C17,13.9456382 16.1841222,13.0818349 15.1492623,13.0054857 L15,13 Z M14,7 L8,7 L8,10 L14,10 C15.1045695,10 16,9.32842712 16,8.5 C16,7.67157288 15.1045695,7 14,7 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-text-italic.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--text-italic {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16,4 L16,6 L13.75,6 L12.25,18 L14,18 L14,20 L8,20 L8,18 L10.25,18 L11.75,6 L10,6 L10,4 L16,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M16,4 L16,6 L13.75,6 L12.25,18 L14,18 L14,20 L8,20 L8,18 L10.25,18 L11.75,6 L10,6 L10,4 L16,4 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-text-tool.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--text-tool {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,20 L8,18 L11,18 L11,6 L6,6 L6,8 L4,8 L4,4 L20,4 L20,8 L18,8 L18,6 L13,6 L13,18 L16,18 L16,20 L8,20 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M8,20 L8,18 L11,18 L11,6 L6,6 L6,8 L4,8 L4,4 L20,4 L20,8 L18,8 L18,6 L13,6 L13,18 L16,18 L16,20 L8,20 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-thumbs-down-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--thumbs-down-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.8688937 15.6687291,7.5439536 15.3974929,8.33359424 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9860478,18.9642708 17.0771376,19.9141361 15.9442124,19.9944915 L15.7883909,20 L13.9976363,20 C12.8580519,20 11.7302249,19.6335297 10.7904225,18.9653581 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.14325876,17.678748 9.03407582,17.4709771 9.00662803,17.2506604 L9,17.1798859 L9,9.48721313 L9.00274918,9.486 L9,9.4277415 C9,9.15545465 9.07748504,8.99976466 9.21287628,8.8524505 L9.31150483,8.75429431 L9.62472908,8.47299918 C9.672215,8.42860981 9.72181136,8.38047742 9.77330381,8.3274144 L9.93325507,8.15224584 C10.2361416,7.79963045 10.5899004,7.2619383 10.9588681,6.3415806 L11.1937974,5.73237236 L11.2958342,5.49052345 C11.6373077,4.72615106 12.1717829,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z' transform='rotate(180 12 12)'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.8688937 15.6687291,7.5439536 15.3974929,8.33359424 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9860478,18.9642708 17.0771376,19.9141361 15.9442124,19.9944915 L15.7883909,20 L13.9976363,20 C12.8580519,20 11.7302249,19.6335297 10.7904225,18.9653581 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.14325876,17.678748 9.03407582,17.4709771 9.00662803,17.2506604 L9,17.1798859 L9,9.48721313 L9.00274918,9.486 L9,9.4277415 C9,9.15545465 9.07748504,8.99976466 9.21287628,8.8524505 L9.31150483,8.75429431 L9.62472908,8.47299918 C9.672215,8.42860981 9.72181136,8.38047742 9.77330381,8.3274144 L9.93325507,8.15224584 C10.2361416,7.79963045 10.5899004,7.2619383 10.9588681,6.3415806 L11.1937974,5.73237236 L11.2958342,5.49052345 C11.6373077,4.72615106 12.1717829,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z' transform='rotate(180 12 12)'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-thumbs-down.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--thumbs-down {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.91012935 15.6373719,7.68159261 15.3124919,8.57377573 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9824313,19.0181708 16.9927958,20 15.7883909,20 L15.7883909,20 L13.9976363,20 C12.7703916,20 11.5567827,19.5749812 10.5769629,18.8058385 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.11265558,17.6547163 8.99974918,17.399954 8.99974918,17.1396928 C8.99974918,16.6875296 9.34678648,16.2810827 9.81893501,16.2810827 C9.9897269,16.2810827 10.1620523,16.3370141 10.3091513,16.452912 L10.3091513,16.452912 L11.5588956,17.4354563 C12.2570614,17.9834805 13.122951,18.2858513 13.99634,18.2858513 L13.99634,18.2858513 L15.7870946,18.2858513 C16.1434732,18.2858513 16.4337845,17.9822663 16.4337845,17.6090349 C16.4337845,17.4842081 16.3959449,17.4325635 16.3959449,17.2713058 C16.3959449,16.3112638 17.4108078,16.6291349 17.4108078,15.8198129 C17.4108078,15.4905124 17.1929037,15.4258668 17.1929037,15.0251345 C17.1929037,13.9604442 18.387081,14.4258221 18.387081,13.5197103 C18.387081,13.0568328 17.9987939,13.0396888 17.9987939,12.4871641 C17.9987939,12.0392866 18.3294686,11.6628164 18.7610498,11.6321258 C19.0986792,11.6078392 19.3634229,11.3142192 19.3634229,10.9638819 C19.3634229,10.592437 19.0736567,10.288852 18.7151652,10.2574229 L18.7151652,10.2574229 L14.0243629,10.2574229 C13.5958497,10.2574229 13.2061997,9.92955084 13.2061997,9.43238583 C13.2061997,9.28830808 13.2409723,9.14401562 13.3107204,9.01379565 C13.9228426,7.8694585 14.1817228,6.7213359 14.1817228,6.45689581 C14.1817228,6.16973982 13.9778635,5.71436232 13.4296946,5.71436232 C12.3054027,5.71436232 12.9459555,7.90481796 10.3291972,10.0967009 C10.1785189,10.2230995 9.99804553,10.2845662 9.81886791,10.2845662 C9.35319658,10.2845662 9.0000228,9.88633384 9.0000228,9.4277415 C9.0000228,8.4605559 9.97738681,8.96450756 11.0566805,6.08937908 C11.4061044,5.15862329 11.8407535,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z' transform='rotate(180 12 12)'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.91012935 15.6373719,7.68159261 15.3124919,8.57377573 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9824313,19.0181708 16.9927958,20 15.7883909,20 L15.7883909,20 L13.9976363,20 C12.7703916,20 11.5567827,19.5749812 10.5769629,18.8058385 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.11265558,17.6547163 8.99974918,17.399954 8.99974918,17.1396928 C8.99974918,16.6875296 9.34678648,16.2810827 9.81893501,16.2810827 C9.9897269,16.2810827 10.1620523,16.3370141 10.3091513,16.452912 L10.3091513,16.452912 L11.5588956,17.4354563 C12.2570614,17.9834805 13.122951,18.2858513 13.99634,18.2858513 L13.99634,18.2858513 L15.7870946,18.2858513 C16.1434732,18.2858513 16.4337845,17.9822663 16.4337845,17.6090349 C16.4337845,17.4842081 16.3959449,17.4325635 16.3959449,17.2713058 C16.3959449,16.3112638 17.4108078,16.6291349 17.4108078,15.8198129 C17.4108078,15.4905124 17.1929037,15.4258668 17.1929037,15.0251345 C17.1929037,13.9604442 18.387081,14.4258221 18.387081,13.5197103 C18.387081,13.0568328 17.9987939,13.0396888 17.9987939,12.4871641 C17.9987939,12.0392866 18.3294686,11.6628164 18.7610498,11.6321258 C19.0986792,11.6078392 19.3634229,11.3142192 19.3634229,10.9638819 C19.3634229,10.592437 19.0736567,10.288852 18.7151652,10.2574229 L18.7151652,10.2574229 L14.0243629,10.2574229 C13.5958497,10.2574229 13.2061997,9.92955084 13.2061997,9.43238583 C13.2061997,9.28830808 13.2409723,9.14401562 13.3107204,9.01379565 C13.9228426,7.8694585 14.1817228,6.7213359 14.1817228,6.45689581 C14.1817228,6.16973982 13.9778635,5.71436232 13.4296946,5.71436232 C12.3054027,5.71436232 12.9459555,7.90481796 10.3291972,10.0967009 C10.1785189,10.2230995 9.99804553,10.2845662 9.81886791,10.2845662 C9.35319658,10.2845662 9.0000228,9.88633384 9.0000228,9.4277415 C9.0000228,8.4605559 9.97738681,8.96450756 11.0566805,6.08937908 C11.4061044,5.15862329 11.8407535,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z' transform='rotate(180 12 12)'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-thumbs-up-fill.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--thumbs-up-fill {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.8688937 15.6687291,7.5439536 15.3974929,8.33359424 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9860478,18.9642708 17.0771376,19.9141361 15.9442124,19.9944915 L15.7883909,20 L13.9976363,20 C12.8580519,20 11.7302249,19.6335297 10.7904225,18.9653581 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.14325876,17.678748 9.03407582,17.4709771 9.00662803,17.2506604 L9,17.1798859 L9,9.48721313 L9.00274918,9.486 L9,9.4277415 C9,9.15545465 9.07748504,8.99976466 9.21287628,8.8524505 L9.31150483,8.75429431 L9.62472908,8.47299918 C9.672215,8.42860981 9.72181136,8.38047742 9.77330381,8.3274144 L9.93325507,8.15224584 C10.2361416,7.79963045 10.5899004,7.2619383 10.9588681,6.3415806 L11.1937974,5.73237236 L11.2958342,5.49052345 C11.6373077,4.72615106 12.1717829,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.8688937 15.6687291,7.5439536 15.3974929,8.33359424 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9860478,18.9642708 17.0771376,19.9141361 15.9442124,19.9944915 L15.7883909,20 L13.9976363,20 C12.8580519,20 11.7302249,19.6335297 10.7904225,18.9653581 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.14325876,17.678748 9.03407582,17.4709771 9.00662803,17.2506604 L9,17.1798859 L9,9.48721313 L9.00274918,9.486 L9,9.4277415 C9,9.15545465 9.07748504,8.99976466 9.21287628,8.8524505 L9.31150483,8.75429431 L9.62472908,8.47299918 C9.672215,8.42860981 9.72181136,8.38047742 9.77330381,8.3274144 L9.93325507,8.15224584 C10.2361416,7.79963045 10.5899004,7.2619383 10.9588681,6.3415806 L11.1937974,5.73237236 L11.2958342,5.49052345 C11.6373077,4.72615106 12.1717829,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-thumbs-up.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--thumbs-up {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.91012935 15.6373719,7.68159261 15.3124919,8.57377573 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9824313,19.0181708 16.9927958,20 15.7883909,20 L15.7883909,20 L13.9976363,20 C12.7703916,20 11.5567827,19.5749812 10.5769629,18.8058385 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.11265558,17.6547163 8.99974918,17.399954 8.99974918,17.1396928 C8.99974918,16.6875296 9.34678648,16.2810827 9.81893501,16.2810827 C9.9897269,16.2810827 10.1620523,16.3370141 10.3091513,16.452912 L10.3091513,16.452912 L11.5588956,17.4354563 C12.2570614,17.9834805 13.122951,18.2858513 13.99634,18.2858513 L13.99634,18.2858513 L15.7870946,18.2858513 C16.1434732,18.2858513 16.4337845,17.9822663 16.4337845,17.6090349 C16.4337845,17.4842081 16.3959449,17.4325635 16.3959449,17.2713058 C16.3959449,16.3112638 17.4108078,16.6291349 17.4108078,15.8198129 C17.4108078,15.4905124 17.1929037,15.4258668 17.1929037,15.0251345 C17.1929037,13.9604442 18.387081,14.4258221 18.387081,13.5197103 C18.387081,13.0568328 17.9987939,13.0396888 17.9987939,12.4871641 C17.9987939,12.0392866 18.3294686,11.6628164 18.7610498,11.6321258 C19.0986792,11.6078392 19.3634229,11.3142192 19.3634229,10.9638819 C19.3634229,10.592437 19.0736567,10.288852 18.7151652,10.2574229 L18.7151652,10.2574229 L14.0243629,10.2574229 C13.5958497,10.2574229 13.2061997,9.92955084 13.2061997,9.43238583 C13.2061997,9.28830808 13.2409723,9.14401562 13.3107204,9.01379565 C13.9228426,7.8694585 14.1817228,6.7213359 14.1817228,6.45689581 C14.1817228,6.16973982 13.9778635,5.71436232 13.4296946,5.71436232 C12.3054027,5.71436232 12.9459555,7.90481796 10.3291972,10.0967009 C10.1785189,10.2230995 9.99804553,10.2845662 9.81886791,10.2845662 C9.35319658,10.2845662 9.0000228,9.88633384 9.0000228,9.4277415 C9.0000228,8.4605559 9.97738681,8.96450756 11.0566805,6.08937908 C11.4061044,5.15862329 11.8407535,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M13.4296946,4 C14.9248873,4 15.8180492,5.24934085 15.8180492,6.45653721 C15.8180492,6.91012935 15.6373719,7.68159261 15.3124919,8.57377573 L15.3124919,8.57377573 L18.716733,8.57377573 C19.9753411,8.57377573 20.9997492,9.64632252 20.9997492,10.9638819 C20.9997492,11.7924903 20.5872584,12.5032366 19.9608314,12.9613979 C20.0029124,13.1435491 20.0247504,13.3303076 20.0247504,13.5199948 C20.0247504,14.3307447 19.6347592,15.060421 19.0265914,15.4943687 C19.0409742,15.6020526 19.0484293,15.7113791 19.0484293,15.8201693 C19.0484293,16.6173481 18.6713926,17.3416661 18.0656113,17.7784717 C17.9824313,19.0181708 16.9927958,20 15.7883909,20 L15.7883909,20 L13.9976363,20 C12.7703916,20 11.5567827,19.5749812 10.5769629,18.8058385 L10.5769629,18.8058385 L9.32687785,17.8229378 C9.11265558,17.6547163 8.99974918,17.399954 8.99974918,17.1396928 C8.99974918,16.6875296 9.34678648,16.2810827 9.81893501,16.2810827 C9.9897269,16.2810827 10.1620523,16.3370141 10.3091513,16.452912 L10.3091513,16.452912 L11.5588956,17.4354563 C12.2570614,17.9834805 13.122951,18.2858513 13.99634,18.2858513 L13.99634,18.2858513 L15.7870946,18.2858513 C16.1434732,18.2858513 16.4337845,17.9822663 16.4337845,17.6090349 C16.4337845,17.4842081 16.3959449,17.4325635 16.3959449,17.2713058 C16.3959449,16.3112638 17.4108078,16.6291349 17.4108078,15.8198129 C17.4108078,15.4905124 17.1929037,15.4258668 17.1929037,15.0251345 C17.1929037,13.9604442 18.387081,14.4258221 18.387081,13.5197103 C18.387081,13.0568328 17.9987939,13.0396888 17.9987939,12.4871641 C17.9987939,12.0392866 18.3294686,11.6628164 18.7610498,11.6321258 C19.0986792,11.6078392 19.3634229,11.3142192 19.3634229,10.9638819 C19.3634229,10.592437 19.0736567,10.288852 18.7151652,10.2574229 L18.7151652,10.2574229 L14.0243629,10.2574229 C13.5958497,10.2574229 13.2061997,9.92955084 13.2061997,9.43238583 C13.2061997,9.28830808 13.2409723,9.14401562 13.3107204,9.01379565 C13.9228426,7.8694585 14.1817228,6.7213359 14.1817228,6.45689581 C14.1817228,6.16973982 13.9778635,5.71436232 13.4296946,5.71436232 C12.3054027,5.71436232 12.9459555,7.90481796 10.3291972,10.0967009 C10.1785189,10.2230995 9.99804553,10.2845662 9.81886791,10.2845662 C9.35319658,10.2845662 9.0000228,9.88633384 9.0000228,9.4277415 C9.0000228,8.4605559 9.97738681,8.96450756 11.0566805,6.08937908 C11.4061044,5.15862329 11.8407535,4 13.4296946,4 Z M7,9 C7.55228475,9 8,9.44771525 8,10 L8,17 C8,17.5522847 7.55228475,18 7,18 L3,18 L3,9 L7,9 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-ticket.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--ticket {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14.5 2l3.125 3.125L17 5.75a.884.884 0 001.173 1.319L18.25 7l.625-.625L22 9.5 9.5 22l-3.125-3.125L7 18.25a.884.884 0 00-1.173-1.319L5.75 17l-.625.625L2 14.5 14.5 2zm0 2.5l-3 3a1 1 0 11-.991 1.127L10.5 8.5l-6 6 .731.731.169-.073.173-.06a2.656 2.656 0 012.26.312l.166.118.138.115.113.107.138.149c.613.714.785 1.676.515 2.53l-.065.18-.07.16.732.731 6.002-6a1 1 0 11.99-1.126l.008.128 3-3.002-.732-.732-.168.074-.173.06a2.656 2.656 0 01-2.26-.312L16 8.472l-.138-.115-.113-.107-.138-.149a2.652 2.652 0 01-.515-2.53l.065-.18.07-.16L14.5 4.5zm-1.707 5.293a1 1 0 111.414 1.414 1 1 0 01-1.414-1.414z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14.5 2l3.125 3.125L17 5.75a.884.884 0 001.173 1.319L18.25 7l.625-.625L22 9.5 9.5 22l-3.125-3.125L7 18.25a.884.884 0 00-1.173-1.319L5.75 17l-.625.625L2 14.5 14.5 2zm0 2.5l-3 3a1 1 0 11-.991 1.127L10.5 8.5l-6 6 .731.731.169-.073.173-.06a2.656 2.656 0 012.26.312l.166.118.138.115.113.107.138.149c.613.714.785 1.676.515 2.53l-.065.18-.07.16.732.731 6.002-6a1 1 0 11.99-1.126l.008.128 3-3.002-.732-.732-.168.074-.173.06a2.656 2.656 0 01-2.26-.312L16 8.472l-.138-.115-.113-.107-.138-.149a2.652 2.652 0 01-.515-2.53l.065-.18.07-.16L14.5 4.5zm-1.707 5.293a1 1 0 111.414 1.414 1 1 0 01-1.414-1.414z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-trash.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--trash {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 9H6l1.087 13h9.826L18 9zm-2.095 2l-.818 9H8.912l-.818-9h7.811zM12 2a2.97 2.97 0 012.995 2.82L15 5v1h3v2H6V6h3V5c0-1.688 1.331-3 3-3zm0 2c-.53 0-.938.365-.994.879L11 5v1h2V5c0-.577-.43-1-1-1z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M18 9H6l1.087 13h9.826L18 9zm-2.095 2l-.818 9H8.912l-.818-9h7.811zM12 2a2.97 2.97 0 012.995 2.82L15 5v1h3v2H6V6h3V5c0-1.688 1.331-3 3-3zm0 2c-.53 0-.938.365-.994.879L11 5v1h2V5c0-.577-.43-1-1-1z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-upload-cloud.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--upload-cloud {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M7.5,12 L12,7.5 L16.5,12 L15,13.5 L13,11.5 L13,22 L11,22 L11,11.5 L9,13.5 L7.5,12 Z M11.5,2 C14.0570069,2 16.3672564,3.55157482 17.2358321,5.93092178 L17.2835,6.0665 L17.4145183,6.08731097 C20.0449239,6.53520702 21.9316381,8.61876864 21.9981819,11.350367 L22,11.5 C22,14.6411668 19.7996323,16.9265021 16.7006468,16.998261 L16.55,17 L15.5,17 L15.5,15 L16.55,15 C18.6163623,15 20,13.5942857 20,11.5 C20,9.538055 18.6018237,8.11877635 16.6000787,8.00507103 L16.4714957,7.99959367 L15.6755756,7.97689732 L15.5194193,7.19611614 C15.1395428,5.29673328 13.433695,4 11.5,4 C9.26285888,4 7.62213728,5.5585359 7.5065992,7.75063225 L7.50156899,7.88030287 L7.48772078,8.99175409 L6.33061979,9.0012438 C4.84064582,9.04438683 3.6,10.4529679 3.6,12.1 C3.6,13.6643787 4.83868693,14.9394465 6.38876321,14.9979059 L6.5,15 L8.5,15 L8.5,17 L6.5,17 C3.79380473,17 1.6,14.8061953 1.6,12.1 C1.6,9.68983052 3.25231852,7.56452435 5.49502278,7.09571076 L5.5645,7.082 L5.58684851,6.93675031 C6.05502185,4.09688845 8.36434526,2.06966277 11.3452237,2.00175907 L11.5,2 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M7.5,12 L12,7.5 L16.5,12 L15,13.5 L13,11.5 L13,22 L11,22 L11,11.5 L9,13.5 L7.5,12 Z M11.5,2 C14.0570069,2 16.3672564,3.55157482 17.2358321,5.93092178 L17.2835,6.0665 L17.4145183,6.08731097 C20.0449239,6.53520702 21.9316381,8.61876864 21.9981819,11.350367 L22,11.5 C22,14.6411668 19.7996323,16.9265021 16.7006468,16.998261 L16.55,17 L15.5,17 L15.5,15 L16.55,15 C18.6163623,15 20,13.5942857 20,11.5 C20,9.538055 18.6018237,8.11877635 16.6000787,8.00507103 L16.4714957,7.99959367 L15.6755756,7.97689732 L15.5194193,7.19611614 C15.1395428,5.29673328 13.433695,4 11.5,4 C9.26285888,4 7.62213728,5.5585359 7.5065992,7.75063225 L7.50156899,7.88030287 L7.48772078,8.99175409 L6.33061979,9.0012438 C4.84064582,9.04438683 3.6,10.4529679 3.6,12.1 C3.6,13.6643787 4.83868693,14.9394465 6.38876321,14.9979059 L6.5,15 L8.5,15 L8.5,17 L6.5,17 C3.79380473,17 1.6,14.8061953 1.6,12.1 C1.6,9.68983052 3.25231852,7.56452435 5.49502278,7.09571076 L5.5645,7.082 L5.58684851,6.93675031 C6.05502185,4.09688845 8.36434526,2.06966277 11.3452237,2.00175907 L11.5,2 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-upload.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--upload {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 1.636l5.657 5.657-1.414 1.414L13 5.465V18h-2V5.465L7.757 8.707 6.343 7.293 12 1.636zM5 15v5h14v-5h2v7H3v-7h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 1.636l5.657 5.657-1.414 1.414L13 5.465V18h-2V5.465L7.757 8.707 6.343 7.293 12 1.636zM5 15v5h14v-5h2v7H3v-7h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-user.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--user {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.267 13a4.733 4.733 0 014.728 4.517l.005.216V22H3v-4.267a4.733 4.733 0 014.517-4.728L7.733 13h8.534zm-8.534 2a2.733 2.733 0 00-2.728 2.567L5 17.733V20h14v-2.267c0-1.416-1.107-2.636-2.46-2.726l-.163-.005L7.733 15zM12 2a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M16.267 13a4.733 4.733 0 014.728 4.517l.005.216V22H3v-4.267a4.733 4.733 0 014.517-4.728L7.733 13h8.534zm-8.534 2a2.733 2.733 0 00-2.728 2.567L5 17.733V20h14v-2.267c0-1.416-1.107-2.636-2.46-2.726l-.163-.005L7.733 15zM12 2a5 5 0 110 10 5 5 0 010-10zm0 2a3 3 0 100 6 3 3 0 000-6z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-videocamera-crossed.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--videocamera-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM23 6.613v10.774l-6.018-2.006a4 4 0 01-3.775 3.614L13 19H8.534l2-2H13a2 2 0 001.995-1.85L15 15v-2.466l4.882-4.882L23 6.612zM13 5c.71 0 1.377.185 1.955.51l-1.534 1.534a1.999 1.999 0 00-.278-.039L13 7H5a2 2 0 00-1.995 1.85L3 9v6c0 .671.33 1.265.838 1.628l-1.424 1.424a3.992 3.992 0 01-1.407-2.81L1 15V9a4 4 0 013.8-3.995L5 5h8zm8 4.387l-4 1.333v2.559l4 1.333V9.387zM6 9a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM23 6.613v10.774l-6.018-2.006a4 4 0 01-3.775 3.614L13 19H8.534l2-2H13a2 2 0 001.995-1.85L15 15v-2.466l4.882-4.882L23 6.612zM13 5c.71 0 1.377.185 1.955.51l-1.534 1.534a1.999 1.999 0 00-.278-.039L13 7H5a2 2 0 00-1.995 1.85L3 9v6c0 .671.33 1.265.838 1.628l-1.424 1.424a3.992 3.992 0 01-1.407-2.81L1 15V9a4 4 0 013.8-3.995L5 5h8zm8 4.387l-4 1.333v2.559l4 1.333V9.387zM6 9a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-videocamera.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--videocamera {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M13 5a4 4 0 013.982 3.62L23 6.612v10.774l-6.018-2.006a4 4 0 01-3.775 3.614L13 19H5a4 4 0 01-3.995-3.8L1 15V9a4 4 0 013.8-3.995L5 5h8zm0 2H5a2 2 0 00-1.995 1.85L3 9v6a2 2 0 001.85 1.995L5 17h8a2 2 0 001.995-1.85L15 15V9a2 2 0 00-1.85-1.995L13 7zm8 2.387l-4 1.333v2.559l4 1.333V9.387zM6 9a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M13 5a4 4 0 013.982 3.62L23 6.612v10.774l-6.018-2.006a4 4 0 01-3.775 3.614L13 19H5a4 4 0 01-3.995-3.8L1 15V9a4 4 0 013.8-3.995L5 5h8zm0 2H5a2 2 0 00-1.995 1.85L3 9v6a2 2 0 001.85 1.995L5 17h8a2 2 0 001.995-1.85L15 15V9a2 2 0 00-1.85-1.995L13 7zm8 2.387l-4 1.333v2.559l4 1.333V9.387zM6 9a1 1 0 110 2 1 1 0 010-2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-volume-high.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--volume-high {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2.5 L15,21.5 L9.273,17 L6,17 C3.23857625,17 1,14.7614237 1,12 C1,9.28538004 3.16333539,7.07603414 5.86004758,7.0019209 L9.273,7 L15,2.5 Z M20.0710678,4.92893219 C23.9053063,8.76317069 23.9750197,14.9363852 20.2802081,18.8556774 L20.0710678,19.0710678 L18.6568542,17.6568542 C21.7145764,14.5991321 21.7796343,9.68200687 18.852028,6.54516122 L18.6568542,6.34314575 L20.0710678,4.92893219 Z M13,6.8115 L10,8.926 L10,15.073 L13,17.188 L13,6.8115 Z M17.2218254,7.73654403 C19.5048905,10.0196091 19.5634306,13.6848168 17.3974458,16.038761 L17.2218254,16.2218254 L15.8076118,14.8076118 C17.3176391,13.2975846 17.3679733,10.8806204 15.9586146,9.31013063 L15.8076118,9.1507576 L17.2218254,7.73654403 Z M6.02744815,8.99981164 L5.91499246,9.00116602 C4.29498194,9.04568847 3,10.3746044 3,12 C3,13.6191985 4.28278744,14.9387859 5.88753087,14.9979308 L6,15 L8,15 L8,9 L6.02744815,8.99981164 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2.5 L15,21.5 L9.273,17 L6,17 C3.23857625,17 1,14.7614237 1,12 C1,9.28538004 3.16333539,7.07603414 5.86004758,7.0019209 L9.273,7 L15,2.5 Z M20.0710678,4.92893219 C23.9053063,8.76317069 23.9750197,14.9363852 20.2802081,18.8556774 L20.0710678,19.0710678 L18.6568542,17.6568542 C21.7145764,14.5991321 21.7796343,9.68200687 18.852028,6.54516122 L18.6568542,6.34314575 L20.0710678,4.92893219 Z M13,6.8115 L10,8.926 L10,15.073 L13,17.188 L13,6.8115 Z M17.2218254,7.73654403 C19.5048905,10.0196091 19.5634306,13.6848168 17.3974458,16.038761 L17.2218254,16.2218254 L15.8076118,14.8076118 C17.3176391,13.2975846 17.3679733,10.8806204 15.9586146,9.31013063 L15.8076118,9.1507576 L17.2218254,7.73654403 Z M6.02744815,8.99981164 L5.91499246,9.00116602 C4.29498194,9.04568847 3,10.3746044 3,12 C3,13.6191985 4.28278744,14.9387859 5.88753087,14.9979308 L6,15 L8,15 L8,9 L6.02744815,8.99981164 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-volume-low.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--volume-low {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2.5 L15,21.5 L9.273,17 L6,17 C3.23857625,17 1,14.7614237 1,12 C1,9.28538004 3.16333539,7.07603414 5.86004758,7.0019209 L9.273,7 L15,2.5 Z M13,6.8115 L10,8.926 L10,15.073 L13,17.188 L13,6.8115 Z M17.2218254,7.73654403 C19.5048905,10.0196091 19.5634306,13.6848168 17.3974458,16.038761 L17.2218254,16.2218254 L15.8076118,14.8076118 C17.3176391,13.2975846 17.3679733,10.8806204 15.9586146,9.31013063 L15.8076118,9.1507576 L17.2218254,7.73654403 Z M6.02744815,8.99981164 L5.91499246,9.00116602 C4.29498194,9.04568847 3,10.3746044 3,12 C3,13.6191985 4.28278744,14.9387859 5.88753087,14.9979308 L6,15 L8,15 L8,9 L6.02744815,8.99981164 Z'/%3E %3C/g%3E %3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E %3Cg fill='none' fill-rule='evenodd'%3E %3Crect width='24' height='24'/%3E %3Cpath fill='currentColor' d='M15,2.5 L15,21.5 L9.273,17 L6,17 C3.23857625,17 1,14.7614237 1,12 C1,9.28538004 3.16333539,7.07603414 5.86004758,7.0019209 L9.273,7 L15,2.5 Z M13,6.8115 L10,8.926 L10,15.073 L13,17.188 L13,6.8115 Z M17.2218254,7.73654403 C19.5048905,10.0196091 19.5634306,13.6848168 17.3974458,16.038761 L17.2218254,16.2218254 L15.8076118,14.8076118 C17.3176391,13.2975846 17.3679733,10.8806204 15.9586146,9.31013063 L15.8076118,9.1507576 L17.2218254,7.73654403 Z M6.02744815,8.99981164 L5.91499246,9.00116602 C4.29498194,9.04568847 3,10.3746044 3,12 C3,13.6191985 4.28278744,14.9387859 5.88753087,14.9979308 L6,15 L8,15 L8,9 L6.02744815,8.99981164 Z'/%3E %3C/g%3E %3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-volume-minus.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--volume-minus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9zm16 2v2h-7v-2h7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9zm16 2v2h-7v-2h7z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-volume-mute.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--volume-mute {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM22.5 8.5L24 10l-2 2 2 2-1.5 1.5-2-2-2 2L17 14l2-2-2-2 1.5-1.5 2 2 2-2zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9z'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath fill='currentColor' d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM22.5 8.5L24 10l-2 2 2 2-1.5 1.5-2-2-2 2L17 14l2-2-2-2 1.5-1.5 2 2 2-2zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9z'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-volume-plus.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--volume-plus {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM21 8v3h3v2h-3v3h-2v-3h-3v-2h3V8h2zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2.5v19L9.273 17H6a5 5 0 01-.14-9.998L9.273 7 15 2.5zm-2 4.311l-3 2.115v6.147l3 2.115V6.811zM21 8v3h3v2h-3v3h-2v-3h-3v-2h3V8h2zM8 9H6.027L5.915 9a3 3 0 00-.027 5.997L6 15h2V9z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-wifi-crossed.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--wifi-crossed {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM12 17.533a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm1.525-3.525a6.389 6.389 0 012.615 1.515l.112.109-1.415 1.414a4.335 4.335 0 00-3.06-1.29l1.748-1.748zm-2.56-4.507L7.99 12.475a8.44 8.44 0 00-1.81 1.33l-.116.114-1.414-1.414A10.398 10.398 0 0110.965 9.5zm5.924 1.145c.85.449 1.652 1.024 2.377 1.725l.124.122-1.414 1.415a8.379 8.379 0 00-2.585-1.764l1.498-1.498zm3.241-3.24c.782.511 1.527 1.103 2.223 1.777l.175.172-1.414 1.414a12.9 12.9 0 00-2.435-1.912l1.451-1.45zM15.135 5.33l-1.743 1.745c-3.67-.393-7.478.789-10.326 3.546l-.152.15L1.5 9.354c3.702-3.702 8.87-5.044 13.635-4.026z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M19.793 2.793l1.414 1.414-16.5 16.5-1.414-1.414 16.5-16.5zM12 17.533a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm1.525-3.525a6.389 6.389 0 012.615 1.515l.112.109-1.415 1.414a4.335 4.335 0 00-3.06-1.29l1.748-1.748zm-2.56-4.507L7.99 12.475a8.44 8.44 0 00-1.81 1.33l-.116.114-1.414-1.414A10.398 10.398 0 0110.965 9.5zm5.924 1.145c.85.449 1.652 1.024 2.377 1.725l.124.122-1.414 1.415a8.379 8.379 0 00-2.585-1.764l1.498-1.498zm3.241-3.24c.782.511 1.527 1.103 2.223 1.777l.175.172-1.414 1.414a12.9 12.9 0 00-2.435-1.912l1.451-1.45zM15.135 5.33l-1.743 1.745c-3.67-.393-7.478.789-10.326 3.546l-.152.15L1.5 9.354c3.702-3.702 8.87-5.044 13.635-4.026z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-wifi.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--wifi {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 17.534a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm4.14-2.011l.112.109-1.415 1.414c-1.628-1.629-4.166-1.717-5.727-.253l-.087.085-1.414-1.414c2.312-2.313 6.1-2.26 8.531.059zm3.126-3.152l.124.122-1.414 1.415c-3.248-3.248-8.495-3.281-11.796-.102l-.116.113-1.414-1.414c4.032-4.032 10.54-4.079 14.616-.134zm3.087-3.188l.175.172-1.414 1.414C16.138 5.794 8.103 5.744 3.066 10.62l-.152.15L1.5 9.354c5.749-5.749 15.033-5.806 20.853-.172z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M12 17.534a1.5 1.5 0 110 3 1.5 1.5 0 010-3zm4.14-2.011l.112.109-1.415 1.414c-1.628-1.629-4.166-1.717-5.727-.253l-.087.085-1.414-1.414c2.312-2.313 6.1-2.26 8.531.059zm3.126-3.152l.124.122-1.414 1.415c-3.248-3.248-8.495-3.281-11.796-.102l-.116.113-1.414-1.414c4.032-4.032 10.54-4.079 14.616-.134zm3.087-3.188l.175.172-1.414 1.414C16.138 5.794 8.103 5.744 3.066 10.62l-.152.15L1.5 9.354c5.749-5.749 15.033-5.806 20.853-.172z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-zoom-in.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--zoom-in {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 2a8 8 0 11-4.953 14.283l-5.633 5.631L2 20.5l5.642-5.644A8 8 0 0114 2zm0 2a6 6 0 100 12 6 6 0 000-12zm1 2v3h3v2h-3v3h-2v-3h-3V9h3V6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 2a8 8 0 11-4.953 14.283l-5.633 5.631L2 20.5l5.642-5.644A8 8 0 0114 2zm0 2a6 6 0 100 12 6 6 0 000-12zm1 2v3h3v2h-3v3h-2v-3h-3V9h3V6h2z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-zoom-out.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--zoom-out {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 2a8 8 0 11-4.953 14.283l-5.633 5.631L2 20.5l5.642-5.644A8 8 0 0114 2zm0 2a6 6 0 100 12 6 6 0 000-12zm4 5v2h-8V9h8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M14 2a8 8 0 11-4.953 14.283l-5.633 5.631L2 20.5l5.642-5.644A8 8 0 0114 2zm0 2a6 6 0 100 12 6 6 0 000-12zm4 5v2h-8V9h8z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/icons/ui/icon-zoom-text.css":function(module,exports,__webpack_require__){(exports=__webpack_require__("../../node_modules/css-loader/dist/runtime/api.js")(!1)).push([module.i,".hds-icon--zoom-text {\n mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2a8 8 0 11-4.953 14.283l-5.633 5.631L3 20.5l5.642-5.644A8 8 0 0115 2zm0 2a6 6 0 100 12 6 6 0 000-12zm1.065 2.5L18.25 13h-1.8l-.395-1.24H13.86L13.476 13H11.75l2.185-6.5h2.13zM4.65 7.5L6.5 13H4.976l-.333-1.05H2.786L2.46 13H1l1.85-5.5h1.8zm-.913 1.415h-.032l-.054.244c-.014.058-.03.122-.05.19l-.062.21-.373 1.184H4.27l-.373-1.184c-.103-.318-.159-.644-.159-.644zm11.248-.743h-.038l-.075.33a7.427 7.427 0 01-.054.207l-.068.224-.44 1.4h1.303l-.44-1.4c-.122-.376-.188-.761-.188-.761z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n -webkit-mask-image: url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h24v24H0z'/%3E%3Cpath d='M15 2a8 8 0 11-4.953 14.283l-5.633 5.631L3 20.5l5.642-5.644A8 8 0 0115 2zm0 2a6 6 0 100 12 6 6 0 000-12zm1.065 2.5L18.25 13h-1.8l-.395-1.24H13.86L13.476 13H11.75l2.185-6.5h2.13zM4.65 7.5L6.5 13H4.976l-.333-1.05H2.786L2.46 13H1l1.85-5.5h1.8zm-.913 1.415h-.032l-.054.244c-.014.058-.03.122-.05.19l-.062.21-.373 1.184H4.27l-.373-1.184c-.103-.318-.159-.644-.159-.644zm11.248-.743h-.038l-.075.33a7.427 7.427 0 01-.054.207l-.068.224-.44 1.4h1.303l-.44-1.4c-.122-.376-.188-.761-.188-.761z' fill='currentColor'/%3E%3C/g%3E%3C/svg%3E\");\n}\n",""]),module.exports=exports},"./.storybook/index.css":function(module,exports,__webpack_require__){var api=__webpack_require__("../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),content=__webpack_require__("../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./.storybook/index.css");"string"==typeof(content=content.__esModule?content.default:content)&&(content=[[module.i,content,""]]);var options={insert:"head",singleton:!1};api(content,options);module.exports=content.locals||{}},"./.storybook/preview.js-generated-config-entry.js":function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__);var preview_namespaceObject={};__webpack_require__.r(preview_namespaceObject),__webpack_require__.d(preview_namespaceObject,"parameters",(function(){return parameters}));__webpack_require__("../../node_modules/core-js/modules/es.object.keys.js"),__webpack_require__("../../node_modules/core-js/modules/es.symbol.js"),__webpack_require__("../../node_modules/core-js/modules/es.array.filter.js"),__webpack_require__("../../node_modules/core-js/modules/es.object.get-own-property-descriptor.js"),__webpack_require__("../../node_modules/core-js/modules/es.array.for-each.js"),__webpack_require__("../../node_modules/core-js/modules/web.dom-collections.for-each.js"),__webpack_require__("../../node_modules/core-js/modules/es.object.get-own-property-descriptors.js"),__webpack_require__("../../node_modules/core-js/modules/es.object.define-properties.js"),__webpack_require__("../../node_modules/core-js/modules/es.object.define-property.js");var ClientApi=__webpack_require__("../../node_modules/@storybook/client-api/dist/esm/ClientApi.js"),esm=__webpack_require__("../../node_modules/@storybook/builder-webpack4/node_modules/@storybook/client-logger/dist/esm/index.js"),preview=(__webpack_require__("../../node_modules/core-js/modules/es.object.assign.js"),__webpack_require__("../../node_modules/@storybook/addon-viewport/dist/esm/preview.js")),parameters=(__webpack_require__("./.storybook/index.css"),__webpack_require__("./src/base.css"),{options:{storySort:function storySort(a,b){return a[1].kind===b[1].kind?0:a[1].id.localeCompare(b[1].id,void 0,{numeric:!0})}},viewport:{viewports:Object.assign({},preview.a,{narrow:{name:"Narrow full-height (320px)",styles:{width:"320px",height:"100%"}}})},backgrounds:{default:"White",values:[{name:"White",value:"#fff"},{name:"Black",value:"#111"}]}});function ownKeys(object,enumerableOnly){var keys=Object.keys(object);if(Object.getOwnPropertySymbols){var symbols=Object.getOwnPropertySymbols(object);enumerableOnly&&(symbols=symbols.filter((function(sym){return Object.getOwnPropertyDescriptor(object,sym).enumerable}))),keys.push.apply(keys,symbols)}return keys}function _defineProperty(obj,key,value){return key in obj?Object.defineProperty(obj,key,{value:value,enumerable:!0,configurable:!0,writable:!0}):obj[key]=value,obj}Object.keys(preview_namespaceObject).forEach((function(key){var value=preview_namespaceObject[key];switch(key){case"args":case"argTypes":return esm.a.warn("Invalid args/argTypes in config, ignoring.",JSON.stringify(value));case"decorators":return value.forEach((function(decorator){return Object(ClientApi.d)(decorator,!1)}));case"loaders":return value.forEach((function(loader){return Object(ClientApi.e)(loader,!1)}));case"parameters":return Object(ClientApi.f)(function _objectSpread(target){for(var i=1;i0&&void 0!==arguments[0]?arguments[0]:"Button";return''+label+""};__webpack_exports__.default={parameters:{storySource:{source:'import \'./button.css\';\nimport \'../../icons/icon.css\';\nimport \'../../icons/ui/icon-share.css\';\nimport \'../../icons/ui/icon-angle-right.css\';\nimport \'../../icons/ui/icon-trash.css\';\n\nconst getLabel = (label = \'Button\') => `${label}`;\n\nexport default {\n title: \'Components/Button\',\n decorators: [(storyFn) => `${storyFn()}`],\n};\n\nexport const Primary = () => `\n \n`;\n\nexport const Secondary = () => `\n \n`;\n\nexport const Supplementary = () => `\n \n`;\n\nexport const Success = () => `\n \n`;\n\nexport const Danger = () => `\n \n`;\n\nexport const FullWidth = () => `\n \n`;\nFullWidth.storyName = \'Full width\';\n\nexport const Small = () => `\n \n`;\n\nexport const Disabled = () => `\n \n`;\n\nexport const Icons = () => `\n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n`;\n\nexport const Loading = () => `\n \n`;\n\nexport const Themes = () => `\n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n`;\n',locationsMap:{primary:{startLoc:{col:23,line:14},endLoc:{col:1,line:18},startBody:{col:23,line:14},endBody:{col:1,line:18}},secondary:{startLoc:{col:25,line:20},endLoc:{col:1,line:24},startBody:{col:25,line:20},endBody:{col:1,line:24}},supplementary:{startLoc:{col:29,line:26},endLoc:{col:1,line:31},startBody:{col:29,line:26},endBody:{col:1,line:31}},success:{startLoc:{col:23,line:33},endLoc:{col:1,line:37},startBody:{col:23,line:33},endBody:{col:1,line:37}},danger:{startLoc:{col:22,line:39},endLoc:{col:1,line:43},startBody:{col:22,line:39},endBody:{col:1,line:43}},"full-width":{startLoc:{col:25,line:45},endLoc:{col:1,line:49},startBody:{col:25,line:45},endBody:{col:1,line:49}},small:{startLoc:{col:21,line:52},endLoc:{col:1,line:56},startBody:{col:21,line:52},endBody:{col:1,line:56}},disabled:{startLoc:{col:24,line:58},endLoc:{col:1,line:62},startBody:{col:24,line:58},endBody:{col:1,line:62}},icons:{startLoc:{col:21,line:64},endLoc:{col:1,line:99},startBody:{col:21,line:64},endBody:{col:1,line:99}},loading:{startLoc:{col:23,line:101},endLoc:{col:1,line:110},startBody:{col:23,line:101},endBody:{col:1,line:110}},themes:{startLoc:{col:22,line:112},endLoc:{col:1,line:139},startBody:{col:22,line:112},endBody:{col:1,line:139}}}}},title:"Components/Button",decorators:[function(storyFn){return""+storyFn()}]};var Primary=function Primary(){return'\n \n"},Secondary=function Secondary(){return'\n \n"},Supplementary=function Supplementary(){return'\n \n"},Success=function Success(){return'\n \n"},Danger=function Danger(){return'\n \n"},FullWidth=function FullWidth(){return'\n \n"};FullWidth.storyName="Full width";var Small=function Small(){return'\n \n"},Disabled=function Disabled(){return'\n \n"},Icons=function Icons(){return'\n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n'},Loading=function Loading(){return'\n \n"},Themes=function Themes(){return'\n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n"};Primary.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},Primary.parameters),Secondary.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},Secondary.parameters),Supplementary.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},Supplementary.parameters),Success.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},Success.parameters),Danger.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},Danger.parameters),FullWidth.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},FullWidth.parameters),Small.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},Small.parameters),Disabled.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},Disabled.parameters),Icons.parameters=Object.assign({storySource:{source:'() => `\n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n`'}},Icons.parameters),Loading.parameters=Object.assign({storySource:{source:'() => `\n \n`'}},Loading.parameters),Themes.parameters=Object.assign({storySource:{source:'() => `\n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n`'}},Themes.parameters)},"./src/components/card/card.css":function(module,exports,__webpack_require__){var api=__webpack_require__("../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),content=__webpack_require__("../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/card/card.css");"string"==typeof(content=content.__esModule?content.default:content)&&(content=[[module.i,content,""]]);var options={insert:"head",singleton:!1};api(content,options);module.exports=content.locals||{}},"./src/components/card/card.stories.js":function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,"Empty",(function(){return Empty})),__webpack_require__.d(__webpack_exports__,"WithBoxShadow",(function(){return WithBoxShadow})),__webpack_require__.d(__webpack_exports__,"TextHeading",(function(){return TextHeading})),__webpack_require__.d(__webpack_exports__,"TextHeadingButton",(function(){return TextHeadingButton}));__webpack_require__("../../node_modules/core-js/modules/es.object.assign.js"),__webpack_require__("./src/components/card/card.css");__webpack_exports__.default={parameters:{storySource:{source:'import \'./card.css\';\n\nexport default {\n title: \'Components/Card\',\n};\n\nconst body = `
\n
Card
\n
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\n
`;\n\nconst button = ``;\n\nexport const Empty = () => `\n
\n
\n
\n
\n`;\n\nexport const WithBoxShadow = () => `\n
\n`;\n\nexport const TextHeading = () => `\n
\n ${body}\n
\n
\n
\n
\n ${body}\n
\n`;\nTextHeading.storyName = \'Text & heading\';\n\nexport const TextHeadingButton = () => `\n
\n ${body}\n ${button}\n
\n
\n
\n
\n ${body}\n ${button}\n
\n`;\nTextHeadingButton.storyName = \'Text, heading & button\';\n',locationsMap:{empty:{startLoc:{col:21,line:16},endLoc:{col:1,line:21},startBody:{col:21,line:16},endBody:{col:1,line:21}},"with-box-shadow":{startLoc:{col:29,line:23},endLoc:{col:1,line:25},startBody:{col:29,line:23},endBody:{col:1,line:25}},"text-heading":{startLoc:{col:27,line:27},endLoc:{col:1,line:36},startBody:{col:27,line:27},endBody:{col:1,line:36}},"text-heading-button":{startLoc:{col:33,line:39},endLoc:{col:1,line:50},startBody:{col:33,line:39},endBody:{col:1,line:50}}}}},title:"Components/Card"};var body='
\n
Card
\n
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
\n
',button='',Empty=function Empty(){return'\n
\n
\n
\n
\n'},WithBoxShadow=function WithBoxShadow(){return'\n
\n'},TextHeading=function TextHeading(){return'\n
\n '+body+'\n
\n
\n
\n
\n '+body+"\n
\n"};TextHeading.storyName="Text & heading";var TextHeadingButton=function TextHeadingButton(){return'\n
\n '+body+"\n "+button+'\n
\n
\n
\n
\n '+body+"\n "+button+"\n
\n"};TextHeadingButton.storyName="Text, heading & button",Empty.parameters=Object.assign({storySource:{source:'() => `\n
\n
\n
\n
\n`'}},Empty.parameters),WithBoxShadow.parameters=Object.assign({storySource:{source:'() => `\n
\n`'}},WithBoxShadow.parameters),TextHeading.parameters=Object.assign({storySource:{source:'() => `\n
\n ${body}\n
\n
\n
\n
\n ${body}\n
\n`'}},TextHeading.parameters),TextHeadingButton.parameters=Object.assign({storySource:{source:'() => `\n
\n ${body}\n ${button}\n
\n
\n
\n
\n ${body}\n ${button}\n
\n`'}},TextHeadingButton.parameters)},"./src/components/checkbox/checkbox.css":function(module,exports,__webpack_require__){var api=__webpack_require__("../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js"),content=__webpack_require__("../../node_modules/css-loader/dist/cjs.js?!../../node_modules/@storybook/builder-webpack4/node_modules/postcss-loader/dist/cjs.js?!./src/components/checkbox/checkbox.css");"string"==typeof(content=content.__esModule?content.default:content)&&(content=[[module.i,content,""]]);var options={insert:"head",singleton:!1};api(content,options);module.exports=content.locals||{}},"./src/components/checkbox/checkbox.stories.js":function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,"Default",(function(){return Default})),__webpack_require__.d(__webpack_exports__,"Selected",(function(){return Selected})),__webpack_require__.d(__webpack_exports__,"Indeterminate",(function(){return Indeterminate})),__webpack_require__.d(__webpack_exports__,"Disabled",(function(){return Disabled})),__webpack_require__.d(__webpack_exports__,"SelectedDisabled",(function(){return SelectedDisabled})),__webpack_require__.d(__webpack_exports__,"Invalid",(function(){return Invalid})),__webpack_require__.d(__webpack_exports__,"GroupWithParent",(function(){return GroupWithParent}));__webpack_require__("../../node_modules/core-js/modules/es.object.assign.js");var _storybook_client_api__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("../../node_modules/@storybook/builder-webpack4/node_modules/@storybook/addons/dist/esm/hooks.js"),getLabel=(__webpack_require__("./src/components/checkbox/checkbox.css"),__webpack_require__("./src/components/selection-group/selection-group.css"),function getLabel(){var id=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"input",label=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"Option";return'"});__webpack_exports__.default={parameters:{storySource:{source:'import { useEffect } from "@storybook/client-api";\nimport \'./checkbox.css\';\nimport \'../selection-group/selection-group.css\';\n\nconst getLabel = (id = \'input\', label = \'Option\') => ``;\n\nexport default {\n title: \'Components/Checkbox\',\n};\n\nexport const Default = () => `\n
\n \n ${getLabel(\'checkbox1\')}\n
\n`;\n\nexport const Selected = () => `\n
\n \n ${getLabel(\'checkbox2\')}\n
\n`;\n\nexport const Indeterminate = () => {\n useEffect(() => {\n const checkbox = document.querySelector(\'#checkbox3\');\n checkbox.indeterminate = true;\n }, []);\n\n return `\n
\n \n ${getLabel(\'checkbox3\')}\n
\n`;\n}\n\nexport const Disabled = () => `\n
\n \n ${getLabel(\'checkbox4\')}\n
\n`;\n\nexport const SelectedDisabled = () => `\n
\n \n ${getLabel(\'checkbox5\')}\n
\n`;\nSelectedDisabled.storyName = \'Selected & disabled\';\n\nexport const Invalid = () => `\n
\n \n ${getLabel(\'checkbox6\')}\n
Error text
\n
\n`;\n\nexport const GroupWithParent = () => {\n useEffect(() => {\n const checkbox = document.querySelector(\'#checkboxparent\');\n checkbox.indeterminate = true;\n }, []);\n\n return `\n