Repository: themeselection/sneat-html-admin-template-free Branch: main Commit: de094c2bf89e Files: 180 Total size: 7.3 MB Directory structure: gitextract_g_z9xlv3/ ├── .browserslistrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── config.yml │ │ └── feature-request.yml │ └── workflows/ │ ├── handle-new-issue-comment.yml │ ├── handle-new-issue.yml │ └── issue-staler.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .stylelintignore ├── .stylelintrc.json ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── CHANGELOG.md ├── LICENSE ├── LICENSE.md ├── README.md ├── assets/ │ ├── css/ │ │ └── demo.css │ ├── js/ │ │ ├── config.js │ │ ├── dashboards-analytics.js │ │ ├── extended-ui-perfect-scrollbar.js │ │ ├── form-basic-inputs.js │ │ ├── main.js │ │ ├── pages-account-settings-account.js │ │ ├── ui-modals.js │ │ ├── ui-popover.js │ │ └── ui-toasts.js │ └── vendor/ │ ├── css/ │ │ ├── core.css │ │ └── pages/ │ │ ├── page-auth.css │ │ ├── page-icons.css │ │ └── page-misc.css │ ├── fonts/ │ │ └── iconify-icons.css │ ├── js/ │ │ ├── bootstrap.js │ │ ├── helpers.js │ │ └── menu.js │ └── libs/ │ ├── apex-charts/ │ │ ├── apex-charts.css │ │ └── apexcharts.js │ ├── highlight/ │ │ ├── highlight-github.css │ │ ├── highlight.css │ │ └── highlight.js │ ├── jquery/ │ │ └── jquery.js │ ├── masonry/ │ │ └── masonry.js │ ├── perfect-scrollbar/ │ │ ├── perfect-scrollbar.css │ │ └── perfect-scrollbar.js │ └── popper/ │ └── popper.js ├── build-config.js ├── documentation.html ├── fonts/ │ └── iconify/ │ └── iconify.js ├── gulpfile.js ├── hire-us.html ├── html/ │ ├── auth-forgot-password-basic.html │ ├── auth-login-basic.html │ ├── auth-register-basic.html │ ├── cards-basic.html │ ├── extended-ui-perfect-scrollbar.html │ ├── extended-ui-text-divider.html │ ├── form-layouts-horizontal.html │ ├── form-layouts-vertical.html │ ├── forms-basic-inputs.html │ ├── forms-input-groups.html │ ├── icons-boxicons.html │ ├── index.html │ ├── layouts-blank.html │ ├── layouts-container.html │ ├── layouts-fluid.html │ ├── layouts-without-menu.html │ ├── layouts-without-navbar.html │ ├── pages-account-settings-account.html │ ├── pages-account-settings-connections.html │ ├── pages-account-settings-notifications.html │ ├── pages-misc-error.html │ ├── pages-misc-under-maintenance.html │ ├── tables-basic.html │ ├── ui-accordion.html │ ├── ui-alerts.html │ ├── ui-badges.html │ ├── ui-buttons.html │ ├── ui-carousel.html │ ├── ui-collapse.html │ ├── ui-dropdowns.html │ ├── ui-footer.html │ ├── ui-list-groups.html │ ├── ui-modals.html │ ├── ui-navbar.html │ ├── ui-offcanvas.html │ ├── ui-pagination-breadcrumbs.html │ ├── ui-progress.html │ ├── ui-spinners.html │ ├── ui-tabs-pills.html │ ├── ui-toasts.html │ ├── ui-tooltips-popovers.html │ └── ui-typography.html ├── index.html ├── js/ │ ├── bootstrap.js │ ├── helpers.js │ └── menu.js ├── libs/ │ ├── apex-charts/ │ │ ├── apex-charts.scss │ │ └── apexcharts.js │ ├── highlight/ │ │ ├── highlight-github.scss │ │ ├── highlight.js │ │ └── highlight.scss │ ├── jquery/ │ │ └── jquery.js │ ├── masonry/ │ │ └── masonry.js │ ├── perfect-scrollbar/ │ │ ├── perfect-scrollbar.js │ │ └── perfect-scrollbar.scss │ └── popper/ │ └── popper.js ├── package.json ├── scss/ │ ├── _bootstrap-extended/ │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _helpers.scss │ │ ├── _include.scss │ │ ├── _list-group.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _offcanvas.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── forms/ │ │ │ ├── _floating-labels.scss │ │ │ ├── _form-check.scss │ │ │ ├── _form-control.scss │ │ │ ├── _form-range.scss │ │ │ ├── _form-select.scss │ │ │ ├── _input-group.scss │ │ │ └── _labels.scss │ │ ├── helpers/ │ │ │ └── _color-bg.scss │ │ └── mixins/ │ │ ├── _border-radius.scss │ │ ├── _caret.scss │ │ └── _misc.scss │ ├── _bootstrap-extended.scss │ ├── _bootstrap.scss │ ├── _colors.scss │ ├── _components/ │ │ ├── _app-brand.scss │ │ ├── _avatar.scss │ │ ├── _base.scss │ │ ├── _common.scss │ │ ├── _footer.scss │ │ ├── _include.scss │ │ ├── _layout.scss │ │ ├── _menu.scss │ │ ├── _root.scss │ │ ├── _text-divider.scss │ │ └── _variables.scss │ ├── _components.scss │ ├── _custom-styles.scss │ ├── _custom-variables/ │ │ ├── _bootstrap-extended.scss │ │ └── _components.scss │ ├── core.scss │ └── pages/ │ ├── page-auth.scss │ ├── page-icons.scss │ └── page-misc.scss ├── tasks/ │ ├── build.js │ └── prod.js └── webpack.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .browserslistrc ================================================ >= 0.5% last 4 major versions ================================================ FILE: .editorconfig ================================================ # Editor configuration, see http://editorconfig.org root = true [*] charset = utf-8 indent_style = space indent_size = 2 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true [*.md] max_line_length = off trim_trailing_whitespace = false ================================================ FILE: .eslintignore ================================================ **/*.* !js/**/*.js ================================================ FILE: .eslintrc.json ================================================ { "env": { "browser": true, "commonjs": true, "es6": true, "jquery": true }, "plugins": ["prettier"], "extends": ["airbnb-base", "plugin:prettier/recommended"], "rules": { "prettier/prettier": "error", "no-underscore-dangle": "off", "semi": ["error", "never"], "arrow-parens": ["error", "as-needed"], "no-param-reassign": "off", "no-plusplus": [ "error", { "allowForLoopAfterthoughts": true } ], "no-cond-assign": ["error", "except-parens"] } } ================================================ FILE: .gitattributes ================================================ * text eol=lf ## GITATTRIBUTES FOR WEB PROJECTS # # These settings are for any web project. # # Details per file setting: # text These files should be normalized (i.e. convert CRLF to LF). # binary These files are binary and should be left untouched. # # Note that binary is a macro for -text -diff. ###################################################################### # Auto detect ## Handle line endings automatically for files detected as ## text and leave all files detected as binary untouched. ## This will handle all files NOT defined below. * text=auto # Source code *.bash text eol=lf *.bat text eol=crlf *.cmd text eol=crlf *.coffee text *.css text diff=css *.htm text diff=html *.html text diff=html *.inc text *.ini text *.js text *.json text *.jsx text *.less text *.ls text *.map text -diff *.od text *.onlydata text *.php text diff=php *.pl text *.ps1 text eol=crlf *.py text diff=python *.rb text diff=ruby *.sass text *.scm text *.scss text diff=css *.sh text eol=lf .husky/* text eol=lf *.sql text *.styl text *.tag text *.ts text *.tsx text *.xml text *.xhtml text diff=html # Docker Dockerfile text # Documentation *.ipynb text eol=lf *.markdown text diff=markdown *.md text diff=markdown *.mdwn text diff=markdown *.mdown text diff=markdown *.mkd text diff=markdown *.mkdn text diff=markdown *.mdtxt text *.mdtext text *.txt text AUTHORS text CHANGELOG text CHANGES text CONTRIBUTING text COPYING text copyright text *COPYRIGHT* text INSTALL text license text LICENSE text NEWS text readme text *README* text TODO text # Templates *.dot text *.ejs text *.erb text *.haml text *.handlebars text *.hbs text *.hbt text *.jade text *.latte text *.mustache text *.njk text *.phtml text *.svelte text *.tmpl text *.tpl text *.twig text *.vue text # Configs *.cnf text *.conf text *.config text .editorconfig text .env text .gitattributes text .gitconfig text .htaccess text *.lock text -diff package.json text eol=lf package-lock.json text eol=lf -diff pnpm-lock.yaml text eol=lf -diff .prettierrc text yarn.lock text -diff *.toml text *.yaml text *.yml text browserslist text Makefile text makefile text # Heroku Procfile text # Graphics *.ai binary *.bmp binary *.eps binary *.gif binary *.gifv binary *.ico binary *.jng binary *.jp2 binary *.jpg binary *.jpeg binary *.jpx binary *.jxr binary *.pdf binary *.png binary *.psb binary *.psd binary # SVG treated as an asset (binary) by default. # *.svg text # If you want to treat it as binary, # use the following line instead. *.svg binary *.svgz binary *.tif binary *.tiff binary *.wbmp binary *.webp binary # Audio *.kar binary *.m4a binary *.mid binary *.midi binary *.mp3 binary *.ogg binary *.ra binary # Video *.3gpp binary *.3gp binary *.as binary *.asf binary *.asx binary *.avi binary *.fla binary *.flv binary *.m4v binary *.mng binary *.mov binary *.mp4 binary *.mpeg binary *.mpg binary *.ogv binary *.swc binary *.swf binary *.webm binary # Archives *.7z binary *.gz binary *.jar binary *.rar binary *.tar binary *.zip binary # Fonts *.ttf binary *.eot binary *.otf binary *.woff binary *.woff2 binary # Executables *.exe binary *.pyc binary # RC files (like .babelrc or .eslintrc) *.*rc text # Ignore files (like .npmignore or .gitignore) *.*ignore text ================================================ FILE: .github/ISSUE_TEMPLATE/bug.yml ================================================ name: Bug 🐞 description: Report a bug labels: [support, bug] body: - type: markdown attributes: value: | Thanks for taking the time to fill out this bug report! ☺️ - type: textarea attributes: label: Steps to reproduce validations: required: true - type: textarea attributes: label: What is expected? validations: required: true - type: textarea attributes: label: What is actually happening? validations: required: true - type: textarea attributes: label: Additional data value: | ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: false ================================================ FILE: .github/ISSUE_TEMPLATE/feature-request.yml ================================================ name: Feature request ✨ description: Suggest an idea or ask for a feature that you would like to have labels: [support, feature-req] body: - type: markdown attributes: value: | Thanks for letting us know how we can improve our product! ☺️ - type: textarea attributes: label: What problem does this feature solve? validations: required: true - type: textarea attributes: label: What does the proposed solution look like? validations: required: true ================================================ FILE: .github/workflows/handle-new-issue-comment.yml ================================================ name: '💬 Handle new issue comment' on: issue_comment: types: [created] jobs: handle_new_issue_comment: runs-on: ubuntu-latest name: Handle new issue comment steps: - name: Toggle awaiting-reply label uses: jd-solanki/gh-action-toggle-awaiting-reply-label@v2.1.2 with: label: awaiting-reply only-if-label: support ================================================ FILE: .github/workflows/handle-new-issue.yml ================================================ name: 'Handle new issue' on: issues: types: [opened] jobs: handle_new_issue: runs-on: ubuntu-latest name: Handle new issue steps: - name: Find duplicates uses: wow-actions/potential-duplicates@v1.0.8 with: GITHUB_TOKEN: ${{ github.token }} label: duplicate comment: > Potential duplicates: {{#issues}} - #{{ number }} _({{ accuracy }}% Match)_ {{/issues}} ================================================ FILE: .github/workflows/issue-staler.yml ================================================ name: '😶‍🌫️ Close stale issues and PRs' on: schedule: - cron: '30 1 * * *' jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/stale@v4 with: stale-issue-message: 'This issue has been automatically marked as stale because it has no recent activity. It will be closed if no further activity occurs. Thank you for raising the concern.' close-issue-message: 'This issue has been automatically marked as closed because it has no recent activity.' stale-issue-label: 'stale' only-labels: 'awaiting-reply' exempt-issue-labels: 'triage' days-before-stale: 7 days-before-close: 7 ================================================ FILE: .gitignore ================================================ # System Files .DS_Store .AppleDouble .LSOverride # Thumbnails ._* Thumbs.db ehthumbs.db ehthumbs_vista.db # Dump file *.stackdump # Folder config file [Dd]esktop.ini # Windows shortcuts *.lnk # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* # Dependency directories node_modules # Optional npm cache directory .npm # Optional eslint cache .eslintcache # Yarn Integrity file .yarn-integrity # Optional sass cache /.sass-cache gulpfile.tmp.* ################################################################################ ############################### DEVELOPMENT_ONLY ############################### # Excludes generated /dist /build /tmp /temp # Assets # **/assets/vendor # **/static/vendor # HTML files /html-demo /html-starter-demo # Package Lock files /package-lock.json ================================================ FILE: .npmrc ================================================ legacy-peer-deps = true ================================================ FILE: .prettierignore ================================================ dist node_modules build ================================================ FILE: .prettierrc.json ================================================ { "arrowParens": "avoid", "bracketSpacing": true, "bracketSameLine": true, "htmlWhitespaceSensitivity": "css", "insertPragma": false, "jsxSingleQuote": true, "printWidth": 120, "proseWrap": "preserve", "quoteProps": "as-needed", "requirePragma": false, "semi": true, "singleQuote": true, "tabWidth": 2, "trailingComma": "none", "useTabs": false, "endOfLine": "lf", "embeddedLanguageFormatting": "auto", "overrides": [ { "files": [ "js/**/*.js" ], "options": { "semi": false } } ] } ================================================ FILE: .stylelintignore ================================================ dist node_modules build _temp/ ================================================ FILE: .stylelintrc.json ================================================ { "extends": [ "stylelint-config-standard-scss", "stylelint-config-idiomatic-order", "@stylistic/stylelint-config" ], "plugins": [ "stylelint-use-logical-spec", "@stylistic/stylelint-plugin" ], "rules": { "alpha-value-notation": null, "at-rule-empty-line-before": null, "block-no-empty": null, "color-function-notation": null, "color-named": "never", "custom-property-empty-line-before": null, "custom-property-pattern": null, "declaration-block-no-redundant-longhand-properties": null, "declaration-empty-line-before": null, "declaration-no-important": null, "font-family-no-missing-generic-family-keyword": [ true, { "ignoreFontFamilies": [ "boxicons", "tabler-icons", "remix-icons" ] } ], "font-weight-notation": [ "numeric", { "ignore": [ "relative" ] } ], "function-url-no-scheme-relative": true, "liberty/use-logical-spec": true, "media-feature-range-notation": null, "media-query-no-invalid": null, "no-descending-specificity": null, "no-invalid-double-slash-comments": true, "no-invalid-position-at-import-rule": null, "number-max-precision": null, "rule-empty-line-before": null, "selector-class-pattern": null, "selector-id-pattern": null, "selector-max-attribute": 2, "selector-max-id": 1, "selector-max-specificity": null, "selector-not-notation": null, "scss/at-extend-no-missing-placeholder": null, "scss/at-function-named-arguments": "never", "scss/at-if-closing-brace-newline-after": null, "scss/at-if-closing-brace-space-after": null, "scss/at-if-no-null": null, "scss/at-mixin-pattern": null, "scss/at-mixin-argumentless-call-parentheses": "always", "scss/at-rule-conditional-no-parentheses": null, "scss/comment-no-empty": null, "scss/dimension-no-non-numeric-values": true, "scss/dollar-variable-empty-line-before": null, "scss/dollar-variable-pattern": null, "scss/double-slash-comment-empty-line-before": null, "scss/double-slash-comment-whitespace-inside": null, "scss/function-quote-no-quoted-strings-inside": null, "scss/media-feature-value-dollar-variable": null, "scss/no-global-function-names": null, "@stylistic/at-rule-name-space-after": "always", "@stylistic/at-rule-semicolon-space-before": "never", "@stylistic/block-closing-brace-empty-line-before": null, "@stylistic/block-closing-brace-newline-after": [ "always", { "ignoreAtRules": [ "if", "else" ] } ], "@stylistic/block-opening-brace-space-before": null, "@stylistic/declaration-block-semicolon-newline-before": "never-multi-line", "@stylistic/indentation": 2, "@stylistic/max-empty-lines": 2, "@stylistic/max-line-length": [ 220, { "ignore": "comments" } ], "@stylistic/no-eol-whitespace": true, "@stylistic/number-leading-zero": "never", "@stylistic/selector-list-comma-newline-before": "never-multi-line", "@stylistic/selector-list-comma-space-after": "always-single-line", "@stylistic/selector-list-comma-space-before": "never-single-line", "@stylistic/unicode-bom": "never" }, "overrides": [ { "files": [ "**/_bootstrap-extended/**/*.scss" ], "rules": { "declaration-property-value-disallowed-list": { "border": "none", "outline": "none" }, "function-disallowed-list": [ "lighten", "darken" ], "property-disallowed-list": [ "border-radius", "border-top-left-radius", "border-top-right-radius", "border-bottom-right-radius", "border-bottom-left-radius", "transition" ], "scss/dollar-variable-default": [ true, { "ignore": "local" } ], "scss/selector-no-union-class-name": true } } ] } ================================================ FILE: .vscode/extensions.json ================================================ { "recommendations": [ "esbenp.prettier-vscode", "editorconfig.editorconfig", "dbaeumer.vscode-eslint", "formulahendry.auto-close-tag", "formulahendry.auto-rename-tag", "abusaidm.html-snippets", "syler.sass-indented", "mrmlnc.vscode-scss", "gamunu.vscode-yarn", "zignd.html-css-class-completion", "stylelint.vscode-stylelint", ] } ================================================ FILE: .vscode/settings.json ================================================ { "editor.wordWrap": "off", "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll": "explicit" }, "files.trimFinalNewlines": true, "diffEditor.ignoreTrimWhitespace": true, "search.exclude": { "**/node_modules": true, "*.min.js": true, "*.min.css": true }, // JS "javascript.updateImportsOnFileMove.enabled": "always", // JSON "[json]": { "editor.defaultFormatter": "vscode.json-language-features" }, "[jsonc]": { "editor.defaultFormatter": "vscode.json-language-features" }, // Extension: Prettier "prettier.requireConfig": true, "prettier.configPath": ".prettierrc.json", "prettier.ignorePath": ".prettierignore", "[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[markdown]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, // Extension: Stylelint "stylelint.packageManager": "pnpm", "stylelint.validate": [ "scss" ], "[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, // Extension: Git "git.rebaseWhenSync": true, "git.enableSmartCommit": true, // Extension: ESLint "eslint.packageManager": "yarn", "eslint.format.enable": true, // "eslint.workingDirectories": [ // "src", // "dev" // ], "eslint.options": { "overrideConfigFile": ".eslintrc.json" }, "eslint.validate": [ "vue", "html", "javascript", "typescript", "javascriptreact", "typescriptreact" ], // Extension: npm "npm.packageManager": "yarn", } ================================================ FILE: CHANGELOG.md ================================================ # Changelog All notable changes to this template will be documented in this file. ## v3.0.0 (2025-02-25) ### Added - New Design Alignments - New spacer & utility classes ### Updated - SCSS structure - Build and extend in real-time with CSS variables - Fonts icons with SVG icons using iconify - Documentation ### Fixed - UI improvements & bug fixes ## v2.0.0 (2024-07-25) ### Added - New Design Alignments - New spacer & utility classes ### Updated - Bootstrap 5.3.3 - Documentation ### Fixed - UI improvements & bug fixes ## v1.2.1 (2023-11-09) ### Fixed - Minor improvements & Bugfixes ## v1.2.0 (2023-11-01) ### Updated - Updated Bootstrap to latest version(5.3.2) - Updated SCSS & Mixins as per Bootstrap 5.3.2 ### Fixed - Carousel HTML Structure as per latest Bootstrap - Minor improvements & Bugfixes ## v1.1.1 - (2023-09-27) ### Fixed - Minor Improvements ## v1.1.0 - (2023-09-13) ### Fixed - Minor bug fixes and UI improvements ### Updated - Updated Third party libraries - Updated Font weights for better appearance ### Added - Added highlight border on hover for inputs ## v1.0.1 - (2022-04-29) ### Fixed - Minor CSS fixes and improvements ## v1.0.0 - (2022-02-11) ### Added - Initial Release ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2022 ThemeSelection Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: LICENSE.md ================================================ MIT License Copyright (c) 2021 [ThemeSelection](https://themeselection.com/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================

sneat-logo

Sneat - Free Bootstrap 5 HTML Admin Template

Most Powerful & Comprehensive Free Bootstrap 5 HTML Admin Dashboard Template built for developers!

![GitHub](https://img.shields.io/github/license/themeselection/sneat-html-admin-template-free) ![GitHub release (latest by date)](https://img.shields.io/github/v/release/themeselection/sneat-html-admin-template-free) ![GitHub issues](https://img.shields.io/github/issues/themeselection/sneat-html-admin-template-free) ![GitHub closed issues](https://img.shields.io/github/issues-closed/themeselection/sneat-html-admin-template-free) ![Twitter Follow](https://img.shields.io/twitter/follow/Theme_Selection?style=social) [![Sneat - Bootstrap 5 HTML Admin Template Demo Screenshot](https://cdn.themeselection.com/ts-assets/sneat/sneat-bootstrap-html-admin-template-free/marketing/sneat-html-free-banner-github.png)](https://themeselection.com/item/sneat-dashboard-free-bootstrap/) ## Introduction 🚀 If you’re a developer looking for the most Powerful & comprehensive [**Free Bootstrap 5 HTML Admin Template**](https://themeselection.com/item/sneat-free-bootstrap-html-admin-template/) built for developers, rich with features, and highly customizable look no further than Sneat. We’ve followed the highest industry standards to bring you the very best admin template that is not only fast and easy to use but highly scalable. Offering ultimate convenience and flexibility, you’ll be able to build whatever application you want with very little hassle. Build premium quality applications with ease. Use our innovative [bootstrap admin template](https://themeselection.com/item/category/bootstrap-admin-templates/) to create eye-catching, high-quality WebApps. Your apps will be completely responsive, ensuring they’ll look stunning and function flawlessly on desktops, tablets, and mobile devices. [View Demo](https://demos.themeselection.com/sneat-bootstrap-html-admin-template-free/html/) ## Installation ⚒️ Automate time-consuming or repetitive tasks in your development workflow using Gulp 🥤 > Please note, that the use of Node, Webpack & Gulp, and their advanced settings are totally optional. You can use and customize the template without using them too. Installing Node & Gulp and running it is super easy in Sneat, please follow these steps and you should be ready to rock 🤘 1. First of all, make sure you have installed [Node](https://nodejs.org/en/) (LTS). If Node.js is already installed in your system, make sure the installed version is `LTS` and jump to step 2 2. Install the Gulp CLI: Open Terminal/Command Prompt and run the following command and wait until it finishes. If you have already installed Gulp CLI, you can skip this step and jump to step 3. ```bash npm install --global gulp-cli ``` 3. Navigate to the Sneat root directory and run the following command to install our local dependencies listed in `package.json`. You can use `npm` OR `yarn` as per your preference. > It is recommended to use Yarn ```bash # For npm npm install --legacy-peer-deps # For Yarn yarn ``` 4. Now, that you are ready to run `npm` tasks, the below command will start the server and watch the code using [browsersync](https://browsersync.io/). Open [http://localhost:3000/](http://localhost:3000/) to check your development 🚀. ```bash # npm npm run serve # yarn yarn serve ``` ## Available Tasks 🧑‍💻 Open the console/terminal, go to the Sneat root directory, and run `npm run {task_name}`.i.e. To generate a build run `npm run build`. Run a task with the specified environment(development/production) just execute the task with the `--env={environment}` option, i.e. `npm run build --env=production`. > **Tip:** Use the `npm run` command to list all predefined npm tasks from the `package.json` file. ## What's Included 📦 - Dashboard - Layouts - Without menu - Without Navbar - Container - Fluid - Blank - Pages - Account Settings - Login - Register - Forgot Password - Error - Under Maintenance - Cards - User Interface - **All Bootstrap Components** - Extended UI - Perfect Scrollbar - Text Divider - Boxicons - Form Elements - Basic Inputs - Input Groups - Form Layout - Vertical Form - Horizontal Form - Tables ## What's in Premium Version 💎 | Sneat Free Version | Sneat Premium Version | | ----------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | | [Demo](https://themeselection.com/demo/sneat-bootstrap-html-admin-template-free/html/) | [Demo](https://themeselection.com/demo/sneat-bootstrap-html-admin-template/html/vertical-menu-template/) | | [Download](https://themeselection.com/products/sneat-free-bootstrap-html-admin-template/) | [Purchase](https://themeselection.com/products/sneat-bootstrap-html-admin-template/) | | Single vertical Menu | Vertical Menu + Horizontal Menu | | Simple Light Style | Light & Dark Style | | Default Theme | Default, Semi Dark & Bordered Themes | | Fixed Layout(Menu) | Fixed & Static Layout(Menu) | | 1 Simple Dashboard | 3 Niche Dashboards | | - | Multiple Ready Applications like Calendar, Invoice, Users List, Users View, Roles and Permission, etc. | | Simple From Elements | Advance form elements, validation & form wizard | | Basic Cards | Basic, Advance, Statistics, Analytics, Gamification and Actions Cards | | Basic User Interface(Components) | Advance and Custom User Interfaces(Components) | | Two Extended Components | Twelve Ready to use Extended Components | | - | Quick Search - Quickly navigate between pages (w/ hotkey support) | | Basic Pages | Authentication Pages in 2 Variants + Ready-to-use pages like User Profile, Account Settings, FAQ, Help Center, Pricing, Misc, etc. | | - | 3D Characters + Illustrations | | Basic tables | Advanced tables | | - | Quick customization using theme config file | | - | Leaflet Maps | | 1 Chart Library | 2 Chart Libraries | | - | Multiple Navbar & Menu Options | | - | Starter-kit | | - | Internationalization support | | - | RTL Support | | Regular Support | Priority Support | | Detailed Documentation | Detailed Documentation | ## Documentation 📜 Check GitHub [Wiki](https://github.com/themeselection/sneat-bootstrap-html-admin-template-free/wiki) of this repository. Check out our live [Documentation](https://themeselection.com/demo/sneat-bootstrap-html-admin-template/documentation/) ## Browser Support 🖥️ ![chrome](https://github.com/nuxt/nuxt/assets/47495003/bbb6d7b0-2db6-4af4-abdc-a73de71dd287)   ![firefox](https://github.com/nuxt/nuxt/assets/47495003/bca1f2d0-d597-453b-8525-5c94e36bfc33)   ![safari](https://github.com/nuxt/nuxt/assets/47495003/8ecbb395-78fb-40fb-bb59-7301bf8a7e5d)   ![Microsoft Edge](https://github.com/nuxt/nuxt/assets/47495003/f945821b-0cbd-464d-8103-824d4d5c4e9a) \*_It also supports other browser which implemented latest CSS standards_ ## Contributing 🦸 Contributions are always welcome and recommended! Here is how: - Fork the repository ([here is the guide](https://docs.github.com/en/get-started/quickstart/fork-a-repo)). - Clone to your machine `git clone https://github.com/YOUR_USERNAME/REPO_URL` Make your changes - Create a pull request ### Contribution Requirements 🧰 - When you contribute, you agree to give a non-exclusive license to ThemeSelection to use that contribution in any context as we (ThemeSelection) see appropriate. - If you use content provided by another party, it must be appropriately licensed using an open source license. - Contributions are only accepted through Github pull requests. - Finally, contributed code must work in all supported browsers (see above for browser support). ## Changelog 📆 Please refer to the [CHANGELOG](https://github.com/themeselection/sneat-bootstrap-html-admin-template-free/blob/main/CHANGELOG.md) file. We will add detailed release notes to each new release. ## Support 🧑🏻‍💻 For free products, enjoy community support via GitHub issues. Upgrade to Premium for dedicated support from our expert team. ## License © - Copyright © [ThemeSelection](https://themeselection.com/) - Licensed under [MIT](LICENSE) - All our free items are Open Source and licensed under MIT. You can use our free items for personal as well as commercial purposes. We just need an attribution from your end. Copy the below link and paste it at the footer of your web application or project. ```html ThemeSelection ``` ## Also Available In

html   html   html_laravel   html_django   net_core   next.js   react   vue   vue_laravel   nuxt   angular  

## Looking For Premium Admin Templates ?? 👀 **[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use **Fully Coded Dashboard Templates & UI Kits** to create your applications faster! - [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/) - [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/) - [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/) - [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/) - [React (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/) - [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/) - [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) If you want to [Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/). ## Useful Links 🎁 - [Vue CheatSheet](https://vue-cheatsheet.themeselection.com/) - [Freebies](https://themeselection.com/item/category/freebies/) - [Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/) - [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) - [FlyonUI](https://flyonui.com/) - [JetShip](https://demos.themeselection.com/jetship-laravel-starter-kit/) ## Social Media :earth_africa: - [Twitter](https://twitter.com/Theme_Selection) - [Facebook](https://www.facebook.com/ThemeSelections/) - [Pinterest](https://pinterest.com/themeselect/) - [Instagram](https://www.instagram.com/themeselection/) - [Discord](https://discord.gg/kBHkY7DekX) - [YouTube](https://www.youtube.com/channel/UCuryo5s0CW4aP83itLjIdZg) ================================================ FILE: assets/css/demo.css ================================================ /* * demo.css * File include item demo only specific css only ******************************************************************************/ .menu .app-brand.demo { height: 64px; margin-top: 12px; } .app-brand-logo.demo svg { width: 22px; height: 38px; } .app-brand-text.demo { font-size: 1.75rem; letter-spacing: -0.5px; } /* ! For .layout-navbar-fixed added fix padding top to .layout-page */ /* Detached navbar */ .layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page { padding-top: 74px !important; } /* Default navbar */ .layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page { padding-top: 64px !important; } .docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page, .docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page { padding-top: 62px !important; } /* Navbar page z-index issue solution */ .content-wrapper .navbar { z-index: auto; } /* * Content ******************************************************************************/ .demo-blocks > * { display: block !important; } .demo-inline-spacing > * { margin: 1rem 0.375rem 0 0 !important; } /* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */ .demo-vertical-spacing > * { margin-top: 1rem !important; margin-bottom: 0 !important; } .demo-vertical-spacing.demo-only-element > :first-child { margin-top: 0 !important; } .demo-vertical-spacing-lg > * { margin-top: 1.875rem !important; margin-bottom: 0 !important; } .demo-vertical-spacing-lg.demo-only-element > :first-child { margin-top: 0 !important; } .demo-vertical-spacing-xl > * { margin-top: 5rem !important; margin-bottom: 0 !important; } .demo-vertical-spacing-xl.demo-only-element > :first-child { margin-top: 0 !important; } /* Dropdown buttons going out of small screens */ @media (max-width: 576px) { #dropdown-variation-demo .btn-group .text-truncate { width: 231px; position: relative; } #dropdown-variation-demo .btn-group .text-truncate::after { position: absolute; top: 45%; right: 0.65rem; } } /* * Layout demo ******************************************************************************/ .layout-demo-wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-top: 1rem; } .layout-demo-placeholder img { width: 900px; } .layout-demo-info { text-align: center; margin-top: 1rem; } ================================================ FILE: assets/js/config.js ================================================ /** * Config * ------------------------------------------------------------------------------------- * ! IMPORTANT: Make sure you clear the browser local storage In order to see the config changes in the template. * ! To clear local storage: (https://www.leadshook.com/help/how-to-clear-local-storage-in-google-chrome-browser/). */ 'use strict'; /* JS global variables !Please use the hex color code (#000) here. Don't use rgba(), hsl(), etc */ window.config = { colors: { primary: window.Helpers.getCssVar('primary'), secondary: window.Helpers.getCssVar('secondary'), success: window.Helpers.getCssVar('success'), info: window.Helpers.getCssVar('info'), warning: window.Helpers.getCssVar('warning'), danger: window.Helpers.getCssVar('danger'), dark: window.Helpers.getCssVar('dark'), black: window.Helpers.getCssVar('pure-black'), white: window.Helpers.getCssVar('white'), cardColor: window.Helpers.getCssVar('paper-bg'), bodyBg: window.Helpers.getCssVar('body-bg'), bodyColor: window.Helpers.getCssVar('body-color'), headingColor: window.Helpers.getCssVar('heading-color'), textMuted: window.Helpers.getCssVar('secondary-color'), borderColor: window.Helpers.getCssVar('border-color') }, colors_label: { primary: window.Helpers.getCssVar('primary-bg-subtle'), secondary: window.Helpers.getCssVar('secondary-bg-subtle'), success: window.Helpers.getCssVar('success-bg-subtle'), info: window.Helpers.getCssVar('info-bg-subtle'), warning: window.Helpers.getCssVar('warning-bg-subtle'), danger: window.Helpers.getCssVar('danger-bg-subtle'), dark: window.Helpers.getCssVar('dark-bg-subtle') }, fontFamily: window.Helpers.getCssVar('font-family-base'), }; ================================================ FILE: assets/js/dashboards-analytics.js ================================================ /** * Dashboard Analytics */ 'use strict'; document.addEventListener('DOMContentLoaded', function (e) { let cardColor, headingColor, legendColor, labelColor, shadeColor, borderColor, fontFamily; cardColor = config.colors.cardColor; headingColor = config.colors.headingColor; legendColor = config.colors.bodyColor; labelColor = config.colors.textMuted; borderColor = config.colors.borderColor; fontFamily = config.fontFamily; // Order Area Chart // -------------------------------------------------------------------- const orderAreaChartEl = document.querySelector('#orderChart'), orderAreaChartConfig = { chart: { height: 80, type: 'area', toolbar: { show: false }, sparkline: { enabled: true } }, markers: { size: 6, colors: 'transparent', strokeColors: 'transparent', strokeWidth: 4, discrete: [ { fillColor: cardColor, seriesIndex: 0, dataPointIndex: 6, strokeColor: config.colors.success, strokeWidth: 2, size: 6, radius: 8 } ], offsetX: -1, hover: { size: 7 } }, grid: { show: false, padding: { top: 15, right: 7, left: 0 } }, colors: [config.colors.success], fill: { type: 'gradient', gradient: { shadeIntensity: 1, opacityFrom: 0.4, gradientToColors: [config.colors.cardColor], opacityTo: 0.4, stops: [0, 100] } }, dataLabels: { enabled: false }, stroke: { width: 2, curve: 'smooth' }, series: [ { data: [180, 175, 275, 140, 205, 190, 295] } ], xaxis: { show: false, lines: { show: false }, labels: { show: false }, stroke: { width: 0 }, axisBorder: { show: false } }, yaxis: { stroke: { width: 0 }, show: false } }; if (typeof orderAreaChartEl !== undefined && orderAreaChartEl !== null) { const orderAreaChart = new ApexCharts(orderAreaChartEl, orderAreaChartConfig); orderAreaChart.render(); } // Total Revenue Report Chart - Bar Chart // -------------------------------------------------------------------- const totalRevenueChartEl = document.querySelector('#totalRevenueChart'), totalRevenueChartOptions = { series: [ { name: new Date().getFullYear() - 1, data: [18, 7, 15, 29, 18, 12, 9] }, { name: new Date().getFullYear() - 2, data: [-13, -18, -9, -14, -8, -17, -15] } ], chart: { height: 300, stacked: true, type: 'bar', toolbar: { show: false } }, plotOptions: { bar: { horizontal: false, columnWidth: '30%', borderRadius: 8, startingShape: 'rounded', endingShape: 'rounded', borderRadiusApplication: 'around' } }, colors: [config.colors.primary, config.colors.info], dataLabels: { enabled: false }, stroke: { curve: 'smooth', width: 6, lineCap: 'round', colors: [cardColor] }, legend: { show: true, horizontalAlign: 'left', position: 'top', markers: { size: 4, radius: 12, shape: 'circle', strokeWidth: 0 }, fontSize: '13px', fontFamily: fontFamily, fontWeight: 400, labels: { colors: legendColor, useSeriesColors: false }, itemMargin: { horizontal: 10 } }, grid: { strokeDashArray: 7, borderColor: borderColor, padding: { top: 0, bottom: -8, left: 20, right: 20 } }, fill: { opacity: [1, 1] }, xaxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'], labels: { style: { fontSize: '13px', fontFamily: fontFamily, colors: labelColor } }, axisTicks: { show: false }, axisBorder: { show: false } }, yaxis: { labels: { style: { fontSize: '13px', fontFamily: fontFamily, colors: labelColor } } }, responsive: [ { breakpoint: 1700, options: { plotOptions: { bar: { borderRadius: 10, columnWidth: '35%' } } } }, { breakpoint: 1440, options: { plotOptions: { bar: { borderRadius: 12, columnWidth: '43%' } } } }, { breakpoint: 1300, options: { plotOptions: { bar: { borderRadius: 11, columnWidth: '45%' } } } }, { breakpoint: 1200, options: { plotOptions: { bar: { borderRadius: 11, columnWidth: '37%' } } } }, { breakpoint: 1040, options: { plotOptions: { bar: { borderRadius: 12, columnWidth: '45%' } } } }, { breakpoint: 991, options: { plotOptions: { bar: { borderRadius: 12, columnWidth: '33%' } } } }, { breakpoint: 768, options: { plotOptions: { bar: { borderRadius: 11, columnWidth: '28%' } } } }, { breakpoint: 640, options: { plotOptions: { bar: { borderRadius: 11, columnWidth: '30%' } } } }, { breakpoint: 576, options: { plotOptions: { bar: { borderRadius: 10, columnWidth: '38%' } } } }, { breakpoint: 440, options: { plotOptions: { bar: { borderRadius: 10, columnWidth: '50%' } } } }, { breakpoint: 380, options: { plotOptions: { bar: { borderRadius: 9, columnWidth: '60%' } } } } ], states: { hover: { filter: { type: 'none' } }, active: { filter: { type: 'none' } } } }; if (typeof totalRevenueChartEl !== undefined && totalRevenueChartEl !== null) { const totalRevenueChart = new ApexCharts(totalRevenueChartEl, totalRevenueChartOptions); totalRevenueChart.render(); } // Growth Chart - Radial Bar Chart // -------------------------------------------------------------------- const growthChartEl = document.querySelector('#growthChart'), growthChartOptions = { series: [78], labels: ['Growth'], chart: { height: 200, type: 'radialBar' }, plotOptions: { radialBar: { size: 150, offsetY: 10, startAngle: -150, endAngle: 150, hollow: { size: '55%' }, track: { background: cardColor, strokeWidth: '100%' }, dataLabels: { name: { offsetY: 15, color: legendColor, fontSize: '15px', fontWeight: '500', fontFamily: fontFamily }, value: { offsetY: -25, color: headingColor, fontSize: '22px', fontWeight: '500', fontFamily: fontFamily } } } }, colors: [config.colors.primary], fill: { type: 'gradient', gradient: { shade: 'dark', shadeIntensity: 0.5, gradientToColors: [config.colors.primary], inverseColors: true, opacityFrom: 1, opacityTo: 0.6, stops: [30, 70, 100] } }, stroke: { dashArray: 5 }, grid: { padding: { top: -35, bottom: -10 } }, states: { hover: { filter: { type: 'none' } }, active: { filter: { type: 'none' } } } }; if (typeof growthChartEl !== undefined && growthChartEl !== null) { const growthChart = new ApexCharts(growthChartEl, growthChartOptions); growthChart.render(); } // Revenue Bar Chart // -------------------------------------------------------------------- const revenueBarChartEl = document.querySelector('#revenueChart'), revenueBarChartConfig = { chart: { height: 95, type: 'bar', toolbar: { show: false } }, plotOptions: { bar: { barHeight: '80%', columnWidth: '75%', startingShape: 'rounded', endingShape: 'rounded', borderRadius: 4, distributed: true } }, grid: { show: false, padding: { top: -20, bottom: -12, left: -10, right: 0 } }, colors: [ config.colors.primary, config.colors.primary, config.colors.primary, config.colors.primary, config.colors.primary, config.colors.primary, config.colors.primary ], dataLabels: { enabled: false }, series: [ { data: [40, 95, 60, 45, 90, 50, 75] } ], legend: { show: false }, xaxis: { categories: ['M', 'T', 'W', 'T', 'F', 'S', 'S'], axisBorder: { show: false }, axisTicks: { show: false }, labels: { style: { colors: labelColor, fontSize: '13px' } } }, yaxis: { labels: { show: false } } }; if (typeof revenueBarChartEl !== undefined && revenueBarChartEl !== null) { const revenueBarChart = new ApexCharts(revenueBarChartEl, revenueBarChartConfig); revenueBarChart.render(); } // Profit Report Line Chart // -------------------------------------------------------------------- const profileReportChartEl = document.querySelector('#profileReportChart'), profileReportChartConfig = { chart: { height: 75, width: 240, type: 'line', toolbar: { show: false }, dropShadow: { enabled: true, top: 10, left: 5, blur: 3, color: config.colors.warning, opacity: 0.15 }, sparkline: { enabled: true } }, grid: { show: false, padding: { right: 8 } }, colors: [config.colors.warning], dataLabels: { enabled: false }, stroke: { width: 5, curve: 'smooth' }, series: [ { data: [110, 270, 145, 245, 205, 285] } ], xaxis: { show: false, lines: { show: false }, labels: { show: false }, axisBorder: { show: false } }, yaxis: { show: false }, responsive: [ { breakpoint: 1700, options: { chart: { width: 200 } } }, { breakpoint: 1579, options: { chart: { width: 180 } } }, { breakpoint: 1500, options: { chart: { width: 160 } } }, { breakpoint: 1450, options: { chart: { width: 140 } } }, { breakpoint: 1400, options: { chart: { width: 240 } } } ] }; if (typeof profileReportChartEl !== undefined && profileReportChartEl !== null) { const profileReportChart = new ApexCharts(profileReportChartEl, profileReportChartConfig); profileReportChart.render(); } // Order Statistics Chart // -------------------------------------------------------------------- const chartOrderStatistics = document.querySelector('#orderStatisticsChart'), orderChartConfig = { chart: { height: 165, width: 136, type: 'donut', offsetX: 15 }, labels: ['Electronic', 'Sports', 'Decor', 'Fashion'], series: [50, 85, 25, 40], colors: [config.colors.success, config.colors.primary, config.colors.secondary, config.colors.info], stroke: { width: 5, colors: [cardColor] }, dataLabels: { enabled: false, formatter: function (val, opt) { return parseInt(val) + '%'; } }, legend: { show: false }, grid: { padding: { top: 0, bottom: 0, right: 15 } }, states: { hover: { filter: { type: 'none' } }, active: { filter: { type: 'none' } } }, plotOptions: { pie: { donut: { size: '75%', labels: { show: true, value: { fontSize: '1.125rem', fontFamily: fontFamily, fontWeight: 500, color: headingColor, offsetY: -17, formatter: function (val) { return parseInt(val) + '%'; } }, name: { offsetY: 17, fontFamily: fontFamily }, total: { show: true, fontSize: '13px', color: legendColor, label: 'Weekly', formatter: function (w) { return '38%'; } } } } } } }; if (typeof chartOrderStatistics !== undefined && chartOrderStatistics !== null) { const statisticsChart = new ApexCharts(chartOrderStatistics, orderChartConfig); statisticsChart.render(); } // Income Chart - Area chart // -------------------------------------------------------------------- const incomeChartEl = document.querySelector('#incomeChart'), incomeChartConfig = { series: [ { data: [21, 30, 22, 42, 26, 35, 29] } ], chart: { height: 200, parentHeightOffset: 0, parentWidthOffset: 0, toolbar: { show: false }, type: 'area' }, dataLabels: { enabled: false }, stroke: { width: 3, curve: 'smooth' }, legend: { show: false }, markers: { size: 6, colors: 'transparent', strokeColors: 'transparent', strokeWidth: 4, discrete: [ { fillColor: config.colors.white, seriesIndex: 0, dataPointIndex: 6, strokeColor: config.colors.primary, strokeWidth: 2, size: 6, radius: 8 } ], offsetX: -1, hover: { size: 7 } }, colors: [config.colors.primary], fill: { type: 'gradient', gradient: { shadeIntensity: 1, opacityFrom: 0.3, gradientToColors: [config.colors.cardColor], opacityTo: 0.3, stops: [0, 100] } }, grid: { borderColor: borderColor, strokeDashArray: 8, padding: { top: -20, bottom: -8, left: 0, right: 8 } }, xaxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'], axisBorder: { show: false }, axisTicks: { show: false }, labels: { show: true, style: { fontSize: '13px', colors: labelColor } } }, yaxis: { labels: { show: false }, min: 10, max: 50, tickAmount: 4 } }; if (typeof incomeChartEl !== undefined && incomeChartEl !== null) { const incomeChart = new ApexCharts(incomeChartEl, incomeChartConfig); incomeChart.render(); } // Expenses Mini Chart - Radial Chart // -------------------------------------------------------------------- const weeklyExpensesEl = document.querySelector('#expensesOfWeek'), weeklyExpensesConfig = { series: [65], chart: { width: 60, height: 60, type: 'radialBar' }, plotOptions: { radialBar: { startAngle: 0, endAngle: 360, strokeWidth: '8', hollow: { margin: 2, size: '40%' }, track: { background: borderColor }, dataLabels: { show: true, name: { show: false }, value: { formatter: function (val) { return '$' + parseInt(val); }, offsetY: 5, color: legendColor, fontSize: '12px', fontFamily: fontFamily, show: true } } } }, fill: { type: 'solid', colors: config.colors.primary }, stroke: { lineCap: 'round' }, grid: { padding: { top: -10, bottom: -15, left: -10, right: -10 } }, states: { hover: { filter: { type: 'none' } }, active: { filter: { type: 'none' } } } }; if (typeof weeklyExpensesEl !== undefined && weeklyExpensesEl !== null) { const weeklyExpenses = new ApexCharts(weeklyExpensesEl, weeklyExpensesConfig); weeklyExpenses.render(); } }); ================================================ FILE: assets/js/extended-ui-perfect-scrollbar.js ================================================ /** * Perfect Scrollbar */ 'use strict'; document.addEventListener('DOMContentLoaded', function () { (function () { const verticalExample = document.getElementById('vertical-example'), horizontalExample = document.getElementById('horizontal-example'), horizVertExample = document.getElementById('both-scrollbars-example'); // Vertical Example // -------------------------------------------------------------------- if (verticalExample) { new PerfectScrollbar(verticalExample, { wheelPropagation: false }); } // Horizontal Example // -------------------------------------------------------------------- if (horizontalExample) { new PerfectScrollbar(horizontalExample, { wheelPropagation: false, suppressScrollY: true }); } // Both vertical and Horizontal Example // -------------------------------------------------------------------- if (horizVertExample) { new PerfectScrollbar(horizVertExample, { wheelPropagation: false }); } })(); }); ================================================ FILE: assets/js/form-basic-inputs.js ================================================ /** * Form Basic Inputs */ 'use strict'; (function () { // Indeterminate checkbox const checkbox = document.getElementById('defaultCheck2'); checkbox.indeterminate = true; })(); ================================================ FILE: assets/js/main.js ================================================ /** * Main */ 'use strict'; let menu, animate; document.addEventListener('DOMContentLoaded', function () { // class for ios specific styles if (navigator.userAgent.match(/iPhone|iPad|iPod/i)) { document.body.classList.add('ios'); } }); (function () { // Initialize menu //----------------- let layoutMenuEl = document.querySelectorAll('#layout-menu'); layoutMenuEl.forEach(function (element) { menu = new Menu(element, { orientation: 'vertical', closeChildren: false }); // Change parameter to true if you want scroll animation window.Helpers.scrollToActive((animate = false)); window.Helpers.mainMenu = menu; }); // Initialize menu togglers and bind click on each let menuToggler = document.querySelectorAll('.layout-menu-toggle'); menuToggler.forEach(item => { item.addEventListener('click', event => { event.preventDefault(); window.Helpers.toggleCollapsed(); }); }); // Display menu toggle (layout-menu-toggle) on hover with delay let delay = function (elem, callback) { let timeout = null; elem.onmouseenter = function () { // Set timeout to be a timer which will invoke callback after 300ms (not for small screen) if (!Helpers.isSmallScreen()) { timeout = setTimeout(callback, 300); } else { timeout = setTimeout(callback, 0); } }; elem.onmouseleave = function () { // Clear any timers set to timeout document.querySelector('.layout-menu-toggle').classList.remove('d-block'); clearTimeout(timeout); }; }; if (document.getElementById('layout-menu')) { delay(document.getElementById('layout-menu'), function () { // not for small screen if (!Helpers.isSmallScreen()) { document.querySelector('.layout-menu-toggle').classList.add('d-block'); } }); } // Display in main menu when menu scrolls let menuInnerContainer = document.getElementsByClassName('menu-inner'), menuInnerShadow = document.getElementsByClassName('menu-inner-shadow')[0]; if (menuInnerContainer.length > 0 && menuInnerShadow) { menuInnerContainer[0].addEventListener('ps-scroll-y', function () { if (this.querySelector('.ps__thumb-y').offsetTop) { menuInnerShadow.style.display = 'block'; } else { menuInnerShadow.style.display = 'none'; } }); } // Init helpers & misc // -------------------- // Init BS Tooltip const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')); tooltipTriggerList.map(function (tooltipTriggerEl) { return new bootstrap.Tooltip(tooltipTriggerEl); }); // Accordion active class const accordionActiveFunction = function (e) { if (e.type == 'show.bs.collapse' || e.type == 'show.bs.collapse') { e.target.closest('.accordion-item').classList.add('active'); } else { e.target.closest('.accordion-item').classList.remove('active'); } }; const accordionTriggerList = [].slice.call(document.querySelectorAll('.accordion')); const accordionList = accordionTriggerList.map(function (accordionTriggerEl) { accordionTriggerEl.addEventListener('show.bs.collapse', accordionActiveFunction); accordionTriggerEl.addEventListener('hide.bs.collapse', accordionActiveFunction); }); // Auto update layout based on screen size window.Helpers.setAutoUpdate(true); // Toggle Password Visibility window.Helpers.initPasswordToggle(); // Speech To Text window.Helpers.initSpeechToText(); // Manage menu expanded/collapsed with templateCustomizer & local storage //------------------------------------------------------------------ // If current layout is horizontal OR current window screen is small (overlay menu) than return from here if (window.Helpers.isSmallScreen()) { return; } // If current layout is vertical and current window screen is > small // Auto update menu collapsed/expanded based on the themeConfig window.Helpers.setCollapsed(true, false); })(); // Utils function isMacOS() { return /Mac|iPod|iPhone|iPad/.test(navigator.userAgent); } ================================================ FILE: assets/js/pages-account-settings-account.js ================================================ /** * Account Settings - Account */ 'use strict'; document.addEventListener('DOMContentLoaded', function (e) { (function () { const deactivateAcc = document.querySelector('#formAccountDeactivation'); // Update/reset user image of account page let accountUserImage = document.getElementById('uploadedAvatar'); const fileInput = document.querySelector('.account-file-input'), resetFileInput = document.querySelector('.account-image-reset'); if (accountUserImage) { const resetImage = accountUserImage.src; fileInput.onchange = () => { if (fileInput.files[0]) { accountUserImage.src = window.URL.createObjectURL(fileInput.files[0]); } }; resetFileInput.onclick = () => { fileInput.value = ''; accountUserImage.src = resetImage; }; } })(); }); ================================================ FILE: assets/js/ui-modals.js ================================================ /** * UI Modals */ 'use strict'; (function () { // On hiding modal, remove iframe video/audio to stop playing const youTubeModal = document.querySelector('#youTubeModal'), youTubeModalVideo = youTubeModal.querySelector('iframe'); youTubeModal.addEventListener('hidden.bs.modal', function () { youTubeModalVideo.setAttribute('src', ''); }); // Function to get and auto play youTube video const autoPlayYouTubeModal = function () { const modalTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="modal"]')); modalTriggerList.map(function (modalTriggerEl) { modalTriggerEl.onclick = function () { const theModal = this.getAttribute('data-bs-target'), videoSRC = this.getAttribute('data-theVideo'), videoSRCauto = `${videoSRC}?autoplay=1`, modalVideo = document.querySelector(`${theModal} iframe`); if (modalVideo) { modalVideo.setAttribute('src', videoSRCauto); } }; }); }; // Calling function on load autoPlayYouTubeModal(); })(); ================================================ FILE: assets/js/ui-popover.js ================================================ // /** // * UI Tooltips & Popovers // */ 'use strict'; (function () { const popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]')); const popoverList = popoverTriggerList.map(function (popoverTriggerEl) { // added { html: true, sanitize: false } option to render button in content area of popover return new bootstrap.Popover(popoverTriggerEl, { html: true, sanitize: false }); }); })(); ================================================ FILE: assets/js/ui-toasts.js ================================================ /** * UI Toasts */ 'use strict'; document.addEventListener('DOMContentLoaded', function (e) { // Bootstrap toasts example // -------------------------------------------------------------------- const toastPlacementExample = document.querySelector('.toast-placement-ex'), toastPlacementBtn = document.querySelector('#showToastPlacement'); let selectedType, selectedPlacement, toastPlacement; // Dispose toast when open another function toastDispose(toast) { if (toast && toast._element !== null) { if (toastPlacementExample) { toastPlacementExample.classList.remove(selectedType); DOMTokenList.prototype.remove.apply(toastPlacementExample.classList, selectedPlacement); } toast.dispose(); } } // Placement Button click if (toastPlacementBtn) { toastPlacementBtn.onclick = function () { if (toastPlacement) { toastDispose(toastPlacement); } selectedType = document.querySelector('#selectTypeOpt').value; selectedPlacement = document.querySelector('#selectPlacement').value.split(' '); toastPlacementExample.classList.add(selectedType); DOMTokenList.prototype.add.apply(toastPlacementExample.classList, selectedPlacement); toastPlacement = new bootstrap.Toast(toastPlacementExample); toastPlacement.show(); }; } }); ================================================ FILE: assets/vendor/css/core.css ================================================ @charset "UTF-8"; /*! * Bootstrap v5.3.3 (https://getbootstrap.com/) * Copyright 2011-2024 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */ :root, [data-bs-theme=light] { --bs-blue: #007bff; --bs-indigo: #6610f2; --bs-purple: #696cff; --bs-pink: #e83e8c; --bs-red: #ff3e1d; --bs-orange: #fd7e14; --bs-yellow: #ffab00; --bs-green: #71dd37; --bs-teal: #20c997; --bs-cyan: #03c3ec; --bs-black: #22303e; --bs-white: #fff; --bs-gray: #7a838b; --bs-gray-dark: #4e5965; --bs-gray-25: #fbfbfb; --bs-gray-60: #f2f3f3; --bs-gray-80: #edeef0; --bs-gray-100: #e9eaec; --bs-gray-200: #e4e6e8; --bs-gray-300: #bdc1c5; --bs-gray-400: #a7acb2; --bs-gray-500: #91979f; --bs-gray-600: #7a838b; --bs-gray-700: #646e78; --bs-gray-800: #4e5965; --bs-gray-900: #384551; --bs-primary: #696cff; --bs-secondary: #8592a3; --bs-success: #71dd37; --bs-info: #03c3ec; --bs-warning: #ffab00; --bs-danger: #ff3e1d; --bs-light: #dbdee0; --bs-dark: #2b2c40; --bs-gray: #91979f; --bs-primary-rgb: 105, 108, 255; --bs-secondary-rgb: 133, 146, 163; --bs-success-rgb: 113, 221, 55; --bs-info-rgb: 3, 195, 236; --bs-warning-rgb: 255, 171, 0; --bs-danger-rgb: 255, 62, 29; --bs-light-rgb: 219, 222, 224; --bs-dark-rgb: 43, 44, 64; --bs-gray-rgb: 145, 151, 159; --bs-primary-text-emphasis: #2a2b66; --bs-secondary-text-emphasis: #353a41; --bs-success-text-emphasis: #2d5816; --bs-info-text-emphasis: #014e5e; --bs-warning-text-emphasis: #664400; --bs-danger-text-emphasis: #66190c; --bs-light-text-emphasis: #646e78; --bs-dark-text-emphasis: #646e78; --bs-primary-bg-subtle: #e7e7ff; --bs-secondary-bg-subtle: #ebeef0; --bs-success-bg-subtle: #e8fadf; --bs-info-bg-subtle: #d7f5fc; --bs-warning-bg-subtle: #fff2d6; --bs-danger-bg-subtle: #ffe0db; --bs-light-bg-subtle: #f4f5f6; --bs-dark-bg-subtle: #dddde0; --bs-primary-border-subtle: #d2d3ff; --bs-secondary-border-subtle: #dadee3; --bs-success-border-subtle: #d4f5c3; --bs-info-border-subtle: #b3edf9; --bs-warning-border-subtle: #ffe6b3; --bs-danger-border-subtle: #ffc5bb; --bs-light-border-subtle: #e4e6e8; --bs-dark-border-subtle: #bfc0c6; --bs-white-rgb: 255, 255, 255; --bs-black-rgb: 34, 48, 62; --bs-font-sans-serif: "Public Sans", -apple-system, blinkmacsystemfont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; --bs-font-monospace: "SFMono-Regular", menlo, monaco, consolas, "Liberation Mono", "Courier New", monospace; --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); --bs-root-font-size: 16px; --bs-body-font-family: var(--bs-font-sans-serif); --bs-body-font-size: 0.9375rem; --bs-body-font-weight: 400; --bs-body-line-height: 1.375; --bs-body-color: #646e78; --bs-body-color-rgb: 100, 110, 120; --bs-body-bg: #f5f5f9; --bs-body-bg-rgb: 245, 245, 249; --bs-emphasis-color: #22303e; --bs-emphasis-color-rgb: 34, 48, 62; --bs-secondary-color: #a7acb2; --bs-secondary-color-rgb: 167, 172, 178; --bs-secondary-bg: #e4e6e8; --bs-secondary-bg-rgb: 228, 230, 232; --bs-tertiary-color: rgba(100, 110, 120, 0.5); --bs-tertiary-color-rgb: 100, 110, 120; --bs-tertiary-bg: #e9eaec; --bs-tertiary-bg-rgb: 233, 234, 236; --bs-heading-color: #384551; --bs-link-color: #696cff; --bs-link-color-rgb: 105, 108, 255; --bs-link-decoration: none; --bs-link-hover-color: #5f61e6; --bs-link-hover-color-rgb: 95, 97, 230; --bs-code-color: #e83e8c; --bs-highlight-color: #646e78; --bs-highlight-bg: #ffeecc; --bs-border-width: 1px; --bs-border-style: solid; --bs-border-color: #e4e6e8; --bs-border-color-translucent: rgba(34, 48, 62, 0.175); --bs-border-radius: 0.375rem; --bs-border-radius-sm: 0.25rem; --bs-border-radius-lg: 0.5rem; --bs-border-radius-xl: 0.625rem; --bs-border-radius-xxl: 1rem; --bs-border-radius-2xl: var(--bs-border-radius-xxl); --bs-border-radius-pill: 50rem; --bs-box-shadow: 0 0.1875rem 0.5rem 0 rgba(34, 48, 62, 0.1); --bs-box-shadow-sm: 0 0.125rem 0.375rem 0 rgba(34, 48, 62, 0.08); --bs-box-shadow-lg: 0 0.25rem 0.75rem 0 rgba(34, 48, 62, 0.14); --bs-box-shadow-inset: inset 0 1px 2px rgba(34, 48, 62, 0.075); --bs-focus-ring-width: 0.15rem; --bs-focus-ring-opacity: 0.75; --bs-focus-ring-color: rgba(100, 110, 120, 0.75); --bs-form-valid-color: #71dd37; --bs-form-valid-border-color: #71dd37; --bs-form-invalid-color: #ff3e1d; --bs-form-invalid-border-color: #ff3e1d; } [data-bs-theme=dark] { color-scheme: dark; --bs-body-color: #bdc1c5; --bs-body-color-rgb: 189, 193, 197; --bs-body-bg: #384551; --bs-body-bg-rgb: 56, 69, 81; --bs-emphasis-color: #fff; --bs-emphasis-color-rgb: 255, 255, 255; --bs-secondary-color: rgba(189, 193, 197, 0.75); --bs-secondary-color-rgb: 189, 193, 197; --bs-secondary-bg: #4e5965; --bs-secondary-bg-rgb: 78, 89, 101; --bs-tertiary-color: rgba(189, 193, 197, 0.5); --bs-tertiary-color-rgb: 189, 193, 197; --bs-tertiary-bg: #434f5b; --bs-tertiary-bg-rgb: 67, 79, 91; --bs-primary-text-emphasis: #a5a7ff; --bs-secondary-text-emphasis: #b6bec8; --bs-success-text-emphasis: #aaeb87; --bs-info-text-emphasis: #68dbf4; --bs-warning-text-emphasis: #ffcd66; --bs-danger-text-emphasis: #ff8b77; --bs-light-text-emphasis: #e9eaec; --bs-dark-text-emphasis: #bdc1c5; --bs-primary-bg-subtle: #151633; --bs-secondary-bg-subtle: #1b1d21; --bs-success-bg-subtle: #172c0b; --bs-info-bg-subtle: #01272f; --bs-warning-bg-subtle: #332200; --bs-danger-bg-subtle: #330c06; --bs-light-bg-subtle: #4e5965; --bs-dark-bg-subtle: #384552; --bs-primary-border-subtle: #3f4199; --bs-secondary-border-subtle: #505862; --bs-success-border-subtle: #448521; --bs-info-border-subtle: #02758e; --bs-warning-border-subtle: #996700; --bs-danger-border-subtle: #992511; --bs-light-border-subtle: #646e78; --bs-dark-border-subtle: #4e5965; --bs-heading-color: inherit; --bs-link-color: #a5a7ff; --bs-link-hover-color: #aeb0ff; --bs-link-color-rgb: 165, 167, 255; --bs-link-hover-color-rgb: 174, 176, 255; --bs-code-color: #f18bba; --bs-highlight-color: #bdc1c5; --bs-highlight-bg: #664400; --bs-border-color: #646e78; --bs-border-color-translucent: rgba(255, 255, 255, 0.15); --bs-form-valid-color: #aaeb87; --bs-form-valid-border-color: #aaeb87; --bs-form-invalid-color: #ff8b77; --bs-form-invalid-border-color: #ff8b77; } *, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; } :root { font-size: var(--bs-root-font-size); } @media (prefers-reduced-motion: no-preference) { :root { scroll-behavior: smooth; } } body { margin: 0; font-family: var(--bs-body-font-family); font-size: var(--bs-body-font-size); font-weight: var(--bs-body-font-weight); line-height: var(--bs-body-line-height); color: var(--bs-body-color); text-align: var(--bs-body-text-align); background-color: var(--bs-body-bg); -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: rgba(34, 48, 62, 0); } hr { margin: 1rem 0; color: var(--bs-border-color); border: 0; border-top: var(--bs-border-width) solid; opacity: 1; } h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 { margin-top: 0; margin-bottom: 1rem; font-weight: 500; line-height: 1.1; color: var(--bs-heading-color); } h1, .h1 { font-size: calc(1.4125rem + 1.95vw); } @media (min-width: 1200px) { h1, .h1 { font-size: 2.875rem; } } h2, .h2 { font-size: calc(1.3625rem + 1.35vw); } @media (min-width: 1200px) { h2, .h2 { font-size: 2.375rem; } } h3, .h3 { font-size: calc(1.3rem + 0.6vw); } @media (min-width: 1200px) { h3, .h3 { font-size: 1.75rem; } } h4, .h4 { font-size: calc(1.275rem + 0.3vw); } @media (min-width: 1200px) { h4, .h4 { font-size: 1.5rem; } } h5, .h5 { font-size: 1.125rem; } h6, .h6 { font-size: 0.9375rem; } p { margin-top: 0; margin-bottom: 1rem; } abbr[title] { -webkit-text-decoration: underline dotted; text-decoration: underline dotted; cursor: help; -webkit-text-decoration-skip-ink: none; text-decoration-skip-ink: none; } address { margin-bottom: 1rem; font-style: normal; line-height: inherit; } ol, ul { padding-left: 2rem; } ol, ul, dl { margin-top: 0; margin-bottom: 1rem; } ol ol, ul ul, ol ul, ul ol { margin-bottom: 0; } dt { font-weight: 500; } dd { margin-bottom: 0.5rem; margin-left: 0; } blockquote { margin: 0 0 1rem; } b, strong { font-weight: bolder; } small, .small { font-size: 0.8125rem; } mark, .mark { padding: 0.1875em; color: var(--bs-highlight-color); background-color: var(--bs-highlight-bg); } sub, sup { position: relative; font-size: 0.75em; line-height: 0; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } a { color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); text-decoration: none; } a:hover { --bs-link-color-rgb: var(--bs-link-hover-color-rgb); } a:not([href]):not([class]), a:not([href]):not([class]):hover { color: inherit; text-decoration: none; } pre, code, kbd, samp { font-family: var(--bs-font-monospace); font-size: 1em; } pre { display: block; margin-top: 0; margin-bottom: 1rem; overflow: auto; font-size: 0.8125rem; } pre code { font-size: inherit; color: inherit; word-break: normal; } code { font-size: 0.8125rem; color: var(--bs-code-color); word-wrap: break-word; } a > code { color: inherit; } kbd { padding: 0.1875rem 0.375rem; font-size: 0.8125rem; color: var(--bs-body-bg); background-color: var(--bs-body-color); border-radius: 0.25rem; } kbd kbd { padding: 0; font-size: 1em; } figure { margin: 0 0 1rem; } img, svg { vertical-align: middle; } table { caption-side: bottom; border-collapse: collapse; } caption { padding-top: 0.782rem; padding-bottom: 0.782rem; color: var(--bs-secondary-color); text-align: left; } th { font-weight: 500; text-align: inherit; text-align: -webkit-match-parent; } thead, tbody, tfoot, tr, td, th { border-color: inherit; border-style: solid; border-width: 0; } label { display: inline-block; } button { border-radius: 0; } button:focus:not(:focus-visible) { outline: 0; } input, button, select, optgroup, textarea { margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; } button, select { text-transform: none; } [role=button] { cursor: pointer; } select { word-wrap: normal; } select:disabled { opacity: 1; } [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator { display: none !important; } button, [type=button], [type=reset], [type=submit] { -webkit-appearance: button; } button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) { cursor: pointer; } ::-moz-focus-inner { padding: 0; border-style: none; } textarea { resize: vertical; } fieldset { min-width: 0; padding: 0; margin: 0; border: 0; } legend { float: left; width: 100%; padding: 0; margin-bottom: 0.5rem; font-size: calc(1.275rem + 0.3vw); line-height: inherit; } @media (min-width: 1200px) { legend { font-size: 1.5rem; } } legend + * { clear: left; } ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-year-field { padding: 0; } ::-webkit-inner-spin-button { height: auto; } [type=search] { -webkit-appearance: textfield; outline-offset: -2px; } /* rtl:raw: [type="tel"], [type="url"], [type="email"], [type="number"] { direction: ltr; } */ ::-webkit-search-decoration { -webkit-appearance: none; } ::-webkit-color-swatch-wrapper { padding: 0; } ::-webkit-file-upload-button { font: inherit; -webkit-appearance: button; } ::file-selector-button { font: inherit; -webkit-appearance: button; } output { display: inline-block; } iframe { border: 0; } summary { display: list-item; cursor: pointer; } progress { vertical-align: baseline; } [hidden] { display: none !important; } .lead { font-size: 1.0546875rem; font-weight: 400; } .display-1 { font-size: calc(1.525rem + 3.3vw); font-weight: 500; line-height: 1.1; } @media (min-width: 1200px) { .display-1 { font-size: 4rem; } } .display-2 { font-size: calc(1.475rem + 2.7vw); font-weight: 500; line-height: 1.1; } @media (min-width: 1200px) { .display-2 { font-size: 3.5rem; } } .display-3 { font-size: calc(1.425rem + 2.1vw); font-weight: 500; line-height: 1.1; } @media (min-width: 1200px) { .display-3 { font-size: 3rem; } } .display-4 { font-size: calc(1.375rem + 1.5vw); font-weight: 500; line-height: 1.1; } @media (min-width: 1200px) { .display-4 { font-size: 2.5rem; } } .display-5 { font-size: calc(1.325rem + 0.9vw); font-weight: 500; line-height: 1.1; } @media (min-width: 1200px) { .display-5 { font-size: 2rem; } } .display-6 { font-size: calc(1.275rem + 0.3vw); font-weight: 500; line-height: 1.1; } @media (min-width: 1200px) { .display-6 { font-size: 1.5rem; } } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; } .list-inline-item { display: inline-block; } .list-inline-item:not(:last-child) { margin-right: 0.5rem; } .initialism { font-size: 0.8125rem; text-transform: uppercase; } .blockquote { margin-bottom: 1rem; font-size: 1.0546875rem; } .blockquote > :last-child { margin-bottom: 0; } .blockquote-footer { margin-top: -1rem; margin-bottom: 1rem; font-size: 0.8125rem; color: #7a838b; } .blockquote-footer::before { content: "— "; } .img-fluid { max-width: 100%; height: auto; } .img-thumbnail { padding: 0; background-color: transparent; border: 0 solid var(--bs-border-color); border-radius: 0; max-width: 100%; height: auto; } .figure { display: inline-block; } .figure-img { margin-bottom: 0.5rem; line-height: 1; } .figure-caption { font-size: 0.8125rem; color: #a7acb2; } .container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm { --bs-gutter-x: 1.625rem; --bs-gutter-y: 0; width: 100%; padding-right: calc(var(--bs-gutter-x) * 0.5); padding-left: calc(var(--bs-gutter-x) * 0.5); margin-right: auto; margin-left: auto; } @media (min-width: 576px) { .container-sm, .container { max-width: 540px; } } @media (min-width: 768px) { .container-md, .container-sm, .container { max-width: 720px; } } @media (min-width: 992px) { .container-lg, .container-md, .container-sm, .container { max-width: 960px; } } @media (min-width: 1200px) { .container-xl, .container-lg, .container-md, .container-sm, .container { max-width: 1140px; } } @media (min-width: 1400px) { .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { max-width: 1440px; } } :root { --bs-breakpoint-xs: 0; --bs-breakpoint-sm: 576px; --bs-breakpoint-md: 768px; --bs-breakpoint-lg: 992px; --bs-breakpoint-xl: 1200px; --bs-breakpoint-xxl: 1400px; } .row { --bs-gutter-x: 1.625rem; --bs-gutter-y: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-top: calc(-1 * var(--bs-gutter-y)); margin-right: calc(-0.5 * var(--bs-gutter-x)); margin-left: calc(-0.5 * var(--bs-gutter-x)); } .row > * { -ms-flex-negative: 0; flex-shrink: 0; width: 100%; max-width: 100%; padding-right: calc(var(--bs-gutter-x) * 0.5); padding-left: calc(var(--bs-gutter-x) * 0.5); margin-top: var(--bs-gutter-y); } .col { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; } .row-cols-auto > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .row-cols-1 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .row-cols-2 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .row-cols-3 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .row-cols-4 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .row-cols-5 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 20%; } .row-cols-6 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .col-1 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 8.33333333%; } .col-2 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-3 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .col-4 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .col-5 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 41.66666667%; } .col-6 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .col-7 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 58.33333333%; } .col-8 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 66.66666667%; } .col-9 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 75%; } .col-10 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 83.33333333%; } .col-11 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 91.66666667%; } .col-12 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .offset-1 { margin-left: 8.33333333%; } .offset-2 { margin-left: 16.66666667%; } .offset-3 { margin-left: 25%; } .offset-4 { margin-left: 33.33333333%; } .offset-5 { margin-left: 41.66666667%; } .offset-6 { margin-left: 50%; } .offset-7 { margin-left: 58.33333333%; } .offset-8 { margin-left: 66.66666667%; } .offset-9 { margin-left: 75%; } .offset-10 { margin-left: 83.33333333%; } .offset-11 { margin-left: 91.66666667%; } .g-0, .gx-0 { --bs-gutter-x: 0; } .g-0, .gy-0 { --bs-gutter-y: 0; } .g-50, .gx-50 { --bs-gutter-x: 0.125rem; } .g-50, .gy-50 { --bs-gutter-y: 0.125rem; } .g-1, .gx-1 { --bs-gutter-x: 0.25rem; } .g-1, .gy-1 { --bs-gutter-y: 0.25rem; } .g-1_5, .gx-1_5 { --bs-gutter-x: 0.375rem; } .g-1_5, .gy-1_5 { --bs-gutter-y: 0.375rem; } .g-2, .gx-2 { --bs-gutter-x: 0.5rem; } .g-2, .gy-2 { --bs-gutter-y: 0.5rem; } .g-3, .gx-3 { --bs-gutter-x: 0.75rem; } .g-3, .gy-3 { --bs-gutter-y: 0.75rem; } .g-4, .gx-4 { --bs-gutter-x: 1rem; } .g-4, .gy-4 { --bs-gutter-y: 1rem; } .g-5, .gx-5 { --bs-gutter-x: 1.25rem; } .g-5, .gy-5 { --bs-gutter-y: 1.25rem; } .g-6, .gx-6 { --bs-gutter-x: 1.5rem; } .g-6, .gy-6 { --bs-gutter-y: 1.5rem; } .g-7, .gx-7 { --bs-gutter-x: 1.75rem; } .g-7, .gy-7 { --bs-gutter-y: 1.75rem; } .g-8, .gx-8 { --bs-gutter-x: 2rem; } .g-8, .gy-8 { --bs-gutter-y: 2rem; } .g-9, .gx-9 { --bs-gutter-x: 2.25rem; } .g-9, .gy-9 { --bs-gutter-y: 2.25rem; } .g-10, .gx-10 { --bs-gutter-x: 2.5rem; } .g-10, .gy-10 { --bs-gutter-y: 2.5rem; } .g-11, .gx-11 { --bs-gutter-x: 2.75rem; } .g-11, .gy-11 { --bs-gutter-y: 2.75rem; } .g-12, .gx-12 { --bs-gutter-x: 3rem; } .g-12, .gy-12 { --bs-gutter-y: 3rem; } @media (min-width: 576px) { .col-sm { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; } .row-cols-sm-auto > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .row-cols-sm-1 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .row-cols-sm-2 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .row-cols-sm-3 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .row-cols-sm-4 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .row-cols-sm-5 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 20%; } .row-cols-sm-6 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-sm-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .col-sm-1 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 8.33333333%; } .col-sm-2 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-sm-3 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .col-sm-4 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .col-sm-5 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 41.66666667%; } .col-sm-6 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .col-sm-7 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 58.33333333%; } .col-sm-8 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 66.66666667%; } .col-sm-9 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 75%; } .col-sm-10 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 83.33333333%; } .col-sm-11 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 91.66666667%; } .col-sm-12 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .offset-sm-0 { margin-left: 0; } .offset-sm-1 { margin-left: 8.33333333%; } .offset-sm-2 { margin-left: 16.66666667%; } .offset-sm-3 { margin-left: 25%; } .offset-sm-4 { margin-left: 33.33333333%; } .offset-sm-5 { margin-left: 41.66666667%; } .offset-sm-6 { margin-left: 50%; } .offset-sm-7 { margin-left: 58.33333333%; } .offset-sm-8 { margin-left: 66.66666667%; } .offset-sm-9 { margin-left: 75%; } .offset-sm-10 { margin-left: 83.33333333%; } .offset-sm-11 { margin-left: 91.66666667%; } .g-sm-0, .gx-sm-0 { --bs-gutter-x: 0; } .g-sm-0, .gy-sm-0 { --bs-gutter-y: 0; } .g-sm-50, .gx-sm-50 { --bs-gutter-x: 0.125rem; } .g-sm-50, .gy-sm-50 { --bs-gutter-y: 0.125rem; } .g-sm-1, .gx-sm-1 { --bs-gutter-x: 0.25rem; } .g-sm-1, .gy-sm-1 { --bs-gutter-y: 0.25rem; } .g-sm-1_5, .gx-sm-1_5 { --bs-gutter-x: 0.375rem; } .g-sm-1_5, .gy-sm-1_5 { --bs-gutter-y: 0.375rem; } .g-sm-2, .gx-sm-2 { --bs-gutter-x: 0.5rem; } .g-sm-2, .gy-sm-2 { --bs-gutter-y: 0.5rem; } .g-sm-3, .gx-sm-3 { --bs-gutter-x: 0.75rem; } .g-sm-3, .gy-sm-3 { --bs-gutter-y: 0.75rem; } .g-sm-4, .gx-sm-4 { --bs-gutter-x: 1rem; } .g-sm-4, .gy-sm-4 { --bs-gutter-y: 1rem; } .g-sm-5, .gx-sm-5 { --bs-gutter-x: 1.25rem; } .g-sm-5, .gy-sm-5 { --bs-gutter-y: 1.25rem; } .g-sm-6, .gx-sm-6 { --bs-gutter-x: 1.5rem; } .g-sm-6, .gy-sm-6 { --bs-gutter-y: 1.5rem; } .g-sm-7, .gx-sm-7 { --bs-gutter-x: 1.75rem; } .g-sm-7, .gy-sm-7 { --bs-gutter-y: 1.75rem; } .g-sm-8, .gx-sm-8 { --bs-gutter-x: 2rem; } .g-sm-8, .gy-sm-8 { --bs-gutter-y: 2rem; } .g-sm-9, .gx-sm-9 { --bs-gutter-x: 2.25rem; } .g-sm-9, .gy-sm-9 { --bs-gutter-y: 2.25rem; } .g-sm-10, .gx-sm-10 { --bs-gutter-x: 2.5rem; } .g-sm-10, .gy-sm-10 { --bs-gutter-y: 2.5rem; } .g-sm-11, .gx-sm-11 { --bs-gutter-x: 2.75rem; } .g-sm-11, .gy-sm-11 { --bs-gutter-y: 2.75rem; } .g-sm-12, .gx-sm-12 { --bs-gutter-x: 3rem; } .g-sm-12, .gy-sm-12 { --bs-gutter-y: 3rem; } } @media (min-width: 768px) { .col-md { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; } .row-cols-md-auto > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .row-cols-md-1 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .row-cols-md-2 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .row-cols-md-3 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .row-cols-md-4 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .row-cols-md-5 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 20%; } .row-cols-md-6 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-md-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .col-md-1 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 8.33333333%; } .col-md-2 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-md-3 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .col-md-4 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .col-md-5 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 41.66666667%; } .col-md-6 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .col-md-7 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 58.33333333%; } .col-md-8 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 66.66666667%; } .col-md-9 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 75%; } .col-md-10 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 83.33333333%; } .col-md-11 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 91.66666667%; } .col-md-12 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .offset-md-0 { margin-left: 0; } .offset-md-1 { margin-left: 8.33333333%; } .offset-md-2 { margin-left: 16.66666667%; } .offset-md-3 { margin-left: 25%; } .offset-md-4 { margin-left: 33.33333333%; } .offset-md-5 { margin-left: 41.66666667%; } .offset-md-6 { margin-left: 50%; } .offset-md-7 { margin-left: 58.33333333%; } .offset-md-8 { margin-left: 66.66666667%; } .offset-md-9 { margin-left: 75%; } .offset-md-10 { margin-left: 83.33333333%; } .offset-md-11 { margin-left: 91.66666667%; } .g-md-0, .gx-md-0 { --bs-gutter-x: 0; } .g-md-0, .gy-md-0 { --bs-gutter-y: 0; } .g-md-50, .gx-md-50 { --bs-gutter-x: 0.125rem; } .g-md-50, .gy-md-50 { --bs-gutter-y: 0.125rem; } .g-md-1, .gx-md-1 { --bs-gutter-x: 0.25rem; } .g-md-1, .gy-md-1 { --bs-gutter-y: 0.25rem; } .g-md-1_5, .gx-md-1_5 { --bs-gutter-x: 0.375rem; } .g-md-1_5, .gy-md-1_5 { --bs-gutter-y: 0.375rem; } .g-md-2, .gx-md-2 { --bs-gutter-x: 0.5rem; } .g-md-2, .gy-md-2 { --bs-gutter-y: 0.5rem; } .g-md-3, .gx-md-3 { --bs-gutter-x: 0.75rem; } .g-md-3, .gy-md-3 { --bs-gutter-y: 0.75rem; } .g-md-4, .gx-md-4 { --bs-gutter-x: 1rem; } .g-md-4, .gy-md-4 { --bs-gutter-y: 1rem; } .g-md-5, .gx-md-5 { --bs-gutter-x: 1.25rem; } .g-md-5, .gy-md-5 { --bs-gutter-y: 1.25rem; } .g-md-6, .gx-md-6 { --bs-gutter-x: 1.5rem; } .g-md-6, .gy-md-6 { --bs-gutter-y: 1.5rem; } .g-md-7, .gx-md-7 { --bs-gutter-x: 1.75rem; } .g-md-7, .gy-md-7 { --bs-gutter-y: 1.75rem; } .g-md-8, .gx-md-8 { --bs-gutter-x: 2rem; } .g-md-8, .gy-md-8 { --bs-gutter-y: 2rem; } .g-md-9, .gx-md-9 { --bs-gutter-x: 2.25rem; } .g-md-9, .gy-md-9 { --bs-gutter-y: 2.25rem; } .g-md-10, .gx-md-10 { --bs-gutter-x: 2.5rem; } .g-md-10, .gy-md-10 { --bs-gutter-y: 2.5rem; } .g-md-11, .gx-md-11 { --bs-gutter-x: 2.75rem; } .g-md-11, .gy-md-11 { --bs-gutter-y: 2.75rem; } .g-md-12, .gx-md-12 { --bs-gutter-x: 3rem; } .g-md-12, .gy-md-12 { --bs-gutter-y: 3rem; } } @media (min-width: 992px) { .col-lg { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; } .row-cols-lg-auto > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .row-cols-lg-1 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .row-cols-lg-2 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .row-cols-lg-3 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .row-cols-lg-4 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .row-cols-lg-5 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 20%; } .row-cols-lg-6 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-lg-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .col-lg-1 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 8.33333333%; } .col-lg-2 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-lg-3 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .col-lg-4 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .col-lg-5 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 41.66666667%; } .col-lg-6 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .col-lg-7 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 58.33333333%; } .col-lg-8 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 66.66666667%; } .col-lg-9 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 75%; } .col-lg-10 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 83.33333333%; } .col-lg-11 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 91.66666667%; } .col-lg-12 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .offset-lg-0 { margin-left: 0; } .offset-lg-1 { margin-left: 8.33333333%; } .offset-lg-2 { margin-left: 16.66666667%; } .offset-lg-3 { margin-left: 25%; } .offset-lg-4 { margin-left: 33.33333333%; } .offset-lg-5 { margin-left: 41.66666667%; } .offset-lg-6 { margin-left: 50%; } .offset-lg-7 { margin-left: 58.33333333%; } .offset-lg-8 { margin-left: 66.66666667%; } .offset-lg-9 { margin-left: 75%; } .offset-lg-10 { margin-left: 83.33333333%; } .offset-lg-11 { margin-left: 91.66666667%; } .g-lg-0, .gx-lg-0 { --bs-gutter-x: 0; } .g-lg-0, .gy-lg-0 { --bs-gutter-y: 0; } .g-lg-50, .gx-lg-50 { --bs-gutter-x: 0.125rem; } .g-lg-50, .gy-lg-50 { --bs-gutter-y: 0.125rem; } .g-lg-1, .gx-lg-1 { --bs-gutter-x: 0.25rem; } .g-lg-1, .gy-lg-1 { --bs-gutter-y: 0.25rem; } .g-lg-1_5, .gx-lg-1_5 { --bs-gutter-x: 0.375rem; } .g-lg-1_5, .gy-lg-1_5 { --bs-gutter-y: 0.375rem; } .g-lg-2, .gx-lg-2 { --bs-gutter-x: 0.5rem; } .g-lg-2, .gy-lg-2 { --bs-gutter-y: 0.5rem; } .g-lg-3, .gx-lg-3 { --bs-gutter-x: 0.75rem; } .g-lg-3, .gy-lg-3 { --bs-gutter-y: 0.75rem; } .g-lg-4, .gx-lg-4 { --bs-gutter-x: 1rem; } .g-lg-4, .gy-lg-4 { --bs-gutter-y: 1rem; } .g-lg-5, .gx-lg-5 { --bs-gutter-x: 1.25rem; } .g-lg-5, .gy-lg-5 { --bs-gutter-y: 1.25rem; } .g-lg-6, .gx-lg-6 { --bs-gutter-x: 1.5rem; } .g-lg-6, .gy-lg-6 { --bs-gutter-y: 1.5rem; } .g-lg-7, .gx-lg-7 { --bs-gutter-x: 1.75rem; } .g-lg-7, .gy-lg-7 { --bs-gutter-y: 1.75rem; } .g-lg-8, .gx-lg-8 { --bs-gutter-x: 2rem; } .g-lg-8, .gy-lg-8 { --bs-gutter-y: 2rem; } .g-lg-9, .gx-lg-9 { --bs-gutter-x: 2.25rem; } .g-lg-9, .gy-lg-9 { --bs-gutter-y: 2.25rem; } .g-lg-10, .gx-lg-10 { --bs-gutter-x: 2.5rem; } .g-lg-10, .gy-lg-10 { --bs-gutter-y: 2.5rem; } .g-lg-11, .gx-lg-11 { --bs-gutter-x: 2.75rem; } .g-lg-11, .gy-lg-11 { --bs-gutter-y: 2.75rem; } .g-lg-12, .gx-lg-12 { --bs-gutter-x: 3rem; } .g-lg-12, .gy-lg-12 { --bs-gutter-y: 3rem; } } @media (min-width: 1200px) { .col-xl { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; } .row-cols-xl-auto > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .row-cols-xl-1 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .row-cols-xl-2 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .row-cols-xl-3 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .row-cols-xl-4 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .row-cols-xl-5 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 20%; } .row-cols-xl-6 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-xl-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .col-xl-1 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 8.33333333%; } .col-xl-2 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-xl-3 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .col-xl-4 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .col-xl-5 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 41.66666667%; } .col-xl-6 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .col-xl-7 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 58.33333333%; } .col-xl-8 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 66.66666667%; } .col-xl-9 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 75%; } .col-xl-10 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 83.33333333%; } .col-xl-11 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 91.66666667%; } .col-xl-12 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .offset-xl-0 { margin-left: 0; } .offset-xl-1 { margin-left: 8.33333333%; } .offset-xl-2 { margin-left: 16.66666667%; } .offset-xl-3 { margin-left: 25%; } .offset-xl-4 { margin-left: 33.33333333%; } .offset-xl-5 { margin-left: 41.66666667%; } .offset-xl-6 { margin-left: 50%; } .offset-xl-7 { margin-left: 58.33333333%; } .offset-xl-8 { margin-left: 66.66666667%; } .offset-xl-9 { margin-left: 75%; } .offset-xl-10 { margin-left: 83.33333333%; } .offset-xl-11 { margin-left: 91.66666667%; } .g-xl-0, .gx-xl-0 { --bs-gutter-x: 0; } .g-xl-0, .gy-xl-0 { --bs-gutter-y: 0; } .g-xl-50, .gx-xl-50 { --bs-gutter-x: 0.125rem; } .g-xl-50, .gy-xl-50 { --bs-gutter-y: 0.125rem; } .g-xl-1, .gx-xl-1 { --bs-gutter-x: 0.25rem; } .g-xl-1, .gy-xl-1 { --bs-gutter-y: 0.25rem; } .g-xl-1_5, .gx-xl-1_5 { --bs-gutter-x: 0.375rem; } .g-xl-1_5, .gy-xl-1_5 { --bs-gutter-y: 0.375rem; } .g-xl-2, .gx-xl-2 { --bs-gutter-x: 0.5rem; } .g-xl-2, .gy-xl-2 { --bs-gutter-y: 0.5rem; } .g-xl-3, .gx-xl-3 { --bs-gutter-x: 0.75rem; } .g-xl-3, .gy-xl-3 { --bs-gutter-y: 0.75rem; } .g-xl-4, .gx-xl-4 { --bs-gutter-x: 1rem; } .g-xl-4, .gy-xl-4 { --bs-gutter-y: 1rem; } .g-xl-5, .gx-xl-5 { --bs-gutter-x: 1.25rem; } .g-xl-5, .gy-xl-5 { --bs-gutter-y: 1.25rem; } .g-xl-6, .gx-xl-6 { --bs-gutter-x: 1.5rem; } .g-xl-6, .gy-xl-6 { --bs-gutter-y: 1.5rem; } .g-xl-7, .gx-xl-7 { --bs-gutter-x: 1.75rem; } .g-xl-7, .gy-xl-7 { --bs-gutter-y: 1.75rem; } .g-xl-8, .gx-xl-8 { --bs-gutter-x: 2rem; } .g-xl-8, .gy-xl-8 { --bs-gutter-y: 2rem; } .g-xl-9, .gx-xl-9 { --bs-gutter-x: 2.25rem; } .g-xl-9, .gy-xl-9 { --bs-gutter-y: 2.25rem; } .g-xl-10, .gx-xl-10 { --bs-gutter-x: 2.5rem; } .g-xl-10, .gy-xl-10 { --bs-gutter-y: 2.5rem; } .g-xl-11, .gx-xl-11 { --bs-gutter-x: 2.75rem; } .g-xl-11, .gy-xl-11 { --bs-gutter-y: 2.75rem; } .g-xl-12, .gx-xl-12 { --bs-gutter-x: 3rem; } .g-xl-12, .gy-xl-12 { --bs-gutter-y: 3rem; } } @media (min-width: 1400px) { .col-xxl { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; } .row-cols-xxl-auto > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .row-cols-xxl-1 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .row-cols-xxl-2 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .row-cols-xxl-3 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .row-cols-xxl-4 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .row-cols-xxl-5 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 20%; } .row-cols-xxl-6 > * { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-xxl-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } .col-xxl-1 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 8.33333333%; } .col-xxl-2 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 16.66666667%; } .col-xxl-3 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 25%; } .col-xxl-4 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 33.33333333%; } .col-xxl-5 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 41.66666667%; } .col-xxl-6 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 50%; } .col-xxl-7 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 58.33333333%; } .col-xxl-8 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 66.66666667%; } .col-xxl-9 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 75%; } .col-xxl-10 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 83.33333333%; } .col-xxl-11 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 91.66666667%; } .col-xxl-12 { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100%; } .offset-xxl-0 { margin-left: 0; } .offset-xxl-1 { margin-left: 8.33333333%; } .offset-xxl-2 { margin-left: 16.66666667%; } .offset-xxl-3 { margin-left: 25%; } .offset-xxl-4 { margin-left: 33.33333333%; } .offset-xxl-5 { margin-left: 41.66666667%; } .offset-xxl-6 { margin-left: 50%; } .offset-xxl-7 { margin-left: 58.33333333%; } .offset-xxl-8 { margin-left: 66.66666667%; } .offset-xxl-9 { margin-left: 75%; } .offset-xxl-10 { margin-left: 83.33333333%; } .offset-xxl-11 { margin-left: 91.66666667%; } .g-xxl-0, .gx-xxl-0 { --bs-gutter-x: 0; } .g-xxl-0, .gy-xxl-0 { --bs-gutter-y: 0; } .g-xxl-50, .gx-xxl-50 { --bs-gutter-x: 0.125rem; } .g-xxl-50, .gy-xxl-50 { --bs-gutter-y: 0.125rem; } .g-xxl-1, .gx-xxl-1 { --bs-gutter-x: 0.25rem; } .g-xxl-1, .gy-xxl-1 { --bs-gutter-y: 0.25rem; } .g-xxl-1_5, .gx-xxl-1_5 { --bs-gutter-x: 0.375rem; } .g-xxl-1_5, .gy-xxl-1_5 { --bs-gutter-y: 0.375rem; } .g-xxl-2, .gx-xxl-2 { --bs-gutter-x: 0.5rem; } .g-xxl-2, .gy-xxl-2 { --bs-gutter-y: 0.5rem; } .g-xxl-3, .gx-xxl-3 { --bs-gutter-x: 0.75rem; } .g-xxl-3, .gy-xxl-3 { --bs-gutter-y: 0.75rem; } .g-xxl-4, .gx-xxl-4 { --bs-gutter-x: 1rem; } .g-xxl-4, .gy-xxl-4 { --bs-gutter-y: 1rem; } .g-xxl-5, .gx-xxl-5 { --bs-gutter-x: 1.25rem; } .g-xxl-5, .gy-xxl-5 { --bs-gutter-y: 1.25rem; } .g-xxl-6, .gx-xxl-6 { --bs-gutter-x: 1.5rem; } .g-xxl-6, .gy-xxl-6 { --bs-gutter-y: 1.5rem; } .g-xxl-7, .gx-xxl-7 { --bs-gutter-x: 1.75rem; } .g-xxl-7, .gy-xxl-7 { --bs-gutter-y: 1.75rem; } .g-xxl-8, .gx-xxl-8 { --bs-gutter-x: 2rem; } .g-xxl-8, .gy-xxl-8 { --bs-gutter-y: 2rem; } .g-xxl-9, .gx-xxl-9 { --bs-gutter-x: 2.25rem; } .g-xxl-9, .gy-xxl-9 { --bs-gutter-y: 2.25rem; } .g-xxl-10, .gx-xxl-10 { --bs-gutter-x: 2.5rem; } .g-xxl-10, .gy-xxl-10 { --bs-gutter-y: 2.5rem; } .g-xxl-11, .gx-xxl-11 { --bs-gutter-x: 2.75rem; } .g-xxl-11, .gy-xxl-11 { --bs-gutter-y: 2.75rem; } .g-xxl-12, .gx-xxl-12 { --bs-gutter-x: 3rem; } .g-xxl-12, .gy-xxl-12 { --bs-gutter-y: 3rem; } } .table { --bs-table-color-type: initial; --bs-table-bg-type: initial; --bs-table-color-state: initial; --bs-table-bg-state: initial; --bs-table-color: var(--bs-body-color); --bs-table-bg: transparent; --bs-table-border-color: var(--bs-gray-200); --bs-table-accent-bg: transparent; --bs-table-striped-color: var(--bs-body-color); --bs-table-striped-bg: rgba(var(--bs-base-color-rgb), 0.06); --bs-table-active-color: var(--bs-body-color); --bs-table-active-bg: rgba(var(--bs-primary-rgb), 0.08); --bs-table-hover-color: var(--bs-body-color); --bs-table-hover-bg: rgba(34, 48, 62, 0.06); width: 100%; margin-bottom: 1rem; vertical-align: middle; border-color: var(--bs-table-border-color); } .table > :not(caption) > * > * { padding: 0.782rem 1.25rem; color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color))); background-color: var(--bs-table-bg); border-bottom-width: var(--bs-border-width); -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg))); box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg))); } .table > tbody { vertical-align: inherit; } .table > thead { vertical-align: bottom; } .table-group-divider { border-top: calc(var(--bs-border-width) * 2) solid var(--bs-gray-200); } .caption-top { caption-side: top; } .table-sm > :not(caption) > * > * { padding: 0.594rem 1.25rem; } .table-bordered > :not(caption) > * { border-width: var(--bs-border-width) 0; } .table-bordered > :not(caption) > * > * { border-width: 0 var(--bs-border-width); } .table-borderless > :not(caption) > * > * { border-bottom-width: 0; } .table-borderless > :not(:first-child) { border-top-width: 0; } .table-striped > tbody > tr:nth-of-type(odd) > * { --bs-table-color-type: var(--bs-table-striped-color); --bs-table-bg-type: var(--bs-table-striped-bg); } .table-striped-columns > :not(caption) > tr > :nth-child(even) { --bs-table-color-type: var(--bs-table-striped-color); --bs-table-bg-type: var(--bs-table-striped-bg); } .table-active { --bs-table-color-state: var(--bs-table-active-color); --bs-table-bg-state: var(--bs-table-active-bg); } .table-hover > tbody > tr:hover > * { --bs-table-color-state: var(--bs-table-hover-color); --bs-table-bg-state: var(--bs-table-hover-bg); } .table-primary { --bs-table-color: #000; --bs-table-bg: #e1e2ff; --bs-table-border-color: #c6c7e0; --bs-table-striped-bg: #d4d4f0; --bs-table-striped-color: #000; --bs-table-active-bg: #cfd0eb; --bs-table-active-color: #000; --bs-table-hover-bg: #d4d4f0; --bs-table-hover-color: #000; color: var(--bs-table-color); border-color: var(--bs-table-border-color); } .table-secondary { --bs-table-color: #000; --bs-table-bg: #e7e9ed; --bs-table-border-color: #cbcdd1; --bs-table-striped-bg: #d9dbdf; --bs-table-striped-color: #000; --bs-table-active-bg: #d5d6da; --bs-table-active-color: #000; --bs-table-hover-bg: #d9dbdf; --bs-table-hover-color: #000; color: var(--bs-table-color); border-color: var(--bs-table-border-color); } .table-success { --bs-table-color: #000; --bs-table-bg: #e3f8d7; --bs-table-border-color: #c8dabd; --bs-table-striped-bg: #d5e9ca; --bs-table-striped-color: #000; --bs-table-active-bg: #d1e4c6; --bs-table-active-color: #000; --bs-table-hover-bg: #d5e9ca; --bs-table-hover-color: #000; color: var(--bs-table-color); border-color: var(--bs-table-border-color); } .table-info { --bs-table-color: #000; --bs-table-bg: #cdf3fb; --bs-table-border-color: #b4d6dd; --bs-table-striped-bg: #c1e4ec; --bs-table-striped-color: #000; --bs-table-active-bg: #bde0e7; --bs-table-active-color: #000; --bs-table-hover-bg: #c1e4ec; --bs-table-hover-color: #000; color: var(--bs-table-color); border-color: var(--bs-table-border-color); } .table-warning { --bs-table-color: #000; --bs-table-bg: #ffeecc; --bs-table-border-color: #e0d1b4; --bs-table-striped-bg: #f0e0c0; --bs-table-striped-color: #000; --bs-table-active-bg: #ebdbbc; --bs-table-active-color: #000; --bs-table-hover-bg: #f0e0c0; --bs-table-hover-color: #000; color: var(--bs-table-color); border-color: var(--bs-table-border-color); } .table-danger { --bs-table-color: #000; --bs-table-bg: #ffd8d2; --bs-table-border-color: #e0beb9; --bs-table-striped-bg: #f0cbc5; --bs-table-striped-color: #000; --bs-table-active-bg: #ebc7c1; --bs-table-active-color: #000; --bs-table-hover-bg: #f0cbc5; --bs-table-hover-color: #000; color: var(--bs-table-color); border-color: var(--bs-table-border-color); } .table-light { --bs-table-color: #000; --bs-table-bg: #dbdee0; --bs-table-border-color: #c1c3c5; --bs-table-striped-bg: #ced1d3; --bs-table-striped-color: #000; --bs-table-active-bg: #c9ccce; --bs-table-active-color: #000; --bs-table-hover-bg: #ced1d3; --bs-table-hover-color: #000; color: var(--bs-table-color); border-color: var(--bs-table-border-color); } .table-dark { --bs-table-color: #fff; --bs-table-bg: #2b2c40; --bs-table-border-color: #444557; --bs-table-striped-bg: #38394b; --bs-table-striped-color: #fff; --bs-table-active-bg: #3c3d4f; --bs-table-active-color: #fff; --bs-table-hover-bg: #38394b; --bs-table-hover-color: #fff; color: var(--bs-table-color); border-color: var(--bs-table-border-color); } .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; } @media (max-width: 575.98px) { .table-responsive-sm { overflow-x: auto; -webkit-overflow-scrolling: touch; } } @media (max-width: 767.98px) { .table-responsive-md { overflow-x: auto; -webkit-overflow-scrolling: touch; } } @media (max-width: 991.98px) { .table-responsive-lg { overflow-x: auto; -webkit-overflow-scrolling: touch; } } @media (max-width: 1199.98px) { .table-responsive-xl { overflow-x: auto; -webkit-overflow-scrolling: touch; } } @media (max-width: 1399.98px) { .table-responsive-xxl { overflow-x: auto; -webkit-overflow-scrolling: touch; } } .form-label { margin-bottom: 0.25rem; font-size: 0.8125rem; color: var(--bs-heading-color); } .col-form-label { padding-top: calc(0.543rem + var(--bs-border-width)); padding-bottom: calc(0.543rem + var(--bs-border-width)); margin-bottom: 0; font-size: inherit; line-height: 1.375; color: var(--bs-heading-color); } .col-form-label-lg { padding-top: calc(0.7075rem + var(--bs-border-width)); padding-bottom: calc(0.7075rem + var(--bs-border-width)); font-size: 1.0625rem; } .col-form-label-sm { padding-top: calc(0.3165rem + var(--bs-border-width)); padding-bottom: calc(0.3165rem + var(--bs-border-width)); font-size: 0.8125rem; } .form-text { margin-top: 0.3rem; font-size: 0.8125rem; color: var(--bs-body-color); } .form-control { display: block; width: 100%; padding: 0.543rem 0.9375rem; font-size: 0.9375rem; font-weight: 400; line-height: 1.375; color: var(--bs-heading-color); -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: transparent; background-clip: padding-box; border: var(--bs-border-width) solid color-mix(in sRGB, var(--bs-base-color) 22%, var(--bs-paper-bg)); border-radius: var(--bs-border-radius); -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .form-control { -webkit-transition: none; transition: none; } } .form-control[type=file] { overflow: hidden; } .form-control[type=file]:not(:disabled):not([readonly]) { cursor: pointer; } .form-control:focus { color: var(--bs-heading-color); background-color: transparent; border-color: var(--bs-primary); outline: 0; -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-primary-rgb), 0.4); box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-primary-rgb), 0.4); } .form-control::-webkit-date-and-time-value { min-width: 85px; height: 1.375em; margin: 0; } .form-control::-webkit-datetime-edit { display: block; padding: 0; } .form-control::-webkit-input-placeholder { color: var(--bs-secondary-color); opacity: 1; } .form-control::-moz-placeholder { color: var(--bs-secondary-color); opacity: 1; } .form-control:-ms-input-placeholder { color: var(--bs-secondary-color); opacity: 1; } .form-control::-ms-input-placeholder { color: var(--bs-secondary-color); opacity: 1; } .form-control::placeholder { color: var(--bs-secondary-color); opacity: 1; } .form-control:disabled { color: var(--bs-secondary-color); background-color: rgba(var(--bs-base-color-rgb), 0.06); border-color: rgba(var(--bs-base-color-rgb), 0.24); opacity: 1; } .form-control::-webkit-file-upload-button { padding: 0.543rem 0.9375rem; margin: -0.543rem -0.9375rem; -webkit-margin-end: 0.9375rem; margin-inline-end: 0.9375rem; color: var(--bs-heading-color); background-color: transparent; pointer-events: none; border-color: inherit; border-style: solid; border-width: 0; border-inline-end-width: var(--bs-border-width); border-radius: 0; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .form-control::file-selector-button { padding: 0.543rem 0.9375rem; margin: -0.543rem -0.9375rem; -webkit-margin-end: 0.9375rem; margin-inline-end: 0.9375rem; color: var(--bs-heading-color); background-color: transparent; pointer-events: none; border-color: inherit; border-style: solid; border-width: 0; border-inline-end-width: var(--bs-border-width); border-radius: 0; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } @media (prefers-reduced-motion: reduce) { .form-control::-webkit-file-upload-button { -webkit-transition: none; transition: none; } .form-control::file-selector-button { -webkit-transition: none; transition: none; } } .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { background-color: rgba(0, 0, 0, 0.05); } .form-control:hover:not(:disabled):not([readonly])::file-selector-button { background-color: rgba(0, 0, 0, 0.05); } .form-control-plaintext { display: block; width: 100%; padding: 0.543rem 0; margin-bottom: 0; line-height: 1.375; color: var(--bs-heading-color); background-color: transparent; border: solid transparent; border-width: var(--bs-border-width) 0; } .form-control-plaintext:focus { outline: 0; } .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { padding-right: 0; padding-left: 0; } .form-control-sm { min-height: calc(1.375em + 0.633rem + calc(var(--bs-border-width) * 2)); padding: 0.3165rem 0.8125rem; font-size: 0.8125rem; border-radius: var(--bs-border-radius-sm); } .form-control-sm::-webkit-file-upload-button { padding: 0.3165rem 0.8125rem; margin: -0.3165rem -0.8125rem; -webkit-margin-end: 0.8125rem; margin-inline-end: 0.8125rem; } .form-control-sm::file-selector-button { padding: 0.3165rem 0.8125rem; margin: -0.3165rem -0.8125rem; -webkit-margin-end: 0.8125rem; margin-inline-end: 0.8125rem; } .form-control-lg { min-height: calc(1.375em + 1.415rem + calc(var(--bs-border-width) * 2)); padding: 0.7075rem 1.3125rem; font-size: 1.0625rem; border-radius: var(--bs-border-radius-lg); } .form-control-lg::-webkit-file-upload-button { padding: 0.7075rem 1.3125rem; margin: -0.7075rem -1.3125rem; -webkit-margin-end: 1.3125rem; margin-inline-end: 1.3125rem; } .form-control-lg::file-selector-button { padding: 0.7075rem 1.3125rem; margin: -0.7075rem -1.3125rem; -webkit-margin-end: 1.3125rem; margin-inline-end: 1.3125rem; } textarea.form-control { min-height: calc(1.375em + 1.086rem + calc(var(--bs-border-width) * 2)); } textarea.form-control-sm { min-height: calc(1.375em + 0.633rem + calc(var(--bs-border-width) * 2)); } textarea.form-control-lg { min-height: calc(1.375em + 1.415rem + calc(var(--bs-border-width) * 2)); } .form-control-color { width: 3rem; height: calc(1.375em + 1.086rem + calc(var(--bs-border-width) * 2)); padding: 0.543rem; } .form-control-color:not(:disabled):not([readonly]) { cursor: pointer; } .form-control-color::-moz-color-swatch { border: 0 !important; border-radius: var(--bs-border-radius); } .form-control-color::-webkit-color-swatch { border: 0 !important; border-radius: var(--bs-border-radius); } .form-control-color.form-control-sm { height: calc(1.375em + 0.633rem + calc(var(--bs-border-width) * 2)); } .form-control-color.form-control-lg { height: calc(1.375em + 1.415rem + calc(var(--bs-border-width) * 2)); } .form-select { --bs-form-select-bg-img: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 22" fill="none"%3e%3cpath d="M10.9999 12.0743L15.5374 7.53676L16.8336 8.83292L10.9999 14.6666L5.16626 8.83292L6.46243 7.53676L10.9999 12.0743Z" fill="%2322303e" fill-opacity="0.9"/%3e%3c/svg%3e'); display: block; width: 100%; padding: 0.543rem 2.625rem 0.543rem 0.9375rem; font-size: 0.9375rem; font-weight: 400; line-height: 1.375; color: var(--bs-heading-color); -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: transparent; background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none); background-repeat: no-repeat; background-position: right 0.9375rem center; background-size: 22px 24px; border: var(--bs-border-width) solid color-mix(in sRGB, var(--bs-base-color) 22%, var(--bs-paper-bg)); border-radius: var(--bs-border-radius); -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .form-select { -webkit-transition: none; transition: none; } } .form-select:focus { border-color: var(--bs-primary); outline: 0; -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-primary-rgb), 0.4); box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-primary-rgb), 0.4); } .form-select[multiple], .form-select[size]:not([size="1"]) { padding-right: 0.9375rem; background-image: none; } .form-select:disabled { color: var(--bs-secondary-color); background-color: rgba(var(--bs-base-color-rgb), 0.06); border-color: rgba(var(--bs-base-color-rgb), 0.24); } .form-select:-moz-focusring { color: transparent; text-shadow: 0 0 0 var(--bs-heading-color); } .form-select-sm { padding-top: 0.3165rem; padding-bottom: 0.3165rem; padding-left: 0.8125rem; font-size: 0.8125rem; border-radius: var(--bs-border-radius-sm); } .form-select-lg { padding-top: 0.7075rem; padding-bottom: 0.7075rem; padding-left: 1.3125rem; font-size: 1.0625rem; border-radius: var(--bs-border-radius-lg); } [data-bs-theme=dark] .form-select { --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23bdc1c5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); } .form-check { display: block; min-height: 1.3754296875rem; padding-left: 1.8em; margin-bottom: 0.5rem; } .form-check .form-check-input { float: left; margin-left: -1.8em; } .form-check-reverse { padding-right: 1.8em; padding-left: 0; text-align: right; } .form-check-reverse .form-check-input { float: right; margin-right: -1.8em; margin-left: 0; } .form-check-input { --bs-form-check-bg: transparent; -ms-flex-negative: 0; flex-shrink: 0; width: 1.2em; height: 1.2em; margin-top: 0.0875em; vertical-align: top; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: var(--bs-form-check-bg); background-image: var(--bs-form-check-bg-image); background-repeat: no-repeat; background-position: center; background-size: contain; border: 2px solid var(--bs-secondary-color); -webkit-print-color-adjust: exact; print-color-adjust: exact; } .form-check-input[type=checkbox] { border-radius: 0.267em; } .form-check-input[type=radio] { border-radius: 50%; } .form-check-input:active { -webkit-filter: brightness(90%); filter: brightness(90%); } .form-check-input:focus { border-color: var(--bs-body-color); outline: 0; -webkit-box-shadow: none; box-shadow: none; } .form-check-input:checked { background-color: var(--bs-primary); border-color: var(--bs-primary); } .form-check-input:checked[type=checkbox] { --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='17' viewBox='0 0 15 14' fill='none'%3E%3Cpath d='M3.41667 7L6.33333 9.91667L12.1667 4.08333' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); } .form-check-input:checked[type=radio] { --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='1.6' fill='%23fff' /%3e%3c/svg%3e"); } .form-check-input[type=checkbox]:indeterminate { background-color: var(--bs-primary); border-color: var(--bs-primary); --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3e%3cpath d='M2.5 6H9.5' stroke='%23fff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e"); } .form-check-input:disabled { pointer-events: none; -webkit-filter: none; filter: none; opacity: 0.45; } .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { cursor: default; opacity: 0.45; } .form-check-label { color: var(--bs-heading-color); cursor: pointer; } .form-switch { padding-left: 2.667em; } .form-switch .form-check-input { --bs-form-switch-bg: url("data:image/svg+xml,%3csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url%28%23a%29'%3e%3ccircle cx='12' cy='11' r='8.5' fill='%23fff'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='a' x='0' y='0' width='22' height='22' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='2'/%3e%3cfeGaussianBlur stdDeviation='2'/%3e%3cfeColorMatrix values='0 0 0 0 0.180392 0 0 0 0 0.14902 0 0 0 0 0.239216 0 0 0 0.16 0'/%3e%3cfeBlend in2='BackgroundImageFix' result='effect1_dropShadow_6488_3264'/%3e%3cfeBlend in='SourceGraphic' in2='effect1_dropShadow_6488_3264' result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e"); width: 2em; margin-left: -2.667em; background-image: var(--bs-form-switch-bg); background-position: left center; border-radius: 2em; -webkit-transition: background-position 0.15s ease-in-out; transition: background-position 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .form-switch .form-check-input { -webkit-transition: none; transition: none; } } .form-switch .form-check-input:focus { --bs-form-switch-bg: url("data:image/svg+xml,%3csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url%28%23a%29'%3e%3ccircle cx='12' cy='11' r='8.5' fill='%23fff'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='a' x='0' y='0' width='22' height='22' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='2'/%3e%3cfeGaussianBlur stdDeviation='2'/%3e%3cfeColorMatrix values='0 0 0 0 0.180392 0 0 0 0 0.14902 0 0 0 0 0.239216 0 0 0 0.16 0'/%3e%3cfeBlend in2='BackgroundImageFix' result='effect1_dropShadow_6488_3264'/%3e%3cfeBlend in='SourceGraphic' in2='effect1_dropShadow_6488_3264' result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e"); } .form-switch .form-check-input:checked { background-position: 95% center; --bs-form-switch-bg: url("data:image/svg+xml,%3csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg filter='url%28%23a%29'%3e%3ccircle cx='12' cy='11' r='8.5' fill='%23fff'/%3e%3c/g%3e%3cdefs%3e%3cfilter id='a' x='0' y='0' width='22' height='22' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3e%3cfeFlood flood-opacity='0' result='BackgroundImageFix'/%3e%3cfeColorMatrix in='SourceAlpha' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3e%3cfeOffset dy='2'/%3e%3cfeGaussianBlur stdDeviation='2'/%3e%3cfeColorMatrix values='0 0 0 0 0.180392 0 0 0 0 0.14902 0 0 0 0 0.239216 0 0 0 0.16 0'/%3e%3cfeBlend in2='BackgroundImageFix' result='effect1_dropShadow_6488_3264'/%3e%3cfeBlend in='SourceGraphic' in2='effect1_dropShadow_6488_3264' result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e"); } .form-switch.form-check-reverse { padding-right: 2.667em; padding-left: 0; } .form-switch.form-check-reverse .form-check-input { margin-right: -2.667em; margin-left: 0; } .form-check-inline { display: inline-block; margin-right: 1rem; } .btn-check { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .btn-check[disabled] + .btn, .btn-check:disabled + .btn { pointer-events: none; -webkit-filter: none; filter: none; opacity: 0.45; } [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) { --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e"); } .form-range { width: 100%; height: 1.475rem; padding: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: transparent; } .form-range:focus { outline: 0; } .form-range:focus::-webkit-slider-thumb { -webkit-box-shadow: 0 0 0.25rem 0.05rem color-mix(in sRGB, var(--bs-primary) 0.1, var(--bs-paper-bg)); box-shadow: 0 0 0.25rem 0.05rem color-mix(in sRGB, var(--bs-primary) 0.1, var(--bs-paper-bg)); } .form-range:focus::-moz-range-thumb { box-shadow: 0 0 0.25rem 0.05rem color-mix(in sRGB, var(--bs-primary) 0.1, var(--bs-paper-bg)); } .form-range::-moz-focus-outer { border: 0; } .form-range::-webkit-slider-thumb { width: 1.375rem; height: 1.375rem; margin-top: -0.5rem; -webkit-appearance: none; appearance: none; background-color: var(--bs-white); border: 0.25rem solid var(--bs-primary); border-radius: 1rem; -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .form-range::-webkit-slider-thumb { -webkit-transition: none; transition: none; } } .form-range::-webkit-slider-thumb:active { background-color: var(--bs-white); } .form-range::-webkit-slider-runnable-track { width: 100%; height: 0.375rem; color: transparent; cursor: pointer; background-color: var(--bs-primary-bg-subtle); border-color: transparent; border-radius: 1rem; } .form-range::-moz-range-thumb { width: 1.375rem; height: 1.375rem; -moz-appearance: none; appearance: none; background-color: var(--bs-white); border: 0.25rem solid var(--bs-primary); border-radius: 1rem; -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .form-range::-moz-range-thumb { -moz-transition: none; transition: none; } } .form-range::-moz-range-thumb:active { background-color: var(--bs-white); } .form-range::-moz-range-track { width: 100%; height: 0.375rem; color: transparent; cursor: pointer; background-color: var(--bs-primary-bg-subtle); border-color: transparent; border-radius: 1rem; } .form-range:disabled { pointer-events: none; } .form-range:disabled::-webkit-slider-thumb { background-color: var(--bs-white); } .form-range:disabled::-moz-range-thumb { background-color: var(--bs-white); } .form-floating { position: relative; } .form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select { height: calc(3.5rem + calc(var(--bs-border-width) * 2)); min-height: calc(3.5rem + calc(var(--bs-border-width) * 2)); line-height: 1.25; } .form-floating > label { position: absolute; top: 0; left: 0; z-index: 2; height: 100%; padding: 1rem 0.9375rem; overflow: hidden; text-align: start; text-overflow: ellipsis; white-space: nowrap; pointer-events: none; border: var(--bs-border-width) solid transparent; -webkit-transform-origin: 0 0; -ms-transform-origin: 0 0; transform-origin: 0 0; -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out; transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; } @media (prefers-reduced-motion: reduce) { .form-floating > label { -webkit-transition: none; transition: none; } } .form-floating > .form-control, .form-floating > .form-control-plaintext { padding: 1rem 0.9375rem; } .form-floating > .form-control::-webkit-input-placeholder, .form-floating > .form-control-plaintext::-webkit-input-placeholder { color: transparent; } .form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder { color: transparent; } .form-floating > .form-control:-ms-input-placeholder, .form-floating > .form-control-plaintext:-ms-input-placeholder { color: transparent; } .form-floating > .form-control::-ms-input-placeholder, .form-floating > .form-control-plaintext::-ms-input-placeholder { color: transparent; } .form-floating > .form-control::placeholder, .form-floating > .form-control-plaintext::placeholder { color: transparent; } .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) { padding-top: 1.625rem; padding-bottom: 0.625rem; } .form-floating > .form-control:not(:-ms-input-placeholder), .form-floating > .form-control-plaintext:not(:-ms-input-placeholder) { padding-top: 1.625rem; padding-bottom: 0.625rem; } .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown) { padding-top: 1.625rem; padding-bottom: 0.625rem; } .form-floating > .form-control:-webkit-autofill, .form-floating > .form-control-plaintext:-webkit-autofill { padding-top: 1.625rem; padding-bottom: 0.625rem; } .form-floating > .form-select { padding-top: 1.625rem; padding-bottom: 0.625rem; } .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label { color: rgba(var(--bs-body-color-rgb), 0.75); transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } .form-floating > .form-control:not(:-ms-input-placeholder) ~ label { color: rgba(var(--bs-body-color-rgb), 0.75); -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label, .form-floating > .form-select ~ label { color: rgba(var(--bs-body-color-rgb), 0.75); -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after { position: absolute; inset: 1rem 0.46875rem; z-index: -1; height: 1.5em; content: ""; background-color: transparent; border-radius: var(--bs-border-radius); } .form-floating > .form-control:not(:-ms-input-placeholder) ~ label::after { position: absolute; inset: 1rem 0.46875rem; z-index: -1; height: 1.5em; content: ""; background-color: transparent; border-radius: var(--bs-border-radius); } .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-select ~ label::after { position: absolute; inset: 1rem 0.46875rem; z-index: -1; height: 1.5em; content: ""; background-color: transparent; border-radius: var(--bs-border-radius); } .form-floating > .form-control:-webkit-autofill ~ label { color: rgba(var(--bs-body-color-rgb), 0.75); -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); } .form-floating > .form-control-plaintext ~ label { border-width: var(--bs-border-width) 0; } .form-floating > :disabled ~ label, .form-floating > .form-control:disabled ~ label { color: #7a838b; } .form-floating > :disabled ~ label::after, .form-floating > .form-control:disabled ~ label::after { background-color: rgba(var(--bs-base-color-rgb), 0.06); } .input-group { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; width: 100%; } .input-group > .form-control, .input-group > .form-select, .input-group > .form-floating { position: relative; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; width: 1%; min-width: 0; } .input-group > .form-control:focus, .input-group > .form-select:focus, .input-group > .form-floating:focus-within { z-index: 5; } .input-group .btn { position: relative; z-index: 2; } .input-group .btn:focus { z-index: 5; } .input-group-text { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0.543rem 0.9375rem; font-size: 0.9375rem; font-weight: 400; line-height: 1.375; color: var(--bs-heading-color); text-align: center; white-space: nowrap; background-color: transparent; border: var(--bs-border-width) solid color-mix(in sRGB, var(--bs-base-color) 22%, var(--bs-paper-bg)); border-radius: var(--bs-border-radius); } .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text, .input-group-lg > .btn { padding: 0.7075rem 1.3125rem; font-size: 1.0625rem; border-radius: var(--bs-border-radius-lg); } .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text, .input-group-sm > .btn { padding: 0.3165rem 0.8125rem; font-size: 0.8125rem; border-radius: var(--bs-border-radius-sm); } .input-group-lg > .form-select, .input-group-sm > .form-select { padding-right: 3.5625rem; } .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select { border-end-end-radius: 0; border-start-end-radius: 0; } .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select { border-end-end-radius: 0; border-start-end-radius: 0; } .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) { margin-left: calc(var(--bs-border-width) * -1); border-end-start-radius: 0; border-start-start-radius: 0; } .input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select { border-end-start-radius: 0; border-start-start-radius: 0; } .valid-feedback { display: none; width: 100%; margin-top: 0.3rem; font-size: 0.8125rem; color: var(--bs-form-valid-color); } .valid-tooltip { position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: 0.379rem 0.75rem; margin-top: 0.1rem; font-size: 0.8125rem; color: #fff; background-color: var(--bs-success); border-radius: 0.25rem; } .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip, .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip { display: block; } .was-validated .form-control:valid, .form-control.is-valid { border-color: var(--bs-form-valid-border-color); } .was-validated .form-control:valid:focus, .form-control.is-valid:focus { border-color: var(--bs-form-valid-border-color); -webkit-box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-success-rgb), 0.1); box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-success-rgb), 0.1); } .was-validated .form-select:valid, .form-select.is-valid { border-color: var(--bs-form-valid-border-color); } .was-validated .form-select:valid:focus, .form-select.is-valid:focus { border-color: var(--bs-form-valid-border-color); -webkit-box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-success-rgb), 0.1); box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-success-rgb), 0.1); } .was-validated .form-check-input:valid, .form-check-input.is-valid { border-color: var(--bs-form-valid-border-color); } .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked { background-color: var(--bs-form-valid-color); } .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus { -webkit-box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-success-rgb), 0.1); box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-success-rgb), 0.1); } .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { color: var(--bs-form-valid-color); } .form-check-inline .form-check-input ~ .valid-feedback { margin-left: 0.5em; } .was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .was-validated .input-group > .form-select:not(:focus):valid, .input-group > .form-select:not(:focus).is-valid, .was-validated .input-group > .form-floating:not(:focus-within):valid, .input-group > .form-floating:not(:focus-within).is-valid { z-index: 3; } .invalid-feedback { display: none; width: 100%; margin-top: 0.3rem; font-size: 0.8125rem; color: var(--bs-form-invalid-color); } .invalid-tooltip { position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: 0.379rem 0.75rem; margin-top: 0.1rem; font-size: 0.8125rem; color: #fff; background-color: var(--bs-danger); border-radius: 0.25rem; } .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip, .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip { display: block; } .was-validated .form-control:invalid, .form-control.is-invalid { border-color: var(--bs-form-invalid-border-color); } .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { border-color: var(--bs-form-invalid-border-color); -webkit-box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-danger-rgb), 0.1); box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-danger-rgb), 0.1); } .was-validated .form-select:invalid, .form-select.is-invalid { border-color: var(--bs-form-invalid-border-color); } .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus { border-color: var(--bs-form-invalid-border-color); -webkit-box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-danger-rgb), 0.1); box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-danger-rgb), 0.1); } .was-validated .form-check-input:invalid, .form-check-input.is-invalid { border-color: var(--bs-form-invalid-border-color); } .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked { background-color: var(--bs-form-invalid-color); } .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus { -webkit-box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-danger-rgb), 0.1); box-shadow: 0 0 0.25rem 0.05rem rgba(var(--bs-danger-rgb), 0.1); } .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { color: var(--bs-form-invalid-color); } .form-check-inline .form-check-input ~ .invalid-feedback { margin-left: 0.5em; } .was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .was-validated .input-group > .form-select:not(:focus):invalid, .input-group > .form-select:not(:focus).is-invalid, .was-validated .input-group > .form-floating:not(:focus-within):invalid, .input-group > .form-floating:not(:focus-within).is-invalid { z-index: 4; } .btn { --bs-btn-padding-x: 1.25rem; --bs-btn-padding-y: 0.4812rem; --bs-btn-font-family: ; --bs-btn-font-size: 0.9375rem; --bs-btn-font-weight: 500; --bs-btn-line-height: 1.375; --bs-btn-color: var(--bs-body-color); --bs-btn-bg: transparent; --bs-btn-border-width: var(--bs-border-width); --bs-btn-border-color: transparent; --bs-btn-border-radius: var(--bs-border-radius); --bs-btn-hover-border-color: transparent; --bs-btn-box-shadow: none; --bs-btn-disabled-opacity: 0.45; --bs-btn-focus-box-shadow: 0 0 0 0.05rem rgba(var(--bs-btn-focus-shadow-rgb), .5); display: inline-block; padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x); font-family: var(--bs-btn-font-family); font-size: var(--bs-btn-font-size); font-weight: var(--bs-btn-font-weight); line-height: var(--bs-btn-line-height); color: var(--bs-btn-color); text-align: center; vertical-align: middle; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: var(--bs-btn-border-width) solid var(--bs-btn-border-color); border-radius: var(--bs-btn-border-radius); background-color: var(--bs-btn-bg); -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } @media (prefers-reduced-motion: reduce) { .btn { -webkit-transition: none; transition: none; } } .btn:hover { color: var(--bs-btn-hover-color); background-color: var(--bs-btn-hover-bg); border-color: var(--bs-btn-hover-border-color); } .btn-check + .btn:hover { color: var(--bs-btn-color); background-color: var(--bs-btn-bg); border-color: var(--bs-btn-border-color); } .btn:focus-visible { color: var(--bs-btn-hover-color); background-color: var(--bs-btn-hover-bg); border-color: var(--bs-btn-hover-border-color); outline: 0; -webkit-box-shadow: var(--bs-btn-focus-box-shadow); box-shadow: var(--bs-btn-focus-box-shadow); } .btn-check:focus-visible + .btn { border-color: var(--bs-btn-hover-border-color); outline: 0; -webkit-box-shadow: var(--bs-btn-focus-box-shadow); box-shadow: var(--bs-btn-focus-box-shadow); } .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show { color: var(--bs-btn-active-color); background-color: var(--bs-btn-active-bg); border-color: var(--bs-btn-active-border-color); } .btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible { -webkit-box-shadow: var(--bs-btn-focus-box-shadow); box-shadow: var(--bs-btn-focus-box-shadow); } .btn-check:checked:focus-visible + .btn { -webkit-box-shadow: var(--bs-btn-focus-box-shadow); box-shadow: var(--bs-btn-focus-box-shadow); } .btn:disabled, .btn.disabled, fieldset:disabled .btn { color: var(--bs-btn-disabled-color); pointer-events: none; background-color: var(--bs-btn-disabled-bg); border-color: var(--bs-btn-disabled-border-color); opacity: var(--bs-btn-disabled-opacity); } .btn-primary { --bs-btn-color: #fff; --bs-btn-bg: #696cff; --bs-btn-border-color: #696cff; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #5f61e6; --bs-btn-hover-border-color: #5456cc; --bs-btn-focus-shadow-rgb: 128, 130, 255; --bs-btn-active-color: #fff; --bs-btn-active-bg: #5f61e6; --bs-btn-active-border-color: #4f51bf; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #fff; --bs-btn-disabled-bg: #696cff; --bs-btn-disabled-border-color: #696cff; } .btn-secondary { --bs-btn-color: #fff; --bs-btn-bg: #8592a3; --bs-btn-border-color: #8592a3; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #788393; --bs-btn-hover-border-color: #6a7582; --bs-btn-focus-shadow-rgb: 151, 162, 177; --bs-btn-active-color: #fff; --bs-btn-active-bg: #788393; --bs-btn-active-border-color: #646e7a; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #fff; --bs-btn-disabled-bg: #8592a3; --bs-btn-disabled-border-color: #8592a3; } .btn-success { --bs-btn-color: #fff; --bs-btn-bg: #71dd37; --bs-btn-border-color: #71dd37; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #66c732; --bs-btn-hover-border-color: #5ab12c; --bs-btn-focus-shadow-rgb: 134, 226, 85; --bs-btn-active-color: #fff; --bs-btn-active-bg: #66c732; --bs-btn-active-border-color: #55a629; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #fff; --bs-btn-disabled-bg: #71dd37; --bs-btn-disabled-border-color: #71dd37; } .btn-info { --bs-btn-color: #fff; --bs-btn-bg: #03c3ec; --bs-btn-border-color: #03c3ec; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #03b0d4; --bs-btn-hover-border-color: #029cbd; --bs-btn-focus-shadow-rgb: 41, 204, 239; --bs-btn-active-color: #fff; --bs-btn-active-bg: #03b0d4; --bs-btn-active-border-color: #0292b1; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #fff; --bs-btn-disabled-bg: #03c3ec; --bs-btn-disabled-border-color: #03c3ec; } .btn-warning { --bs-btn-color: #fff; --bs-btn-bg: #ffab00; --bs-btn-border-color: #ffab00; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #e69a00; --bs-btn-hover-border-color: #cc8900; --bs-btn-focus-shadow-rgb: 255, 184, 38; --bs-btn-active-color: #fff; --bs-btn-active-bg: #e69a00; --bs-btn-active-border-color: #bf8000; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #fff; --bs-btn-disabled-bg: #ffab00; --bs-btn-disabled-border-color: #ffab00; } .btn-danger { --bs-btn-color: #fff; --bs-btn-bg: #ff3e1d; --bs-btn-border-color: #ff3e1d; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #e6381a; --bs-btn-hover-border-color: #cc3217; --bs-btn-focus-shadow-rgb: 255, 91, 63; --bs-btn-active-color: #fff; --bs-btn-active-bg: #e6381a; --bs-btn-active-border-color: #bf2f16; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #fff; --bs-btn-disabled-bg: #ff3e1d; --bs-btn-disabled-border-color: #ff3e1d; } .btn-light { --bs-btn-color: #000; --bs-btn-bg: #dbdee0; --bs-btn-border-color: #dbdee0; --bs-btn-hover-color: #000; --bs-btn-hover-bg: #c5c8ca; --bs-btn-hover-border-color: #afb2b3; --bs-btn-focus-shadow-rgb: 186, 189, 190; --bs-btn-active-color: #000; --bs-btn-active-bg: #c5c8ca; --bs-btn-active-border-color: #a4a7a8; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #000; --bs-btn-disabled-bg: #dbdee0; --bs-btn-disabled-border-color: #dbdee0; } .btn-dark { --bs-btn-color: #fff; --bs-btn-bg: #2b2c40; --bs-btn-border-color: #2b2c40; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #4b4c5d; --bs-btn-hover-border-color: #404153; --bs-btn-focus-shadow-rgb: 75, 76, 93; --bs-btn-active-color: #fff; --bs-btn-active-bg: #555666; --bs-btn-active-border-color: #404153; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #fff; --bs-btn-disabled-bg: #2b2c40; --bs-btn-disabled-border-color: #2b2c40; } .btn-gray { --bs-btn-color: #fff; --bs-btn-bg: #91979f; --bs-btn-border-color: #91979f; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #83888f; --bs-btn-hover-border-color: #74797f; --bs-btn-focus-shadow-rgb: 162, 167, 173; --bs-btn-active-color: #fff; --bs-btn-active-bg: #83888f; --bs-btn-active-border-color: #6d7177; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #fff; --bs-btn-disabled-bg: #91979f; --bs-btn-disabled-border-color: #91979f; } .btn-outline-primary { --bs-btn-color: #696cff; --bs-btn-border-color: #696cff; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #696cff; --bs-btn-hover-border-color: #696cff; --bs-btn-focus-shadow-rgb: 105, 108, 255; --bs-btn-active-color: #fff; --bs-btn-active-bg: #696cff; --bs-btn-active-border-color: #696cff; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #696cff; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #696cff; --bs-gradient: none; } .btn-outline-secondary { --bs-btn-color: #8592a3; --bs-btn-border-color: #8592a3; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #8592a3; --bs-btn-hover-border-color: #8592a3; --bs-btn-focus-shadow-rgb: 133, 146, 163; --bs-btn-active-color: #fff; --bs-btn-active-bg: #8592a3; --bs-btn-active-border-color: #8592a3; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #8592a3; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #8592a3; --bs-gradient: none; } .btn-outline-success { --bs-btn-color: #71dd37; --bs-btn-border-color: #71dd37; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #71dd37; --bs-btn-hover-border-color: #71dd37; --bs-btn-focus-shadow-rgb: 113, 221, 55; --bs-btn-active-color: #fff; --bs-btn-active-bg: #71dd37; --bs-btn-active-border-color: #71dd37; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #71dd37; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #71dd37; --bs-gradient: none; } .btn-outline-info { --bs-btn-color: #03c3ec; --bs-btn-border-color: #03c3ec; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #03c3ec; --bs-btn-hover-border-color: #03c3ec; --bs-btn-focus-shadow-rgb: 3, 195, 236; --bs-btn-active-color: #fff; --bs-btn-active-bg: #03c3ec; --bs-btn-active-border-color: #03c3ec; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #03c3ec; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #03c3ec; --bs-gradient: none; } .btn-outline-warning { --bs-btn-color: #ffab00; --bs-btn-border-color: #ffab00; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #ffab00; --bs-btn-hover-border-color: #ffab00; --bs-btn-focus-shadow-rgb: 255, 171, 0; --bs-btn-active-color: #fff; --bs-btn-active-bg: #ffab00; --bs-btn-active-border-color: #ffab00; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #ffab00; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #ffab00; --bs-gradient: none; } .btn-outline-danger { --bs-btn-color: #ff3e1d; --bs-btn-border-color: #ff3e1d; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #ff3e1d; --bs-btn-hover-border-color: #ff3e1d; --bs-btn-focus-shadow-rgb: 255, 62, 29; --bs-btn-active-color: #fff; --bs-btn-active-bg: #ff3e1d; --bs-btn-active-border-color: #ff3e1d; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #ff3e1d; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #ff3e1d; --bs-gradient: none; } .btn-outline-light { --bs-btn-color: #dbdee0; --bs-btn-border-color: #dbdee0; --bs-btn-hover-color: #000; --bs-btn-hover-bg: #dbdee0; --bs-btn-hover-border-color: #dbdee0; --bs-btn-focus-shadow-rgb: 219, 222, 224; --bs-btn-active-color: #000; --bs-btn-active-bg: #dbdee0; --bs-btn-active-border-color: #dbdee0; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #dbdee0; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #dbdee0; --bs-gradient: none; } .btn-outline-dark { --bs-btn-color: #2b2c40; --bs-btn-border-color: #2b2c40; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #2b2c40; --bs-btn-hover-border-color: #2b2c40; --bs-btn-focus-shadow-rgb: 43, 44, 64; --bs-btn-active-color: #fff; --bs-btn-active-bg: #2b2c40; --bs-btn-active-border-color: #2b2c40; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #2b2c40; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #2b2c40; --bs-gradient: none; } .btn-outline-gray { --bs-btn-color: #91979f; --bs-btn-border-color: #91979f; --bs-btn-hover-color: #fff; --bs-btn-hover-bg: #91979f; --bs-btn-hover-border-color: #91979f; --bs-btn-focus-shadow-rgb: 145, 151, 159; --bs-btn-active-color: #fff; --bs-btn-active-bg: #91979f; --bs-btn-active-border-color: #91979f; --bs-btn-active-shadow: none; --bs-btn-disabled-color: #91979f; --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: #91979f; --bs-gradient: none; } .btn-link { --bs-btn-font-weight: 400; --bs-btn-color: var(--bs-link-color); --bs-btn-bg: transparent; --bs-btn-border-color: transparent; --bs-btn-hover-color: var(--bs-link-hover-color); --bs-btn-hover-border-color: transparent; --bs-btn-active-color: var(--bs-link-hover-color); --bs-btn-active-border-color: transparent; --bs-btn-disabled-color: #7a838b; --bs-btn-disabled-border-color: transparent; --bs-btn-box-shadow: 0 0 0 #000; --bs-btn-focus-shadow-rgb: 128, 130, 255; text-decoration: none; } .btn-link:focus-visible { color: var(--bs-btn-color); } .btn-link:hover { color: var(--bs-btn-hover-color); } .btn-lg, .btn-group-lg > .btn { --bs-btn-padding-y: 0.708rem; --bs-btn-padding-x: 1.5rem; --bs-btn-font-size: 1.0625rem; --bs-btn-border-radius: var(--bs-border-radius-lg); } .btn-sm, .btn-group-sm > .btn { --bs-btn-padding-y: 0.317rem; --bs-btn-padding-x: 0.75rem; --bs-btn-font-size: 0.8125rem; --bs-btn-border-radius: var(--bs-border-radius-sm); } .fade { -webkit-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } @media (prefers-reduced-motion: reduce) { .fade { -webkit-transition: none; transition: none; } } .fade:not(.show) { opacity: 0; } .collapse:not(.show) { display: none; } .collapsing { height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; transition: height 0.35s ease; } @media (prefers-reduced-motion: reduce) { .collapsing { -webkit-transition: none; transition: none; } } .collapsing.collapse-horizontal { width: 0; height: auto; -webkit-transition: width 0.35s ease; transition: width 0.35s ease; } @media (prefers-reduced-motion: reduce) { .collapsing.collapse-horizontal { -webkit-transition: none; transition: none; } } .dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center { position: relative; } .dropdown-toggle { white-space: nowrap; } .dropdown-toggle::after { display: inline-block; margin-left: 0.5em; vertical-align: middle; content: ""; border: 2px solid; block-size: 0.55em; -webkit-border-before: 0; border-block-start: 0; -webkit-border-start: 0; border-inline-start: 0; inline-size: 0.55em; -webkit-margin-before: -0.29425em; margin-block-start: -0.29425em; margin-inline: 0.8em 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .dropdown-toggle:empty::after { margin-left: 0; } .dropdown-menu { --bs-dropdown-zindex: 1000; --bs-dropdown-min-width: 10rem; --bs-dropdown-padding-x: 0; --bs-dropdown-padding-y: 0.5rem; --bs-dropdown-spacer: 0.125rem; --bs-dropdown-font-size: 0.9375rem; --bs-dropdown-color: var(--bs-body-color); --bs-dropdown-bg: var(--bs-paper-bg); --bs-dropdown-border-color: var(--bs-border-color); --bs-dropdown-border-radius: var(--bs-border-radius); --bs-dropdown-border-width: 0; --bs-dropdown-inner-border-radius: 0; --bs-dropdown-divider-bg: var(--bs-border-color); --bs-dropdown-divider-margin-y: 0.5rem; --bs-dropdown-box-shadow: var(--bs-box-shadow-lg); --bs-dropdown-link-color: var(--bs-heading-color); --bs-dropdown-link-hover-color: var(--bs-heading-color); --bs-dropdown-link-hover-bg: rgba(var(--bs-base-color-rgb), 0.06); --bs-dropdown-link-active-color: var(--bs-primary); --bs-dropdown-link-active-bg: rgba(var(--bs-primary-rgb), 0.16); --bs-dropdown-link-disabled-color: var(--bs-secondary-color); --bs-dropdown-item-padding-x: 1.25rem; --bs-dropdown-item-padding-y: 0.543rem; --bs-dropdown-header-color: var(--bs-secondary-color); --bs-dropdown-header-padding-x: 1.25rem; --bs-dropdown-header-padding-y: 0.5rem; position: absolute; z-index: var(--bs-dropdown-zindex); display: none; min-width: var(--bs-dropdown-min-width); padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x); margin: 0; font-size: var(--bs-dropdown-font-size); color: var(--bs-dropdown-color); text-align: left; list-style: none; background-color: var(--bs-dropdown-bg); background-clip: padding-box; border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color); border-radius: var(--bs-dropdown-border-radius); } .dropdown-menu[data-bs-popper] { top: 100%; left: 0; margin-top: var(--bs-dropdown-spacer); } .dropdown-menu-start { --bs-position: start; } .dropdown-menu-start[data-bs-popper] { right: auto; left: 0; } .dropdown-menu-end { --bs-position: end; } .dropdown-menu-end[data-bs-popper] { right: 0; left: auto; } @media (min-width: 576px) { .dropdown-menu-sm-start { --bs-position: start; } .dropdown-menu-sm-start[data-bs-popper] { right: auto; left: 0; } .dropdown-menu-sm-end { --bs-position: end; } .dropdown-menu-sm-end[data-bs-popper] { right: 0; left: auto; } } @media (min-width: 768px) { .dropdown-menu-md-start { --bs-position: start; } .dropdown-menu-md-start[data-bs-popper] { right: auto; left: 0; } .dropdown-menu-md-end { --bs-position: end; } .dropdown-menu-md-end[data-bs-popper] { right: 0; left: auto; } } @media (min-width: 992px) { .dropdown-menu-lg-start { --bs-position: start; } .dropdown-menu-lg-start[data-bs-popper] { right: auto; left: 0; } .dropdown-menu-lg-end { --bs-position: end; } .dropdown-menu-lg-end[data-bs-popper] { right: 0; left: auto; } } @media (min-width: 1200px) { .dropdown-menu-xl-start { --bs-position: start; } .dropdown-menu-xl-start[data-bs-popper] { right: auto; left: 0; } .dropdown-menu-xl-end { --bs-position: end; } .dropdown-menu-xl-end[data-bs-popper] { right: 0; left: auto; } } @media (min-width: 1400px) { .dropdown-menu-xxl-start { --bs-position: start; } .dropdown-menu-xxl-start[data-bs-popper] { right: auto; left: 0; } .dropdown-menu-xxl-end { --bs-position: end; } .dropdown-menu-xxl-end[data-bs-popper] { right: 0; left: auto; } } .dropup .dropdown-menu[data-bs-popper] { top: auto; bottom: 100%; margin-top: 0; margin-bottom: var(--bs-dropdown-spacer); } .dropup .dropdown-toggle::after { display: inline-block; margin-left: 0.5em; vertical-align: middle; content: ""; border: 2px solid; block-size: 0.55em; -webkit-border-after: 0; border-block-end: 0; -webkit-border-start: 0; border-inline-start: 0; inline-size: 0.55em; -webkit-margin-before: 0.26675em; margin-block-start: 0.26675em; margin-inline: 0.8em 0; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } .dropup .dropdown-toggle:empty::after { margin-left: 0; } .dropend .dropdown-menu[data-bs-popper] { top: 0; right: auto; left: 100%; margin-top: 0; margin-left: var(--bs-dropdown-spacer); } .dropend .dropdown-toggle::after { display: inline-block; margin-left: 0.5em; vertical-align: middle; content: ""; border: 2px solid; block-size: 0.55em; -webkit-border-before: 0; border-block-start: 0; -webkit-border-start: 0; border-inline-start: 0; inline-size: 0.55em; -webkit-margin-before: 0; margin-block-start: 0; margin-inline: 0.5em 0; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } .dropend .dropdown-toggle:empty::after { margin-left: 0; } .dropend .dropdown-toggle::after { vertical-align: 0; } .dropstart .dropdown-menu[data-bs-popper] { top: 0; right: 100%; left: auto; margin-top: 0; margin-right: var(--bs-dropdown-spacer); } .dropstart .dropdown-toggle::after { display: inline-block; margin-left: 0.5em; vertical-align: middle; content: ""; } .dropstart .dropdown-toggle::after { display: none; } .dropstart .dropdown-toggle::before { display: inline-block; margin-right: 0.5em; vertical-align: middle; content: ""; border: 2px solid; block-size: 0.55em; -webkit-border-before: 0; border-block-start: 0; -webkit-border-end: 0; border-inline-end: 0; inline-size: 0.55em; -webkit-margin-before: 0; margin-block-start: 0; margin-inline: 0 0.5em; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .dropstart .dropdown-toggle:empty::after { margin-left: 0; } .dropstart .dropdown-toggle::before { vertical-align: 0; } .dropdown-divider { height: 0; margin: var(--bs-dropdown-divider-margin-y) 0; overflow: hidden; border-top: 1px solid var(--bs-dropdown-divider-bg); opacity: 1; } .dropdown-item { display: block; width: 100%; padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x); clear: both; font-weight: 400; color: var(--bs-dropdown-link-color); text-align: inherit; white-space: nowrap; background-color: transparent; border: 0; border-radius: var(--bs-dropdown-item-border-radius, 0); } .dropdown-item:hover, .dropdown-item:focus { color: var(--bs-dropdown-link-hover-color); background-color: var(--bs-dropdown-link-hover-bg); } .dropdown-item.active, .dropdown-item:active { color: var(--bs-dropdown-link-active-color); text-decoration: none; background-color: var(--bs-dropdown-link-active-bg); } .dropdown-item.disabled, .dropdown-item:disabled { color: var(--bs-dropdown-link-disabled-color); pointer-events: none; background-color: transparent; } .dropdown-menu.show { display: block; } .dropdown-header { display: block; padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x); margin-bottom: 0; font-size: 0.8125rem; color: var(--bs-dropdown-header-color); white-space: nowrap; } .dropdown-item-text { display: block; padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x); color: var(--bs-dropdown-link-color); } .dropdown-menu-dark { --bs-dropdown-color: #bdc1c5; --bs-dropdown-bg: #4e5965; --bs-dropdown-border-color: var(--bs-border-color); --bs-dropdown-box-shadow: ; --bs-dropdown-link-color: #bdc1c5; --bs-dropdown-link-hover-color: #fff; --bs-dropdown-divider-bg: var(--bs-border-color); --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15); --bs-dropdown-link-active-color: var(--bs-primary); --bs-dropdown-link-active-bg: rgba(var(--bs-primary-rgb), 0.16); --bs-dropdown-link-disabled-color: #91979f; --bs-dropdown-header-color: #91979f; } .btn-group, .btn-group-vertical { position: relative; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; } .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active { z-index: 1; } .btn-toolbar { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .btn-toolbar .input-group { width: auto; } .btn-group { border-radius: var(--bs-border-radius); } .btn-group > :not(.btn-check:first-child) + .btn, .btn-group > .btn-group:not(:first-child) { margin-left: calc(var(--bs-border-width) * -1); } .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn-group:not(:last-child) > .btn { border-end-end-radius: 0; border-start-end-radius: 0; } .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn, .btn-group > .btn-group:not(:first-child) > .btn { border-end-start-radius: 0; border-start-start-radius: 0; } .dropdown-toggle-split { padding-right: 0.9375rem; padding-left: 0.9375rem; } .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after { margin-left: 0; } .dropstart .dropdown-toggle-split::before { margin-right: 0; } .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { padding-right: 0.5625rem; padding-left: 0.5625rem; } .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { padding-right: 1.125rem; padding-left: 1.125rem; } .btn-group-vertical { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group { width: 100%; } .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) { margin-top: calc(var(--bs-border-width) * -1); } .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn ~ .btn, .btn-group-vertical > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-top-right-radius: 0; } .nav { --bs-nav-link-padding-x: 1.375rem; --bs-nav-link-padding-y: 0.5435rem; --bs-nav-link-font-size: 0.9375rem; --bs-nav-link-font-weight: 500; --bs-nav-link-color: var(--bs-heading-color); --bs-nav-link-hover-color: var(--bs-primary); --bs-nav-link-disabled-color: var(--bs-secondary-color); display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding-left: 0; margin-bottom: 0; list-style: none; } .nav-link { display: block; padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x); font-size: var(--bs-nav-link-font-size); font-weight: var(--bs-nav-link-font-weight); color: var(--bs-nav-link-color); background: none; border: 0; -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .nav-link { -webkit-transition: none; transition: none; } } .nav-link:hover, .nav-link:focus { color: var(--bs-nav-link-hover-color); } .nav-link:focus-visible { outline: 0; -webkit-box-shadow: 0 0 0 0.15rem rgba(100, 110, 120, 0.75); box-shadow: 0 0 0 0.15rem rgba(100, 110, 120, 0.75); } .nav-link.disabled, .nav-link:disabled { color: var(--bs-nav-link-disabled-color); pointer-events: none; cursor: default; } .nav-tabs { --bs-nav-tabs-border-width: 0; --bs-nav-tabs-border-color: var(--bs-border-color); --bs-nav-tabs-border-radius: var(--bs-border-radius); --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color); --bs-nav-tabs-link-active-color: var(--bs-primary); --bs-nav-tabs-link-active-bg: transparent; --bs-nav-tabs-link-active-border-color: var(--bs-primary); border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color); } .nav-tabs .nav-link { margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width)); border: var(--bs-nav-tabs-border-width) solid transparent; border-top-left-radius: var(--bs-nav-tabs-border-radius); border-top-right-radius: var(--bs-nav-tabs-border-radius); } .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { isolation: isolate; border-color: var(--bs-nav-tabs-link-hover-border-color); } .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link { color: var(--bs-nav-tabs-link-active-color); background-color: var(--bs-nav-tabs-link-active-bg); border-color: var(--bs-nav-tabs-link-active-border-color); } .nav-tabs .dropdown-menu { margin-top: calc(-1 * var(--bs-nav-tabs-border-width)); border-top-left-radius: 0; border-top-right-radius: 0; } .nav-pills { --bs-nav-pills-border-radius: var(--bs-border-radius); --bs-nav-pills-link-active-color: var(--bs-white); --bs-nav-pills-link-active-bg: var(--bs-primary); } .nav-pills .nav-link { border-radius: var(--bs-nav-pills-border-radius); } .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: var(--bs-nav-pills-link-active-color); background-color: var(--bs-nav-pills-link-active-bg); } .nav-underline { --bs-nav-underline-gap: 1rem; --bs-nav-underline-border-width: 0.125rem; --bs-nav-underline-link-active-color: var(--bs-emphasis-color); gap: var(--bs-nav-underline-gap); } .nav-underline .nav-link { padding-right: 0; padding-left: 0; border-bottom: var(--bs-nav-underline-border-width) solid transparent; } .nav-underline .nav-link:hover, .nav-underline .nav-link:focus { border-bottom-color: currentcolor; } .nav-underline .nav-link.active, .nav-underline .show > .nav-link { font-weight: 700; color: var(--bs-nav-underline-link-active-color); border-bottom-color: currentcolor; } .nav-fill > .nav-link, .nav-fill .nav-item { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; text-align: center; } .nav-justified > .nav-link, .nav-justified .nav-item { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; text-align: center; } .nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link { width: 100%; } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .navbar { --bs-navbar-padding-x: 0; --bs-navbar-padding-y: 0.5rem; --bs-navbar-color: var(--bs-heading-color); --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8); --bs-navbar-disabled-color: var(--bs-secondary-color); --bs-navbar-active-color: var(--bs-heading-color); --bs-navbar-brand-padding-y: 0.4575625rem; --bs-navbar-brand-margin-end: 1rem; --bs-navbar-brand-font-size: 1.0625rem; --bs-navbar-brand-color: var(--bs-heading-color); --bs-navbar-brand-hover-color: var(--bs-heading-color); --bs-navbar-nav-link-padding-x: 0.5rem; --bs-navbar-toggler-padding-y: 0; --bs-navbar-toggler-padding-x: 0; --bs-navbar-toggler-font-size: 1rem; --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='var%28--bs-heading-color%29' d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E"); --bs-navbar-toggler-border-color: transparent; --bs-navbar-toggler-border-radius: var(--bs-border-radius); --bs-navbar-toggler-focus-width: 0; --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x); } .navbar > .container, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: inherit; flex-wrap: inherit; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .navbar-brand { padding-top: var(--bs-navbar-brand-padding-y); padding-bottom: var(--bs-navbar-brand-padding-y); margin-right: var(--bs-navbar-brand-margin-end); font-size: var(--bs-navbar-brand-font-size); color: var(--bs-navbar-brand-color); white-space: nowrap; } .navbar-brand:hover, .navbar-brand:focus { color: var(--bs-navbar-brand-hover-color); } .navbar-nav { --bs-nav-link-padding-x: 0; --bs-nav-link-padding-y: 0.5435rem; --bs-nav-link-font-size: 0.9375rem; --bs-nav-link-font-weight: 500; --bs-nav-link-color: var(--bs-navbar-color); --bs-nav-link-hover-color: var(--bs-navbar-hover-color); --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0; list-style: none; } .navbar-nav .nav-link.active, .navbar-nav .nav-link.show { color: var(--bs-navbar-active-color); } .navbar-nav .dropdown-menu { position: static; } .navbar-text { padding-top: 0.5435rem; padding-bottom: 0.5435rem; color: var(--bs-navbar-color); } .navbar-text a, .navbar-text a:hover, .navbar-text a:focus { color: var(--bs-navbar-active-color); } .navbar-collapse { -ms-flex-preferred-size: 100%; flex-basis: 100%; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .navbar-toggler { padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x); font-size: var(--bs-navbar-toggler-font-size); line-height: 1; color: var(--bs-navbar-color); background-color: transparent; border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color); border-radius: var(--bs-navbar-toggler-border-radius); -webkit-transition: var(--bs-navbar-toggler-transition); transition: var(--bs-navbar-toggler-transition); } @media (prefers-reduced-motion: reduce) { .navbar-toggler { -webkit-transition: none; transition: none; } } .navbar-toggler:hover { text-decoration: none; } .navbar-toggler:focus { text-decoration: none; outline: 0; -webkit-box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width); box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width); } .navbar-toggler-icon { display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; background-image: var(--bs-navbar-toggler-icon-bg); background-repeat: no-repeat; background-position: center; background-size: 100%; } .navbar-nav-scroll { max-height: var(--bs-scroll-height, 75vh); overflow-y: auto; } @media (min-width: 576px) { .navbar-expand-sm { -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-sm .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-sm .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-sm .navbar-nav .nav-link { padding-right: var(--bs-navbar-nav-link-padding-x); padding-left: var(--bs-navbar-nav-link-padding-x); } .navbar-expand-sm .navbar-nav-scroll { overflow: visible; } .navbar-expand-sm .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-sm .navbar-toggler { display: none; } .navbar-expand-sm .offcanvas { position: static; z-index: auto; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; width: auto !important; height: auto !important; visibility: visible !important; background-color: transparent !important; border: 0 !important; -webkit-transform: none !important; -ms-transform: none !important; transform: none !important; -webkit-transition: none; transition: none; } .navbar-expand-sm .offcanvas .offcanvas-header { display: none; } .navbar-expand-sm .offcanvas .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; } } @media (min-width: 768px) { .navbar-expand-md { -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-md .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-md .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-md .navbar-nav .nav-link { padding-right: var(--bs-navbar-nav-link-padding-x); padding-left: var(--bs-navbar-nav-link-padding-x); } .navbar-expand-md .navbar-nav-scroll { overflow: visible; } .navbar-expand-md .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-md .navbar-toggler { display: none; } .navbar-expand-md .offcanvas { position: static; z-index: auto; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; width: auto !important; height: auto !important; visibility: visible !important; background-color: transparent !important; border: 0 !important; -webkit-transform: none !important; -ms-transform: none !important; transform: none !important; -webkit-transition: none; transition: none; } .navbar-expand-md .offcanvas .offcanvas-header { display: none; } .navbar-expand-md .offcanvas .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; } } @media (min-width: 992px) { .navbar-expand-lg { -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-lg .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-lg .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-lg .navbar-nav .nav-link { padding-right: var(--bs-navbar-nav-link-padding-x); padding-left: var(--bs-navbar-nav-link-padding-x); } .navbar-expand-lg .navbar-nav-scroll { overflow: visible; } .navbar-expand-lg .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-lg .navbar-toggler { display: none; } .navbar-expand-lg .offcanvas { position: static; z-index: auto; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; width: auto !important; height: auto !important; visibility: visible !important; background-color: transparent !important; border: 0 !important; -webkit-transform: none !important; -ms-transform: none !important; transform: none !important; -webkit-transition: none; transition: none; } .navbar-expand-lg .offcanvas .offcanvas-header { display: none; } .navbar-expand-lg .offcanvas .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; } } @media (min-width: 1200px) { .navbar-expand-xl { -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-xl .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-xl .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-xl .navbar-nav .nav-link { padding-right: var(--bs-navbar-nav-link-padding-x); padding-left: var(--bs-navbar-nav-link-padding-x); } .navbar-expand-xl .navbar-nav-scroll { overflow: visible; } .navbar-expand-xl .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-xl .navbar-toggler { display: none; } .navbar-expand-xl .offcanvas { position: static; z-index: auto; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; width: auto !important; height: auto !important; visibility: visible !important; background-color: transparent !important; border: 0 !important; -webkit-transform: none !important; -ms-transform: none !important; transform: none !important; -webkit-transition: none; transition: none; } .navbar-expand-xl .offcanvas .offcanvas-header { display: none; } .navbar-expand-xl .offcanvas .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; } } @media (min-width: 1400px) { .navbar-expand-xxl { -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-xxl .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-xxl .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-xxl .navbar-nav .nav-link { padding-right: var(--bs-navbar-nav-link-padding-x); padding-left: var(--bs-navbar-nav-link-padding-x); } .navbar-expand-xxl .navbar-nav-scroll { overflow: visible; } .navbar-expand-xxl .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-xxl .navbar-toggler { display: none; } .navbar-expand-xxl .offcanvas { position: static; z-index: auto; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; width: auto !important; height: auto !important; visibility: visible !important; background-color: transparent !important; border: 0 !important; -webkit-transform: none !important; -ms-transform: none !important; transform: none !important; -webkit-transition: none; transition: none; } .navbar-expand-xxl .offcanvas .offcanvas-header { display: none; } .navbar-expand-xxl .offcanvas .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; } } .navbar-expand { -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand .navbar-nav .nav-link { padding-right: var(--bs-navbar-nav-link-padding-x); padding-left: var(--bs-navbar-nav-link-padding-x); } .navbar-expand .navbar-nav-scroll { overflow: visible; } .navbar-expand .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand .navbar-toggler { display: none; } .navbar-expand .offcanvas { position: static; z-index: auto; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; width: auto !important; height: auto !important; visibility: visible !important; background-color: transparent !important; border: 0 !important; -webkit-transform: none !important; -ms-transform: none !important; transform: none !important; -webkit-transition: none; transition: none; } .navbar-expand .offcanvas .offcanvas-header { display: none; } .navbar-expand .offcanvas .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; } .navbar-dark, .navbar[data-bs-theme=dark] { --bs-navbar-color: rgba(255, 255, 255, 0.55); --bs-navbar-hover-color: rgba(255, 255, 255, 0.75); --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25); --bs-navbar-active-color: #fff; --bs-navbar-brand-color: #fff; --bs-navbar-brand-hover-color: #fff; --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1); --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } [data-bs-theme=dark] .navbar-toggler-icon { --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } .card { --bs-card-spacer-y: 1.5rem; --bs-card-spacer-x: 1.5rem; --bs-card-title-spacer-y: 0.5rem; --bs-card-title-color: var(--bs-heading-color); --bs-card-subtitle-color: color-mix(in sRGB, var(--bs-base-color) 55%, var(--bs-card-bg)); --bs-card-border-width: 0; --bs-card-border-color: var(--bs-border-color); --bs-card-border-radius: 0.375rem; --bs-card-box-shadow: var(--bs-box-shadow); --bs-card-inner-border-radius: 0.375rem; --bs-card-cap-padding-y: 1.5rem; --bs-card-cap-padding-x: 1.5rem; --bs-card-cap-bg: transparent; --bs-card-cap-color: var(--bs-heading-color); --bs-card-height: ; --bs-card-color: ; --bs-card-bg: var(--bs-paper-bg); --bs-card-img-overlay-padding: 1.5rem; --bs-card-group-margin: 1.625rem; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; min-width: 0; height: var(--bs-card-height); color: var(--bs-body-color); word-wrap: break-word; background-color: var(--bs-card-bg); background-clip: border-box; border: var(--bs-card-border-width) solid var(--bs-card-border-color); border-radius: var(--bs-card-border-radius); } .card > hr { margin-right: 0; margin-left: 0; } .card > .list-group { border-top: inherit; border-bottom: inherit; } .card > .list-group:first-child { border-top-width: 0; border-top-left-radius: var(--bs-card-inner-border-radius); border-top-right-radius: var(--bs-card-inner-border-radius); } .card > .list-group:last-child { border-bottom-width: 0; border-bottom-right-radius: var(--bs-card-inner-border-radius); border-bottom-left-radius: var(--bs-card-inner-border-radius); } .card > .card-header + .list-group, .card > .list-group + .card-footer { border-top: 0; } .card-body { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x); color: var(--bs-card-color); } .card-title { margin-bottom: var(--bs-card-title-spacer-y); color: var(--bs-card-title-color); } .card-subtitle { margin-top: calc(-0.5 * var(--bs-card-title-spacer-y)); margin-bottom: 0; color: var(--bs-card-subtitle-color); } .card-text:last-child { margin-bottom: 0; } .card-link + .card-link { margin-left: var(--bs-card-spacer-x); } .card-header { padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x); margin-bottom: 0; color: var(--bs-card-cap-color); background-color: var(--bs-card-cap-bg); border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); } .card-header:first-child { border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; } .card-footer { padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x); color: var(--bs-card-cap-color); background-color: var(--bs-card-cap-bg); border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); } .card-footer:last-child { border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); } .card-header-tabs { margin-right: calc(-0.5 * var(--bs-card-cap-padding-x)); margin-bottom: calc(-1 * var(--bs-card-cap-padding-y)); margin-left: calc(-0.5 * var(--bs-card-cap-padding-x)); border-bottom: 0; } .card-header-tabs .nav-link.active { background-color: var(--bs-card-bg); border-bottom-color: var(--bs-card-bg); } .card-header-pills { margin-right: calc(-0.5 * var(--bs-card-cap-padding-x)); margin-left: calc(-0.5 * var(--bs-card-cap-padding-x)); } .card-img-overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: var(--bs-card-img-overlay-padding); border-radius: var(--bs-card-inner-border-radius); } .card-img, .card-img-top, .card-img-bottom { width: 100%; } .card-img, .card-img-top { border-top-left-radius: var(--bs-card-inner-border-radius); border-top-right-radius: var(--bs-card-inner-border-radius); } .card-img, .card-img-bottom { border-bottom-right-radius: var(--bs-card-inner-border-radius); border-bottom-left-radius: var(--bs-card-inner-border-radius); } .card-group > .card { margin-bottom: var(--bs-card-group-margin); } @media (min-width: 576px) { .card-group { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; } .card-group > .card { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; margin-bottom: 0; } .card-group > .card + .card { margin-left: 0; border-left: 0; } .card-group > .card:not(:last-child) { border-end-end-radius: 0; border-start-end-radius: 0; } .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header { border-top-right-radius: 0; } .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer { border-bottom-right-radius: 0; } .card-group > .card:not(:first-child) { border-end-start-radius: 0; border-start-start-radius: 0; } .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header { border-top-left-radius: 0; } .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer { border-bottom-left-radius: 0; } } .accordion { --bs-accordion-color: var(--bs-body-color); --bs-accordion-bg: var(--bs-paper-bg); --bs-accordion-transition: all 0.2s ease-in-out, border-radius 0.15s ease; --bs-accordion-border-color: var(--bs-paper-bg); --bs-accordion-border-width: var(--bs-border-width); --bs-accordion-border-radius: 0.375rem; --bs-accordion-inner-border-radius: 0.375rem; --bs-accordion-btn-padding-x: 1.4375rem; --bs-accordion-btn-padding-y: 0.7305rem; --bs-accordion-btn-color: #384551; --bs-accordion-btn-bg: var(--bs-accordion-bg); --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg id='bx-chevron-down'%3e%3cpath id='Vector' d='M13.5775 7.74417L9.99997 11.3217L6.42247 7.74417L5.24414 8.9225L9.99997 13.6783L14.7558 8.9225L13.5775 7.74417Z' fill='%23384551' fill-opacity='0.9'/%3e%3c/g%3e%3c/svg%3e"); --bs-accordion-btn-icon-width: 1.25rem; --bs-accordion-btn-icon-transform: rotate(-180deg); --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out; --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg id='bx-chevron-down'%3e%3cpath id='Vector' d='M13.5775 7.74417L9.99997 11.3217L6.42247 7.74417L5.24414 8.9225L9.99997 13.6783L14.7558 8.9225L13.5775 7.74417Z' fill='%23384551' fill-opacity='0.9'/%3e%3c/g%3e%3c/svg%3e"); --bs-accordion-btn-focus-box-shadow: none; --bs-accordion-body-padding-x: 1.1875rem; --bs-accordion-body-padding-y: 1.1875rem; --bs-accordion-active-color: #384551; --bs-accordion-active-bg: var(--bs-paper-bg); } .accordion-button { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x); font-size: 0.9375rem; color: var(--bs-accordion-btn-color); text-align: left; background-color: var(--bs-accordion-btn-bg); border: 0; border-radius: 0; overflow-anchor: none; -webkit-transition: var(--bs-accordion-transition); transition: var(--bs-accordion-transition); } @media (prefers-reduced-motion: reduce) { .accordion-button { -webkit-transition: none; transition: none; } } .accordion-button:not(.collapsed) { color: var(--bs-accordion-active-color); background-color: var(--bs-accordion-active-bg); -webkit-box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color); box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color); } .accordion-button:not(.collapsed)::after { background-image: var(--bs-accordion-btn-active-icon); -webkit-transform: var(--bs-accordion-btn-icon-transform); -ms-transform: var(--bs-accordion-btn-icon-transform); transform: var(--bs-accordion-btn-icon-transform); } .accordion-button::after { -ms-flex-negative: 0; flex-shrink: 0; width: var(--bs-accordion-btn-icon-width); height: var(--bs-accordion-btn-icon-width); margin-left: auto; content: ""; background-image: var(--bs-accordion-btn-icon); background-repeat: no-repeat; background-size: var(--bs-accordion-btn-icon-width); -webkit-transition: var(--bs-accordion-btn-icon-transition); transition: var(--bs-accordion-btn-icon-transition); } @media (prefers-reduced-motion: reduce) { .accordion-button::after { -webkit-transition: none; transition: none; } } .accordion-button:hover { z-index: 2; } .accordion-button:focus { z-index: 3; outline: 0; -webkit-box-shadow: var(--bs-accordion-btn-focus-box-shadow); box-shadow: var(--bs-accordion-btn-focus-box-shadow); } .accordion-header { margin-bottom: 0; } .accordion-item { color: var(--bs-accordion-color); background-color: var(--bs-accordion-bg); border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color); } .accordion-item:first-of-type { border-top-left-radius: var(--bs-accordion-border-radius); border-top-right-radius: var(--bs-accordion-border-radius); } .accordion-item:first-of-type > .accordion-header .accordion-button { border-top-left-radius: var(--bs-accordion-inner-border-radius); border-top-right-radius: var(--bs-accordion-inner-border-radius); } .accordion-item:not(:first-of-type) { border-top: 0; } .accordion-item:last-of-type { border-bottom-right-radius: var(--bs-accordion-border-radius); border-bottom-left-radius: var(--bs-accordion-border-radius); } .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed { border-bottom-right-radius: var(--bs-accordion-inner-border-radius); border-bottom-left-radius: var(--bs-accordion-inner-border-radius); } .accordion-item:last-of-type > .accordion-collapse { border-bottom-right-radius: var(--bs-accordion-border-radius); border-bottom-left-radius: var(--bs-accordion-border-radius); } .accordion-body { padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); } .accordion-flush > .accordion-item { border-right: 0; border-left: 0; border-radius: 0; } .accordion-flush > .accordion-item:first-child { border-top: 0; } .accordion-flush > .accordion-item:last-child { border-bottom: 0; } .accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed { border-radius: 0; } .accordion-flush > .accordion-item > .accordion-collapse { border-radius: 0; } [data-bs-theme=dark] .accordion-button::after { --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a5a7ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a5a7ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); } .breadcrumb { --bs-breadcrumb-padding-x: 0; --bs-breadcrumb-padding-y: 0; --bs-breadcrumb-margin-bottom: 1rem; --bs-breadcrumb-bg: transparent; --bs-breadcrumb-border-radius: ; --bs-breadcrumb-divider-color: var(--bs-body-color); --bs-breadcrumb-item-padding-x: 0.5rem; --bs-breadcrumb-item-active-color: var(--bs-heading-color); display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x); margin-bottom: var(--bs-breadcrumb-margin-bottom); font-size: var(--bs-breadcrumb-font-size); list-style: none; background-color: var(--bs-breadcrumb-bg); border-radius: var(--bs-breadcrumb-border-radius); } .breadcrumb-item + .breadcrumb-item { padding-left: var(--bs-breadcrumb-item-padding-x); } .breadcrumb-item + .breadcrumb-item::before { float: left; padding-right: var(--bs-breadcrumb-item-padding-x); color: var(--bs-breadcrumb-divider-color); content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "\\") */; } .breadcrumb-item.active { color: var(--bs-breadcrumb-item-active-color); } .pagination { --bs-pagination-padding-x: 0.5rem; --bs-pagination-padding-y: 0.4809rem; --bs-pagination-font-size: 0.9375rem; --bs-pagination-color: var(--bs-heading-color); --bs-pagination-bg: rgba(var(--bs-base-color-rgb), 0.06); --bs-pagination-border-width: 1px; --bs-pagination-border-color: rgba(34, 48, 62, 0.22); --bs-pagination-border-radius: 50%; --bs-pagination-hover-color: var(--bs-primary); --bs-pagination-hover-bg: var(--bs-primary-bg-subtle); --bs-pagination-hover-border-color: rgba(34, 48, 62, 0.22); --bs-pagination-focus-color: var(--bs-primary); --bs-pagination-focus-bg: var(--bs-primary-bg-subtle); --bs-pagination-focus-box-shadow: none; --bs-pagination-active-color: var(--bs-white); --bs-pagination-active-bg: var(--bs-primary); --bs-pagination-active-border-color: var(--bs-primary); --bs-pagination-disabled-color: var(--bs-heading-color); --bs-pagination-disabled-bg: rgba(var(--bs-base-color-rgb), 0.06); --bs-pagination-disabled-border-color: rgba(34, 48, 62, 0.22); display: -webkit-box; display: -ms-flexbox; display: flex; padding-left: 0; list-style: none; } .page-link { position: relative; display: block; padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x); font-size: var(--bs-pagination-font-size); color: var(--bs-pagination-color); background-color: var(--bs-pagination-bg); border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color); -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .page-link { -webkit-transition: none; transition: none; } } .page-link:hover { z-index: 2; color: var(--bs-pagination-hover-color); background-color: var(--bs-pagination-hover-bg); border-color: var(--bs-pagination-hover-border-color); } .page-link:focus { z-index: 3; color: var(--bs-pagination-focus-color); background-color: var(--bs-pagination-focus-bg); outline: 0; -webkit-box-shadow: var(--bs-pagination-focus-box-shadow); box-shadow: var(--bs-pagination-focus-box-shadow); } .page-link.active, .active > .page-link { z-index: 3; color: var(--bs-pagination-active-color); background-color: var(--bs-pagination-active-bg); border-color: var(--bs-pagination-active-border-color); } .page-link.disabled, .disabled > .page-link { color: var(--bs-pagination-disabled-color); pointer-events: none; background-color: var(--bs-pagination-disabled-bg); border-color: var(--bs-pagination-disabled-border-color); } .page-item:not(:first-child) .page-link { margin-left: 0.375rem; } .page-item .page-link { border-radius: var(--bs-pagination-border-radius); } .pagination-lg { --bs-pagination-padding-x: 0.9826rem; --bs-pagination-padding-y: 0.681rem; --bs-pagination-font-size: 1.0625rem; --bs-pagination-border-radius: 50%; } .pagination-sm { --bs-pagination-padding-x: 0.269rem; --bs-pagination-padding-y: 0.3165rem; --bs-pagination-font-size: 0.8125rem; --bs-pagination-border-radius: 50%; } .badge { --bs-badge-padding-x: 0.77em; --bs-badge-padding-y: 0.4235em; --bs-badge-font-size: 0.8667em; --bs-badge-font-weight: 500; --bs-badge-color: #fff; --bs-badge-border-radius: 0.25rem; display: inline-block; padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x); font-size: var(--bs-badge-font-size); font-weight: var(--bs-badge-font-weight); line-height: 1; color: var(--bs-badge-color); text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: var(--bs-badge-border-radius); } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .alert { --bs-alert-bg: transparent; --bs-alert-padding-x: 1rem; --bs-alert-padding-y: 0.75rem; --bs-alert-margin-bottom: 1rem; --bs-alert-color: inherit; --bs-alert-border-color: transparent; --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color); --bs-alert-border-radius: var(--bs-border-radius); --bs-alert-link-color: inherit; position: relative; padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x); margin-bottom: var(--bs-alert-margin-bottom); color: var(--bs-alert-color); background-color: var(--bs-alert-bg); border: var(--bs-alert-border); border-radius: var(--bs-alert-border-radius); } .alert-heading { color: inherit; } .alert-link { font-weight: 700; color: var(--bs-alert-link-color); } .alert-dismissible { padding-right: 3rem; } .alert-dismissible .btn-close { position: absolute; top: 0; right: 0; z-index: 2; padding: 0.9375rem 1rem; } .alert-primary { --bs-alert-color: var(--bs-primary-text-emphasis); --bs-alert-bg: var(--bs-primary-bg-subtle); --bs-alert-border-color: var(--bs-primary-border-subtle); --bs-alert-link-color: var(--bs-primary-text-emphasis); } .alert-secondary { --bs-alert-color: var(--bs-secondary-text-emphasis); --bs-alert-bg: var(--bs-secondary-bg-subtle); --bs-alert-border-color: var(--bs-secondary-border-subtle); --bs-alert-link-color: var(--bs-secondary-text-emphasis); } .alert-success { --bs-alert-color: var(--bs-success-text-emphasis); --bs-alert-bg: var(--bs-success-bg-subtle); --bs-alert-border-color: var(--bs-success-border-subtle); --bs-alert-link-color: var(--bs-success-text-emphasis); } .alert-info { --bs-alert-color: var(--bs-info-text-emphasis); --bs-alert-bg: var(--bs-info-bg-subtle); --bs-alert-border-color: var(--bs-info-border-subtle); --bs-alert-link-color: var(--bs-info-text-emphasis); } .alert-warning { --bs-alert-color: var(--bs-warning-text-emphasis); --bs-alert-bg: var(--bs-warning-bg-subtle); --bs-alert-border-color: var(--bs-warning-border-subtle); --bs-alert-link-color: var(--bs-warning-text-emphasis); } .alert-danger { --bs-alert-color: var(--bs-danger-text-emphasis); --bs-alert-bg: var(--bs-danger-bg-subtle); --bs-alert-border-color: var(--bs-danger-border-subtle); --bs-alert-link-color: var(--bs-danger-text-emphasis); } .alert-light { --bs-alert-color: var(--bs-light-text-emphasis); --bs-alert-bg: var(--bs-light-bg-subtle); --bs-alert-border-color: var(--bs-light-border-subtle); --bs-alert-link-color: var(--bs-light-text-emphasis); } .alert-dark { --bs-alert-color: var(--bs-dark-text-emphasis); --bs-alert-bg: var(--bs-dark-bg-subtle); --bs-alert-border-color: var(--bs-dark-border-subtle); --bs-alert-link-color: var(--bs-dark-text-emphasis); } .alert-gray { --bs-alert-color: var(--bs-gray-text-emphasis); --bs-alert-bg: var(--bs-gray-bg-subtle); --bs-alert-border-color: var(--bs-gray-border-subtle); --bs-alert-link-color: var(--bs-gray-text-emphasis); } @-webkit-keyframes progress-bar-stripes { 0% { background-position-x: 0.375rem; } } @keyframes progress-bar-stripes { 0% { background-position-x: 0.375rem; } } .progress, .progress-stacked { --bs-progress-height: 0.375rem; --bs-progress-font-size: 0.8125rem; --bs-progress-bg: rgba(var(--bs-black-rgb), 0.08); --bs-progress-border-radius: 50rem; --bs-progress-box-shadow: var(--bs-box-shadow-inset); --bs-progress-bar-color: var(--bs-white); --bs-progress-bar-bg: #696cff; --bs-progress-bar-transition: width 0.6s ease; display: -webkit-box; display: -ms-flexbox; display: flex; height: var(--bs-progress-height); overflow: hidden; font-size: var(--bs-progress-font-size); background-color: var(--bs-progress-bg); border-radius: var(--bs-progress-border-radius); } .progress-bar { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; overflow: hidden; color: var(--bs-progress-bar-color); text-align: center; white-space: nowrap; background-color: var(--bs-progress-bar-bg); -webkit-transition: var(--bs-progress-bar-transition); transition: var(--bs-progress-bar-transition); } @media (prefers-reduced-motion: reduce) { .progress-bar { -webkit-transition: none; transition: none; } } .progress-bar-striped { background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: var(--bs-progress-height) var(--bs-progress-height); } .progress-stacked > .progress { overflow: visible; } .progress-stacked > .progress > .progress-bar { width: 100%; } .progress-bar-animated { -webkit-animation: 1s linear infinite progress-bar-stripes; animation: 1s linear infinite progress-bar-stripes; } @media (prefers-reduced-motion: reduce) { .progress-bar-animated { -webkit-animation: none; animation: none; } } .list-group { --bs-list-group-color: var(--bs-heading-color); --bs-list-group-bg: transparent; --bs-list-group-border-color: var(--bs-border-color); --bs-list-group-border-width: var(--bs-border-width); --bs-list-group-border-radius: 0.375rem; --bs-list-group-item-padding-x: 1.25rem; --bs-list-group-item-padding-y: 0.5rem; --bs-list-group-action-color: var(--bs-primary); --bs-list-group-action-hover-color: var(--bs-primary); --bs-list-group-action-hover-bg: rgba(var(--bs-base-color), 0.06); --bs-list-group-action-active-color: var(--bs-primary); --bs-list-group-action-active-bg: rgba(var(--bs-base-color), 0.06); --bs-list-group-disabled-color: var(--bs-secondary-color); --bs-list-group-disabled-bg: transparent; --bs-list-group-active-color: var(--bs-primary); --bs-list-group-active-bg: var(--bs-primary-bg-subtle); --bs-list-group-active-border-color: var(--bs-border-color); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0; border-radius: var(--bs-list-group-border-radius); } .list-group-numbered { list-style-type: none; counter-reset: section; } .list-group-numbered > .list-group-item::before { content: counters(section, ".") ". "; counter-increment: section; } .list-group-item-action { width: 100%; color: var(--bs-list-group-action-color); text-align: inherit; } .list-group-item-action:hover, .list-group-item-action:focus { z-index: 1; color: var(--bs-list-group-action-hover-color); text-decoration: none; background-color: var(--bs-list-group-action-hover-bg); } .list-group-item-action:active { color: var(--bs-list-group-action-active-color); background-color: var(--bs-list-group-action-active-bg); } .list-group-item { position: relative; display: block; padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x); color: var(--bs-list-group-color); background-color: var(--bs-list-group-bg); border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color); } .list-group-item:first-child { border-top-left-radius: inherit; border-top-right-radius: inherit; } .list-group-item:last-child { border-bottom-right-radius: inherit; border-bottom-left-radius: inherit; } .list-group-item.disabled, .list-group-item:disabled { color: var(--bs-list-group-disabled-color); pointer-events: none; background-color: var(--bs-list-group-disabled-bg); } .list-group-item.active { z-index: 2; color: var(--bs-list-group-active-color); background-color: var(--bs-list-group-active-bg); border-color: var(--bs-list-group-active-border-color); } .list-group-item + .list-group-item { border-top-width: 0; } .list-group-item + .list-group-item.active { margin-top: calc(-1 * var(--bs-list-group-border-width)); border-top-width: var(--bs-list-group-border-width); } .list-group-horizontal { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .list-group-horizontal > .list-group-item:first-child:not(:last-child) { border-end-start-radius: var(--bs-list-group-border-radius); border-start-end-radius: 0; } .list-group-horizontal > .list-group-item:last-child:not(:first-child) { border-start-end-radius: var(--bs-list-group-border-radius); border-end-start-radius: 0; } .list-group-horizontal > .list-group-item.active { margin-top: 0; } .list-group-horizontal > .list-group-item + .list-group-item { border-top-width: var(--bs-list-group-border-width); border-left-width: 0; } .list-group-horizontal > .list-group-item + .list-group-item.active { margin-left: calc(-1 * var(--bs-list-group-border-width)); border-left-width: var(--bs-list-group-border-width); } @media (min-width: 576px) { .list-group-horizontal-sm { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) { border-end-start-radius: var(--bs-list-group-border-radius); border-start-end-radius: 0; } .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) { border-start-end-radius: var(--bs-list-group-border-radius); border-end-start-radius: 0; } .list-group-horizontal-sm > .list-group-item.active { margin-top: 0; } .list-group-horizontal-sm > .list-group-item + .list-group-item { border-top-width: var(--bs-list-group-border-width); border-left-width: 0; } .list-group-horizontal-sm > .list-group-item + .list-group-item.active { margin-left: calc(-1 * var(--bs-list-group-border-width)); border-left-width: var(--bs-list-group-border-width); } } @media (min-width: 768px) { .list-group-horizontal-md { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) { border-end-start-radius: var(--bs-list-group-border-radius); border-start-end-radius: 0; } .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) { border-start-end-radius: var(--bs-list-group-border-radius); border-end-start-radius: 0; } .list-group-horizontal-md > .list-group-item.active { margin-top: 0; } .list-group-horizontal-md > .list-group-item + .list-group-item { border-top-width: var(--bs-list-group-border-width); border-left-width: 0; } .list-group-horizontal-md > .list-group-item + .list-group-item.active { margin-left: calc(-1 * var(--bs-list-group-border-width)); border-left-width: var(--bs-list-group-border-width); } } @media (min-width: 992px) { .list-group-horizontal-lg { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) { border-end-start-radius: var(--bs-list-group-border-radius); border-start-end-radius: 0; } .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) { border-start-end-radius: var(--bs-list-group-border-radius); border-end-start-radius: 0; } .list-group-horizontal-lg > .list-group-item.active { margin-top: 0; } .list-group-horizontal-lg > .list-group-item + .list-group-item { border-top-width: var(--bs-list-group-border-width); border-left-width: 0; } .list-group-horizontal-lg > .list-group-item + .list-group-item.active { margin-left: calc(-1 * var(--bs-list-group-border-width)); border-left-width: var(--bs-list-group-border-width); } } @media (min-width: 1200px) { .list-group-horizontal-xl { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) { border-end-start-radius: var(--bs-list-group-border-radius); border-start-end-radius: 0; } .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) { border-start-end-radius: var(--bs-list-group-border-radius); border-end-start-radius: 0; } .list-group-horizontal-xl > .list-group-item.active { margin-top: 0; } .list-group-horizontal-xl > .list-group-item + .list-group-item { border-top-width: var(--bs-list-group-border-width); border-left-width: 0; } .list-group-horizontal-xl > .list-group-item + .list-group-item.active { margin-left: calc(-1 * var(--bs-list-group-border-width)); border-left-width: var(--bs-list-group-border-width); } } @media (min-width: 1400px) { .list-group-horizontal-xxl { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) { border-end-start-radius: var(--bs-list-group-border-radius); border-start-end-radius: 0; } .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) { border-start-end-radius: var(--bs-list-group-border-radius); border-end-start-radius: 0; } .list-group-horizontal-xxl > .list-group-item.active { margin-top: 0; } .list-group-horizontal-xxl > .list-group-item + .list-group-item { border-top-width: var(--bs-list-group-border-width); border-left-width: 0; } .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { margin-left: calc(-1 * var(--bs-list-group-border-width)); border-left-width: var(--bs-list-group-border-width); } } .list-group-flush { border-radius: 0; } .list-group-flush > .list-group-item { border-width: 0 0 var(--bs-list-group-border-width); } .list-group-flush > .list-group-item:last-child { border-bottom-width: 0; } .list-group-item-primary { --bs-list-group-color: var(--bs-primary-text-emphasis); --bs-list-group-bg: var(--bs-primary-bg-subtle); --bs-list-group-border-color: var(--bs-primary-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-primary-border-subtle); --bs-list-group-active-color: var(--bs-primary-bg-subtle); --bs-list-group-active-bg: var(--bs-primary-text-emphasis); --bs-list-group-active-border-color: var(--bs-primary-text-emphasis); } .list-group-item-secondary { --bs-list-group-color: var(--bs-secondary-text-emphasis); --bs-list-group-bg: var(--bs-secondary-bg-subtle); --bs-list-group-border-color: var(--bs-secondary-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle); --bs-list-group-active-color: var(--bs-secondary-bg-subtle); --bs-list-group-active-bg: var(--bs-secondary-text-emphasis); --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis); } .list-group-item-success { --bs-list-group-color: var(--bs-success-text-emphasis); --bs-list-group-bg: var(--bs-success-bg-subtle); --bs-list-group-border-color: var(--bs-success-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-success-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-success-border-subtle); --bs-list-group-active-color: var(--bs-success-bg-subtle); --bs-list-group-active-bg: var(--bs-success-text-emphasis); --bs-list-group-active-border-color: var(--bs-success-text-emphasis); } .list-group-item-info { --bs-list-group-color: var(--bs-info-text-emphasis); --bs-list-group-bg: var(--bs-info-bg-subtle); --bs-list-group-border-color: var(--bs-info-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-info-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-info-border-subtle); --bs-list-group-active-color: var(--bs-info-bg-subtle); --bs-list-group-active-bg: var(--bs-info-text-emphasis); --bs-list-group-active-border-color: var(--bs-info-text-emphasis); } .list-group-item-warning { --bs-list-group-color: var(--bs-warning-text-emphasis); --bs-list-group-bg: var(--bs-warning-bg-subtle); --bs-list-group-border-color: var(--bs-warning-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-warning-border-subtle); --bs-list-group-active-color: var(--bs-warning-bg-subtle); --bs-list-group-active-bg: var(--bs-warning-text-emphasis); --bs-list-group-active-border-color: var(--bs-warning-text-emphasis); } .list-group-item-danger { --bs-list-group-color: var(--bs-danger-text-emphasis); --bs-list-group-bg: var(--bs-danger-bg-subtle); --bs-list-group-border-color: var(--bs-danger-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-danger-border-subtle); --bs-list-group-active-color: var(--bs-danger-bg-subtle); --bs-list-group-active-bg: var(--bs-danger-text-emphasis); --bs-list-group-active-border-color: var(--bs-danger-text-emphasis); } .list-group-item-light { --bs-list-group-color: var(--bs-light-text-emphasis); --bs-list-group-bg: var(--bs-light-bg-subtle); --bs-list-group-border-color: var(--bs-light-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-light-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-light-border-subtle); --bs-list-group-active-color: var(--bs-light-bg-subtle); --bs-list-group-active-bg: var(--bs-light-text-emphasis); --bs-list-group-active-border-color: var(--bs-light-text-emphasis); } .list-group-item-dark { --bs-list-group-color: var(--bs-dark-text-emphasis); --bs-list-group-bg: var(--bs-dark-bg-subtle); --bs-list-group-border-color: var(--bs-dark-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-dark-border-subtle); --bs-list-group-active-color: var(--bs-dark-bg-subtle); --bs-list-group-active-bg: var(--bs-dark-text-emphasis); --bs-list-group-active-border-color: var(--bs-dark-text-emphasis); } .list-group-item-gray { --bs-list-group-color: var(--bs-gray-text-emphasis); --bs-list-group-bg: var(--bs-gray-bg-subtle); --bs-list-group-border-color: var(--bs-gray-border-subtle); --bs-list-group-action-hover-color: var(--bs-emphasis-color); --bs-list-group-action-hover-bg: var(--bs-gray-border-subtle); --bs-list-group-action-active-color: var(--bs-emphasis-color); --bs-list-group-action-active-bg: var(--bs-gray-border-subtle); --bs-list-group-active-color: var(--bs-gray-bg-subtle); --bs-list-group-active-bg: var(--bs-gray-text-emphasis); --bs-list-group-active-border-color: var(--bs-gray-text-emphasis); } .btn-close { --bs-btn-close-color: #a7acb2; --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate%28-225.000000, -250.000000%29'%3E%3Cg id='Icon-Color' transform='translate%28225.000000, 250.500000%29'%3E%3Cuse fill='%23a7acb2' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.5' fill='%23a7acb2' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); --bs-btn-close-opacity: 0.95; --bs-btn-close-hover-opacity: 0.95; --bs-btn-close-focus-shadow: none; --bs-btn-close-focus-opacity: 0.95; --bs-btn-close-disabled-opacity: 0.25; --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%); -webkit-box-sizing: content-box; box-sizing: content-box; width: 0.8em; height: 0.8em; padding: 0.25em 0.25em; color: var(--bs-btn-close-color); background: transparent var(--bs-btn-close-bg) center/0.8em auto no-repeat; border: 0; border-radius: 0.375rem; opacity: var(--bs-btn-close-opacity); } .btn-close:hover { color: var(--bs-btn-close-color); text-decoration: none; opacity: var(--bs-btn-close-hover-opacity); } .btn-close:focus { outline: 0; -webkit-box-shadow: var(--bs-btn-close-focus-shadow); box-shadow: var(--bs-btn-close-focus-shadow); opacity: var(--bs-btn-close-focus-opacity); } .btn-close:disabled, .btn-close.disabled { pointer-events: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; opacity: var(--bs-btn-close-disabled-opacity); } .btn-close-white { -webkit-filter: var(--bs-btn-close-white-filter); filter: var(--bs-btn-close-white-filter); } [data-bs-theme=dark] .btn-close { -webkit-filter: var(--bs-btn-close-white-filter); filter: var(--bs-btn-close-white-filter); } .toast { --bs-toast-zindex: 1095; --bs-toast-padding-x: 1.25rem; --bs-toast-padding-y: 1.25rem; --bs-toast-spacing: 1.25rem; --bs-toast-max-width: 350px; --bs-toast-font-size: 0.9375rem; --bs-toast-color: ; --bs-toast-bg: var(--bs-paper-bg-rgb); --bs-toast-border-width: 0; --bs-toast-border-color: var(--bs-border-color-translucent); --bs-toast-border-radius: 0.5rem; --bs-toast-box-shadow: var(--bs-floating-component-shadow); --bs-toast-header-color: var(--bs-body-color); --bs-toast-header-bg: transparent; --bs-toast-header-border-color: transparent; width: var(--bs-toast-max-width); max-width: 100%; font-size: var(--bs-toast-font-size); color: var(--bs-toast-color); pointer-events: auto; background-color: var(--bs-toast-bg); background-clip: padding-box; border: var(--bs-toast-border-width) solid var(--bs-toast-border-color); -webkit-box-shadow: var(--bs-toast-box-shadow); box-shadow: var(--bs-toast-box-shadow); border-radius: var(--bs-toast-border-radius); } .toast.showing { opacity: 0; } .toast:not(.show) { display: none; } .toast-container { --bs-toast-zindex: 1095; position: absolute; z-index: var(--bs-toast-zindex); width: -webkit-max-content; width: -moz-max-content; width: max-content; max-width: 100%; pointer-events: none; } .toast-container > :not(:last-child) { margin-bottom: var(--bs-toast-spacing); } .toast-header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x); color: var(--bs-toast-header-color); background-color: var(--bs-toast-header-bg); background-clip: padding-box; border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color); border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); } .toast-header .btn-close { margin-right: calc(-0.5 * var(--bs-toast-padding-x)); margin-left: var(--bs-toast-padding-x); } .toast-body { padding: var(--bs-toast-padding-x); word-wrap: break-word; } .modal { --bs-modal-zindex: 1090; --bs-modal-width: 35rem; --bs-modal-padding: 1.5rem; --bs-modal-margin: 1.5rem; --bs-modal-color: ; --bs-modal-bg: var(--bs-paper-bg); --bs-modal-border-color: var(--bs-border-color); --bs-modal-border-width: 0; --bs-modal-border-radius: var(--bs-border-radius-lg); --bs-modal-box-shadow: var(--bs-box-shadow-lg); --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - 0); --bs-modal-header-padding-x: 0; --bs-modal-header-padding-y: 1.5rem; --bs-modal-header-padding: 1.5rem 1.5rem 0; --bs-modal-header-border-color: var(--bs-border-color); --bs-modal-header-border-width: 0; --bs-modal-title-line-height: 1.375; --bs-modal-footer-gap: 1rem; --bs-modal-footer-bg: ; --bs-modal-footer-border-color: var(--bs-border-color); --bs-modal-footer-border-width: 0; position: fixed; top: 0; left: 0; z-index: var(--bs-modal-zindex); display: none; width: 100%; height: 100%; overflow-x: hidden; overflow-y: auto; outline: 0; } .modal-dialog { position: relative; width: auto; margin: var(--bs-modal-margin); pointer-events: none; } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform 0.15s ease-out; transition: -webkit-transform 0.15s ease-out; transition: transform 0.15s ease-out; transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out; -webkit-transform: translateY(-100px) scale(0.8); -ms-transform: translateY(-100px) scale(0.8); transform: translateY(-100px) scale(0.8); } @media (prefers-reduced-motion: reduce) { .modal.fade .modal-dialog { -webkit-transition: none; transition: none; } } .modal.show .modal-dialog { -webkit-transform: translateY(0) scale(1); -ms-transform: translateY(0) scale(1); transform: translateY(0) scale(1); } .modal.modal-static .modal-dialog { -webkit-transform: scale(1.02); -ms-transform: scale(1.02); transform: scale(1.02); } .modal-dialog-scrollable { height: calc(100% - var(--bs-modal-margin) * 2); } .modal-dialog-scrollable .modal-content { max-height: 100%; overflow: hidden; } .modal-dialog-scrollable .modal-body { overflow-y: auto; } .modal-dialog-centered { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; min-height: calc(100% - var(--bs-modal-margin) * 2); } .modal-content { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 100%; color: var(--bs-modal-color); pointer-events: auto; background-color: var(--bs-modal-bg); background-clip: padding-box; border: var(--bs-modal-border-width) solid var(--bs-modal-border-color); border-radius: var(--bs-modal-border-radius); outline: 0; } .modal-backdrop { --bs-backdrop-zindex: 1089; --bs-backdrop-bg: #22303e; --bs-backdrop-opacity: 0.5; position: fixed; top: 0; left: 0; z-index: var(--bs-backdrop-zindex); width: 100vw; height: 100vh; background-color: var(--bs-backdrop-bg); } .modal-backdrop.fade { opacity: 0; } .modal-backdrop.show { opacity: var(--bs-backdrop-opacity); } .modal-header { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-negative: 0; flex-shrink: 0; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: var(--bs-modal-header-padding); border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color); border-top-left-radius: var(--bs-modal-inner-border-radius); border-top-right-radius: var(--bs-modal-inner-border-radius); } .modal-header .btn-close { padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5); margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto; } .modal-title { margin-bottom: 0; line-height: var(--bs-modal-title-line-height); } .modal-body { position: relative; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; padding: var(--bs-modal-padding); } .modal-footer { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-negative: 0; flex-shrink: 0; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5); background-color: var(--bs-modal-footer-bg); border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color); border-bottom-right-radius: var(--bs-modal-inner-border-radius); border-bottom-left-radius: var(--bs-modal-inner-border-radius); } .modal-footer > * { margin: calc(var(--bs-modal-footer-gap) * 0.5); } @media (min-width: 576px) { .modal { --bs-modal-margin: 1.75rem; --bs-modal-box-shadow: var(--bs-box-shadow-lg); } .modal-dialog { max-width: var(--bs-modal-width); margin-right: auto; margin-left: auto; } .modal-sm { --bs-modal-width: 22.5rem; } } @media (min-width: 992px) { .modal-lg, .modal-xl { --bs-modal-width: 50rem; } } @media (min-width: 1200px) { .modal-xl { --bs-modal-width: 1140px; } } .modal-fullscreen { width: 100vw; max-width: none; height: 100%; margin: 0; } .modal-fullscreen .modal-content { height: 100%; border: 0; border-radius: 0; } .modal-fullscreen .modal-header, .modal-fullscreen .modal-footer { border-radius: 0; } .modal-fullscreen .modal-body { overflow-y: auto; } @media (max-width: 575.98px) { .modal-fullscreen-sm-down { width: 100vw; max-width: none; height: 100%; margin: 0; } .modal-fullscreen-sm-down .modal-content { height: 100%; border: 0; border-radius: 0; } .modal-fullscreen-sm-down .modal-header, .modal-fullscreen-sm-down .modal-footer { border-radius: 0; } .modal-fullscreen-sm-down .modal-body { overflow-y: auto; } } @media (max-width: 767.98px) { .modal-fullscreen-md-down { width: 100vw; max-width: none; height: 100%; margin: 0; } .modal-fullscreen-md-down .modal-content { height: 100%; border: 0; border-radius: 0; } .modal-fullscreen-md-down .modal-header, .modal-fullscreen-md-down .modal-footer { border-radius: 0; } .modal-fullscreen-md-down .modal-body { overflow-y: auto; } } @media (max-width: 991.98px) { .modal-fullscreen-lg-down { width: 100vw; max-width: none; height: 100%; margin: 0; } .modal-fullscreen-lg-down .modal-content { height: 100%; border: 0; border-radius: 0; } .modal-fullscreen-lg-down .modal-header, .modal-fullscreen-lg-down .modal-footer { border-radius: 0; } .modal-fullscreen-lg-down .modal-body { overflow-y: auto; } } @media (max-width: 1199.98px) { .modal-fullscreen-xl-down { width: 100vw; max-width: none; height: 100%; margin: 0; } .modal-fullscreen-xl-down .modal-content { height: 100%; border: 0; border-radius: 0; } .modal-fullscreen-xl-down .modal-header, .modal-fullscreen-xl-down .modal-footer { border-radius: 0; } .modal-fullscreen-xl-down .modal-body { overflow-y: auto; } } @media (max-width: 1399.98px) { .modal-fullscreen-xxl-down { width: 100vw; max-width: none; height: 100%; margin: 0; } .modal-fullscreen-xxl-down .modal-content { height: 100%; border: 0; border-radius: 0; } .modal-fullscreen-xxl-down .modal-header, .modal-fullscreen-xxl-down .modal-footer { border-radius: 0; } .modal-fullscreen-xxl-down .modal-body { overflow-y: auto; } } .tooltip { --bs-tooltip-zindex: 1099; --bs-tooltip-max-width: 200px; --bs-tooltip-padding-x: 0.75rem; --bs-tooltip-padding-y: 0.379rem; --bs-tooltip-margin: ; --bs-tooltip-font-size: 0.8125rem; --bs-tooltip-color: var(--bs-paper-bg); --bs-tooltip-bg: var(--bs-base-color); --bs-tooltip-border-radius: 0.25rem; --bs-tooltip-opacity: 1; --bs-tooltip-arrow-width: 0.75rem; --bs-tooltip-arrow-height: 0.375rem; z-index: var(--bs-tooltip-zindex); display: block; margin: var(--bs-tooltip-margin); font-family: var(--bs-font-sans-serif); font-style: normal; font-weight: 400; line-height: 1.375; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; white-space: normal; word-spacing: normal; line-break: auto; font-size: var(--bs-tooltip-font-size); word-wrap: break-word; opacity: 0; } .tooltip.show { opacity: var(--bs-tooltip-opacity); } .tooltip .tooltip-arrow { display: block; width: var(--bs-tooltip-arrow-width); height: var(--bs-tooltip-arrow-height); } .tooltip .tooltip-arrow::before { position: absolute; content: ""; border-color: transparent; border-style: solid; } .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow { bottom: calc(-1 * var(--bs-tooltip-arrow-height)); } .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before { top: -1px; border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0; border-top-color: var(--bs-tooltip-bg); } /* rtl:begin:ignore */ .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow { left: calc(-1 * var(--bs-tooltip-arrow-height)); width: var(--bs-tooltip-arrow-height); height: var(--bs-tooltip-arrow-width); } .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before { right: -1px; border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0; border-right-color: var(--bs-tooltip-bg); } /* rtl:end:ignore */ .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow { top: calc(-1 * var(--bs-tooltip-arrow-height)); } .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before { bottom: -1px; border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height); border-bottom-color: var(--bs-tooltip-bg); } /* rtl:begin:ignore */ .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow { right: calc(-1 * var(--bs-tooltip-arrow-height)); width: var(--bs-tooltip-arrow-height); height: var(--bs-tooltip-arrow-width); } .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before { left: -1px; border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height); border-left-color: var(--bs-tooltip-bg); } /* rtl:end:ignore */ .tooltip-inner { max-width: var(--bs-tooltip-max-width); padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x); color: var(--bs-tooltip-color); text-align: center; background-color: var(--bs-tooltip-bg); border-radius: var(--bs-tooltip-border-radius); } .popover { --bs-popover-zindex: 1091; --bs-popover-max-width: 276px; --bs-popover-font-size: 0.9375rem; --bs-popover-bg: var(--bs-paper-bg); --bs-popover-border-width: var(--bs-border-width); --bs-popover-border-color: var(--bs-gray-100); --bs-popover-border-radius: var(--bs-border-radius-lg); --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width)); --bs-popover-box-shadow: var(--bs-box-shadow-lg); --bs-popover-header-padding-x: 1.125rem; --bs-popover-header-padding-y: 0.625rem; --bs-popover-header-font-size: 1.125rem; --bs-popover-header-color: var(--bs-heading-color); --bs-popover-header-bg: var(--bs-paper-bg); --bs-popover-body-padding-x: 1rem; --bs-popover-body-padding-y: 1.125rem; --bs-popover-body-color: var(--bs-body-color); --bs-popover-arrow-width: 1rem; --bs-popover-arrow-height: 0.5rem; --bs-popover-arrow-border: var(--bs-popover-border-color); z-index: var(--bs-popover-zindex); display: block; max-width: var(--bs-popover-max-width); font-family: var(--bs-font-sans-serif); font-style: normal; font-weight: 400; line-height: 1.375; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; white-space: normal; word-spacing: normal; line-break: auto; font-size: var(--bs-popover-font-size); word-wrap: break-word; background-color: var(--bs-popover-bg); background-clip: padding-box; border: var(--bs-popover-border-width) solid var(--bs-popover-border-color); border-radius: var(--bs-popover-border-radius); } .popover .popover-arrow { display: block; width: var(--bs-popover-arrow-width); height: var(--bs-popover-arrow-height); } .popover .popover-arrow::before, .popover .popover-arrow::after { position: absolute; display: block; content: ""; border-color: transparent; border-style: solid; border-width: 0; } .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow { bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); } .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after { border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0; } .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before { bottom: 0; border-top-color: var(--bs-popover-arrow-border); } .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after { bottom: var(--bs-popover-border-width); border-top-color: var(--bs-popover-bg); } /* rtl:begin:ignore */ .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow { left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); width: var(--bs-popover-arrow-height); height: var(--bs-popover-arrow-width); } .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0; } .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before { left: 0; border-right-color: var(--bs-popover-arrow-border); } .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after { left: var(--bs-popover-border-width); border-right-color: var(--bs-popover-bg); } /* rtl:end:ignore */ .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow { top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); } .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height); } .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before { top: 0; border-bottom-color: var(--bs-popover-arrow-border); } .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after { top: var(--bs-popover-border-width); border-bottom-color: var(--bs-popover-bg); } .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before { position: absolute; top: 0; left: 50%; display: block; width: var(--bs-popover-arrow-width); margin-left: calc(-0.5 * var(--bs-popover-arrow-width)); content: ""; border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg); } /* rtl:begin:ignore */ .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow { right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); width: var(--bs-popover-arrow-height); height: var(--bs-popover-arrow-width); } .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height); } .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before { right: 0; border-left-color: var(--bs-popover-arrow-border); } .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after { right: var(--bs-popover-border-width); border-left-color: var(--bs-popover-bg); } /* rtl:end:ignore */ .popover-header { padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x); margin-bottom: 0; font-size: var(--bs-popover-header-font-size); color: var(--bs-popover-header-color); background-color: var(--bs-popover-header-bg); border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color); border-top-left-radius: var(--bs-popover-inner-border-radius); border-top-right-radius: var(--bs-popover-inner-border-radius); } .popover-header:empty { display: none; } .popover-body { padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x); color: var(--bs-popover-body-color); } .carousel { position: relative; } .carousel.pointer-event { -ms-touch-action: pan-y; touch-action: pan-y; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-inner::after { display: block; clear: both; content: ""; } .carousel-item { position: relative; display: none; float: left; width: 100%; margin-right: -100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: -webkit-transform 0.6s ease-in-out; transition: -webkit-transform 0.6s ease-in-out; transition: transform 0.6s ease-in-out; transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; } @media (prefers-reduced-motion: reduce) { .carousel-item { -webkit-transition: none; transition: none; } } .carousel-item.active, .carousel-item-next, .carousel-item-prev { display: block; } .carousel-item-next:not(.carousel-item-start), .active.carousel-item-end { -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } .carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start { -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } .carousel-fade .carousel-item { opacity: 0; -webkit-transition-property: opacity; transition-property: opacity; -webkit-transform: none; -ms-transform: none; transform: none; } .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end { z-index: 1; opacity: 1; } .carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end { z-index: 0; opacity: 0; -webkit-transition: opacity 0s 0.6s; transition: opacity 0s 0.6s; } @media (prefers-reduced-motion: reduce) { .carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end { -webkit-transition: none; transition: none; } } .carousel-control-prev, .carousel-control-next { position: absolute; top: 0; bottom: 0; z-index: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 14%; padding: 0; color: var(--bs-white); text-align: center; background: none; border: 0; opacity: 1; -webkit-transition: opacity 0.15s ease; transition: opacity 0.15s ease; } @media (prefers-reduced-motion: reduce) { .carousel-control-prev, .carousel-control-next { -webkit-transition: none; transition: none; } } .carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus { color: var(--bs-white); text-decoration: none; outline: 0; opacity: 1; } .carousel-control-prev { left: 0; } .carousel-control-next { right: 0; } .carousel-control-prev-icon, .carousel-control-next-icon { display: inline-block; width: 2.55rem; height: 2.55rem; background-repeat: no-repeat; background-position: 50%; background-size: 100% 100%; } .carousel-control-prev-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: var%28--bs-white%29;transform: ;msFilter:;'%3E%3Cpath d='M13.293 6.293 7.586 12l5.707 5.707 1.414-1.414L10.414 12l4.293-4.293z'%3E%3C/path%3E%3C/svg%3E") /*rtl:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: var%28--bs-white%29;transform: ;msFilter:;'%3E%3Cpath d='M10.707 17.707 16.414 12l-5.707-5.707-1.414 1.414L13.586 12l-4.293 4.293z'%3E%3C/path%3E%3C/svg%3E")*/; } .carousel-control-next-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: var%28--bs-white%29;transform: ;msFilter:;'%3E%3Cpath d='M10.707 17.707 16.414 12l-5.707-5.707-1.414 1.414L13.586 12l-4.293 4.293z'%3E%3C/path%3E%3C/svg%3E") /*rtl:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: var%28--bs-white%29;transform: ;msFilter:;'%3E%3Cpath d='M13.293 6.293 7.586 12l5.707 5.707 1.414-1.414L10.414 12l4.293-4.293z'%3E%3C/path%3E%3C/svg%3E")*/; } .carousel-indicators { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding: 0; margin-right: 14%; margin-bottom: 1rem; margin-left: 14%; } .carousel-indicators [data-bs-target] { -webkit-box-sizing: content-box; box-sizing: content-box; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px; height: 3px; padding: 0; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: #fff; background-clip: padding-box; border: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; opacity: 0.5; -webkit-transition: opacity 0.6s ease; transition: opacity 0.6s ease; } @media (prefers-reduced-motion: reduce) { .carousel-indicators [data-bs-target] { -webkit-transition: none; transition: none; } } .carousel-indicators .active { opacity: 1; } .carousel-caption { position: absolute; right: 15%; bottom: 1.25rem; left: 15%; padding-top: 1.25rem; padding-bottom: 1.25rem; color: #fff; text-align: center; } .carousel-dark .carousel-control-prev-icon, .carousel-dark .carousel-control-next-icon { -webkit-filter: invert(1) grayscale(100); filter: invert(1) grayscale(100); } .carousel-dark .carousel-indicators [data-bs-target] { background-color: #22303e; } .carousel-dark .carousel-caption { color: #22303e; } [data-bs-theme=dark] .carousel .carousel-control-prev-icon, [data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon, [data-bs-theme=dark].carousel .carousel-control-next-icon { -webkit-filter: invert(1) grayscale(100); filter: invert(1) grayscale(100); } [data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] { background-color: #22303e; } [data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption { color: #22303e; } .spinner-grow, .spinner-border { display: inline-block; width: var(--bs-spinner-width); height: var(--bs-spinner-height); vertical-align: var(--bs-spinner-vertical-align); border-radius: 50%; -webkit-animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name); animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name); } @-webkit-keyframes spinner-border { to { -webkit-transform: rotate(360deg) /* rtl:ignore */; transform: rotate(360deg) /* rtl:ignore */; } } @keyframes spinner-border { to { -webkit-transform: rotate(360deg) /* rtl:ignore */; transform: rotate(360deg) /* rtl:ignore */; } } .spinner-border { --bs-spinner-width: 2rem; --bs-spinner-height: 2rem; --bs-spinner-vertical-align: -0.125em; --bs-spinner-border-width: 0.25em; --bs-spinner-animation-speed: 0.75s; --bs-spinner-animation-name: spinner-border; border: var(--bs-spinner-border-width) solid currentcolor; border-right-color: transparent; } .spinner-border-sm { --bs-spinner-width: 1rem; --bs-spinner-height: 1rem; --bs-spinner-border-width: 0.2em; } @-webkit-keyframes spinner-grow { 0% { -webkit-transform: scale(0); transform: scale(0); } 50% { opacity: 1; -webkit-transform: none; transform: none; } } @keyframes spinner-grow { 0% { -webkit-transform: scale(0); transform: scale(0); } 50% { opacity: 1; -webkit-transform: none; transform: none; } } .spinner-grow { --bs-spinner-width: 2rem; --bs-spinner-height: 2rem; --bs-spinner-vertical-align: -0.125em; --bs-spinner-animation-speed: 0.75s; --bs-spinner-animation-name: spinner-grow; background-color: currentcolor; opacity: 0; } .spinner-grow-sm { --bs-spinner-width: 1rem; --bs-spinner-height: 1rem; } @media (prefers-reduced-motion: reduce) { .spinner-border, .spinner-grow { --bs-spinner-animation-speed: 1.5s; } } .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm { --bs-offcanvas-zindex: 1090; --bs-offcanvas-width: 400px; --bs-offcanvas-height: 30vh; --bs-offcanvas-padding-x: 1.5rem; --bs-offcanvas-padding-y: 1.5rem; --bs-offcanvas-color: var(--bs-body-color); --bs-offcanvas-bg: var(--bs-paper-bg); --bs-offcanvas-border-width: 0; --bs-offcanvas-border-color: var(--bs-border-color); --bs-offcanvas-box-shadow: var(--bs-box-shadow-lg); --bs-offcanvas-transition: transform 0.25s ease-in-out; --bs-offcanvas-title-line-height: 1.375; } @media (max-width: 575.98px) { .offcanvas-sm { position: fixed; bottom: 0; z-index: var(--bs-offcanvas-zindex); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; max-width: 100%; color: var(--bs-offcanvas-color); visibility: hidden; background-color: var(--bs-offcanvas-bg); background-clip: padding-box; outline: 0; -webkit-transition: var(--bs-offcanvas-transition); transition: var(--bs-offcanvas-transition); } } @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) { .offcanvas-sm { -webkit-transition: none; transition: none; } } @media (max-width: 575.98px) { .offcanvas-sm.offcanvas-start { top: 0; left: 0; width: var(--bs-offcanvas-width); border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } .offcanvas-sm.offcanvas-end { top: 0; right: 0; width: var(--bs-offcanvas-width); border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } .offcanvas-sm.offcanvas-top { top: 0; right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); } .offcanvas-sm.offcanvas-bottom { right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(100%); -ms-transform: translateY(100%); transform: translateY(100%); } .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) { -webkit-transform: none; -ms-transform: none; transform: none; } .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show { visibility: visible; } } @media (min-width: 576px) { .offcanvas-sm { --bs-offcanvas-height: auto; --bs-offcanvas-border-width: 0; background-color: transparent !important; } .offcanvas-sm .offcanvas-header { display: none; } .offcanvas-sm .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; background-color: transparent !important; } } @media (max-width: 767.98px) { .offcanvas-md { position: fixed; bottom: 0; z-index: var(--bs-offcanvas-zindex); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; max-width: 100%; color: var(--bs-offcanvas-color); visibility: hidden; background-color: var(--bs-offcanvas-bg); background-clip: padding-box; outline: 0; -webkit-transition: var(--bs-offcanvas-transition); transition: var(--bs-offcanvas-transition); } } @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) { .offcanvas-md { -webkit-transition: none; transition: none; } } @media (max-width: 767.98px) { .offcanvas-md.offcanvas-start { top: 0; left: 0; width: var(--bs-offcanvas-width); border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } .offcanvas-md.offcanvas-end { top: 0; right: 0; width: var(--bs-offcanvas-width); border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } .offcanvas-md.offcanvas-top { top: 0; right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); } .offcanvas-md.offcanvas-bottom { right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(100%); -ms-transform: translateY(100%); transform: translateY(100%); } .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) { -webkit-transform: none; -ms-transform: none; transform: none; } .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show { visibility: visible; } } @media (min-width: 768px) { .offcanvas-md { --bs-offcanvas-height: auto; --bs-offcanvas-border-width: 0; background-color: transparent !important; } .offcanvas-md .offcanvas-header { display: none; } .offcanvas-md .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; background-color: transparent !important; } } @media (max-width: 991.98px) { .offcanvas-lg { position: fixed; bottom: 0; z-index: var(--bs-offcanvas-zindex); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; max-width: 100%; color: var(--bs-offcanvas-color); visibility: hidden; background-color: var(--bs-offcanvas-bg); background-clip: padding-box; outline: 0; -webkit-transition: var(--bs-offcanvas-transition); transition: var(--bs-offcanvas-transition); } } @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) { .offcanvas-lg { -webkit-transition: none; transition: none; } } @media (max-width: 991.98px) { .offcanvas-lg.offcanvas-start { top: 0; left: 0; width: var(--bs-offcanvas-width); border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } .offcanvas-lg.offcanvas-end { top: 0; right: 0; width: var(--bs-offcanvas-width); border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } .offcanvas-lg.offcanvas-top { top: 0; right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); } .offcanvas-lg.offcanvas-bottom { right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(100%); -ms-transform: translateY(100%); transform: translateY(100%); } .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) { -webkit-transform: none; -ms-transform: none; transform: none; } .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show { visibility: visible; } } @media (min-width: 992px) { .offcanvas-lg { --bs-offcanvas-height: auto; --bs-offcanvas-border-width: 0; background-color: transparent !important; } .offcanvas-lg .offcanvas-header { display: none; } .offcanvas-lg .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; background-color: transparent !important; } } @media (max-width: 1199.98px) { .offcanvas-xl { position: fixed; bottom: 0; z-index: var(--bs-offcanvas-zindex); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; max-width: 100%; color: var(--bs-offcanvas-color); visibility: hidden; background-color: var(--bs-offcanvas-bg); background-clip: padding-box; outline: 0; -webkit-transition: var(--bs-offcanvas-transition); transition: var(--bs-offcanvas-transition); } } @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) { .offcanvas-xl { -webkit-transition: none; transition: none; } } @media (max-width: 1199.98px) { .offcanvas-xl.offcanvas-start { top: 0; left: 0; width: var(--bs-offcanvas-width); border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } .offcanvas-xl.offcanvas-end { top: 0; right: 0; width: var(--bs-offcanvas-width); border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } .offcanvas-xl.offcanvas-top { top: 0; right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); } .offcanvas-xl.offcanvas-bottom { right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(100%); -ms-transform: translateY(100%); transform: translateY(100%); } .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) { -webkit-transform: none; -ms-transform: none; transform: none; } .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show { visibility: visible; } } @media (min-width: 1200px) { .offcanvas-xl { --bs-offcanvas-height: auto; --bs-offcanvas-border-width: 0; background-color: transparent !important; } .offcanvas-xl .offcanvas-header { display: none; } .offcanvas-xl .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; background-color: transparent !important; } } @media (max-width: 1399.98px) { .offcanvas-xxl { position: fixed; bottom: 0; z-index: var(--bs-offcanvas-zindex); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; max-width: 100%; color: var(--bs-offcanvas-color); visibility: hidden; background-color: var(--bs-offcanvas-bg); background-clip: padding-box; outline: 0; -webkit-transition: var(--bs-offcanvas-transition); transition: var(--bs-offcanvas-transition); } } @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) { .offcanvas-xxl { -webkit-transition: none; transition: none; } } @media (max-width: 1399.98px) { .offcanvas-xxl.offcanvas-start { top: 0; left: 0; width: var(--bs-offcanvas-width); border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } .offcanvas-xxl.offcanvas-end { top: 0; right: 0; width: var(--bs-offcanvas-width); border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } .offcanvas-xxl.offcanvas-top { top: 0; right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); } .offcanvas-xxl.offcanvas-bottom { right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(100%); -ms-transform: translateY(100%); transform: translateY(100%); } .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) { -webkit-transform: none; -ms-transform: none; transform: none; } .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show { visibility: visible; } } @media (min-width: 1400px) { .offcanvas-xxl { --bs-offcanvas-height: auto; --bs-offcanvas-border-width: 0; background-color: transparent !important; } .offcanvas-xxl .offcanvas-header { display: none; } .offcanvas-xxl .offcanvas-body { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; padding: 0; overflow-y: visible; background-color: transparent !important; } } .offcanvas { position: fixed; bottom: 0; z-index: var(--bs-offcanvas-zindex); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; max-width: 100%; color: var(--bs-offcanvas-color); visibility: hidden; background-color: var(--bs-offcanvas-bg); background-clip: padding-box; outline: 0; -webkit-transition: var(--bs-offcanvas-transition); transition: var(--bs-offcanvas-transition); } @media (prefers-reduced-motion: reduce) { .offcanvas { -webkit-transition: none; transition: none; } } .offcanvas.offcanvas-start { top: 0; left: 0; width: var(--bs-offcanvas-width); border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } .offcanvas.offcanvas-end { top: 0; right: 0; width: var(--bs-offcanvas-width); border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } .offcanvas.offcanvas-top { top: 0; right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); } .offcanvas.offcanvas-bottom { right: 0; left: 0; height: var(--bs-offcanvas-height); max-height: 100%; border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color); -webkit-transform: translateY(100%); -ms-transform: translateY(100%); transform: translateY(100%); } .offcanvas.showing, .offcanvas.show:not(.hiding) { -webkit-transform: none; -ms-transform: none; transform: none; } .offcanvas.showing, .offcanvas.hiding, .offcanvas.show { visibility: visible; } .offcanvas-backdrop { position: fixed; top: 0; left: 0; z-index: 1089; width: 100vw; height: 100vh; background-color: #22303e; } .offcanvas-backdrop.fade { opacity: 0; } .offcanvas-backdrop.show { opacity: 0.5; } .offcanvas-header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); } .offcanvas-header .btn-close { padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5); margin: calc(-0.5 * var(--bs-offcanvas-padding-y)) calc(-0.5 * var(--bs-offcanvas-padding-x)) calc(-0.5 * var(--bs-offcanvas-padding-y)) auto; } .offcanvas-title { margin-bottom: 0; line-height: var(--bs-offcanvas-title-line-height); } .offcanvas-body { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); overflow-y: auto; } .placeholder { display: inline-block; min-height: 1em; vertical-align: middle; cursor: wait; background-color: currentcolor; opacity: 0.5; } .placeholder.btn::before { display: inline-block; content: ""; } .placeholder-xs { min-height: 0.6em; } .placeholder-sm { min-height: 0.8em; } .placeholder-lg { min-height: 1.2em; } .placeholder-glow .placeholder { -webkit-animation: placeholder-glow 2s ease-in-out infinite; animation: placeholder-glow 2s ease-in-out infinite; } @-webkit-keyframes placeholder-glow { 50% { opacity: 0.2; } } @keyframes placeholder-glow { 50% { opacity: 0.2; } } .placeholder-wave { -webkit-mask-image: linear-gradient(130deg, #22303e 55%, rgba(0, 0, 0, 0.8) 75%, #22303e 95%); mask-image: linear-gradient(130deg, #22303e 55%, rgba(0, 0, 0, 0.8) 75%, #22303e 95%); -webkit-mask-size: 200% 100%; mask-size: 200% 100%; -webkit-animation: placeholder-wave 2s linear infinite; animation: placeholder-wave 2s linear infinite; } @-webkit-keyframes placeholder-wave { 100% { -webkit-mask-position: -200% 0%; mask-position: -200% 0%; } } @keyframes placeholder-wave { 100% { -webkit-mask-position: -200% 0%; mask-position: -200% 0%; } } .clearfix::after { display: block; clear: both; content: ""; } .text-bg-primary { color: #fff !important; background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important; } .text-bg-secondary { color: #fff !important; background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important; } .text-bg-success { color: #fff !important; background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important; } .text-bg-info { color: #fff !important; background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important; } .text-bg-warning { color: #fff !important; background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important; } .text-bg-danger { color: #fff !important; background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important; } .text-bg-light { color: #000 !important; background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important; } .text-bg-dark { color: #fff !important; background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important; } .text-bg-gray { color: #fff !important; background-color: RGBA(var(--bs-gray-rgb), var(--bs-bg-opacity, 1)) !important; } .link-primary { color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-primary:hover, .link-primary:focus { color: RGBA(95, 97, 230, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(95, 97, 230, var(--bs-link-underline-opacity, 1)) !important; } .link-secondary { color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-secondary:hover, .link-secondary:focus { color: RGBA(120, 131, 147, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(120, 131, 147, var(--bs-link-underline-opacity, 1)) !important; } .link-success { color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-success:hover, .link-success:focus { color: RGBA(102, 199, 50, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(102, 199, 50, var(--bs-link-underline-opacity, 1)) !important; } .link-info { color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-info:hover, .link-info:focus { color: RGBA(3, 176, 212, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(3, 176, 212, var(--bs-link-underline-opacity, 1)) !important; } .link-warning { color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-warning:hover, .link-warning:focus { color: RGBA(230, 154, 0, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(230, 154, 0, var(--bs-link-underline-opacity, 1)) !important; } .link-danger { color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-danger:hover, .link-danger:focus { color: RGBA(230, 56, 26, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(230, 56, 26, var(--bs-link-underline-opacity, 1)) !important; } .link-light { color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-light:hover, .link-light:focus { color: RGBA(223, 225, 227, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(223, 225, 227, var(--bs-link-underline-opacity, 1)) !important; } .link-dark { color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-dark:hover, .link-dark:focus { color: RGBA(39, 40, 58, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(39, 40, 58, var(--bs-link-underline-opacity, 1)) !important; } .link-gray { color: RGBA(var(--bs-gray-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-gray-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-gray:hover, .link-gray:focus { color: RGBA(131, 136, 143, var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(131, 136, 143, var(--bs-link-underline-opacity, 1)) !important; } .link-body-emphasis { color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important; text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-body-emphasis:hover, .link-body-emphasis:focus { color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important; text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important; } .focus-ring:focus { outline: 0; -webkit-box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color); box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color); } .icon-link { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; gap: 0.375rem; -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5)); text-underline-offset: 0.25em; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .icon-link > .bi { -ms-flex-negative: 0; flex-shrink: 0; width: 1em; height: 1em; fill: currentcolor; -webkit-transition: 0.2s ease-in-out transform; transition: 0.2s ease-in-out transform; } @media (prefers-reduced-motion: reduce) { .icon-link > .bi { -webkit-transition: none; transition: none; } } .icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi { -webkit-transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0)); transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0)); } .ratio { position: relative; width: 100%; } .ratio::before { display: block; padding-top: var(--bs-aspect-ratio); content: ""; } .ratio > * { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .ratio-1x1 { --bs-aspect-ratio: 100%; } .ratio-4x3 { --bs-aspect-ratio: 75%; } .ratio-16x9 { --bs-aspect-ratio: 56.25%; } .ratio-21x9 { --bs-aspect-ratio: 42.8571428571%; } .fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; } .fixed-bottom { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1030; } .sticky-top { position: sticky; top: 0; z-index: 1020; } .sticky-bottom { position: sticky; bottom: 0; z-index: 1020; } @media (min-width: 576px) { .sticky-sm-top { position: sticky; top: 0; z-index: 1020; } .sticky-sm-bottom { position: sticky; bottom: 0; z-index: 1020; } } @media (min-width: 768px) { .sticky-md-top { position: sticky; top: 0; z-index: 1020; } .sticky-md-bottom { position: sticky; bottom: 0; z-index: 1020; } } @media (min-width: 992px) { .sticky-lg-top { position: sticky; top: 0; z-index: 1020; } .sticky-lg-bottom { position: sticky; bottom: 0; z-index: 1020; } } @media (min-width: 1200px) { .sticky-xl-top { position: sticky; top: 0; z-index: 1020; } .sticky-xl-bottom { position: sticky; bottom: 0; z-index: 1020; } } @media (min-width: 1400px) { .sticky-xxl-top { position: sticky; top: 0; z-index: 1020; } .sticky-xxl-bottom { position: sticky; bottom: 0; z-index: 1020; } } .hstack { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-item-align: stretch; align-self: stretch; } .vstack { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -ms-flex-item-align: stretch; align-self: stretch; } .visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) { width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; } .visually-hidden:not(caption), .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) { position: absolute !important; } .stretched-link::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; content: ""; } .text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .vr { display: inline-block; -ms-flex-item-align: stretch; align-self: stretch; width: var(--bs-border-width); min-height: 1em; background-color: currentcolor; opacity: 1; } /* Custom colors ******************************************************************************* */ :root { --bs-primary: #696cff; --bs-primary-rgb: 105, 108, 255; --bs-secondary: #8592a3; --bs-secondary-rgb: 133, 146, 163; --bs-success: #71dd37; --bs-success-rgb: 113, 221, 55; --bs-info: #03c3ec; --bs-info-rgb: 3, 195, 236; --bs-warning: #ffab00; --bs-warning-rgb: 255, 171, 0; --bs-danger: #ff3e1d; --bs-danger-rgb: 255, 62, 29; --bs-light: #dbdee0; --bs-light-rgb: 219, 222, 224; --bs-dark: #2b2c40; --bs-dark-rgb: 43, 44, 64; --bs-gray: #91979f; --bs-gray-rgb: 145, 151, 159; } :root .bg-gradient-primary { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-primary)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-primary)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } :root .bg-gradient-secondary { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-secondary)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-secondary)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } :root .bg-gradient-success { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-success)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-success)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } :root .bg-gradient-info { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-info)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-info)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } :root .bg-gradient-warning { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-warning)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-warning)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } :root .bg-gradient-danger { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-danger)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-danger)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } :root .bg-gradient-light { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-light)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-light)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } :root .bg-gradient-dark { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-dark)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-dark)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } :root .bg-gradient-gray { --bs-bg-gradient-color-start: color-mix(in sRGB, var(--bs-pure-black) 10%, var(--bs-gray)); --bs-bg-gradient-color-end: color-mix(in sRGB, var(--bs-white) 20%, var(--bs-gray)); background-image: linear-gradient(45deg, var(--bs-bg-gradient-color-start) 0%, var(--bs-bg-gradient-color-end) 100%) !important; } .row-bordered { overflow: hidden; } .row-bordered > .col, .row-bordered > [class^=col-], .row-bordered > [class*=" col-"], .row-bordered > [class^="col "], .row-bordered > [class*=" col "], .row-bordered > [class$=" col"], .row-bordered > [class=col] { position: relative; -webkit-padding-before: 1px; padding-block-start: 1px; } .row-bordered > .col::before, .row-bordered > [class^=col-]::before, .row-bordered > [class*=" col-"]::before, .row-bordered > [class^="col "]::before, .row-bordered > [class*=" col "]::before, .row-bordered > [class$=" col"]::before, .row-bordered > [class=col]::before { position: absolute; display: block; block-size: 0; -webkit-border-before: 1px solid var(--bs-border-color); border-block-start: 1px solid var(--bs-border-color); content: ""; inset-block-end: -1px; inset-inline: 0; } .row-bordered > .col::after, .row-bordered > [class^=col-]::after, .row-bordered > [class*=" col-"]::after, .row-bordered > [class^="col "]::after, .row-bordered > [class*=" col "]::after, .row-bordered > [class$=" col"]::after, .row-bordered > [class=col]::after { position: absolute; display: block; -webkit-border-start: 1px solid var(--bs-border-color); border-inline-start: 1px solid var(--bs-border-color); content: ""; inline-size: 0; inset-block: 0; inset-inline-start: -1px; } .row-bordered.row-border-light > .col::before, .row-bordered.row-border-light > .col::after, .row-bordered.row-border-light > [class^=col-]::before, .row-bordered.row-border-light > [class^=col-]::after, .row-bordered.row-border-light > [class*=" col-"]::before, .row-bordered.row-border-light > [class*=" col-"]::after, .row-bordered.row-border-light > [class^="col "]::before, .row-bordered.row-border-light > [class^="col "]::after, .row-bordered.row-border-light > [class*=" col "]::before, .row-bordered.row-border-light > [class*=" col "]::after, .row-bordered.row-border-light > [class$=" col"]::before, .row-bordered.row-border-light > [class$=" col"]::after, .row-bordered.row-border-light > [class=col]::before, .row-bordered.row-border-light > [class=col]::after { border-color: #e9eaec; } .text-body-secondary[href]:hover, .text-body-secondary[href]:focus { color: var(--bs-body-color) !important; } a.bg-dark:hover, a.bg-dark:focus { background-color: #384551 !important; } a.bg-light:hover, a.bg-light:focus { background-color: #e4e6e8 !important; } a.bg-lighter:hover, a.bg-lighter:focus { background-color: #e9eaec !important; } a.bg-lightest:hover, a.bg-lightest:focus { background-color: #f2f3f3 !important; } .text-light[href]:hover, .text-light[href]:focus { color: var(--bs-body-color) !important; } .text-lighter[href]:hover, .text-lighter[href]:focus { color: var(--bs-body-color) !important; } .text-lightest[href]:hover, .text-lightest[href]:focus { color: var(--bs-body-color) !important; } .text-paper { color: var(--bs-paper-bg) !important; } .text-paper[href]:hover, .text-paper[href]:focus { color: var(--bs-primary) !important; } .text-body[href]:hover, .text-heading[href]:hover { color: var(--bs-primary) !important; } .invert-text-white { color: light-dark(var(--bs-white), #f5f5f9) !important; } .invert-text-white[href]:hover:hover, .invert-text-white[href]:hover:focus { color: light-dark(var(--bs-white), #f5f5f9) !important; } .invert-text-dark { color: light-dark(#22303e, var(--bs-white)) !important; } .invert-text-dark[href]:hover:hover, .invert-text-dark[href]:hover:focus { color: light-dark(#22303e, var(--bs-white)) !important; } .invert-bg-white { background-color: light-dark(var(--bs-white), #f5f5f9) !important; } a.invert-bg-white:hover, a.invert-bg-white:focus { background-color: light-dark(var(--bs-white), #f5f5f9) !important; } .invert-bg-dark { background-color: light-dark(var(--bs-gray-900), var(--bs-white)) !important; } a.invert-bg-dark:hover, a.invert-bg-dark:focus { background-color: light-dark(var(--bs-gray-900), var(--bs-white)) !important; } .invert-border-dark { border-color: light-dark(var(--bs-dark), var(--bs-white)) !important; } .invert-border-white { border-color: light-dark(var(--bs-white), #f5f5f9) !important; } .container-p-x { padding-inline: 1rem !important; } @media (min-width: 992px) { .container-p-x { padding-inline: 1.625rem !important; } } .container-m-nx { margin-inline: -1rem !important; } @media (min-width: 992px) { .container-m-nx { margin-inline: -1.625rem !important; } } .container-p-y:not([class^=pt-]):not([class*=" pt-"]) { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; } .container-p-y:not([class^=pb-]):not([class*=" pb-"]) { -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .container-m-ny:not([class^=mt-]):not([class*=" mt-"]) { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; } .container-m-ny:not([class^=mb-]):not([class*=" mb-"]) { -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .icon-base { block-size: var(--bs-icon-size); font-size: var(--bs-icon-size); inline-size: var(--bs-icon-size); line-height: 1; vertical-align: middle; } .icon-6px, .icon-6px::before { block-size: 6px !important; font-size: 6px !important; inline-size: 6px !important; } .icon-8px, .icon-8px::before { block-size: 8px !important; font-size: 8px !important; inline-size: 8px !important; } .icon-10px, .icon-10px::before { block-size: 10px !important; font-size: 10px !important; inline-size: 10px !important; } .icon-12px, .icon-12px::before { block-size: 12px !important; font-size: 12px !important; inline-size: 12px !important; } .icon-14px, .icon-14px::before { block-size: 14px !important; font-size: 14px !important; inline-size: 14px !important; } .icon-16px, .icon-16px::before { block-size: 16px !important; font-size: 16px !important; inline-size: 16px !important; } .icon-18px, .icon-18px::before { block-size: 18px !important; font-size: 18px !important; inline-size: 18px !important; } .icon-20px, .icon-20px::before { block-size: 20px !important; font-size: 20px !important; inline-size: 20px !important; } .icon-22px, .icon-22px::before { block-size: 22px !important; font-size: 22px !important; inline-size: 22px !important; } .icon-24px, .icon-24px::before { block-size: 24px !important; font-size: 24px !important; inline-size: 24px !important; } .icon-26px, .icon-26px::before { block-size: 26px !important; font-size: 26px !important; inline-size: 26px !important; } .icon-28px, .icon-28px::before { block-size: 28px !important; font-size: 28px !important; inline-size: 28px !important; } .icon-30px, .icon-30px::before { block-size: 30px !important; font-size: 30px !important; inline-size: 30px !important; } .icon-32px, .icon-32px::before { block-size: 32px !important; font-size: 32px !important; inline-size: 32px !important; } .icon-36px, .icon-36px::before { block-size: 36px !important; font-size: 36px !important; inline-size: 36px !important; } .icon-40px, .icon-40px::before { block-size: 40px !important; font-size: 40px !important; inline-size: 40px !important; } .icon-42px, .icon-42px::before { block-size: 42px !important; font-size: 42px !important; inline-size: 42px !important; } .icon-46px, .icon-46px::before { block-size: 46px !important; font-size: 46px !important; inline-size: 46px !important; } .icon-48px, .icon-48px::before { block-size: 48px !important; font-size: 48px !important; inline-size: 48px !important; } .icon-xs, .icon-xs::before { block-size: var(--bs-icon-size-xs) !important; font-size: var(--bs-icon-size-xs) !important; inline-size: var(--bs-icon-size-xs) !important; } .icon-sm, .icon-sm::before { block-size: var(--bs-icon-size-sm) !important; font-size: var(--bs-icon-size-sm) !important; inline-size: var(--bs-icon-size-sm) !important; } .icon-md, .icon-md::before { block-size: var(--bs-icon-size-md) !important; font-size: var(--bs-icon-size-md) !important; inline-size: var(--bs-icon-size-md) !important; } .icon-lg, .icon-lg::before { block-size: var(--bs-icon-size-lg) !important; font-size: var(--bs-icon-size-lg) !important; inline-size: var(--bs-icon-size-lg) !important; } .icon-xl, .icon-xl::before { block-size: var(--bs-icon-size-xl) !important; font-size: var(--bs-icon-size-xl) !important; inline-size: var(--bs-icon-size-xl) !important; } .cell-fit { inline-size: 0.1%; white-space: nowrap; } /* The color-scheme CSS property https://web.dev/color-scheme/ */ :root { --prefix: bs-; --bs-pure-black: #000; --bs-icon-size: 1.25rem; --bs-icon-size-xs: 1rem; --bs-icon-size-sm: 1.125rem; --bs-icon-size-md: 1.375rem; --bs-icon-size-lg: 1.5rem; --bs-icon-size-xl: 2rem; --bs-primary-contrast: var(--bs-white); --bs-secondary-contrast: var(--bs-white); --bs-success-contrast: var(--bs-white); --bs-info-contrast: var(--bs-white); --bs-warning-contrast: var(--bs-white); --bs-danger-contrast: var(--bs-white); --bs-light-contrast: var(--bs-pure-black); --bs-dark-contrast: var(--bs-white); --bs-gray-contrast: var(--bs-white); --bs-bg-label-tint-amount: 84%; --bs-border-subtle-amount: 70%; --bs-base-color: #22303e; --bs-base-color-rgb: 34, 48, 62; --bs-paper-bg: #fff; --bs-paper-bg-rgb: 255, 255, 255; --bs-min-contrast-ratio: 1.7; --bs-box-shadow: 0 0.1875rem 0.5rem 0 rgba(34, 48, 62, 0.1); --bs-box-shadow-xs: 0 0.0625rem 0.3175rem 0 rgba(34, 48, 62, 0.06); --bs-box-shadow-sm: 0 0.125rem 0.375rem 0 rgba(34, 48, 62, 0.08); --bs-box-shadow-lg: 0 0.25rem 0.75rem 0 rgba(34, 48, 62, 0.14); --bs-box-shadow-xl: 0 0.3125rem 1.375rem 0 rgba(34, 48, 62, 0.18); --bs-floating-component-shadow: 0 0.1875rem 0.5rem 0 rgba(34, 48, 62, 0.1); --bs-custom-link-color: var(--bs-primary); --bs-navbar-bg: var(--bs-paper-bg); --bs-navbar-box-shadow: 0 0 10px #e4e6e8; --bs-navbar-border-width: 1px; --bs-navbar-border-color: var(--bs-paper-bg); --bs-menu-header-color: var(--bs-heading-color); --bs-nav-box-shadow: var(--bs-box-shadow); --bs-nav-border-color: var(--bs-paper-bg); } /* Reboot */ b, strong { font-weight: 700; } caption { text-align: start; } dd { -webkit-margin-start: 0; margin-inline-start: 0; } a { color: var(--bs-custom-link-color); } a:hover { color: color-mix(in sRGB, var(--bs-custom-link-color) 80%, var(--bs-base-color)); } a:not([href]), a:not([href]):hover { color: inherit; text-decoration: none; } /* Autofill input bg and text color issue on different OS and browsers */ input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus, input:-internal-autofill-selected { -webkit-background-clip: text !important; background-clip: text !important; } h1, .h1 { line-height: 4.25rem; } h2, .h2 { line-height: 3.5rem; } h3, .h3 { line-height: 2.625rem; } h4, .h4 { line-height: 2.375rem; } h5, .h5 { line-height: 1.75rem; } h6, .h6 { line-height: 1.375rem; } img[data-app-light-img][data-app-dark-img] { visibility: visible; } /* Type */ .list-inline, .list-unstyled { -webkit-padding-start: 0; padding-inline-start: 0; } .list-inline-item:not(:last-child) { margin-inline: 0 0.5rem; } /* Tables ******************************************************************************** */ /* ios fix for drodown-menu being clipped off when used in tables */ .ios .table tr > td .dropdown { position: relative; } /* Firefox fix for table head border bottom */ .table > :not(caption) > * > * { background-clip: padding-box; } .table tr > td .dropdown { position: static; } .table .btn-icon, .table .btn:not([class*=btn-]) { color: var(--bs-table-color); } .table th { color: var(--bs-heading-color); font-size: 0.8125rem; letter-spacing: 0.2px; text-transform: uppercase; } .table:not(.table-borderless):not(.table-without-card, .dataTable) thead th { border-block-start-width: var(--bs-border-width); } .table.table-flush-spacing thead tr > td:first-child, .table.table-flush-spacing tbody tr > td:first-child { -webkit-padding-start: 0; padding-inline-start: 0; } .table.table-flush-spacing thead tr > td:last-child, .table.table-flush-spacing tbody tr > td:last-child { -webkit-padding-end: 0; padding-inline-end: 0; } .card .table { -webkit-margin-after: 0; margin-block-end: 0; } .table.table-dark, .table .table-dark { border-color: #384551; } .table.table-dark th, .table .table-dark th { --bs-heading-color: #fff; } .table.table-light, .table .table-light { border-color: var(--bs-border-color); } .table.table-light th, .table .table-light th { --bs-heading-color: var(--bs-heading-color); } .table caption { padding-block: 0.782rem; padding-inline: 1.25rem; } .table thead tr th { padding-block: 1.161rem; } .table.table-borderless:not(.table-sm) > :not(thead) > * > * { padding-block: 0.8133rem; } .table.table-borderless:not(.table-sm) > thead > * > * { padding-block: 1.1923rem; } /* class for to remove table border bottom */ .table-border-bottom-0 tr:last-child td { border-block-end-width: 0; } /* class for to remove table border top */ .table-border-top-0 tr:first-child td, .table-border-top-0 tr:first-child th { border-block-start-width: 0 !important; } .table-primary { --bs-table-bg: rgba(var(--bs-primary-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); } .table-secondary { --bs-table-bg: rgba(var(--bs-secondary-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); } .table-success { --bs-table-bg: rgba(var(--bs-success-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); } .table-info { --bs-table-bg: rgba(var(--bs-info-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); } .table-warning { --bs-table-bg: rgba(var(--bs-warning-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); } .table-danger { --bs-table-bg: rgba(var(--bs-danger-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); } .table-light { --bs-table-bg: rgba(var(--bs-light-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); --bs-table-bg: var(--bs-light); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-table-color) 3.5%, var(--bs-table-bg)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-table-color) 4%, var(--bs-table-bg)); } .table-dark { --bs-table-bg: rgba(var(--bs-dark-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); --bs-table-bg: var(--bs-dark); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-table-color) 3.5%, var(--bs-table-bg)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-table-color) 4%, var(--bs-table-bg)); } .table-gray { --bs-table-bg: rgba(var(--bs-gray-rgb), .2); --bs-table-hover-bg: color-mix(in sRGB, var(--bs-body-bg) 46%, var(--bs-table-bg)); --bs-table-border-color: color-mix(in sRGB, var(--bs-table-bg) 98%, var(--bs-table-color)); --bs-table-active-bg: color-mix(in sRGB, var(--bs-body-bg) 32.5%, var(--bs-table-bg)); } /* Labels ******************************************************************************* */ .col-form-label { white-space: nowrap; } /* Default (vertical ) form label size */ .form-label-lg { font-size: 1.0625rem; } .form-label-sm { font-size: 0.8125rem; } .form-control { --bs-input-border-color: color-mix(in sRGB, var(--bs-base-color) 22%, var(--bs-paper-bg)); --bs-input-disabled-border-color: rgba(var(--bs-base-color-rgb), 0.24); border-color: var(--bs-input-border-color); padding-block: calc(0.543rem - var(--bs-border-width)); padding-inline: calc(0.9375rem - var(--bs-border-width)); /* border color on hover state when element not in focus or disabled */ /* ! FIX: wizard-ex input type number placeholder align issue */ } .form-control::-webkit-input-placeholder, .form-control:focus::-webkit-input-placeholder { -webkit-transition: all ease 0.2s; transition: all ease 0.2s; } .form-control::-moz-placeholder, .form-control:focus::-moz-placeholder { -moz-transition: all ease 0.2s; transition: all ease 0.2s; } .form-control:-ms-input-placeholder, .form-control:focus:-ms-input-placeholder { -ms-transition: all ease 0.2s; transition: all ease 0.2s; } .form-control::-ms-input-placeholder, .form-control:focus::-ms-input-placeholder { -ms-transition: all ease 0.2s; transition: all ease 0.2s; } .form-control::placeholder, .form-control:focus::placeholder { -webkit-transition: all ease 0.2s; transition: all ease 0.2s; } @media (prefers-reduced-motion: reduce) { .form-control::-webkit-input-placeholder, .form-control:focus::-webkit-input-placeholder { -webkit-transition: none; transition: none; } .form-control::-moz-placeholder, .form-control:focus::-moz-placeholder { -moz-transition: none; transition: none; } .form-control:-ms-input-placeholder, .form-control:focus:-ms-input-placeholder { -ms-transition: none; transition: none; } .form-control::-ms-input-placeholder, .form-control:focus::-ms-input-placeholder { -ms-transition: none; transition: none; } .form-control::placeholder, .form-control:focus::placeholder { -webkit-transition: none; transition: none; } } .form-control:hover:not(:focus):not(:disabled) { border-color: var(--bs-gray-600); } .form-control:disabled { border-color: var(--bs-input-disabled-border-color); } .input-group .form-control[type=number] { line-height: 1.375rem; min-block-size: 2.375rem; } .input-group-lg .form-control[type=number] { line-height: 1.5rem; min-block-size: 3rem; } .input-group-sm .form-control[type=number] { min-block-size: 1.875rem; } .form-control:not([readonly]):focus::-webkit-input-placeholder { -webkit-transform: translateX(5px); transform: translateX(5px); } .form-control:not([readonly]):focus::-moz-placeholder { transform: translateX(5px); } .form-control:not([readonly]):focus:-ms-input-placeholder { -ms-transform: translateX(5px); transform: translateX(5px); } .form-control:not([readonly]):focus::-ms-input-placeholder { -ms-transform: translateX(5px); transform: translateX(5px); } .form-control:not([readonly]):focus::placeholder { -webkit-transform: translateX(5px); -ms-transform: translateX(5px); transform: translateX(5px); } .form-control:focus { border-width: 2px; padding-block: calc(0.543rem - 2px); padding-inline: calc(0.9375rem - 2px); } .form-control:focus::-webkit-file-upload-button { -webkit-box-shadow: var(--bs-border-width) 0 0 var(--bs-primary); box-shadow: var(--bs-border-width) 0 0 var(--bs-primary); } .form-control:focus::file-selector-button { -webkit-box-shadow: var(--bs-border-width) 0 0 var(--bs-primary); box-shadow: var(--bs-border-width) 0 0 var(--bs-primary); } .form-control.form-control-lg { padding-block: calc(0.7075rem - var(--bs-border-width)); padding-inline: calc(1.3125rem - var(--bs-border-width)); } .form-control.form-control-lg:focus { padding-block: calc(0.7075rem - 2px); padding-inline: calc(1.3125rem - 2px); } .form-control.form-control-lg::-webkit-file-upload-button { margin-block: -0.77rem; padding-block: 0.77rem; } .form-control.form-control-lg::file-selector-button { margin-block: -0.77rem; padding-block: 0.77rem; } .form-control.form-control-sm { padding-block: calc(0.3165rem - var(--bs-border-width)); padding-inline: calc(0.8125rem - var(--bs-border-width)); } .form-control.form-control-sm:focus { padding-block: calc(0.3165rem - 2px); padding-inline: calc(0.8125rem - 2px); } .form-control.form-control-sm::-webkit-file-upload-button { margin-block: -0.379rem; padding-block: 0.379rem; } .form-control.form-control-sm::file-selector-button { margin-block: -0.379rem; padding-block: 0.379rem; } /* Select ******************************************************************************* */ .form-select { --bs-form-select-border-color: color-mix(in sRGB, var(--bs-base-color) 22%, var(--bs-paper-bg)); border-color: var(--bs-form-select-border-color); background-clip: padding-box; padding-block: calc(0.543rem - var(--bs-border-width)); -webkit-padding-end: calc(2.625rem - var(--bs-border-width)); padding-inline-end: calc(2.625rem - var(--bs-border-width)); -webkit-padding-start: calc(0.9375rem - var(--bs-border-width)); padding-inline-start: calc(0.9375rem - var(--bs-border-width)); } .form-select optgroup, .form-select option { background-color: var(--bs-paper-bg); } .form-select[multiple], .form-select[size]:not([size="1"]) { -webkit-padding-end: 0.9375rem; padding-inline-end: 0.9375rem; } .form-select:hover:not(:focus):not(:disabled) { border-color: var(--bs-gray-600); } .form-select:disabled { background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 22" fill="none"%3e%3cpath d="M10.9999 12.0743L15.5374 7.53676L16.8336 8.83292L10.9999 14.6666L5.16626 8.83292L6.46243 7.53676L10.9999 12.0743Z" fill="%23a7acb2" fill-opacity="0.9"/%3e%3c/svg%3e'); } .form-select:focus, .form-select:focus-within { border-width: 2px; background-position: right calc(0.9375rem - 1px) center; padding-block: calc(0.543rem - 2px); -webkit-padding-end: calc(2.625rem - 2px); padding-inline-end: calc(2.625rem - 2px); -webkit-padding-start: calc(0.9375rem - 2px); padding-inline-start: calc(0.9375rem - 2px); } .form-select.form-select-lg { background-size: 24px 24px; min-block-size: calc(1.375em + 1.415rem + calc(var(--bs-border-width) * 2)); padding-block: calc(0.7075rem - var(--bs-border-width)); -webkit-padding-start: calc(1.3125rem - var(--bs-border-width)); padding-inline-start: calc(1.3125rem - var(--bs-border-width)); } .form-select.form-select-lg:focus { padding-block: calc(0.7075rem - 2px); -webkit-padding-start: calc(1.3125rem - 2px); padding-inline-start: calc(1.3125rem - 2px); } .form-select.form-select-sm { background-size: 20px 20px; min-block-size: calc(1.375em + 0.633rem + calc(var(--bs-border-width) * 2)); padding-block: calc(0.3165rem - var(--bs-border-width)); -webkit-padding-start: calc(0.8125rem - var(--bs-border-width)); padding-inline-start: calc(0.8125rem - var(--bs-border-width)); } .form-select.form-select-sm:focus { padding-block: calc(0.3165rem - 2px); -webkit-padding-start: calc(0.8125rem - 2px); padding-inline-start: calc(0.8125rem - 2px); } .form-select[multiple]:focus { -webkit-padding-end: 0.875rem !important; padding-inline-end: 0.875rem !important; } /* Checkboxes and Radios ******************************************************************************* */ .form-check { position: relative; padding-inline: 1.8em 0; } .form-check .form-check-input { float: inline-start; -webkit-margin-start: -1.8em; margin-inline-start: -1.8em; } .form-check.form-check-reverse { padding-inline: 0 1.8em; } .form-check.form-check-reverse .form-check-input { float: inline-end; -webkit-margin-end: -1.8em; margin-inline-end: -1.8em; } .form-check-input { --bs-form-check-input-checked-bg: var(--bs-primary); --bs-form-check-input-checked-border-color: var(--bs-primary); --bs-form-check-shadow-color: var(--bs-primary-rgb); --bs-form-check-box-shadow: 0 .125rem .25rem 0 rgba(var(--bs-form-check-shadow-color), .4); cursor: pointer; } .form-check-input:disabled { --bs-form-check-bg: var(--bs-gray-300); border-color: var(--bs-gray-300); } .form-check-input:checked { border-color: var(--bs-form-check-input-checked-border-color); background-color: var(--bs-form-check-input-checked-bg); -webkit-box-shadow: var(--bs-form-check-box-shadow); box-shadow: var(--bs-form-check-box-shadow); } .form-check-input[type=checkbox]:indeterminate { border-color: var(--bs-form-check-input-checked-border-color); background-color: var(--bs-form-check-input-checked-bg); -webkit-box-shadow: var(--bs-form-check-box-shadow); box-shadow: var(--bs-form-check-box-shadow); } .form-check-input:active { -webkit-filter: none; filter: none; } /* Only for checkbox and radio (not for bs default switch) ? .dt-checkboxes-cell class is used for DataTables checkboxes */ .form-check:not(.form-switch) .form-check-input[type=radio], .dt-checkboxes-cell .form-check-input[type=radio] { background-size: 1.3125rem; } .form-check:not(.form-switch) .form-check-input[type=radio]:not(:checked), .dt-checkboxes-cell .form-check-input[type=radio]:not(:checked) { background-size: 0.75rem; } .form-check-inline { margin-inline: 0 1rem; } .form-switch { -webkit-padding-start: 2.667em; padding-inline-start: 2.667em; } .form-switch .form-check-input { border: 0; -webkit-margin-start: -2.667em; margin-inline-start: -2.667em; } .form-switch .form-check-input:not(:checked) { background-color: var(--bs-gray-100); -webkit-box-shadow: 0 0 0.25rem 0 rgba(34, 48, 62, 0.16) inset; box-shadow: 0 0 0.25rem 0 rgba(34, 48, 62, 0.16) inset; } .form-switch.form-check-reverse { -webkit-padding-end: 2.667em; padding-inline-end: 2.667em; } .form-switch.form-check-reverse .form-check-input { -webkit-margin-end: -2.667em; margin-inline-end: -2.667em; } .form-check-primary .form-check-input { --bs-form-check-input-checked-bg: var(--bs-primary); --bs-form-check-input-checked-border-color: var(--bs-primary); --bs-form-check-shadow-color: var(--bs-primary-rgb); } .form-check-secondary .form-check-input { --bs-form-check-input-checked-bg: var(--bs-secondary); --bs-form-check-input-checked-border-color: var(--bs-secondary); --bs-form-check-shadow-color: var(--bs-secondary-rgb); } .form-check-success .form-check-input { --bs-form-check-input-checked-bg: var(--bs-success); --bs-form-check-input-checked-border-color: var(--bs-success); --bs-form-check-shadow-color: var(--bs-success-rgb); } .form-check-info .form-check-input { --bs-form-check-input-checked-bg: var(--bs-info); --bs-form-check-input-checked-border-color: var(--bs-info); --bs-form-check-shadow-color: var(--bs-info-rgb); } .form-check-warning .form-check-input { --bs-form-check-input-checked-bg: var(--bs-warning); --bs-form-check-input-checked-border-color: var(--bs-warning); --bs-form-check-shadow-color: var(--bs-warning-rgb); } .form-check-danger .form-check-input { --bs-form-check-input-checked-bg: var(--bs-danger); --bs-form-check-input-checked-border-color: var(--bs-danger); --bs-form-check-shadow-color: var(--bs-danger-rgb); } .form-check-light .form-check-input { --bs-form-check-input-checked-bg: var(--bs-light); --bs-form-check-input-checked-border-color: var(--bs-light); --bs-form-check-shadow-color: var(--bs-light-rgb); } .form-check-dark .form-check-input { --bs-form-check-input-checked-bg: var(--bs-dark); --bs-form-check-input-checked-border-color: var(--bs-dark); --bs-form-check-shadow-color: var(--bs-dark-rgb); } .form-check-gray .form-check-input { --bs-form-check-input-checked-bg: var(--bs-gray); --bs-form-check-input-checked-border-color: var(--bs-gray); --bs-form-check-shadow-color: var(--bs-gray-rgb); } /* Range select ******************************************************************************* */ .form-range::-webkit-slider-thumb { -webkit-box-shadow: 0 0.112rem 0.375rem 0 rgba(var(--bs-base-color-rgb), 0.08); box-shadow: 0 0.112rem 0.375rem 0 rgba(var(--bs-base-color-rgb), 0.08); -webkit-transform-origin: center; transform-origin: center; -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s ease; transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s ease; transition: transform 0.2s, box-shadow 0.2s ease; transition: transform 0.2s, box-shadow 0.2s ease, -webkit-transform 0.2s, -webkit-box-shadow 0.2s ease; } @media (prefers-reduced-motion: reduce) { .form-range::-webkit-slider-thumb { -webkit-transition: none; transition: none; } } .form-range::-webkit-slider-thumb:hover { -webkit-box-shadow: 0 0 0 0.5rem rgba(var(--bs-primary-rgb), 0.16); box-shadow: 0 0 0 0.5rem rgba(var(--bs-primary-rgb), 0.16); } .form-range::-webkit-slider-thumb:active, .form-range::-webkit-slider-thumb:focus { -webkit-box-shadow: 0 0 0 0.8125rem rgba(var(--bs-primary-rgb), 0.16); box-shadow: 0 0 0 0.8125rem rgba(var(--bs-primary-rgb), 0.16); } .form-range::-webkit-slider-runnable-track { background-color: var(--bs-primary); } .form-range::-moz-range-thumb { box-shadow: 0 0.112rem 0.375rem 0 rgba(var(--bs-base-color-rgb), 0.08); transform-origin: center; -moz-transition: transform 0.2s, box-shadow 0.2s ease; transition: transform 0.2s, box-shadow 0.2s ease; } @media (prefers-reduced-motion: reduce) { .form-range::-moz-range-thumb { -moz-transition: none; transition: none; } } .form-range::-moz-range-thumb:hover { box-shadow: 0 0 0 0.5rem rgba(var(--bs-primary-rgb), 0.16); } .form-range::-moz-range-thumb:active, .form-range::-moz-range-thumb:focus { box-shadow: 0 0 0 0.8125rem rgba(var(--bs-primary-rgb), 0.16); } .form-range::-moz-range-track { background-color: var(--bs-primary); } .form-range:disabled::-webkit-slider-runnable-track { background-color: var(--bs-gray-100); } .form-range:disabled::-moz-range-track { background-color: var(--bs-gray-100); } .form-range:disabled::-webkit-slider-thumb { border-color: var(--bs-gray-300); -webkit-box-shadow: none; box-shadow: none; } .form-range:disabled::-moz-range-thumb { border-color: var(--bs-gray-300); box-shadow: none; } /* Input groups ******************************************************************************* */ /* Using :focus-within to apply focus border and shadow to default and merged input-group */ .input-group { --bs-input-group-addon-border-color: color-mix(in sRGB, var(--bs-base-color) 22%, var(--bs-paper-bg)); --bs-input-group-disabled-border-color: rgba(var(--bs-base-color-rgb), 0.24); border-radius: var(--bs-border-radius); /* ? Info :focus-within to apply focus border and shadow to default and merged input & input-group */ } .input-group:has(.form-check-input):not(:has(.dropdown-toggle)) { z-index: 1; } .input-group:has(.form-check-input):not(:has(.dropdown-toggle))::before { z-index: -1; } .input-group .input-group-text { border-color: var(--bs-input-group-addon-border-color); -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .input-group .input-group-text { -webkit-transition: none; transition: none; } } .input-group .form-control:focus, .input-group .form-control:focus-within, .input-group .form-select:focus, .input-group .form-select:focus-within, .input-group .input-group-text:focus, .input-group .input-group-text:focus-within { border-width: var(--bs-border-width); } .input-group .form-control, .input-group .form-control:focus, .input-group .form-control:focus-within, .input-group .input-group-text, .input-group .input-group-text:focus, .input-group .input-group-text:focus-within { padding-block: calc(0.543rem - var(--bs-border-width)); padding-inline: calc(0.9375rem - var(--bs-border-width)); } .input-group .form-select, .input-group .form-select:focus, .input-group .form-select:focus-within { background-position: right 0.9375rem center; padding-block: calc(0.543rem - var(--bs-border-width)); -webkit-padding-end: calc(2.625rem - var(--bs-border-width)); padding-inline-end: calc(2.625rem - var(--bs-border-width)); -webkit-padding-start: calc(0.9375rem - var(--bs-border-width)); padding-inline-start: calc(0.9375rem - var(--bs-border-width)); } .input-group.input-group-sm, .input-group.input-group-sm::before { border-radius: var(--bs-border-radius-sm); } .input-group.input-group-sm .form-control, .input-group.input-group-sm .form-control:focus, .input-group.input-group-sm .form-control:focus-within, .input-group.input-group-sm .input-group-text, .input-group.input-group-sm .input-group-text:focus, .input-group.input-group-sm .input-group-text:focus-within { padding-block: 0.3165rem; padding-inline: 0.8125rem; } .input-group.input-group-sm .form-select, .input-group.input-group-sm .form-select:focus, .input-group.input-group-sm .form-select:focus-within { background-position: right 0.8125rem center; padding-block: 0.3165rem; padding-inline: 0.8125rem; -webkit-padding-start: calc(0.8125rem - var(--bs-border-width)); padding-inline-start: calc(0.8125rem - var(--bs-border-width)); } .input-group.input-group-lg, .input-group.input-group-lg::before { border-radius: var(--bs-border-radius-lg); } .input-group.input-group-lg .form-control, .input-group.input-group-lg .form-control:focus, .input-group.input-group-lg .form-control:focus-within, .input-group.input-group-lg .input-group-text, .input-group.input-group-lg .input-group-text:focus, .input-group.input-group-lg .input-group-text:focus-within { padding-block: 0.7075rem; padding-inline: 1.3125rem; } .input-group.input-group-lg .form-select, .input-group.input-group-lg .form-select:focus, .input-group.input-group-lg .form-select:focus-within { background-position: right 1.3125rem center; padding-block: 0.7075rem; padding-inline: 1.3125rem; -webkit-padding-start: calc(1.3125rem - var(--bs-border-width)); padding-inline-start: calc(1.3125rem - var(--bs-border-width)); } .input-group::before { position: absolute; display: block; block-size: 100%; content: ""; inline-size: 100%; inset-block-start: 0; inset-inline-start: 0; border-radius: var(--bs-border-radius); } .input-group > :not(:first-child):not(.dropdown-menu) { margin-inline: calc(var(--bs-border-width) * -1) 0; } .input-group:hover .input-group-text, .input-group:hover .form-control, .input-group:hover .form-select { border-color: var(--bs-gray-600); } .input-group:focus-within, .input-group:focus { -webkit-box-shadow: 0 0 0 var(--bs-border-width) var(--bs-primary); box-shadow: 0 0 0 var(--bs-border-width) var(--bs-primary); } .input-group:focus-within::before, .input-group:focus::before { -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-primary-rgb), 0.4); box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-primary-rgb), 0.4); } .input-group:focus-within:not(.input-group-merge) .form-control::-webkit-file-upload-button, .input-group:focus:not(.input-group-merge) .form-control::-webkit-file-upload-button { -webkit-box-shadow: var(--bs-border-width) 0 0 var(--bs-primary); box-shadow: var(--bs-border-width) 0 0 var(--bs-primary); } .input-group:focus-within:not(.input-group-merge) .form-control, .input-group:focus-within:not(.input-group-merge) .form-select, .input-group:focus-within:not(.input-group-merge) .input-group-text, .input-group:focus-within:not(.input-group-merge) .btn, .input-group:focus-within:not(.input-group-merge) .form-control::file-selector-button, .input-group:focus:not(.input-group-merge) .form-control, .input-group:focus:not(.input-group-merge) .form-select, .input-group:focus:not(.input-group-merge) .input-group-text, .input-group:focus:not(.input-group-merge) .btn, .input-group:focus:not(.input-group-merge) .form-control::file-selector-button { -webkit-box-shadow: var(--bs-border-width) 0 0 var(--bs-primary); box-shadow: var(--bs-border-width) 0 0 var(--bs-primary); } .input-group:focus-within .input-group-text, .input-group:focus-within .form-control, .input-group:focus-within .form-select, .input-group:focus .input-group-text, .input-group:focus .form-control, .input-group:focus .form-select { border-color: var(--bs-primary); } .input-group:focus-within .input-group-text:hover, .input-group:focus-within .form-control:hover, .input-group:focus-within .form-select:hover, .input-group:focus .input-group-text:hover, .input-group:focus .form-control:hover, .input-group:focus .form-select:hover { border-color: var(--bs-primary); } .input-group.input-group-merge > :not(:first-child):not(.dropdown-menu) { margin-inline: 0; } .input-group.input-group-merge:not(.disabled) > :not(:first-child):not(.dropdown-menu):not(.btn):not(.dropdown-menu + .form-control):not(.btn + .form-control) { -webkit-margin-start: -2px; margin-inline-start: -2px; } .input-group.input-group-merge .input-group-text, .input-group.input-group-merge .input-group-text:focus, .input-group.input-group-merge .input-group-text:focus-within, .input-group.input-group-merge .form-control, .input-group.input-group-merge .form-control:focus, .input-group.input-group-merge .form-control:focus-within, .input-group.input-group-merge .form-select, .input-group.input-group-merge .form-select:focus, .input-group.input-group-merge .form-select:focus-within { -webkit-box-shadow: none; box-shadow: none; } .input-group.input-group-merge .input-group-text:first-child, .input-group.input-group-merge .form-control:first-child, .input-group.input-group-merge .form-select:first-child { -webkit-border-end: 0; border-inline-end: 0; } .input-group.input-group-merge .input-group-text:last-child, .input-group.input-group-merge .form-control:last-child, .input-group.input-group-merge .form-select:last-child { -webkit-border-start: 0; border-inline-start: 0; } .input-group.input-group-merge .input-group-text:not(:first-child), .input-group.input-group-merge .form-control:not(:first-child), .input-group.input-group-merge .form-select:not(:first-child) { -webkit-border-start: 0; border-inline-start: 0; -webkit-padding-start: 0; padding-inline-start: 0; } .input-group.input-group-merge .input-group-text:not(:last-child), .input-group.input-group-merge .form-control:not(:last-child), .input-group.input-group-merge .form-select:not(:last-child) { -webkit-border-end: 0; border-inline-end: 0; } .input-group.input-group-merge.disabled, .input-group.input-group-merge[disabled] { margin-inline: 0 !important; } .input-group.rounded-pill .input-group-text, .input-group.rounded-pill .form-control, .input-group.rounded-pill .form-select, .input-group.rounded-pill::before { border-radius: 50rem; } .input-group.disabled .input-group-text, .input-group.disabled .form-control, .input-group.disabled .form-select, .input-group[disabled] .input-group-text, .input-group[disabled] .form-control, .input-group[disabled] .form-select { border-color: var(--bs-input-group-disabled-border-color); background-color: rgba(var(--bs-base-color-rgb), 0.06); color: var(--bs-secondary-color); pointer-events: none; } .input-group.disabled .form-select, .input-group[disabled] .form-select { background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 22" fill="none"%3e%3cpath d="M10.9999 12.0743L15.5374 7.53676L16.8336 8.83292L10.9999 14.6666L5.16626 8.83292L6.46243 7.53676L10.9999 12.0743Z" fill="%23a7acb2" fill-opacity="0.9"/%3e%3c/svg%3e'); } /* input-group-text icon size */ .input-group-text { background-clip: padding-box; /* Adding transition (On focus border color change) */ -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .input-group-text { -webkit-transition: none; transition: none; } } .input-group-lg > .input-group-text .icon-base { block-size: 1.375rem; font-size: 1.375rem; inline-size: 1.375rem; } .input-group-sm > .input-group-text .icon-base { block-size: 1.125rem; font-size: 1.125rem; inline-size: 1.125rem; } /* Floating Labels ******************************************************************************* */ .form-floating > label { inset-inline-start: 0; } .form-floating > .form-control:focus::-webkit-input-placeholder, .form-floating > .form-control:not(:placeholder-shown)::-webkit-input-placeholder { color: var(--bs-secondary-color); } .form-floating > .form-control:focus::-moz-placeholder, .form-floating > .form-control:not(:placeholder-shown)::-moz-placeholder { color: var(--bs-secondary-color); } .form-floating > .form-control:focus:-ms-input-placeholder, .form-floating > .form-control:not(:placeholder-shown):-ms-input-placeholder { color: var(--bs-secondary-color); } .form-floating > .form-control:focus::-ms-input-placeholder, .form-floating > .form-control:not(:placeholder-shown)::-ms-input-placeholder { color: var(--bs-secondary-color); } .form-floating > .form-control:not(:-moz-placeholder-shown)::placeholder { color: var(--bs-secondary-color); } .form-floating > .form-control:not(:-ms-input-placeholder)::placeholder { color: var(--bs-secondary-color); } .form-floating > .form-control:focus::placeholder, .form-floating > .form-control:not(:placeholder-shown)::placeholder { color: var(--bs-secondary-color); } .form-floating > .form-control:focus:not(:-moz-placeholder-shown) ~ label, .form-floating > .form-select:focus:not(:-moz-placeholder-shown) ~ label { color: var(--bs-primary); } .form-floating > .form-control:focus:not(:-ms-input-placeholder) ~ label, .form-floating > .form-select:focus:not(:-ms-input-placeholder) ~ label { color: var(--bs-primary); } .form-floating > .form-control:focus ~ label, .form-floating > .form-control:focus:not(:placeholder-shown) ~ label, .form-floating > .form-select:focus ~ label, .form-floating > .form-select:focus:not(:placeholder-shown) ~ label { color: var(--bs-primary); } .btn { --bs-btn-box-shadow-rgb: transparent; --bs-btn-focus-shadow-rgb: transparent; --bs-btn-active-shadow-rgb: transparent; --bs-btn-box-shadow: 0 .125rem .25rem 0 rgba(var(--bs-btn-box-shadow-rgb), .4); --bs-btn-focus-box-shadow: none; --bs-btn-active-border-color: transparent; --bs-btn-active-shadow: none; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; /* Table Action Dropdown fix */ /* override bootstrap styles of the checkbox/radio buttons */ /* Buttons Variant */ /* Outline */ } .btn:not(:focus, :active) { -webkit-box-shadow: var(--bs-btn-box-shadow); box-shadow: var(--bs-btn-box-shadow); } .btn-group .btn, .input-group .btn { -webkit-border-end: var(--bs-border-width) solid var(--bs-btn-group-border-color); border-inline-end: var(--bs-border-width) solid var(--bs-btn-group-border-color); -webkit-border-start: var(--bs-border-width) solid var(--bs-btn-group-border-color); border-inline-start: var(--bs-border-width) solid var(--bs-btn-group-border-color); } .btn-group-vertical .btn { -webkit-border-after: var(--bs-border-width) solid var(--bs-btn-group-border-color); border-block-end: var(--bs-border-width) solid var(--bs-btn-group-border-color); -webkit-border-before: var(--bs-border-width) solid var(--bs-btn-group-border-color); border-block-start: var(--bs-border-width) solid var(--bs-btn-group-border-color); } .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show { -webkit-box-shadow: var(--bs-btn-active-shadow); box-shadow: var(--bs-btn-active-shadow); } .btn:disabled, .btn.disabled, fieldset:disabled .btn { -webkit-box-shadow: none; box-shadow: none; } .btn:not([class*=btn-]):active, .btn:not([class*=btn-]).active, .btn:not([class*=btn-]).show, .btn:not([class*=btn-]) { --bs-btn-border-width: 0; } .btn-check + .btn:hover { border-color: var(--bs-btn-hover-border-color); background-color: var(--bs-btn-hover-bg); color: var(--bs-btn-hover-color); } .btn[class*=btn-outline-] { --bs-btn-bg: transparent; --bs-btn-focus-box-shadow: none; --bs-btn-active-shadow: none; --bs-btn-disabled-bg: transparent; } .btn[class*=btn-outline-] .badge { --bs-badge-bg-color: var(--bs-btn-color); --bs-badge-color: var(--bs-btn-hover-color); } .btn[class*=btn-outline-]:not(:hover) { --bs-btn-box-shadow: none; } .btn[class*=btn-outline-]:hover .badge:not([class*=badge-outline]), .btn[class*=btn-outline-]:focus:hover .badge:not([class*=badge-outline]), .btn[class*=btn-outline-]:focus:not(:hover) .badge:not([class*=badge-outline]), .btn[class*=btn-outline-]:active .badge:not([class*=badge-outline]), .btn[class*=btn-outline-].active .badge:not([class*=badge-outline]), .show > .btn[class*=btn-outline-].dropdown-toggle .badge:not([class*=badge-outline]) { --bs-badge-bg-color: var(--bs-btn-hover-color); --bs-badge-color: var(--bs-btn-hover-bg); } .btn.btn-white { --bs-btn-bg: var(--bs-white); --bs-btn-color: var(--bs-body-color); --bs-btn-border-color: var(--bs-white); --bs-btn-hover-color: var(--bs-black); --bs-btn-hover-bg: var(--bs-btn-bg); --bs-btn-hover-border-color: var(--bs-btn-border-color); --bs-btn-active-color: var(--bs-btn-hover-color); --bs-btn-active-bg: var(--bs-btn-hover-bg); --bs-btn-active-border-color: var(--bs-btn-hover-border-color); --bs-btn-box-shadow-rgb: var(--bs-white-rgb); --bs-btn-active-shadow-rgb: var(--bs-btn-box-shadow-rgb); } .btn:hover { -webkit-transform: translateY(-1px); -ms-transform: translateY(-1px); transform: translateY(-1px); } .btn:focus { -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } /* Badge within button */ .btn .badge { -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; inset-block-start: 0; } @media (prefers-reduced-motion: reduce) { .btn .badge { -webkit-transition: none; transition: none; } } label.btn { -webkit-margin-after: 0; margin-block-end: 0; } /* Button Sizes */ .btn-xl, .btn-group-xl > .btn { --bs-btn-padding-y: 0.852rem; --bs-btn-padding-x: 1.5rem; --bs-btn-font-size: 1.125rem; --bs-btn-border-radius: 0.625rem; } .btn-xs, .btn-group-xs > .btn { --bs-btn-padding-y: 0.196rem; --bs-btn-padding-x: 0.625rem; --bs-btn-font-size: 0.625rem; --bs-btn-border-radius: 0.125rem; } /* Icon button */ .btn-icon { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -ms-flex-negative: 0; flex-shrink: 0; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding: 0; block-size: calc(2.2505001rem + calc(var(--bs-border-width) * 2)); font-size: 1.2890625rem; inline-size: calc(2.2505001rem + calc(var(--bs-border-width) * 2)); } .btn-icon .icon-base { block-size: 1.2890625rem; font-size: 1.2890625rem; inline-size: 1.2890625rem; } .btn-icon.btn-xl, .btn-group-xl > .btn-icon.btn { block-size: calc(3.250875rem + calc(var(--bs-border-width) * 2)); inline-size: calc(3.250875rem + calc(var(--bs-border-width) * 2)); } .btn-icon.btn-xl .icon-base, .btn-group-xl > .btn-icon.btn .icon-base { block-size: 1.546875rem; font-size: 1.546875rem; inline-size: 1.546875rem; } .btn-icon.btn-lg, .btn-group-lg > .btn-icon.btn { block-size: calc(2.8769375rem + calc(var(--bs-border-width) * 2)); font-size: 1.4609375rem; inline-size: calc(2.8769375rem + calc(var(--bs-border-width) * 2)); } .btn-icon.btn-lg .icon-base, .btn-group-lg > .btn-icon.btn .icon-base { block-size: 1.4609375rem; font-size: 1.4609375rem; inline-size: 1.4609375rem; } .btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn { block-size: calc(1.7505535rem + calc(var(--bs-border-width) * 2)); font-size: 0.8125rem; inline-size: calc(1.7505535rem + calc(var(--bs-border-width) * 2)); } .btn-icon.btn-sm .icon-base, .btn-group-sm > .btn-icon.btn .icon-base { block-size: 0.8125rem; font-size: 0.8125rem; inline-size: 0.8125rem; } .btn-icon.btn-xs, .btn-group-xs > .btn-icon.btn { block-size: calc(1.250983rem + calc(var(--bs-border-width) * 2)); font-size: 0.625rem; inline-size: calc(1.250983rem + calc(var(--bs-border-width) * 2)); } .btn-icon.btn-xs .icon-base, .btn-group-xs > .btn-icon.btn .icon-base { block-size: 0.625rem; font-size: 0.625rem; inline-size: 0.625rem; } /* Link buttons */ .btn.btn-link { font-size: inherit; } .btn-pinned { position: absolute; inset-block-start: 0.75rem; inset-inline-end: 0.75rem; } /* Button focus */ button:focus, button:focus-visible { outline: 0; } /* Generate contextual modifier classes for colorizing the button */ /* Default */ .btn-primary { --bs-btn-bg: var(--bs-primary); --bs-btn-color: var(--bs-primary-contrast); --bs-btn-border-color: var(--bs-primary); --bs-btn-hover-color: var(--bs-primary-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-primary)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-primary-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-primary)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-primary-rgb); --bs-btn-disabled-color: var(--bs-primary-contrast); --bs-btn-disabled-bg: var(--bs-primary); --bs-btn-disabled-border-color: var(--bs-primary); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-primary)); } /* Outline */ .btn-outline-primary { --bs-btn-color: var(--bs-primary); --bs-btn-border-color: var(--bs-primary); --bs-btn-hover-color: var(--bs-primary-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-primary)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-primary-rgb); --bs-btn-active-color: var(--bs-primary-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-primary)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-primary); --bs-btn-disabled-border-color: var(--bs-primary); --bs-btn-group-border-color: var(--bs-primary); } /* Default */ .btn-secondary { --bs-btn-bg: var(--bs-secondary); --bs-btn-color: var(--bs-secondary-contrast); --bs-btn-border-color: var(--bs-secondary); --bs-btn-hover-color: var(--bs-secondary-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-secondary)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-secondary-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-secondary)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-secondary-rgb); --bs-btn-disabled-color: var(--bs-secondary-contrast); --bs-btn-disabled-bg: var(--bs-secondary); --bs-btn-disabled-border-color: var(--bs-secondary); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-secondary)); } /* Outline */ .btn-outline-secondary { --bs-btn-color: var(--bs-secondary); --bs-btn-border-color: var(--bs-secondary); --bs-btn-hover-color: var(--bs-secondary-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-secondary)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-secondary-rgb); --bs-btn-active-color: var(--bs-secondary-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-secondary)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-secondary); --bs-btn-disabled-border-color: var(--bs-secondary); --bs-btn-group-border-color: var(--bs-secondary); } /* Default */ .btn-success { --bs-btn-bg: var(--bs-success); --bs-btn-color: var(--bs-success-contrast); --bs-btn-border-color: var(--bs-success); --bs-btn-hover-color: var(--bs-success-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-success)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-success-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-success)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-success-rgb); --bs-btn-disabled-color: var(--bs-success-contrast); --bs-btn-disabled-bg: var(--bs-success); --bs-btn-disabled-border-color: var(--bs-success); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-success)); } /* Outline */ .btn-outline-success { --bs-btn-color: var(--bs-success); --bs-btn-border-color: var(--bs-success); --bs-btn-hover-color: var(--bs-success-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-success)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-success-rgb); --bs-btn-active-color: var(--bs-success-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-success)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-success); --bs-btn-disabled-border-color: var(--bs-success); --bs-btn-group-border-color: var(--bs-success); } /* Default */ .btn-info { --bs-btn-bg: var(--bs-info); --bs-btn-color: var(--bs-info-contrast); --bs-btn-border-color: var(--bs-info); --bs-btn-hover-color: var(--bs-info-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-info)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-info-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-info)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-info-rgb); --bs-btn-disabled-color: var(--bs-info-contrast); --bs-btn-disabled-bg: var(--bs-info); --bs-btn-disabled-border-color: var(--bs-info); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-info)); } /* Outline */ .btn-outline-info { --bs-btn-color: var(--bs-info); --bs-btn-border-color: var(--bs-info); --bs-btn-hover-color: var(--bs-info-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-info)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-info-rgb); --bs-btn-active-color: var(--bs-info-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-info)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-info); --bs-btn-disabled-border-color: var(--bs-info); --bs-btn-group-border-color: var(--bs-info); } /* Default */ .btn-warning { --bs-btn-bg: var(--bs-warning); --bs-btn-color: var(--bs-warning-contrast); --bs-btn-border-color: var(--bs-warning); --bs-btn-hover-color: var(--bs-warning-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-warning)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-warning-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-warning)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-warning-rgb); --bs-btn-disabled-color: var(--bs-warning-contrast); --bs-btn-disabled-bg: var(--bs-warning); --bs-btn-disabled-border-color: var(--bs-warning); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-warning)); } /* Outline */ .btn-outline-warning { --bs-btn-color: var(--bs-warning); --bs-btn-border-color: var(--bs-warning); --bs-btn-hover-color: var(--bs-warning-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-warning)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-warning-rgb); --bs-btn-active-color: var(--bs-warning-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-warning)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-warning); --bs-btn-disabled-border-color: var(--bs-warning); --bs-btn-group-border-color: var(--bs-warning); } /* Default */ .btn-danger { --bs-btn-bg: var(--bs-danger); --bs-btn-color: var(--bs-danger-contrast); --bs-btn-border-color: var(--bs-danger); --bs-btn-hover-color: var(--bs-danger-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-danger)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-danger-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-danger)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-danger-rgb); --bs-btn-disabled-color: var(--bs-danger-contrast); --bs-btn-disabled-bg: var(--bs-danger); --bs-btn-disabled-border-color: var(--bs-danger); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-danger)); } /* Outline */ .btn-outline-danger { --bs-btn-color: var(--bs-danger); --bs-btn-border-color: var(--bs-danger); --bs-btn-hover-color: var(--bs-danger-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-danger)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-danger-rgb); --bs-btn-active-color: var(--bs-danger-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-danger)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-danger); --bs-btn-disabled-border-color: var(--bs-danger); --bs-btn-group-border-color: var(--bs-danger); } /* Default */ .btn-light { --bs-btn-bg: var(--bs-light); --bs-btn-color: var(--bs-light-contrast); --bs-btn-border-color: var(--bs-light); --bs-btn-hover-color: var(--bs-light-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-light)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-light-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-light)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-light-rgb); --bs-btn-disabled-color: var(--bs-light-contrast); --bs-btn-disabled-bg: var(--bs-light); --bs-btn-disabled-border-color: var(--bs-light); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-light)); } /* Outline */ .btn-outline-light { --bs-btn-color: var(--bs-light); --bs-btn-border-color: var(--bs-light); --bs-btn-hover-color: var(--bs-light-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-light)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-light-rgb); --bs-btn-active-color: var(--bs-light-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-light)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-light); --bs-btn-disabled-border-color: var(--bs-light); --bs-btn-group-border-color: var(--bs-light); } /* Default */ .btn-dark { --bs-btn-bg: var(--bs-dark); --bs-btn-color: var(--bs-dark-contrast); --bs-btn-border-color: var(--bs-dark); --bs-btn-hover-color: var(--bs-dark-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-dark)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-dark-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-dark)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-dark-rgb); --bs-btn-disabled-color: var(--bs-dark-contrast); --bs-btn-disabled-bg: var(--bs-dark); --bs-btn-disabled-border-color: var(--bs-dark); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-dark)); } /* Outline */ .btn-outline-dark { --bs-btn-color: var(--bs-dark); --bs-btn-border-color: var(--bs-dark); --bs-btn-hover-color: var(--bs-dark-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-dark)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-dark-rgb); --bs-btn-active-color: var(--bs-dark-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-dark)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-dark); --bs-btn-disabled-border-color: var(--bs-dark); --bs-btn-group-border-color: var(--bs-dark); } /* Default */ .btn-gray { --bs-btn-bg: var(--bs-gray); --bs-btn-color: var(--bs-gray-contrast); --bs-btn-border-color: var(--bs-gray); --bs-btn-hover-color: var(--bs-gray-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-gray)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-active-color: var(--bs-gray-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-gray)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-box-shadow-rgb: var(--bs-gray-rgb); --bs-btn-disabled-color: var(--bs-gray-contrast); --bs-btn-disabled-bg: var(--bs-gray); --bs-btn-disabled-border-color: var(--bs-gray); --bs-btn-group-border-color: color-mix(in sRGB, #000 10%, var(--bs-gray)); } /* Outline */ .btn-outline-gray { --bs-btn-color: var(--bs-gray); --bs-btn-border-color: var(--bs-gray); --bs-btn-hover-color: var(--bs-gray-contrast); --bs-btn-hover-bg: color-mix(in sRGB, #000 10%, var(--bs-gray)); --bs-btn-hover-border-color: var(--bs-btn-hover-bg); --bs-btn-box-shadow-rgb: var(--bs-gray-rgb); --bs-btn-active-color: var(--bs-gray-contrast); --bs-btn-active-bg: color-mix(in sRGB, #000 10%, var(--bs-gray)); --bs-btn-active-border-color: var(--bs-btn-active-bg); --bs-btn-disabled-color: var(--bs-gray); --bs-btn-disabled-border-color: var(--bs-gray); --bs-btn-group-border-color: var(--bs-gray); } .dropdown-menu { -webkit-box-shadow: var(--bs-dropdown-box-shadow); box-shadow: var(--bs-dropdown-box-shadow); -webkit-margin-before: 1px !important; margin-block-start: 1px !important; text-align: start; } .dropdown-menu > li:not(.disabled) > a:not(.dropdown-item):active, .dropdown-menu > li:not(.disabled) > a:not(.dropdown-item).active, .dropdown-menu > li.active:not(.disabled) > a:not(.dropdown-item) { background-color: var(--bs-dropdown-link-active-bg); color: var(--bs-dropdown-link-active-color); } .btn-xs.dropdown-toggle::after, .btn-group-xs > .dropdown-toggle.btn::after { border: 2px solid; block-size: 0.45em; -webkit-border-before: 0; border-block-start: 0; -webkit-border-start: 0; border-inline-start: 0; inline-size: 0.45em; -webkit-margin-before: -0.24075em; margin-block-start: -0.24075em; margin-inline: 0.8em 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } /* Split dropdowns */ .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after { margin-inline: 0; } .dropstart .dropdown-toggle-split::before { margin-inline: 0; } /* Dropdown item line height */ li:not(:first-child) .dropdown-item, .dropdown-menu .dropdown-item:not(:first-child) { -webkit-margin-before: 2px; margin-block-start: 2px; } .dropdown-item.text-danger:active { color: var(--bs-primary) !important; } /* Hidden dropdown toggle arrow */ .dropdown-toggle.hide-arrow::before, .dropdown-toggle.hide-arrow::after, .dropdown-toggle-hide-arrow > .dropdown-toggle::before, .dropdown-toggle-hide-arrow > .dropdown-toggle::after { display: none; } .dropdown-menu-start { --bs-position: start; } .dropdown-menu-start[data-bs-popper] { inset-inline: 0 auto; } .dropdown-menu-end { --bs-position: end; } .dropdown-menu-end[data-bs-popper] { inset-inline: auto 0; } @media (min-width: 576px) { .dropdown-menu-sm-start { --bs-position: start; } .dropdown-menu-sm-start[data-bs-popper] { inset-inline: 0 auto; } .dropdown-menu-sm-end { --bs-position: end; } .dropdown-menu-sm-end[data-bs-popper] { inset-inline: auto 0; } } @media (min-width: 768px) { .dropdown-menu-md-start { --bs-position: start; } .dropdown-menu-md-start[data-bs-popper] { inset-inline: 0 auto; } .dropdown-menu-md-end { --bs-position: end; } .dropdown-menu-md-end[data-bs-popper] { inset-inline: auto 0; } } @media (min-width: 992px) { .dropdown-menu-lg-start { --bs-position: start; } .dropdown-menu-lg-start[data-bs-popper] { inset-inline: 0 auto; } .dropdown-menu-lg-end { --bs-position: end; } .dropdown-menu-lg-end[data-bs-popper] { inset-inline: auto 0; } } @media (min-width: 1200px) { .dropdown-menu-xl-start { --bs-position: start; } .dropdown-menu-xl-start[data-bs-popper] { inset-inline: 0 auto; } .dropdown-menu-xl-end { --bs-position: end; } .dropdown-menu-xl-end[data-bs-popper] { inset-inline: auto 0; } } @media (min-width: 1400px) { .dropdown-menu-xxl-start { --bs-position: start; } .dropdown-menu-xxl-start[data-bs-popper] { inset-inline: 0 auto; } .dropdown-menu-xxl-end { --bs-position: end; } .dropdown-menu-xxl-end[data-bs-popper] { inset-inline: auto 0; } } .btn-group { --bs-btn-group-border-radius: var(--bs-border-radius); } .btn-group.btn-group-sm { --bs-btn-group-border-radius: var(--bs-border-radius-sm); } .btn-group.btn-group-xs { --bs-btn-group-border-radius: 0.125rem; } .btn-group.btn-group-lg { --bs-btn-group-border-radius: var(--bs-border-radius-lg); } .btn-group.btn-group-xl { --bs-btn-group-border-radius: 0.625rem; } .btn-group > :not(.btn-check:first-child) + .btn, .btn-group > .btn-group:not(:first-child) { margin: 0; -webkit-margin-start: calc(var(--bs-border-width) * -1); margin-inline-start: calc(var(--bs-border-width) * -1); } .btn-group:not(.btn-group-vertical) > .btn:not(:last-child):not(.dropdown-toggle), .btn-group:not(.btn-group-vertical) > .btn.dropdown-toggle-split:first-child, .btn-group:not(.btn-group-vertical) > .btn-group:not(:last-child) > .btn, .btn-group:not(.btn-group-vertical) > .btn:nth-child(n+3), .btn-group:not(.btn-group-vertical) > :not(.btn-check) + .btn, .btn-group:not(.btn-group-vertical) > .btn-group:not(:first-child) > .btn { border-radius: var(--bs-btn-group-border-radius); } .btn-group:not(.btn-group-vertical) > .btn:not(:last-child):not(.dropdown-toggle), .btn-group:not(.btn-group-vertical) > .btn.dropdown-toggle-split:first-child, .btn-group:not(.btn-group-vertical) > .btn-group:not(:last-child) > .btn { border-end-end-radius: 0 !important; border-start-end-radius: 0 !important; } .btn-group:not(.btn-group-vertical) > .btn:nth-child(n+3), .btn-group:not(.btn-group-vertical) > :not(.btn-check) + .btn, .btn-group:not(.btn-group-vertical) > .btn-group:not(:first-child) > .btn { border-end-start-radius: 0 !important; border-start-start-radius: 0 !important; } .btn-group.btn-group-vertical > :not(.btn-check:first-child) + .btn, .btn-group.btn-group-vertical > .btn-group:not(:first-child) { margin: 0; -webkit-margin-before: calc(var(--bs-border-width) * -1); margin-block-start: calc(var(--bs-border-width) * -1); } .btn-group.btn-group-vertical .btn:not([class*=btn-outline-]) { border-inline-color: var(--bs-btn-bg); } .btn-group.btn-group-vertical .btn:not([class*=btn-outline-]):hover { border-inline-color: var(--bs-btn-hover-bg); } .btn-group.btn-group-vertical > .btn:first-child, .btn-group.btn-group-vertical > .btn.dropdown-toggle-split:first-child, .btn-group.btn-group-vertical > .btn-group:first-child > .btn { border-top-left-radius: var(--bs-btn-group-border-radius); border-top-right-radius: var(--bs-btn-group-border-radius); } .btn-group.btn-group-vertical > .btn:last-child, .btn-group.btn-group-vertical > .btn.dropdown-toggle-split:last-child, .btn-group.btn-group-vertical > .btn-group:last-child > .btn { border-bottom-right-radius: var(--bs-btn-group-border-radius); border-bottom-left-radius: var(--bs-btn-group-border-radius); } .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .input-group-lg .btn + .dropdown-toggle-split, .btn-xl + .dropdown-toggle-split, .btn-group-xl > .btn + .dropdown-toggle-split { padding-inline: 0.92em; } .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .input-group-sm .btn + .dropdown-toggle-split { padding-inline: 0.6em; } .btn-xs + .dropdown-toggle-split, .btn-group-xs > .btn + .dropdown-toggle-split { padding-inline: 0.5em; } /* Button groups border */ .btn-group:not(.btn-group-vertical) > .btn-group:first-child > .btn:not([class*=btn-outline-]):first-child, .input-group > .btn:not([class*=btn-outline-]):first-child, :not(.btn-group, .input-group) > .btn-group:not(.btn-group-vertical) > .btn:not([class*=btn-outline-]):first-child, .input-group > .btn-group:first-child > .btn:not([class*=btn-outline-]):first-child { border-inline-start-color: transparent; } .btn-group:not(.btn-group-vertical) > .btn-group:last-child > .btn:not([class*=btn-outline-]):last-of-type, .input-group > .btn:not([class*=btn-outline-]):last-of-type, :not(.btn-group, .input-group) > .btn-group:not(.btn-group-vertical) > .btn:not([class*=btn-outline-]):last-of-type, .input-group > .btn-group:last-child > .btn:not([class*=btn-outline-]):last-of-type { border-inline-end-color: transparent; } .btn-group-vertical > .btn-group-vertical:first-child > .btn:not([class*=btn-outline-]):first-child, :not(.btn-group-vertical, .input-group) > .btn-group-vertical > .btn:not([class*=btn-outline-]):first-child { border-block-start-color: transparent; } .btn-group-vertical > .btn-group-vertical:last-child > .btn:not([class*=btn-outline-]):last-of-type, :not(.btn-group-vertical, .input-group) > .btn-group-vertical > .btn:not([class*=btn-outline-]):last-of-type { border-block-end-color: transparent; } /* Nav ******************************************************************************* */ .nav { --bs-nav-pills-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-primary-rgb), 0.4); -ms-flex-wrap: inherit; flex-wrap: inherit; -webkit-padding-start: 0; padding-inline-start: 0; } .nav .nav-item { white-space: nowrap; } .nav:not(.nav-pills) .nav-link:hover, .nav:not(.nav-pills) .nav-link:focus { color: var(--bs-primary); } .nav.nav-sm, .nav-sm > .nav { --bs-nav-link-padding-y: 0.3125rem; --bs-nav-link-padding-x: 0.875rem; --bs-nav-link-font-size: 0.8125rem; --bs-nav-link-line-height: 1.125; } .nav.nav-lg, .nav-lg > .nav { --bs-nav-link-padding-y: 0.875rem; --bs-nav-link-padding-x: 1.3125rem; --bs-nav-link-font-size: 1.0625rem; --bs-nav-link-line-height: 1.625; } /* nav tabs shadow */ .nav-tabs-shadow { border: 1px solid var(--bs-nav-border-color); -webkit-box-shadow: var(--bs-nav-box-shadow); box-shadow: var(--bs-nav-box-shadow); } .card .nav-tabs-shadow { -webkit-box-shadow: none; box-shadow: none; } /* Tab and pills style */ .nav-tabs .nav-link, .nav-pills .nav-link { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; text-transform: capitalize; } .nav-tabs:not(.nav-fill):not(.nav-justified) .nav-link, .nav-pills:not(.nav-fill):not(.nav-justified) .nav-link { inline-size: 100%; } .tab-content:not(.doc-example-content) { z-index: 1; padding: 1.5rem; } .tab-content:not(.doc-example-content) .tab-pane { opacity: 0; -webkit-transform: translateX(-30px); -ms-transform: translateX(-30px); transform: translateX(-30px); -webkit-transition: all linear 0.1s; transition: all linear 0.1s; } @media (prefers-reduced-motion: reduce) { .tab-content:not(.doc-example-content) .tab-pane { -webkit-transition: none; transition: none; } } .tab-content:not(.doc-example-content) .tab-pane.show { opacity: 1; -webkit-transform: unset !important; -ms-transform: unset !important; transform: unset !important; -webkit-transition: all ease-out 0.2s 0.1s; transition: all ease-out 0.2s 0.1s; } @media (prefers-reduced-motion: reduce) { .tab-content:not(.doc-example-content) .tab-pane.show { -webkit-transition: none; transition: none; } } /* For scrollable navs/tabs/pills */ .nav-scrollable { display: -webkit-inline-box; display: -moz-inline-box; overflow: auto; -ms-flex-wrap: nowrap; flex-wrap: nowrap; inline-size: 100%; } .nav-tabs { position: relative; /* Tab link */ } .nav-tabs .tab-slider { position: absolute; block-size: 2px; } .nav-align-left .nav-tabs .tab-slider, .nav-align-right .nav-tabs .tab-slider { inline-size: 2px !important; } .nav-tabs .nav-link { border-radius: 0; background-clip: padding-box; } .nav-tabs .nav-link.active, .nav-tabs .nav-link.active:hover, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-item.show .nav-link:hover, .nav-tabs .nav-item.show .nav-link:focus { -webkit-box-shadow: 0 -2px 0 var(--bs-primary) inset; box-shadow: 0 -2px 0 var(--bs-primary) inset; } .nav-align-top .nav-tabs .nav-link.active, .nav-align-top .nav-tabs .nav-link.active:hover, .nav-align-top .nav-tabs .nav-link.active:focus, .nav-align-top .nav-tabs .nav-item.show .nav-link, .nav-align-top .nav-tabs .nav-item.show .nav-link:hover, .nav-align-top .nav-tabs .nav-item.show .nav-link:focus { -webkit-box-shadow: 0 -2px 0 var(--bs-primary) inset; box-shadow: 0 -2px 0 var(--bs-primary) inset; } .nav-align-bottom .nav-tabs .nav-link.active, .nav-align-bottom .nav-tabs .nav-link.active:hover, .nav-align-bottom .nav-tabs .nav-link.active:focus, .nav-align-bottom .nav-tabs .nav-item.show .nav-link, .nav-align-bottom .nav-tabs .nav-item.show .nav-link:hover, .nav-align-bottom .nav-tabs .nav-item.show .nav-link:focus { -webkit-box-shadow: 0 2px 0 var(--bs-primary) inset; box-shadow: 0 2px 0 var(--bs-primary) inset; } .nav-align-left .nav-tabs .nav-link.active, .nav-align-left .nav-tabs .nav-link.active:hover, .nav-align-left .nav-tabs .nav-link.active:focus, .nav-align-left .nav-tabs .nav-item.show .nav-link, .nav-align-left .nav-tabs .nav-item.show .nav-link:hover, .nav-align-left .nav-tabs .nav-item.show .nav-link:focus { -webkit-box-shadow: -2px 0 0 var(--bs-primary) inset; box-shadow: -2px 0 0 var(--bs-primary) inset; } .nav-align-right .nav-tabs .nav-link.active, .nav-align-right .nav-tabs .nav-link.active:hover, .nav-align-right .nav-tabs .nav-link.active:focus, .nav-align-right .nav-tabs .nav-item.show .nav-link, .nav-align-right .nav-tabs .nav-item.show .nav-link:hover, .nav-align-right .nav-tabs .nav-item.show .nav-link:focus { -webkit-box-shadow: 2px 0 0 var(--bs-primary) inset; box-shadow: 2px 0 0 var(--bs-primary) inset; } .nav-pills .nav-link { padding-block: 0.5435rem; padding-inline: 1.375rem; } .nav-pills .nav-link.active { -webkit-box-shadow: var(--bs-nav-pills-box-shadow); box-shadow: var(--bs-nav-pills-box-shadow); } .nav-pills .nav-item .nav-link:not(.active):hover { background-color: rgba(var(--bs-primary-rgb), 0.16); -webkit-border-after: none; border-block-end: none; -webkit-padding-after: 0.5435rem; padding-block-end: 0.5435rem; } .nav-pills ~ .tab-content { border: 1px solid var(--bs-nav-border-color); -webkit-box-shadow: var(--bs-nav-box-shadow); box-shadow: var(--bs-nav-box-shadow); } /* Top, Right, Bottom & Left Tabbed panels */ .nav-align-top, .nav-align-right, .nav-align-bottom, .nav-align-left { display: -webkit-box; display: -ms-flexbox; display: flex; } .nav-align-top > .tab-content, .nav-align-right > .tab-content, .nav-align-bottom > .tab-content, .nav-align-left > .tab-content { background: var(--bs-paper-bg); } .nav-align-top .nav-tabs, .nav-align-right .nav-tabs, .nav-align-bottom .nav-tabs, .nav-align-left .nav-tabs { background: var(--bs-paper-bg); } .nav-align-top > .nav, .nav-align-top > div > .nav, .nav-align-right > .nav, .nav-align-right > div > .nav, .nav-align-bottom > .nav, .nav-align-bottom > div > .nav, .nav-align-left > .nav, .nav-align-left > div > .nav { position: relative; z-index: 1; } .nav-align-top:has(.nav-tabs), .nav-align-right:has(.nav-tabs), .nav-align-bottom:has(.nav-tabs), .nav-align-left:has(.nav-tabs) { border-radius: 0.375rem !important; } .nav-align-right, .nav-align-left { -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; } .nav-align-right > .nav, .nav-align-right > div > .nav, .nav-align-left > .nav, .nav-align-left > div > .nav { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; border-block-end-width: 0; } .nav-align-right > .nav.nav-pills .nav-item:not(:last-child), .nav-align-right > div > .nav.nav-pills .nav-item:not(:last-child), .nav-align-left > .nav.nav-pills .nav-item:not(:last-child), .nav-align-left > div > .nav.nav-pills .nav-item:not(:last-child) { margin-block: 0 0.25rem !important; margin-inline: 0 !important; } .nav-align-right > .tab-content, .nav-align-left > .tab-content { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; } .nav-align-right > .tab-content .tab-pane, .nav-align-left > .tab-content .tab-pane { -webkit-transform: translateY(-30px); -ms-transform: translateY(-30px); transform: translateY(-30px); } .nav-align-right > .tab-content .tab-pane.show, .nav-align-left > .tab-content .tab-pane.show { -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } /* Top tabs */ .nav-align-top { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .nav-align-top .tab-content { border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } .nav-align-top .nav-tabs { -webkit-border-after: 1px solid var(--bs-nav-tabs-border-color); border-block-end: 1px solid var(--bs-nav-tabs-border-color); border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; } .nav-align-top .nav-tabs .nav-link:not(.active):hover { -webkit-border-after: 2px solid rgba(var(--bs-primary-rgb), 0.16) !important; border-block-end: 2px solid rgba(var(--bs-primary-rgb), 0.16) !important; -webkit-padding-after: 0.4185rem; padding-block-end: 0.4185rem; } .nav-align-top .nav-tabs.nav-lg .nav-link:not(.active):hover { -webkit-padding-after: 0.75rem; padding-block-end: 0.75rem; } .nav-align-top .nav-tabs.nav-sm .nav-link:not(.active):hover { -webkit-padding-after: 0.2rem; padding-block-end: 0.2rem; } .nav-align-top .nav-pills ~ .tab-content { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; } .nav-align-top > .tab-content .tab-pane, .nav-align-bottom > .tab-content .tab-pane, .card > .tab-content .tab-pane { -webkit-transform: translateX(-30px); -ms-transform: translateX(-30px); transform: translateX(-30px); } .nav-align-top > .tab-content .tab-pane.show, .nav-align-bottom > .tab-content .tab-pane.show, .card > .tab-content .tab-pane.show { -webkit-transform: translateX(0) !important; -ms-transform: translateX(0) !important; transform: translateX(0) !important; } .nav-align-top > .nav.nav-pills .nav-item:not(:last-child), .nav-align-bottom > .nav.nav-pills .nav-item:not(:last-child), .card > .nav.nav-pills .nav-item:not(:last-child) { -webkit-margin-end: 0.25rem; margin-inline-end: 0.25rem; } /* Right tabs */ .nav-align-right { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .nav-align-right .tab-content { border-end-start-radius: 0.375rem; border-start-start-radius: 0.375rem; } .nav-align-right .nav-tabs { position: relative; border-end-end-radius: 0.375rem; -webkit-border-start: 1px solid var(--bs-nav-tabs-border-color); border-inline-start: 1px solid var(--bs-nav-tabs-border-color); border-start-end-radius: 0.375rem; } .nav-align-right .nav-tabs .tab-slider { inset-inline-start: 0; } .card .nav-align-right .nav-tabs ~ .tab-content { -webkit-border-end: 0 solid var(--bs-nav-tabs-border-color); border-inline-end: 0 solid var(--bs-nav-tabs-border-color); } .nav-align-right .nav-tabs .nav-link:not(.active):hover { -webkit-border-start: 2px solid rgba(var(--bs-primary-rgb), 0.16) !important; border-inline-start: 2px solid rgba(var(--bs-primary-rgb), 0.16) !important; -webkit-padding-start: 1.25rem; padding-inline-start: 1.25rem; } .nav-align-right .nav-tabs.nav-lg .nav-link:not(.active):hover { -webkit-padding-start: 1.1875rem; padding-inline-start: 1.1875rem; } .nav-align-right .nav-tabs.nav-sm .nav-link:not(.active):hover { -webkit-padding-start: 0.75rem; padding-inline-start: 0.75rem; } .nav-align-right > .nav .nav-item, .nav-align-right > div > .nav .nav-item { margin-inline: 0; } .nav-align-right .nav-link { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: end; text-align: end; } .nav-align-right .nav-pills ~ .tab-content { border-radius: 0.375rem; } /* Bottom tabs */ .nav-align-bottom { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .nav-align-bottom .tab-content { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; } .nav-align-bottom > .nav .nav-item, .nav-align-bottom > div > .nav .nav-item { margin-block: 0; } .nav-align-bottom > .nav, .nav-align-bottom > div > .nav { border-block-end-width: 0; -webkit-border-before: 0 solid var(--bs-nav-tabs-border-color); border-block-start: 0 solid var(--bs-nav-tabs-border-color); } .nav-align-bottom .nav-tabs { -webkit-border-before: 1px solid var(--bs-nav-tabs-border-color); border-block-start: 1px solid var(--bs-nav-tabs-border-color); border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } .nav-align-bottom .nav-tabs .tab-slider { inset-block-end: inherit !important; } .nav-align-bottom .nav-tabs .nav-link:not(.active):hover { -webkit-border-before: 2px solid rgba(var(--bs-primary-rgb), 0.16) !important; border-block-start: 2px solid rgba(var(--bs-primary-rgb), 0.16) !important; -webkit-padding-before: 0.4185rem; padding-block-start: 0.4185rem; } .nav-align-bottom .nav-tabs.nav-lg .nav-link:not(.active):hover { -webkit-padding-before: 0.75rem; padding-block-start: 0.75rem; } .nav-align-bottom .nav-tabs.nav-sm .nav-link:not(.active):hover { -webkit-padding-before: 0.2rem; padding-block-start: 0.2rem; } .nav-align-bottom .nav-pills ~ .tab-content { border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; } /* Left tabs */ .nav-align-left .tab-content { border-end-end-radius: 0.375rem; border-start-end-radius: 0.375rem; } .nav-align-left .nav-tabs { position: relative; -webkit-border-end: 1px solid var(--bs-nav-tabs-border-color); border-inline-end: 1px solid var(--bs-nav-tabs-border-color); } .card .nav-align-left .nav-tabs ~ .tab-content { -webkit-border-start: 0 solid var(--bs-nav-tabs-border-color); border-inline-start: 0 solid var(--bs-nav-tabs-border-color); } .nav-align-left .nav-tabs .nav-link:not(.active):hover { -webkit-border-end: 2px solid rgba(var(--bs-primary-rgb), 0.16) !important; border-inline-end: 2px solid rgba(var(--bs-primary-rgb), 0.16) !important; -webkit-padding-end: 1.25rem; padding-inline-end: 1.25rem; } .nav-align-left .nav-tabs.nav-lg .nav-link:not(.active):hover { -webkit-padding-end: 1.1875rem; padding-inline-end: 1.1875rem; } .nav-align-left .nav-tabs.nav-sm .nav-link:not(.active):hover { -webkit-padding-end: 0.75rem; padding-inline-end: 0.75rem; } .nav-align-left > .nav .nav-item, .nav-align-left > div > .nav .nav-item { margin-inline: 0; } .nav-align-left .nav-link { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: start; text-align: start; } .nav-align-left .nav-pills ~ .tab-content { border-end-start-radius: 0.375rem !important; border-start-start-radius: 0.375rem !important; } .nav-align-left:has(.nav-tabs) { overflow: hidden; } /* Navbar ******************************************************************************* */ .layout-navbar { background-color: var(--bs-paper-bg); } /* IE fix */ .navbar.bg-body-tertiary { --bs-navbar-color: var(--bs-body-color); --bs-navbar-hover-color: var(--bs-heading-color); --bs-navbar-disabled-color: color-mix(in sRGB, var(--bs-base-color) 40%, var(--bs-paper-bg)); --bs-navbar-active-color: var(--bs-heading-color); --bs-navbar-brand-color: var(--bs-heading-color); --bs-navbar-brand-hover-color: color-mix(in sRGB, var(--bs-base-color) 70%, var(--bs-paper-bg)); } .navbar.bg-light { --bs-navbar-color: var(--bs-body-color); --bs-navbar-hover-color: var(--bs-heading-color); --bs-navbar-disabled-color: color-mix(in sRGB, var(--bs-base-color) 40%, var(--bs-paper-bg)); --bs-navbar-active-color: var(--bs-heading-color); --bs-navbar-brand-color: var(--bs-heading-color); --bs-navbar-brand-hover-color: color-mix(in sRGB, var(--bs-base-color) 70%, var(--bs-paper-bg)); } .card { --bs-card-hover-box-shadow: 0 0.25rem 0.75rem 0 rgba(34, 48, 62, 0.14); --bs-card-border-bottom-color: var(--bs-border-color); --bs-card-subtitle-color: color-mix(in sRGB, var(--bs-base-color) 55%, var(--bs-card-bg)); -webkit-box-shadow: var(--bs-card-box-shadow); box-shadow: var(--bs-card-box-shadow); /* List groups */ } .card .card-header + .card-body, .card .card-header + .card-content > .card-body:first-of-type, .card .card-header + .card-footer, .card .card-body + .card-footer { -webkit-padding-before: 0; padding-block-start: 0; } .card .card-header, .card .card-footer { --bs-card-border-width: 0; } .card .card-link { display: inline-block; } .card .card-link + .card-link { margin-inline: 1.5rem 0; } .card hr { color: var(--bs-card-border-color); } .card > .list-group { border-block-end-width: 1px; border-block-start-width: 1px; } .card > .list-group .list-group-item { padding-inline: 1.5rem; } .card .collapse > .card-body, .card .collapsing > .card-body { -webkit-padding-before: 0; padding-block-start: 0; } /* card-subtitle */ .card-subtitle { font-weight: 400; } /* adding class with card background color */ .bg-card { background-color: var(--bs-card-bg); } /* Card header elements ******************************************************** */ .card-title:not(h1):not(.h1):not(h2):not(.h2):not(h3):not(.h3):not(h4):not(.h4):not(h5):not(.h5):not(h6):not(.h6) { color: var(--bs-body-color); } /* Horizontal card radius issue fix ******************************************************** */ .card-img-left, .card-img-right { block-size: 100%; -o-object-fit: cover; object-fit: cover; } .card-img-left { border-end-start-radius: 0.375rem; border-start-start-radius: 0.375rem; border-end-end-radius: 0; border-start-end-radius: 0; } @media (max-width: 767.98px) { .card-img-left { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } } .card-img-right { border-end-end-radius: 0.375rem; border-start-end-radius: 0.375rem; border-end-start-radius: 0; border-start-start-radius: 0; } @media (max-width: 767.98px) { .card-img-right { border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; border-top-left-radius: 0; border-top-right-radius: 0; } } .card-group { --bs-card-box-shadow: var(--bs-box-shadow); --bs-card-bg: var(--bs-paper-bg); } @media (min-width: 576px) { .card-group { border-radius: 0.375rem; background-color: var(--bs-card-bg); -webkit-box-shadow: var(--bs-card-box-shadow); box-shadow: var(--bs-card-box-shadow); } .card-group .card { -webkit-box-shadow: none; box-shadow: none; } .card-group .card + .card { border: var(--bs-card-border-width) solid var(--bs-card-border-color); -webkit-border-start: 0; border-inline-start: 0; margin-inline: 0; } .card-group .card .card-img-top, .card-group .card .card-header, .card-group .card .card-img-bottom, .card-group .card .card-footer { border-radius: 0; } .card-group .card:is(:last-child) .card-img-top, .card-group .card:is(:last-child) .card-header { border-start-end-radius: 0.375rem; } .card-group .card:is(:last-child) .card-img-bottom, .card-group .card:is(:last-child) .card-footer { border-end-end-radius: 0.375rem; } .card-group .card:is(:first-child) .card-img-top, .card-group .card:is(:first-child) .card-header { border-start-start-radius: 0.375rem; } .card-group .card:is(:first-child) .card-img-bottom, .card-group .card:is(:first-child) .card-footer { border-end-start-radius: 0.375rem; } } /* Card action */ .card-action { /* Card header */ } .card-action .card-header { display: -webkit-box; display: -ms-flexbox; display: flex; } .card-action .card-header.collapsed { -webkit-border-after: 0; border-block-end: 0; } .card-action .collapse > .card-body, .card-action .collapsing > .card-body { -webkit-padding-before: 0; padding-block-start: 0; } .accordion { --bs-accordion-box-shadow: 0 0.125rem 0.375rem 0 rgba(34, 48, 62, 0.08); --bs-accordion-active-box-shadow: 0 0.1875rem 0.5rem 0 rgba(34, 48, 62, 0.1); --bs-accordion-active-bg: var(--bs-accordion-bg); --bs-accordion-btn-active-bg: var(--bs-accordion-active-bg); --bs-accordion-btn-focus-box-shadow: none; --bs-accordion-btn-focus-shadow-width: 0; } .accordion .accordion-button::after { background: var(--bs-accordion-btn-color); -webkit-mask-image: var(--bs-accordion-btn-icon); mask-image: var(--bs-accordion-btn-icon); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } .accordion .accordion-button:not(.collapsed)::after { background: var(--bs-accordion-btn-color); -webkit-mask-image: var(--bs-accordion-btn-active-icon); mask-image: var(--bs-accordion-btn-active-icon); } .accordion.accordion-without-arrow .accordion-button::after { background: none; } .accordion .accordion-item { border-radius: var(--bs-accordion-border-radius); } .accordion .accordion-item > .accordion-header .accordion-button { border-radius: var(--bs-accordion-inner-border-radius); } .accordion .accordion-item:not(:first-of-type) { -webkit-border-before: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color); border-block-start: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color); } .accordion .accordion-item:not(:last-of-type) { -webkit-margin-after: 0.5rem; margin-block-end: 0.5rem; } .accordion-item { -webkit-box-shadow: var(--bs-accordion-box-shadow); box-shadow: var(--bs-accordion-box-shadow); } .accordion-item.active { background-color: var(--bs-accordion-active-bg); -webkit-box-shadow: var(--bs-accordion-active-box-shadow); box-shadow: var(--bs-accordion-active-box-shadow); } .accordion-header { line-height: 1.375; } .accordion-header + .accordion-collapse .accordion-body { -webkit-padding-before: 0; padding-block-start: 0; -webkit-padding-start: 1.4375rem; padding-inline-start: 1.4375rem; } /* Accordion border radius */ .accordion-button { font-weight: inherit; -webkit-padding-end: 1.1875rem; padding-inline-end: 1.1875rem; } .accordion-button::after { -webkit-margin-end: initial; margin-inline-end: initial; -webkit-margin-start: auto; margin-inline-start: auto; } .accordion-button:not(.collapsed) { background-color: var(--bs-accordion-btn-active-bg); -webkit-box-shadow: inset 0 calc(-1 * var(--bs-accordion-btn-focus-shadow-width)) 0 var(--bs-accordion-border-color); box-shadow: inset 0 calc(-1 * var(--bs-accordion-btn-focus-shadow-width)) 0 var(--bs-accordion-border-color); -webkit-padding-after: 0.793rem; padding-block-end: 0.793rem; } .breadcrumb { --bs-breadcrumb-color: var(--bs-body-color); } .breadcrumb-item { line-height: 1.5rem; } .breadcrumb-item a { color: var(--bs-breadcrumb-color); } .breadcrumb-item a:hover, .breadcrumb-item a:focus { color: var(--bs-breadcrumb-item-active-color); } .breadcrumb-item .icon-base.breadcrumb-icon { color: var(--bs-breadcrumb-divider-color); -webkit-margin-start: 0.5rem; margin-inline-start: 0.5rem; } .breadcrumb-item.active a, .breadcrumb-item.active a:hover, .breadcrumb-item.active a:focus, .breadcrumb-item.active a:active { color: inherit; } .breadcrumb-custom-icon .breadcrumb-item + .breadcrumb-item::before { content: none !important; } /* Pagination ******************************************************************************* */ .pagination { --bs-pagination-box-shadow-color: var(--bs-primary-rgb); -webkit-padding-start: 0; padding-inline-start: 0; } .pagination .page-link { border-color: transparent; } .pagination.pagination-lg { --bs-pagination-font-size: 1.0625rem; } .pagination.pagination-sm { --bs-pagination-font-size: 0.8125rem; } .pagination .page-item .page-link:focus, .pagination li > a:not(.page-link):focus { color: var(--bs-pagination-focus-color); } .pagination .page-item.active .page-link, .pagination li.active > a:not(.page-link) { -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-pagination-box-shadow-color), 0.4); box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-pagination-box-shadow-color), 0.4); color: var(--bs-pagination-active-color); } /* Pagination next, prev, first & last css padding */ .page-item.disabled .page-link, .page-item[disabled] .page-link { opacity: 0.45; pointer-events: none; } .page-item:last-child .icon-base { -webkit-transform: translateX(7%); -ms-transform: translateX(7%); transform: translateX(7%); } /* Pagination basic style */ .page-link, .page-link > a { border-radius: 0.375rem; display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; min-block-size: calc(2.2508625rem + calc(1px * 2)); min-inline-size: calc(2.2505625rem + calc(1px * 2)); } /* Sizing ******************************************************************************* */ /* Pagination Large */ .pagination-lg .page-link, .pagination-lg > li > a:not(.page-link) { min-block-size: calc(2.8757925rem + calc(1px * 2)); min-inline-size: calc(2.8759615rem + calc(1px * 2)); } .pagination-lg > .page-item.first .page-link, .pagination-lg > .page-item.last .page-link, .pagination-lg > .page-item.next .page-link, .pagination-lg > .page-item.prev .page-link, .pagination-lg > .page-item.previous .page-link { padding-inline: 0.5965rem; } /* Pagination Small */ .pagination-sm .page-link, .pagination-sm > li > a:not(.page-link) { min-block-size: calc(1.7501875rem + calc(1px * 2)); min-inline-size: calc(1.7509515rem + calc(1px * 2)); } .pagination-sm > .page-item.first .page-link, .pagination-sm > .page-item.last .page-link, .pagination-sm > .page-item.next .page-link, .pagination-sm > .page-item.prev .page-link, .pagination-sm > .page-item.previous .page-link { padding-block: 0.211rem; padding-inline: 0.211rem; } /* Add spacing between pagination items */ .pagination-sm .page-item + .page-item .page-link, .pagination-sm .pagination li + li > a:not(.page-link) { -webkit-margin-start: 0.25rem; margin-inline-start: 0.25rem; } .pagination-lg .page-item + .page-item .page-link, .pagination-lg .pagination li + li > a:not(.page-link) { -webkit-margin-start: 0.5rem; margin-inline-start: 0.5rem; } .badge { --bs-badge-border-width: 0; --bs-badge-border-color: var(--bs-primary); --bs-badge-bg-color: var(--bs-primary); border: var(--bs-badge-border-width) var(--bs-border-style) var(--bs-badge-border-color); background-color: var(--bs-badge-bg-color); } /* Badge Center Style */ .badge-center { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding: 0; block-size: 1.5rem; inline-size: 1.5rem; --bs-badge-font-size: 0.8125rem; } .badge-center .icon-base { block-size: 0.875rem; font-size: 0.875rem; inline-size: 0.875rem; } /* Alert icon styles */ .alert { --bs-alert-link-hover-color: var(--bs-primary); --bs-alert-hr: var(--bs-black); --bs-alert-icon-color: var(--bs-white); --bs-alert-icon-bg: var(--bs-black); --bs-alert-icon-shadow-color: var(--bs-primary); --bs-alert-icon-shadow-scale: 16%; --bs-alert-close-icon: var(--bs-black); line-height: 1.375rem; } .alert[class*=alert-] hr { background-color: var(--bs-alert-hr); color: var(--bs-alert-hr); } .alert .alert-link:hover { color: var(--bs-alert-link-hover-color); } /* Adjust close link position */ .alert-dismissible { -webkit-padding-end: 3rem; padding-inline-end: 3rem; -webkit-padding-start: 1rem; padding-inline-start: 1rem; } .alert-dismissible .btn-close { padding: 0; background: var(--bs-alert-close-icon); block-size: 0.8125rem; -webkit-filter: none; filter: none; inline-size: 0.8125rem; inset-inline: auto 0; margin-block: calc(0.75rem * 1.37); margin-inline: calc(1rem * 0.9); -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.5' fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.5' fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } .alert-primary { --bs-alert-color: var(--bs-primary); --bs-alert-close-icon: var(--bs-primary); --bs-alert-icon-shadow-color: var(--bs-primary-rgb); --bs-alert-border-color: var(--bs-primary-bg-subtle); --bs-alert-link-color: var(--bs-primary); --bs-alert-link-hover-color: var(--bs-primary); --bs-alert-hr: var(--bs-primary); --bs-alert-icon-bg: var(--bs-primary); } .alert-secondary { --bs-alert-color: var(--bs-secondary); --bs-alert-close-icon: var(--bs-secondary); --bs-alert-icon-shadow-color: var(--bs-secondary-rgb); --bs-alert-border-color: var(--bs-secondary-bg-subtle); --bs-alert-link-color: var(--bs-secondary); --bs-alert-link-hover-color: var(--bs-secondary); --bs-alert-hr: var(--bs-secondary); --bs-alert-icon-bg: var(--bs-secondary); } .alert-success { --bs-alert-color: var(--bs-success); --bs-alert-close-icon: var(--bs-success); --bs-alert-icon-shadow-color: var(--bs-success-rgb); --bs-alert-border-color: var(--bs-success-bg-subtle); --bs-alert-link-color: var(--bs-success); --bs-alert-link-hover-color: var(--bs-success); --bs-alert-hr: var(--bs-success); --bs-alert-icon-bg: var(--bs-success); } .alert-info { --bs-alert-color: var(--bs-info); --bs-alert-close-icon: var(--bs-info); --bs-alert-icon-shadow-color: var(--bs-info-rgb); --bs-alert-border-color: var(--bs-info-bg-subtle); --bs-alert-link-color: var(--bs-info); --bs-alert-link-hover-color: var(--bs-info); --bs-alert-hr: var(--bs-info); --bs-alert-icon-bg: var(--bs-info); } .alert-warning { --bs-alert-color: var(--bs-warning); --bs-alert-close-icon: var(--bs-warning); --bs-alert-icon-shadow-color: var(--bs-warning-rgb); --bs-alert-border-color: var(--bs-warning-bg-subtle); --bs-alert-link-color: var(--bs-warning); --bs-alert-link-hover-color: var(--bs-warning); --bs-alert-hr: var(--bs-warning); --bs-alert-icon-bg: var(--bs-warning); } .alert-danger { --bs-alert-color: var(--bs-danger); --bs-alert-close-icon: var(--bs-danger); --bs-alert-icon-shadow-color: var(--bs-danger-rgb); --bs-alert-border-color: var(--bs-danger-bg-subtle); --bs-alert-link-color: var(--bs-danger); --bs-alert-link-hover-color: var(--bs-danger); --bs-alert-hr: var(--bs-danger); --bs-alert-icon-bg: var(--bs-danger); } .alert-light { --bs-alert-color: var(--bs-light-contrast); --bs-alert-close-icon: var(--bs-light-contrast); --bs-alert-icon-shadow-color: var(--bs-light-rgb); --bs-alert-border-color: var(--bs-light-bg-subtle); --bs-alert-link-color: var(--bs-light); --bs-alert-link-hover-color: var(--bs-light); --bs-alert-hr: var(--bs-light); --bs-alert-icon-bg: var(--bs-light); } .alert-dark { --bs-alert-color: var(--bs-dark); --bs-alert-close-icon: var(--bs-dark); --bs-alert-icon-shadow-color: var(--bs-dark-rgb); --bs-alert-border-color: var(--bs-dark-bg-subtle); --bs-alert-link-color: var(--bs-dark); --bs-alert-link-hover-color: var(--bs-dark); --bs-alert-hr: var(--bs-dark); --bs-alert-icon-bg: var(--bs-dark); } .alert-gray { --bs-alert-color: var(--bs-gray); --bs-alert-close-icon: var(--bs-gray); --bs-alert-icon-shadow-color: var(--bs-gray-rgb); --bs-alert-border-color: var(--bs-gray-bg-subtle); --bs-alert-link-color: var(--bs-gray); --bs-alert-link-hover-color: var(--bs-gray); --bs-alert-hr: var(--bs-gray); --bs-alert-icon-bg: var(--bs-gray); } /* Progress ******************************************************************************* */ .progress { --bs-progress-bar-shadow-color: rgba(var(--bs-primary-rgb), 0.4); overflow: initial; } .progress .progress-bar { background-color: var(--bs-primary); -webkit-box-shadow: 0 2px 4px 0 var(--bs-progress-bar-shadow-color); box-shadow: 0 2px 4px 0 var(--bs-progress-bar-shadow-color); color: var(--bs-white); } .progress .progress-bar:first-child { border-end-start-radius: 50rem; border-start-start-radius: 50rem; } .progress .progress-bar:last-child { border-end-end-radius: 50rem; border-start-end-radius: 50rem; } .progress-bar.bg-primary { --bs-progress-bar-shadow-color: rgba(var(--bs-primary-rgb), .4); } .progress-bar.bg-secondary { --bs-progress-bar-shadow-color: rgba(var(--bs-secondary-rgb), .4); } .progress-bar.bg-success { --bs-progress-bar-shadow-color: rgba(var(--bs-success-rgb), .4); } .progress-bar.bg-info { --bs-progress-bar-shadow-color: rgba(var(--bs-info-rgb), .4); } .progress-bar.bg-warning { --bs-progress-bar-shadow-color: rgba(var(--bs-warning-rgb), .4); } .progress-bar.bg-danger { --bs-progress-bar-shadow-color: rgba(var(--bs-danger-rgb), .4); } .progress-bar.bg-light { --bs-progress-bar-shadow-color: rgba(var(--bs-light-rgb), .4); } .progress-bar.bg-dark { --bs-progress-bar-shadow-color: rgba(var(--bs-dark-rgb), .4); } .progress-bar.bg-gray { --bs-progress-bar-shadow-color: rgba(var(--bs-gray-rgb), .4); } /* List groups ******************************************************************************* */ /* List Group Mixin */ .list-group { --bs-list-group-timeline-bg: var(--bs-primary); --bs-list-group-border-color: var(--bs-border-color); --bs-list-group-active-border-color: var(--bs-border-color); --bs-list-group-action-hover-color: var(--bs-body-color); --bs-list-group-action-active-color: var(--bs-body-color); --bs-list-group-active-bg: var(--bs-primary-bg-subtle); } .list-group .list-group-item { line-height: 1.375rem; -webkit-padding-after: calc(0.5rem - 1px); padding-block-end: calc(0.5rem - 1px); } .list-group:not([class*=list-group-flush]) .list-group-item:first-of-type { -webkit-padding-before: calc(0.5rem - 1px); padding-block-start: calc(0.5rem - 1px); } .list-group[class*=list-group-flush] .list-group-item:last-of-type { -webkit-padding-after: 0.5rem; padding-block-end: 0.5rem; } @media (min-width: 768px) { .list-group[class*=list-group-horizontal-md] .list-group-item { -webkit-padding-before: calc(0.5rem - 1px); padding-block-start: calc(0.5rem - 1px); } } .list-group .list-group-item.active h1, .list-group .list-group-item.active .h1, .list-group .list-group-item.active h2, .list-group .list-group-item.active .h2, .list-group .list-group-item.active h3, .list-group .list-group-item.active .h3, .list-group .list-group-item.active h4, .list-group .list-group-item.active .h4, .list-group .list-group-item.active h5, .list-group .list-group-item.active .h5, .list-group .list-group-item.active h6, .list-group .list-group-item.active .h6 { color: var(--bs-primary); } .list-group .list-group-item.active, .list-group .list-group-item.active:hover, .list-group .list-group-item.active:focus { --bs-list-group-color: var(--bs-white); } .list-group-item-primary { --bs-list-group-border-color: var(--bs-primary); --bs-list-group-active-border-color: var(--bs-primary); --bs-list-group-active-bg: var(--bs-primary-bg-subtle); --bs-list-group-color: var(--bs-primary-text-emphasis); --bs-list-group-action-hover-color: var(--bs-primary-text-emphasis); --bs-list-group-action-active-color: var(--bs-primary-text-emphasis); } .list-group-item-secondary { --bs-list-group-border-color: var(--bs-secondary); --bs-list-group-active-border-color: var(--bs-secondary); --bs-list-group-active-bg: var(--bs-secondary-bg-subtle); --bs-list-group-color: var(--bs-secondary-text-emphasis); --bs-list-group-action-hover-color: var(--bs-secondary-text-emphasis); --bs-list-group-action-active-color: var(--bs-secondary-text-emphasis); } .list-group-item-success { --bs-list-group-border-color: var(--bs-success); --bs-list-group-active-border-color: var(--bs-success); --bs-list-group-active-bg: var(--bs-success-bg-subtle); --bs-list-group-color: var(--bs-success-text-emphasis); --bs-list-group-action-hover-color: var(--bs-success-text-emphasis); --bs-list-group-action-active-color: var(--bs-success-text-emphasis); } .list-group-item-info { --bs-list-group-border-color: var(--bs-info); --bs-list-group-active-border-color: var(--bs-info); --bs-list-group-active-bg: var(--bs-info-bg-subtle); --bs-list-group-color: var(--bs-info-text-emphasis); --bs-list-group-action-hover-color: var(--bs-info-text-emphasis); --bs-list-group-action-active-color: var(--bs-info-text-emphasis); } .list-group-item-warning { --bs-list-group-border-color: var(--bs-warning); --bs-list-group-active-border-color: var(--bs-warning); --bs-list-group-active-bg: var(--bs-warning-bg-subtle); --bs-list-group-color: var(--bs-warning-text-emphasis); --bs-list-group-action-hover-color: var(--bs-warning-text-emphasis); --bs-list-group-action-active-color: var(--bs-warning-text-emphasis); } .list-group-item-danger { --bs-list-group-border-color: var(--bs-danger); --bs-list-group-active-border-color: var(--bs-danger); --bs-list-group-active-bg: var(--bs-danger-bg-subtle); --bs-list-group-color: var(--bs-danger-text-emphasis); --bs-list-group-action-hover-color: var(--bs-danger-text-emphasis); --bs-list-group-action-active-color: var(--bs-danger-text-emphasis); } .list-group-item-light { --bs-list-group-border-color: var(--bs-light); --bs-list-group-active-border-color: var(--bs-light); --bs-list-group-active-bg: var(--bs-light-bg-subtle); --bs-list-group-color: var(--bs-light-text-emphasis); --bs-list-group-action-hover-color: var(--bs-light-text-emphasis); --bs-list-group-action-active-color: var(--bs-light-text-emphasis); } .list-group-item-dark { --bs-list-group-border-color: var(--bs-dark); --bs-list-group-active-border-color: var(--bs-dark); --bs-list-group-active-bg: var(--bs-dark-bg-subtle); --bs-list-group-color: var(--bs-dark-text-emphasis); --bs-list-group-action-hover-color: var(--bs-dark-text-emphasis); --bs-list-group-action-active-color: var(--bs-dark-text-emphasis); } .list-group-item-gray { --bs-list-group-border-color: var(--bs-gray); --bs-list-group-active-border-color: var(--bs-gray); --bs-list-group-active-bg: var(--bs-gray-bg-subtle); --bs-list-group-color: var(--bs-gray-text-emphasis); --bs-list-group-action-hover-color: var(--bs-gray-text-emphasis); --bs-list-group-action-active-color: var(--bs-gray-text-emphasis); } /* Toasts ******************************************************************************* */ .bs-toast[class^=bg-], .bs-toast[class*=" bg-"] { --bs-toast-header-color: var(--bs-white); --bs-toast-color: var(--bs-white); } .toast.bs-toast { --bs-toast-btn-close-bg: var(--bs-paper-bg); --bs-toast-bg: rgba(var(--bs-white-rgb), .85); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23a7acb2' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23a7acb2' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); z-index: 1095; background-color: var(--bs-toast-bg) !important; } .toast.bs-toast .toast-header { position: relative; -webkit-padding-after: 0.5rem; padding-block-end: 0.5rem; } .toast.bs-toast .toast-header .btn-close { position: absolute; padding: 0.45rem; background-color: var(--bs-toast-btn-close-bg); background-image: var(--bs-toast-btn-close); background-size: 0.625em; -webkit-box-shadow: var(--bs-toast-box-shadow); box-shadow: var(--bs-toast-box-shadow); -webkit-filter: none; filter: none; inset-block-start: -8px; inset-inline-end: 2px; border-radius: 0.375rem; -webkit-transition: all 0.23s ease 0.1s; transition: all 0.23s ease 0.1s; /* For hover effect of close btn */ } @media (prefers-reduced-motion: reduce) { .toast.bs-toast .toast-header .btn-close { -webkit-transition: none; transition: none; } } .toast.bs-toast .toast-header .btn-close:hover, .toast.bs-toast .toast-header .btn-close:focus, .toast.bs-toast .toast-header .btn-close:active { opacity: 1; outline: 0; } .toast.bs-toast .toast-header ~ .toast-body { -webkit-padding-before: 0; padding-block-start: 0; } .toast-container { --bs-toast-zindex: 8; } .toast-header .btn-close { margin-inline: 1.25rem -0.625rem; } /* Placement Toast example */ .toast-placement-ex { position: fixed; } /* Generate contextual modifier classes for colorizing the alert */ .bs-toast.bg-primary { --bs-toast-bg: rgba(var(--bs-primary-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-primary-rgb), .4); --bs-toast-btn-close-bg: var(--bs-primary); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .bs-toast.bg-secondary { --bs-toast-bg: rgba(var(--bs-secondary-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-secondary-rgb), .4); --bs-toast-btn-close-bg: var(--bs-secondary); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .bs-toast.bg-success { --bs-toast-bg: rgba(var(--bs-success-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-success-rgb), .4); --bs-toast-btn-close-bg: var(--bs-success); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .bs-toast.bg-info { --bs-toast-bg: rgba(var(--bs-info-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-info-rgb), .4); --bs-toast-btn-close-bg: var(--bs-info); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .bs-toast.bg-warning { --bs-toast-bg: rgba(var(--bs-warning-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-warning-rgb), .4); --bs-toast-btn-close-bg: var(--bs-warning); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .bs-toast.bg-danger { --bs-toast-bg: rgba(var(--bs-danger-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-danger-rgb), .4); --bs-toast-btn-close-bg: var(--bs-danger); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .bs-toast.bg-light { --bs-toast-bg: rgba(var(--bs-light-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-light-rgb), .4); --bs-toast-btn-close-bg: var(--bs-light); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .bs-toast.bg-dark { --bs-toast-bg: rgba(var(--bs-dark-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-dark-rgb), .4); --bs-toast-btn-close-bg: var(--bs-dark); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .bs-toast.bg-gray { --bs-toast-bg: rgba(var(--bs-gray-rgb), .85); --bs-toast-box-shadow: 0 .25rem 1rem rgba(var(--bs-gray-rgb), .4); --bs-toast-btn-close-bg: var(--bs-gray); --bs-toast-btn-close: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='1' fill='%23fff' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } /* Modals ******************************************************************************* */ /* Modal Shadow */ .modal-content { -webkit-box-shadow: var(--bs-modal-box-shadow); box-shadow: var(--bs-modal-box-shadow); } .modal { /* modal footer */ /* ! remove close button animation & shadow for .modal-dialog-scrollable, .modal-fullscreen, .modal-top modal */ } .modal .btn-close { padding: 0.563rem; background-color: var(--bs-paper-bg); background-image: none; -webkit-box-shadow: var(--bs-box-shadow-xs); box-shadow: var(--bs-box-shadow-xs); -webkit-filter: none; filter: none; opacity: 1; -webkit-transform: translate(23px, -25px); -ms-transform: translate(23px, -25px); transform: translate(23px, -25px); border-radius: 0.25rem; -webkit-transition: all 0.23s ease 0.1s; transition: all 0.23s ease 0.1s; /* For hover effect of close btn */ } @media (prefers-reduced-motion: reduce) { .modal .btn-close { -webkit-transition: none; transition: none; } } .modal .btn-close:hover, .modal .btn-close:focus, .modal .btn-close:active { opacity: 1; outline: 0; -webkit-transform: translate(20px, -20px); -ms-transform: translate(20px, -20px); transform: translate(20px, -20px); } .modal .btn-close::before { display: block; background-color: var(--bs-secondary-color); block-size: 0.6875rem; content: ""; inline-size: 0.6875rem; -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.5' fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg width='150px' height='151px' viewBox='0 0 150 151' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpolygon id='path-1' points='131.251657 0 74.9933705 56.25 18.7483426 0 0 18.75 56.2450278 75 0 131.25 18.7483426 150 74.9933705 93.75 131.251657 150 150 131.25 93.7549722 75 150 18.75'%3E%3C/polygon%3E%3C/defs%3E%3Cg id='🎨-%5BSetup%5D:-Colors-&-Shadows' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-225.000000, -250.000000)'%3E%3Cg id='Icon-Color' transform='translate(225.000000, 250.500000)'%3E%3Cuse fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.5' fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } .modal .modal-header { position: relative; } .modal .modal-header .btn-close { position: absolute; inset-block-start: 0.9375rem; inset-inline-end: 0.8125rem; } .modal .modal-footer { padding: 0 1.5rem 1.5rem; } .modal .modal-footer > * { margin-block: 0; } .modal .modal-footer > *:last-child { -webkit-margin-end: 0; margin-inline-end: 0; } .modal .modal-footer > *:first-child { -webkit-margin-start: 0; margin-inline-start: 0; } .modal .modal-dialog-scrollable .btn-close, .modal .modal-fullscreen .btn-close, .modal.modal-top .btn-close { -webkit-box-shadow: none; box-shadow: none; -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); transform: translate(0, 0); } .modal .modal-dialog-scrollable .btn-close:hover, .modal .modal-fullscreen .btn-close:hover, .modal.modal-top .btn-close:hover { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); transform: translate(0, 0); } /* Top modals ******************************************************************************* */ .modal-top .modal-dialog { -webkit-margin-before: 0; margin-block-start: 0; } .modal-top .modal-content { border-top-left-radius: 0; border-top-right-radius: 0; } /* Modal Animations ****************************************************************************** */ /* Slide from Top */ .modal-top.fade .modal-dialog, .modal-top .modal.fade .modal-dialog { -webkit-transform: translateY(-100%); -ms-transform: translateY(-100%); transform: translateY(-100%); } .modal-top.show .modal-dialog, .modal-top .modal.show .modal-dialog { -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); } /* Responsive ******************************************************************************* */ @media (max-width: 767.98px) { .modal .modal-dialog:not(.modal-fullscreen) { padding-block: 0; padding-inline: 0.75rem; } } @media (min-width: 576px) { .modal-content { -webkit-box-shadow: var(--bs-modal-box-shadow); box-shadow: var(--bs-modal-box-shadow); } .modal-dialog.modal-sm { max-inline-size: 22.5rem; } } @media (min-width: 1200px) { .modal-xl .modal-dialog { max-inline-size: 1140px; } } /* Tooltips ******************************************************************************* */ /* Open modal tooltip z-index */ .modal-open .tooltip { z-index: 1092; } .tooltip-inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-weight: 500; gap: 3px; } /* Popovers ******************************************************************************* */ .modal-open .popover { z-index: 1091; } .popover:not(.custom-popover) { --bs-popover-header-bg: transparent; } .popover:not(.custom-popover) .popover-header { --bs-popover-border-width: 0; -webkit-padding-after: 0; padding-block-end: 0; } .popover:not(.custom-popover) .popover-arrow::after { --bs-popover-arrow-border: var(--bs-popover-bg); } .popover:has([class^=popover-]):not(.custom-popover) { --bs-popover-border-color: transparent; --bs-popover-header-bg: transparent; } .popover:has([class^=popover-]):not(.custom-popover) .popover-body { background-color: transparent; } .popover:has([class^=popover-header-]) { --bs-popover-border-color: var(--bs-gray-100); --bs-popover-body-color: var(--bs-body-color); --bs-popover-header-bg: var(--bs-primary); } .popover { -webkit-box-shadow: var(--bs-popover-box-shadow); box-shadow: var(--bs-popover-box-shadow); } .popover .popover-arrow { z-index: 1; } .popover:not(.custom-popover).bs-popover-auto > .popover-arrow::before { --bs-popover-bg: rgba(var(--bs-white-rgb), 0.1); } .popover:not(.custom-popover).bs-popover-auto[data-popper-placement=bottom] > .popover-arrow::after { border-block-end-color: var(--bs-popover-arrow-border); inset-block-start: 1px; } .popover:not(.custom-popover).bs-popover-auto[data-popper-placement=bottom] > .popover-header::before { --bs-popover-border-width: 0; } .popover.popover-dark { --bs-popover-bg: color-mix(in sRGB, var(--bs-base-color) 90%, var(--bs-paper-bg)); } /* custom popover ******************************************************************************* */ .custom-popover { --bs-popover-max-width: 200px; --bs-popover-header-color: var(--bs-white); --bs-popover-body-padding-x: 1rem; --bs-popover-body-padding-y: .5rem; } .custom-popover .popover-header { --bs-popover-header-bg: var(--bs-primary); } .carousel .carousel-item.active h1, .carousel .carousel-item.active .h1, .carousel .carousel-item.active h2, .carousel .carousel-item.active .h2, .carousel .carousel-item.active h3, .carousel .carousel-item.active .h3, .carousel .carousel-item.active h4, .carousel .carousel-item.active .h4, .carousel .carousel-item.active h5, .carousel .carousel-item.active .h5, .carousel .carousel-item.active h6, .carousel .carousel-item.active .h6, .carousel .carousel-item.carousel-item-start h1, .carousel .carousel-item.carousel-item-start .h1, .carousel .carousel-item.carousel-item-start h2, .carousel .carousel-item.carousel-item-start .h2, .carousel .carousel-item.carousel-item-start h3, .carousel .carousel-item.carousel-item-start .h3, .carousel .carousel-item.carousel-item-start h4, .carousel .carousel-item.carousel-item-start .h4, .carousel .carousel-item.carousel-item-start h5, .carousel .carousel-item.carousel-item-start .h5, .carousel .carousel-item.carousel-item-start h6, .carousel .carousel-item.carousel-item-start .h6 { color: #fff; } .carousel .carousel-control-prev-icon, .carousel .carousel-control-next-icon { -webkit-filter: invert(1); filter: invert(1); } .carousel.carousel-dark .carousel-item.active h1, .carousel.carousel-dark .carousel-item.active .h1, .carousel.carousel-dark .carousel-item.active h2, .carousel.carousel-dark .carousel-item.active .h2, .carousel.carousel-dark .carousel-item.active h3, .carousel.carousel-dark .carousel-item.active .h3, .carousel.carousel-dark .carousel-item.active h4, .carousel.carousel-dark .carousel-item.active .h4, .carousel.carousel-dark .carousel-item.active h5, .carousel.carousel-dark .carousel-item.active .h5, .carousel.carousel-dark .carousel-item.active h6, .carousel.carousel-dark .carousel-item.active .h6, .carousel.carousel-dark .carousel-item.carousel-item-start h1, .carousel.carousel-dark .carousel-item.carousel-item-start .h1, .carousel.carousel-dark .carousel-item.carousel-item-start h2, .carousel.carousel-dark .carousel-item.carousel-item-start .h2, .carousel.carousel-dark .carousel-item.carousel-item-start h3, .carousel.carousel-dark .carousel-item.carousel-item-start .h3, .carousel.carousel-dark .carousel-item.carousel-item-start h4, .carousel.carousel-dark .carousel-item.carousel-item-start .h4, .carousel.carousel-dark .carousel-item.carousel-item-start h5, .carousel.carousel-dark .carousel-item.carousel-item-start .h5, .carousel.carousel-dark .carousel-item.carousel-item-start h6, .carousel.carousel-dark .carousel-item.carousel-item-start .h6 { color: #22303e; } .carousel.carousel-dark .carousel-control-prev-icon, .carousel.carousel-dark .carousel-control-next-icon { -webkit-filter: invert(0); filter: invert(0); } /* Spinners */ /* Large size */ .spinner-border-lg, .spinner-grow-lg { --bs-spinner-border-width: 0.3em; --bs-spinner-height: 3rem; --bs-spinner-width: 3rem; } /* Within button ******************************************************************************* */ .btn .spinner-border, .btn .spinner-grow { --bs-spinner-height: 1em; --bs-spinner-width: 1em; inset-block-start: -0.0625rem; } .btn .spinner-border { --bs-spinner-border-width: .15em; } /* Offcanvas ******************************************************************************* */ .offcanvas { -webkit-box-shadow: var(--bs-offcanvas-box-shadow); box-shadow: var(--bs-offcanvas-box-shadow); } .offcanvas .offcanvas-header { -webkit-padding-after: 0.75rem; padding-block-end: 0.75rem; } /* styles for dark offcanvas */ [data-bs-theme=dark].offcanvas { background-color: #2b2c40; color: #b2b2c4; } [data-bs-theme=dark].offcanvas .offcanvas-title { color: #d5d5e2; } .bg-label-primary { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-primary)) !important; color: var(--bs-primary) !important; } .bg-label-secondary { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-secondary)) !important; color: var(--bs-secondary) !important; } .bg-label-success { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-success)) !important; color: var(--bs-success) !important; } .bg-label-info { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-info)) !important; color: var(--bs-info) !important; } .bg-label-warning { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-warning)) !important; color: var(--bs-warning) !important; } .bg-label-danger { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-danger)) !important; color: var(--bs-danger) !important; } .bg-label-light { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-light)) !important; color: RGBA(#000, var(--bs-bg-label-tint-amount)) !important; } .bg-label-dark { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-dark)) !important; color: var(--bs-dark) !important; } .bg-label-gray { background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-gray)) !important; color: var(--bs-gray) !important; } .align-baseline { vertical-align: baseline !important; } .align-top { vertical-align: top !important; } .align-middle { vertical-align: middle !important; } .align-bottom { vertical-align: bottom !important; } .align-text-bottom { vertical-align: text-bottom !important; } .align-text-top { vertical-align: text-top !important; } .float-start { float: inline-start !important; } .float-end { float: inline-end !important; } .float-none { float: none !important; } .object-fit-contain { -o-object-fit: contain !important; object-fit: contain !important; } .object-fit-cover { -o-object-fit: cover !important; object-fit: cover !important; } .object-fit-fill { -o-object-fit: fill !important; object-fit: fill !important; } .object-fit-scale { -o-object-fit: scale-down !important; object-fit: scale-down !important; } .object-fit-none { -o-object-fit: none !important; object-fit: none !important; } .opacity-0 { opacity: 0 !important; } .opacity-25 { opacity: 0.25 !important; } .opacity-50 { opacity: 0.5 !important; } .opacity-75 { opacity: 0.75 !important; } .opacity-100 { opacity: 1 !important; } .overflow-auto { overflow: auto !important; } .overflow-hidden { overflow: hidden !important; } .overflow-visible { overflow: visible !important; } .overflow-scroll { overflow: scroll !important; } .overflow-x-auto { overflow-x: auto !important; } .overflow-x-hidden { overflow-x: hidden !important; } .overflow-x-visible { overflow-x: visible !important; } .overflow-x-scroll { overflow-x: scroll !important; } .overflow-y-auto { overflow-y: auto !important; } .overflow-y-hidden { overflow-y: hidden !important; } .overflow-y-visible { overflow-y: visible !important; } .overflow-y-scroll { overflow-y: scroll !important; } .d-inline { display: inline !important; } .d-inline-block { display: inline-block !important; } .d-block { display: block !important; } .d-grid { display: grid !important; } .d-table { display: table !important; } .d-table-row { display: table-row !important; } .d-table-cell { display: table-cell !important; } .d-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } .d-none { display: none !important; } .shadow { -webkit-box-shadow: var(--bs-box-shadow) !important; box-shadow: var(--bs-box-shadow) !important; } .shadow-sm { -webkit-box-shadow: var(--bs-box-shadow-sm) !important; box-shadow: var(--bs-box-shadow-sm) !important; } .shadow-lg { -webkit-box-shadow: var(--bs-box-shadow-lg) !important; box-shadow: var(--bs-box-shadow-lg) !important; } .shadow-xl { -webkit-box-shadow: var(--bs-box-shadow-xl) !important; box-shadow: var(--bs-box-shadow-xl) !important; } .shadow-none { -webkit-box-shadow: none !important; box-shadow: none !important; } .position-static { position: static !important; } .position-relative { position: relative !important; } .position-absolute { position: absolute !important; } .position-fixed { position: fixed !important; } .position-sticky { position: sticky !important; } .top-0 { inset-block-start: 0 !important; } .top-50 { inset-block-start: 50% !important; } .top-100 { inset-block-start: 100% !important; } .bottom-0 { inset-block-end: 0 !important; } .bottom-50 { inset-block-end: 50% !important; } .bottom-100 { inset-block-end: 100% !important; } .start-0 { inset-inline-start: 0 !important; } .start-50 { inset-inline-start: 50% !important; } .start-100 { inset-inline-start: 100% !important; } .end-0 { inset-inline-end: 0 !important; } .end-50 { inset-inline-end: 50% !important; } .end-100 { inset-inline-end: 100% !important; } .translate-middle { -webkit-transform: translate(-50%, -50%) !important; -ms-transform: translate(-50%, -50%) !important; transform: translate(-50%, -50%) !important; } .translate-middle-x { -webkit-transform: translateX(-50%) !important; -ms-transform: translateX(-50%) !important; transform: translateX(-50%) !important; } .translate-middle-y { -webkit-transform: translateY(-50%) !important; -ms-transform: translateY(-50%) !important; transform: translateY(-50%) !important; } .border { border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; } .border-0 { border: 0 !important; } .border-solid { border-style: solid !important; } .border-dashed { border-style: dashed !important; } .border-none { border-style: none !important; } .border-top { -webkit-border-before: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; border-block-start: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; } .border-top-0 { -webkit-border-before: 0 !important; border-block-start: 0 !important; } .border-end { -webkit-border-end: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; border-inline-end: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; } .border-end-0 { -webkit-border-end: 0 !important; border-inline-end: 0 !important; } .border-bottom { -webkit-border-after: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; border-block-end: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; } .border-bottom-0 { -webkit-border-after: 0 !important; border-block-end: 0 !important; } .border-start { -webkit-border-start: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; border-inline-start: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; } .border-start-0 { -webkit-border-start: 0 !important; border-inline-start: 0 !important; } .border-primary { --bs-border-opacity: 1; border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important; } .border-secondary { --bs-border-opacity: 1; border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important; } .border-success { --bs-border-opacity: 1; border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important; } .border-info { --bs-border-opacity: 1; border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important; } .border-warning { --bs-border-opacity: 1; border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important; } .border-danger { --bs-border-opacity: 1; border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important; } .border-light { --bs-border-opacity: 1; border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important; } .border-dark { --bs-border-opacity: 1; border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important; } .border-gray { --bs-border-opacity: 1; border-color: rgba(var(--bs-gray-rgb), var(--bs-border-opacity)) !important; } .border-black { --bs-border-opacity: 1; border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important; } .border-white { --bs-border-opacity: 1; border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important; } .border-transparent { --bs-border-opacity: 1; border-color: transparent !important; } .border-primary-subtle { border-color: var(--bs-primary-border-subtle) !important; } .border-secondary-subtle { border-color: var(--bs-secondary-border-subtle) !important; } .border-success-subtle { border-color: var(--bs-success-border-subtle) !important; } .border-info-subtle { border-color: var(--bs-info-border-subtle) !important; } .border-warning-subtle { border-color: var(--bs-warning-border-subtle) !important; } .border-danger-subtle { border-color: var(--bs-danger-border-subtle) !important; } .border-light-subtle { border-color: var(--bs-light-border-subtle) !important; } .border-dark-subtle { border-color: var(--bs-dark-border-subtle) !important; } .border-1 { border-width: 1px !important; } .border-2 { border-width: 2px !important; } .border-3 { border-width: 3px !important; } .border-4 { border-width: 4px !important; } .border-5 { border-width: 5px !important; } .border-opacity-10 { --bs-border-opacity: 0.1; } .border-opacity-25 { --bs-border-opacity: 0.25; } .border-opacity-50 { --bs-border-opacity: 0.5; } .border-opacity-75 { --bs-border-opacity: 0.75; } .border-opacity-100 { --bs-border-opacity: 1; } .w-px-18 { width: 18px !important; } .w-px-20 { width: 20px !important; } .w-px-26 { width: 26px !important; } .w-px-30 { width: 30px !important; } .w-px-34 { width: 34px !important; } .w-px-40 { width: 40px !important; } .w-px-42 { width: 42px !important; } .w-px-44 { width: 44px !important; } .w-px-50 { width: 50px !important; } .w-px-52 { width: 52px !important; } .w-px-75 { width: 75px !important; } .w-px-100 { width: 100px !important; } .w-px-120 { width: 120px !important; } .w-px-150 { width: 150px !important; } .w-px-160 { width: 160px !important; } .w-px-200 { width: 200px !important; } .w-px-250 { width: 250px !important; } .w-px-300 { width: 300px !important; } .w-px-350 { width: 350px !important; } .w-px-400 { width: 400px !important; } .w-px-500 { width: 500px !important; } .w-px-600 { width: 600px !important; } .w-px-700 { width: 700px !important; } .w-px-800 { width: 800px !important; } .w-auto { width: auto !important; } .w-20 { width: 20% !important; } .w-25 { width: 25% !important; } .w-50 { width: 50% !important; } .w-60 { width: 60% !important; } .w-75 { width: 75% !important; } .w-100 { width: 100% !important; } .mw-100 { max-width: 100% !important; } .vw-100 { width: 100vw !important; } .min-vw-100 { min-width: 100vw !important; } .h-px-18 { height: 18px !important; } .h-px-20 { height: 20px !important; } .h-px-26 { height: 26px !important; } .h-px-30 { height: 30px !important; } .h-px-34 { height: 34px !important; } .h-px-40 { height: 40px !important; } .h-px-42 { height: 42px !important; } .h-px-44 { height: 44px !important; } .h-px-50 { height: 50px !important; } .h-px-52 { height: 52px !important; } .h-px-75 { height: 75px !important; } .h-px-100 { height: 100px !important; } .h-px-120 { height: 120px !important; } .h-px-150 { height: 150px !important; } .h-px-160 { height: 160px !important; } .h-px-200 { height: 200px !important; } .h-px-250 { height: 250px !important; } .h-px-300 { height: 300px !important; } .h-px-350 { height: 350px !important; } .h-px-400 { height: 400px !important; } .h-px-500 { height: 500px !important; } .h-px-600 { height: 600px !important; } .h-px-700 { height: 700px !important; } .h-px-800 { height: 800px !important; } .h-auto { height: auto !important; } .h-25 { height: 25% !important; } .h-50 { height: 50% !important; } .h-75 { height: 75% !important; } .h-100 { height: 100% !important; } .mh-100 { max-height: 100% !important; } .vh-100 { height: 100vh !important; } .min-vh-100 { min-height: 100vh !important; } .flex-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .flex-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .justify-content-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .justify-content-evenly { -webkit-box-pack: space-evenly !important; -ms-flex-pack: space-evenly !important; justify-content: space-evenly !important; } .align-items-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } .order-first { -webkit-box-ordinal-group: 0 !important; -ms-flex-order: -1 !important; order: -1 !important; } .order-0 { -webkit-box-ordinal-group: 1 !important; -ms-flex-order: 0 !important; order: 0 !important; } .order-1 { -webkit-box-ordinal-group: 2 !important; -ms-flex-order: 1 !important; order: 1 !important; } .order-2 { -webkit-box-ordinal-group: 3 !important; -ms-flex-order: 2 !important; order: 2 !important; } .order-3 { -webkit-box-ordinal-group: 4 !important; -ms-flex-order: 3 !important; order: 3 !important; } .order-4 { -webkit-box-ordinal-group: 5 !important; -ms-flex-order: 4 !important; order: 4 !important; } .order-5 { -webkit-box-ordinal-group: 6 !important; -ms-flex-order: 5 !important; order: 5 !important; } .order-last { -webkit-box-ordinal-group: 7 !important; -ms-flex-order: 6 !important; order: 6 !important; } .m-0 { margin: 0 !important; } .m-50 { margin: 0.125rem !important; } .m-1 { margin: 0.25rem !important; } .m-1_5 { margin: 0.375rem !important; } .m-2 { margin: 0.5rem !important; } .m-3 { margin: 0.75rem !important; } .m-4 { margin: 1rem !important; } .m-5 { margin: 1.25rem !important; } .m-6 { margin: 1.5rem !important; } .m-7 { margin: 1.75rem !important; } .m-8 { margin: 2rem !important; } .m-9 { margin: 2.25rem !important; } .m-10 { margin: 2.5rem !important; } .m-11 { margin: 2.75rem !important; } .m-12 { margin: 3rem !important; } .m-auto { margin: auto !important; } .mx-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .mx-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .mx-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .mx-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .mx-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .mx-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .mx-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .mx-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .mx-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .mx-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .mx-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .mx-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .mx-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .mx-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .mx-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .mx-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .my-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .my-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .my-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .my-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .my-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .my-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .my-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .my-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .my-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .my-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .my-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .my-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .my-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .my-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .my-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .my-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; -webkit-margin-after: auto !important; margin-block-end: auto !important; } .mt-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; } .mt-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; } .mt-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; } .mt-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; } .mt-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; } .mt-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; } .mt-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; } .mt-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; } .mt-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; } .mt-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; } .mt-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; } .mt-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; } .mt-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; } .mt-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; } .mt-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; } .mt-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; } .me-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; } .me-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; } .me-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; } .me-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; } .me-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; } .me-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; } .me-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; } .me-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; } .me-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; } .me-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; } .me-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; } .me-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; } .me-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; } .me-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; } .me-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; } .me-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; } .mb-0 { -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .mb-50 { -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .mb-1 { -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .mb-1_5 { -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .mb-2 { -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .mb-3 { -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .mb-4 { -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .mb-5 { -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .mb-6 { -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .mb-7 { -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .mb-8 { -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .mb-9 { -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .mb-10 { -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .mb-11 { -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .mb-12 { -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .mb-auto { -webkit-margin-after: auto !important; margin-block-end: auto !important; } .ms-0 { -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .ms-50 { -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .ms-1 { -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .ms-1_5 { -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .ms-2 { -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .ms-3 { -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .ms-4 { -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .ms-5 { -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .ms-6 { -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .ms-7 { -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .ms-8 { -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .ms-9 { -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .ms-10 { -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .ms-11 { -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .ms-12 { -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .ms-auto { -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .m-n50 { margin: -0.125rem !important; } .m-n1 { margin: -0.25rem !important; } .m-n1_5 { margin: -0.375rem !important; } .m-n2 { margin: -0.5rem !important; } .m-n3 { margin: -0.75rem !important; } .m-n4 { margin: -1rem !important; } .m-n5 { margin: -1.25rem !important; } .m-n6 { margin: -1.5rem !important; } .m-n7 { margin: -1.75rem !important; } .m-n8 { margin: -2rem !important; } .m-n9 { margin: -2.25rem !important; } .m-n10 { margin: -2.5rem !important; } .m-n11 { margin: -2.75rem !important; } .m-n12 { margin: -3rem !important; } .mx-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .mx-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .mx-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .mx-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .mx-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .mx-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .mx-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .mx-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .mx-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .mx-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .mx-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .mx-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .mx-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .mx-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .my-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .my-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .my-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .my-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .my-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .my-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .my-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .my-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .my-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .my-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .my-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .my-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .my-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .my-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .mt-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; } .mt-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; } .mt-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; } .mt-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; } .mt-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; } .mt-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; } .mt-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; } .mt-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; } .mt-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; } .mt-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; } .mt-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; } .mt-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; } .mt-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; } .mt-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; } .me-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; } .me-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; } .me-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; } .me-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; } .me-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; } .me-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; } .me-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; } .me-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; } .me-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; } .me-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; } .me-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; } .me-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; } .me-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; } .me-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; } .mb-n50 { -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .mb-n1 { -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .mb-n1_5 { -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .mb-n2 { -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .mb-n3 { -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .mb-n4 { -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .mb-n5 { -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .mb-n6 { -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .mb-n7 { -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .mb-n8 { -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .mb-n9 { -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .mb-n10 { -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .mb-n11 { -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .mb-n12 { -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .ms-n50 { -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .ms-n1 { -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .ms-n1_5 { -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .ms-n2 { -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .ms-n3 { -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .ms-n4 { -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .ms-n5 { -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .ms-n6 { -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .ms-n7 { -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .ms-n8 { -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .ms-n9 { -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .ms-n10 { -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .ms-n11 { -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .ms-n12 { -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .p-0 { padding: 0 !important; } .p-50 { padding: 0.125rem !important; } .p-1 { padding: 0.25rem !important; } .p-1_5 { padding: 0.375rem !important; } .p-2 { padding: 0.5rem !important; } .p-3 { padding: 0.75rem !important; } .p-4 { padding: 1rem !important; } .p-5 { padding: 1.25rem !important; } .p-6 { padding: 1.5rem !important; } .p-7 { padding: 1.75rem !important; } .p-8 { padding: 2rem !important; } .p-9 { padding: 2.25rem !important; } .p-10 { padding: 2.5rem !important; } .p-11 { padding: 2.75rem !important; } .p-12 { padding: 3rem !important; } .px-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .px-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .px-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .px-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .px-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .px-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .px-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .px-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .px-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .px-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .px-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .px-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .px-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .px-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .px-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .py-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .py-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .py-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .py-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .py-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .py-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .py-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .py-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .py-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .py-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .py-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .py-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .py-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .py-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .py-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .pt-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; } .pt-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; } .pt-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; } .pt-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; } .pt-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; } .pt-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; } .pt-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; } .pt-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; } .pt-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; } .pt-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; } .pt-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; } .pt-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; } .pt-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; } .pt-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; } .pt-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; } .pe-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; } .pe-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; } .pe-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; } .pe-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; } .pe-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; } .pe-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; } .pe-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; } .pe-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; } .pe-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; } .pe-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; } .pe-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; } .pe-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; } .pe-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; } .pe-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; } .pe-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; } .pb-0 { -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .pb-50 { -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .pb-1 { -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .pb-1_5 { -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .pb-2 { -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .pb-3 { -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .pb-4 { -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .pb-5 { -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .pb-6 { -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .pb-7 { -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .pb-8 { -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .pb-9 { -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .pb-10 { -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .pb-11 { -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .pb-12 { -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .ps-0 { -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .ps-50 { -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .ps-1 { -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .ps-1_5 { -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .ps-2 { -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .ps-3 { -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .ps-4 { -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .ps-5 { -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .ps-6 { -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .ps-7 { -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .ps-8 { -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .ps-9 { -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .ps-10 { -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .ps-11 { -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .ps-12 { -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .gap-0 { gap: 0 !important; } .gap-50 { gap: 0.125rem !important; } .gap-1 { gap: 0.25rem !important; } .gap-1_5 { gap: 0.375rem !important; } .gap-2 { gap: 0.5rem !important; } .gap-3 { gap: 0.75rem !important; } .gap-4 { gap: 1rem !important; } .gap-5 { gap: 1.25rem !important; } .gap-6 { gap: 1.5rem !important; } .gap-7 { gap: 1.75rem !important; } .gap-8 { gap: 2rem !important; } .gap-9 { gap: 2.25rem !important; } .gap-10 { gap: 2.5rem !important; } .gap-11 { gap: 2.75rem !important; } .gap-12 { gap: 3rem !important; } .row-gap-0 { row-gap: 0 !important; } .row-gap-50 { row-gap: 0.125rem !important; } .row-gap-1 { row-gap: 0.25rem !important; } .row-gap-1_5 { row-gap: 0.375rem !important; } .row-gap-2 { row-gap: 0.5rem !important; } .row-gap-3 { row-gap: 0.75rem !important; } .row-gap-4 { row-gap: 1rem !important; } .row-gap-5 { row-gap: 1.25rem !important; } .row-gap-6 { row-gap: 1.5rem !important; } .row-gap-7 { row-gap: 1.75rem !important; } .row-gap-8 { row-gap: 2rem !important; } .row-gap-9 { row-gap: 2.25rem !important; } .row-gap-10 { row-gap: 2.5rem !important; } .row-gap-11 { row-gap: 2.75rem !important; } .row-gap-12 { row-gap: 3rem !important; } .column-gap-0 { -webkit-column-gap: 0 !important; -moz-column-gap: 0 !important; column-gap: 0 !important; } .column-gap-50 { -webkit-column-gap: 0.125rem !important; -moz-column-gap: 0.125rem !important; column-gap: 0.125rem !important; } .column-gap-1 { -webkit-column-gap: 0.25rem !important; -moz-column-gap: 0.25rem !important; column-gap: 0.25rem !important; } .column-gap-1_5 { -webkit-column-gap: 0.375rem !important; -moz-column-gap: 0.375rem !important; column-gap: 0.375rem !important; } .column-gap-2 { -webkit-column-gap: 0.5rem !important; -moz-column-gap: 0.5rem !important; column-gap: 0.5rem !important; } .column-gap-3 { -webkit-column-gap: 0.75rem !important; -moz-column-gap: 0.75rem !important; column-gap: 0.75rem !important; } .column-gap-4 { -webkit-column-gap: 1rem !important; -moz-column-gap: 1rem !important; column-gap: 1rem !important; } .column-gap-5 { -webkit-column-gap: 1.25rem !important; -moz-column-gap: 1.25rem !important; column-gap: 1.25rem !important; } .column-gap-6 { -webkit-column-gap: 1.5rem !important; -moz-column-gap: 1.5rem !important; column-gap: 1.5rem !important; } .column-gap-7 { -webkit-column-gap: 1.75rem !important; -moz-column-gap: 1.75rem !important; column-gap: 1.75rem !important; } .column-gap-8 { -webkit-column-gap: 2rem !important; -moz-column-gap: 2rem !important; column-gap: 2rem !important; } .column-gap-9 { -webkit-column-gap: 2.25rem !important; -moz-column-gap: 2.25rem !important; column-gap: 2.25rem !important; } .column-gap-10 { -webkit-column-gap: 2.5rem !important; -moz-column-gap: 2.5rem !important; column-gap: 2.5rem !important; } .column-gap-11 { -webkit-column-gap: 2.75rem !important; -moz-column-gap: 2.75rem !important; column-gap: 2.75rem !important; } .column-gap-12 { -webkit-column-gap: 3rem !important; -moz-column-gap: 3rem !important; column-gap: 3rem !important; } .font-monospace { font-family: var(--bs-font-monospace) !important; } .fs-1 { font-size: calc(1.4125rem + 1.95vw) !important; } .fs-2 { font-size: calc(1.3625rem + 1.35vw) !important; } .fs-3 { font-size: calc(1.3rem + 0.6vw) !important; } .fs-4 { font-size: calc(1.275rem + 0.3vw) !important; } .fs-5 { font-size: 1.125rem !important; } .fs-6 { font-size: 0.9375rem !important; } .fs-tiny { font-size: 70% !important; } .fs-big { font-size: 112% !important; } .fs-large { font-size: 150% !important; } .fs-xlarge { font-size: 170% !important; } .fs-xxlarge { font-size: calc(1.725rem + 5.7vw) !important; } .fst-italic { font-style: italic !important; } .fst-normal { font-style: normal !important; } .fw-lighter { font-weight: lighter !important; } .fw-light { font-weight: 300 !important; } .fw-normal { font-weight: 400 !important; } .fw-medium { font-weight: 500 !important; } .fw-semibold { font-weight: 600 !important; } .fw-bold { font-weight: 700 !important; } .fw-extrabold { font-weight: 800 !important; } .fw-bolder { font-weight: bolder !important; } .lh-1 { line-height: 1 !important; } .lh-inherit { line-height: inherit !important; } .lh-sm { line-height: 1.125 !important; } .lh-base { line-height: 1.375 !important; } .lh-lg { line-height: 1.625 !important; } .text-start { text-align: start !important; } .text-end { text-align: end !important; } .text-center { text-align: center !important; } .text-decoration-none { text-decoration: none !important; } .text-decoration-underline { text-decoration: underline !important; } .text-decoration-line-through { text-decoration: line-through !important; } .text-none { text-transform: none !important; } .text-lowercase { text-transform: lowercase !important; } .text-uppercase { text-transform: uppercase !important; } .text-capitalize { text-transform: capitalize !important; } .text-wrap { white-space: normal !important; } .text-nowrap { white-space: nowrap !important; } /* rtl:begin:remove */ .text-break { word-wrap: break-word !important; word-break: break-word !important; } /* rtl:end:remove */ .text-primary { --bs-text-opacity: 1; color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; } .text-secondary { --bs-text-opacity: 1; color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; } .text-success { --bs-text-opacity: 1; color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; } .text-info { --bs-text-opacity: 1; color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; } .text-warning { --bs-text-opacity: 1; color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; } .text-danger { --bs-text-opacity: 1; color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; } .text-light { --bs-text-opacity: 1; color: var(--bs-gray-400) !important; } .text-dark { --bs-text-opacity: 1; color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; } .text-gray { --bs-text-opacity: 1; color: rgba(var(--bs-gray-rgb), var(--bs-text-opacity)) !important; } .text-black { --bs-text-opacity: 1; color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; } .text-white { --bs-text-opacity: 1; color: var(--bs-white) !important; } .text-body { --bs-text-opacity: 1; color: var(--bs-body-color) !important; } .text-body-secondary { --bs-text-opacity: 1; color: var(--bs-secondary-color) !important; } .text-body-tertiary { --bs-text-opacity: 1; color: var(--bs-tertiary-color) !important; } .text-body-emphasis { --bs-text-opacity: 1; color: var(--bs-emphasis-color) !important; } .text-lighter { --bs-text-opacity: 1; color: var(--bs-gray-300) !important; } .text-lightest { --bs-text-opacity: 1; color: var(--bs-gray-200) !important; } .text-heading { --bs-text-opacity: 1; color: var(--bs-heading-color) !important; } .text-reset { --bs-text-opacity: 1; color: inherit !important; } .text-opacity-25 { --bs-text-opacity: 0.25; } .text-opacity-50 { --bs-text-opacity: 0.5; } .text-opacity-75 { --bs-text-opacity: 0.75; } .text-opacity-100 { --bs-text-opacity: 1; } .text-primary-emphasis { color: var(--bs-primary-text-emphasis) !important; } .text-secondary-emphasis { color: var(--bs-secondary-text-emphasis) !important; } .text-success-emphasis { color: var(--bs-success-text-emphasis) !important; } .text-info-emphasis { color: var(--bs-info-text-emphasis) !important; } .text-warning-emphasis { color: var(--bs-warning-text-emphasis) !important; } .text-danger-emphasis { color: var(--bs-danger-text-emphasis) !important; } .text-light-emphasis { color: var(--bs-light-text-emphasis) !important; } .text-dark-emphasis { color: var(--bs-dark-text-emphasis) !important; } .link-opacity-10 { --bs-link-opacity: 0.1; } .link-opacity-10-hover:hover { --bs-link-opacity: 0.1; } .link-opacity-25 { --bs-link-opacity: 0.25; } .link-opacity-25-hover:hover { --bs-link-opacity: 0.25; } .link-opacity-50 { --bs-link-opacity: 0.5; } .link-opacity-50-hover:hover { --bs-link-opacity: 0.5; } .link-opacity-75 { --bs-link-opacity: 0.75; } .link-opacity-75-hover:hover { --bs-link-opacity: 0.75; } .link-opacity-100 { --bs-link-opacity: 1; } .link-opacity-100-hover:hover { --bs-link-opacity: 1; } .link-offset-1 { text-underline-offset: 0.125em !important; } .link-offset-1-hover:hover { text-underline-offset: 0.125em !important; } .link-offset-2 { text-underline-offset: 0.25em !important; } .link-offset-2-hover:hover { text-underline-offset: 0.25em !important; } .link-offset-3 { text-underline-offset: 0.375em !important; } .link-offset-3-hover:hover { text-underline-offset: 0.375em !important; } .link-underline-primary { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline-secondary { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline-success { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline-info { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline-warning { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline-danger { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline-light { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline-dark { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline-gray { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-gray-rgb), var(--bs-link-underline-opacity)) !important; } .link-underline { --bs-link-underline-opacity: 1; text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important; } .link-underline-opacity-0 { --bs-link-underline-opacity: 0; } .link-underline-opacity-0-hover:hover { --bs-link-underline-opacity: 0; } .link-underline-opacity-10 { --bs-link-underline-opacity: 0.1; } .link-underline-opacity-10-hover:hover { --bs-link-underline-opacity: 0.1; } .link-underline-opacity-25 { --bs-link-underline-opacity: 0.25; } .link-underline-opacity-25-hover:hover { --bs-link-underline-opacity: 0.25; } .link-underline-opacity-50 { --bs-link-underline-opacity: 0.5; } .link-underline-opacity-50-hover:hover { --bs-link-underline-opacity: 0.5; } .link-underline-opacity-75 { --bs-link-underline-opacity: 0.75; } .link-underline-opacity-75-hover:hover { --bs-link-underline-opacity: 0.75; } .link-underline-opacity-100 { --bs-link-underline-opacity: 1; } .link-underline-opacity-100-hover:hover { --bs-link-underline-opacity: 1; } .bg-primary { --bs-bg-opacity: 1; background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; } .bg-secondary { --bs-bg-opacity: 1; background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; } .bg-success { --bs-bg-opacity: 1; background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; } .bg-info { --bs-bg-opacity: 1; background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; } .bg-warning { --bs-bg-opacity: 1; background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; } .bg-danger { --bs-bg-opacity: 1; background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; } .bg-light { --bs-bg-opacity: 1; background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; } .bg-dark { --bs-bg-opacity: 1; background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; } .bg-gray { --bs-bg-opacity: 1; background-color: rgba(var(--bs-gray-rgb), var(--bs-bg-opacity)) !important; } .bg-black { --bs-bg-opacity: 1; background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; } .bg-white { --bs-bg-opacity: 1; background-color: var(--bs-white) !important; } .bg-body { --bs-bg-opacity: 1; background-color: var(--bs-body-bg) !important; } .bg-transparent { --bs-bg-opacity: 1; background-color: transparent !important; } .bg-body-secondary { --bs-bg-opacity: 1; background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important; } .bg-body-tertiary { --bs-bg-opacity: 1; background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important; } .bg-lighter { --bs-bg-opacity: 1; background-color: color-mix(in sRGB, var(--bs-base-color) 6%, var(--bs-paper-bg)) !important; } .bg-lightest { --bs-bg-opacity: 1; background-color: color-mix(in sRGB, var(--bs-base-color) 2.5%, var(--bs-paper-bg)) !important; } .bg-opacity-10 { --bs-bg-opacity: 0.1; } .bg-opacity-25 { --bs-bg-opacity: 0.25; } .bg-opacity-50 { --bs-bg-opacity: 0.5; } .bg-opacity-75 { --bs-bg-opacity: 0.75; } .bg-opacity-100 { --bs-bg-opacity: 1; } .bg-primary-subtle { background-color: var(--bs-primary-bg-subtle) !important; } .bg-secondary-subtle { background-color: var(--bs-secondary-bg-subtle) !important; } .bg-success-subtle { background-color: var(--bs-success-bg-subtle) !important; } .bg-info-subtle { background-color: var(--bs-info-bg-subtle) !important; } .bg-warning-subtle { background-color: var(--bs-warning-bg-subtle) !important; } .bg-danger-subtle { background-color: var(--bs-danger-bg-subtle) !important; } .bg-light-subtle { background-color: var(--bs-light-bg-subtle) !important; } .bg-dark-subtle { background-color: var(--bs-dark-bg-subtle) !important; } .bg-gradient { background-image: var(--bs-gradient) !important; } .user-select-all { -webkit-user-select: all !important; -moz-user-select: all !important; user-select: all !important; } .user-select-auto { -webkit-user-select: auto !important; -moz-user-select: auto !important; -ms-user-select: auto !important; user-select: auto !important; } .user-select-none { -webkit-user-select: none !important; -moz-user-select: none !important; -ms-user-select: none !important; user-select: none !important; } .pe-none { pointer-events: none !important; } .pe-auto { pointer-events: auto !important; } .rounded { border-radius: var(--bs-border-radius) !important; } .rounded-0 { border-radius: 0 !important; } .rounded-1 { border-radius: var(--bs-border-radius-sm) !important; } .rounded-2 { border-radius: var(--bs-border-radius) !important; } .rounded-3 { border-radius: var(--bs-border-radius-lg) !important; } .rounded-4 { border-radius: var(--bs-border-radius-xl) !important; } .rounded-5 { border-radius: var(--bs-border-radius-xxl) !important; } .rounded-circle { border-radius: 50% !important; } .rounded-pill { border-radius: var(--bs-border-radius-pill) !important; } .rounded-top { border-start-start-radius: var(--bs-border-radius) !important; border-start-end-radius: var(--bs-border-radius) !important; } .rounded-top-0 { border-start-start-radius: 0 !important; border-start-end-radius: 0 !important; } .rounded-top-1 { border-start-start-radius: var(--bs-border-radius-sm) !important; border-start-end-radius: var(--bs-border-radius-sm) !important; } .rounded-top-2 { border-start-start-radius: var(--bs-border-radius) !important; border-start-end-radius: var(--bs-border-radius) !important; } .rounded-top-3 { border-start-start-radius: var(--bs-border-radius-lg) !important; border-start-end-radius: var(--bs-border-radius-lg) !important; } .rounded-top-4 { border-start-start-radius: var(--bs-border-radius-xl) !important; border-start-end-radius: var(--bs-border-radius-xl) !important; } .rounded-top-5 { border-start-start-radius: var(--bs-border-radius-xxl) !important; border-start-end-radius: var(--bs-border-radius-xxl) !important; } .rounded-top-circle { border-start-start-radius: 50% !important; border-start-end-radius: 50% !important; } .rounded-top-pill { border-start-start-radius: var(--bs-border-radius-pill) !important; border-start-end-radius: var(--bs-border-radius-pill) !important; } .rounded-end { border-start-end-radius: var(--bs-border-radius) !important; border-end-end-radius: var(--bs-border-radius) !important; } .rounded-end-0 { border-start-end-radius: 0 !important; border-end-end-radius: 0 !important; } .rounded-end-1 { border-start-end-radius: var(--bs-border-radius-sm) !important; border-end-end-radius: var(--bs-border-radius-sm) !important; } .rounded-end-2 { border-start-end-radius: var(--bs-border-radius) !important; border-end-end-radius: var(--bs-border-radius) !important; } .rounded-end-3 { border-start-end-radius: var(--bs-border-radius-lg) !important; border-end-end-radius: var(--bs-border-radius-lg) !important; } .rounded-end-4 { border-start-end-radius: var(--bs-border-radius-xl) !important; border-end-end-radius: var(--bs-border-radius-xl) !important; } .rounded-end-5 { border-start-end-radius: var(--bs-border-radius-xxl) !important; border-end-end-radius: var(--bs-border-radius-xxl) !important; } .rounded-end-circle { border-start-end-radius: 50% !important; border-end-end-radius: 50% !important; } .rounded-end-pill { border-start-end-radius: var(--bs-border-radius-pill) !important; border-end-end-radius: var(--bs-border-radius-pill) !important; } .rounded-bottom { border-end-end-radius: var(--bs-border-radius) !important; border-end-start-radius: var(--bs-border-radius) !important; } .rounded-bottom-0 { border-end-end-radius: 0 !important; border-end-start-radius: 0 !important; } .rounded-bottom-1 { border-end-end-radius: var(--bs-border-radius-sm) !important; border-end-start-radius: var(--bs-border-radius-sm) !important; } .rounded-bottom-2 { border-end-end-radius: var(--bs-border-radius) !important; border-end-start-radius: var(--bs-border-radius) !important; } .rounded-bottom-3 { border-end-end-radius: var(--bs-border-radius-lg) !important; border-end-start-radius: var(--bs-border-radius-lg) !important; } .rounded-bottom-4 { border-end-end-radius: var(--bs-border-radius-xl) !important; border-end-start-radius: var(--bs-border-radius-xl) !important; } .rounded-bottom-5 { border-end-end-radius: var(--bs-border-radius-xxl) !important; border-end-start-radius: var(--bs-border-radius-xxl) !important; } .rounded-bottom-circle { border-end-end-radius: 50% !important; border-end-start-radius: 50% !important; } .rounded-bottom-pill { border-end-end-radius: var(--bs-border-radius-pill) !important; border-end-start-radius: var(--bs-border-radius-pill) !important; } .rounded-start { border-end-start-radius: var(--bs-border-radius) !important; border-start-start-radius: var(--bs-border-radius) !important; } .rounded-start-0 { border-end-start-radius: 0 !important; border-start-start-radius: 0 !important; } .rounded-start-1 { border-end-start-radius: var(--bs-border-radius-sm) !important; border-start-start-radius: var(--bs-border-radius-sm) !important; } .rounded-start-2 { border-end-start-radius: var(--bs-border-radius) !important; border-start-start-radius: var(--bs-border-radius) !important; } .rounded-start-3 { border-end-start-radius: var(--bs-border-radius-lg) !important; border-start-start-radius: var(--bs-border-radius-lg) !important; } .rounded-start-4 { border-end-start-radius: var(--bs-border-radius-xl) !important; border-start-start-radius: var(--bs-border-radius-xl) !important; } .rounded-start-5 { border-end-start-radius: var(--bs-border-radius-xxl) !important; border-start-start-radius: var(--bs-border-radius-xxl) !important; } .rounded-start-circle { border-end-start-radius: 50% !important; border-start-start-radius: 50% !important; } .rounded-start-pill { border-end-start-radius: var(--bs-border-radius-pill) !important; border-start-start-radius: var(--bs-border-radius-pill) !important; } .rounded-start-top { border-start-start-radius: 0.375rem !important; } .rounded-start-bottom { border-end-start-radius: 0.375rem !important; } .rounded-end-top { border-start-end-radius: 0.375rem !important; } .rounded-end-bottom { border-end-end-radius: 0.375rem !important; } .visible { visibility: visible !important; } .invisible { visibility: hidden !important; } .z-n1 { z-index: -1 !important; } .z-0 { z-index: 0 !important; } .z-1 { z-index: 1 !important; } .z-2 { z-index: 2 !important; } .z-3 { z-index: 3 !important; } .z-4 { z-index: 4 !important; } .z-5 { z-index: 5 !important; } .rotate-0 { -webkit-transform: var(--bs-rotate-0, rotate(0deg)) !important; -ms-transform: var(--bs-rotate-0, rotate(0deg)) !important; transform: var(--bs-rotate-0, rotate(0deg)) !important; } .rotate-90 { -webkit-transform: var(--bs-rotate-90, rotate(90deg)) !important; -ms-transform: var(--bs-rotate-90, rotate(90deg)) !important; transform: var(--bs-rotate-90, rotate(90deg)) !important; } .rotate-180 { -webkit-transform: var(--bs-rotate-180, rotate(180deg)) !important; -ms-transform: var(--bs-rotate-180, rotate(180deg)) !important; transform: var(--bs-rotate-180, rotate(180deg)) !important; } .rotate-270 { -webkit-transform: var(--bs-rotate-270, rotate(270deg)) !important; -ms-transform: var(--bs-rotate-270, rotate(270deg)) !important; transform: var(--bs-rotate-270, rotate(270deg)) !important; } .rotate-n90 { -webkit-transform: var(--bs-rotate-n90, rotate(-90deg)) !important; -ms-transform: var(--bs-rotate-n90, rotate(-90deg)) !important; transform: var(--bs-rotate-n90, rotate(-90deg)) !important; } .rotate-n180 { -webkit-transform: var(--bs-rotate-n180, rotate(-180deg)) !important; -ms-transform: var(--bs-rotate-n180, rotate(-180deg)) !important; transform: var(--bs-rotate-n180, rotate(-180deg)) !important; } .rotate-n270 { -webkit-transform: var(--bs-rotate-n270, rotate(-270deg)) !important; -ms-transform: var(--bs-rotate-n270, rotate(-270deg)) !important; transform: var(--bs-rotate-n270, rotate(-270deg)) !important; } .cursor-pointer { cursor: pointer !important; } .cursor-move { cursor: move !important; } .cursor-grab { cursor: -webkit-grab !important; cursor: grab !important; } @media (min-width: 576px) { .float-sm-start { float: inline-start !important; } .float-sm-end { float: inline-end !important; } .float-sm-none { float: none !important; } .object-fit-sm-contain { -o-object-fit: contain !important; object-fit: contain !important; } .object-fit-sm-cover { -o-object-fit: cover !important; object-fit: cover !important; } .object-fit-sm-fill { -o-object-fit: fill !important; object-fit: fill !important; } .object-fit-sm-scale { -o-object-fit: scale-down !important; object-fit: scale-down !important; } .object-fit-sm-none { -o-object-fit: none !important; object-fit: none !important; } .d-sm-inline { display: inline !important; } .d-sm-inline-block { display: inline-block !important; } .d-sm-block { display: block !important; } .d-sm-grid { display: grid !important; } .d-sm-table { display: table !important; } .d-sm-table-row { display: table-row !important; } .d-sm-table-cell { display: table-cell !important; } .d-sm-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-sm-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } .d-sm-none { display: none !important; } .border-sm-solid { border-style: solid !important; } .border-sm-dashed { border-style: dashed !important; } .border-sm-none { border-style: none !important; } .flex-sm-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-sm-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-sm-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-sm-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-sm-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-sm-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-sm-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-sm-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-sm-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .flex-sm-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-sm-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-sm-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .justify-content-sm-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-sm-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-sm-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-sm-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-sm-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .justify-content-sm-evenly { -webkit-box-pack: space-evenly !important; -ms-flex-pack: space-evenly !important; justify-content: space-evenly !important; } .align-items-sm-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-sm-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-sm-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-sm-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-sm-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-sm-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-sm-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-sm-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-sm-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-sm-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-sm-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-sm-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-sm-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-sm-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-sm-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-sm-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-sm-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } .order-sm-first { -webkit-box-ordinal-group: 0 !important; -ms-flex-order: -1 !important; order: -1 !important; } .order-sm-0 { -webkit-box-ordinal-group: 1 !important; -ms-flex-order: 0 !important; order: 0 !important; } .order-sm-1 { -webkit-box-ordinal-group: 2 !important; -ms-flex-order: 1 !important; order: 1 !important; } .order-sm-2 { -webkit-box-ordinal-group: 3 !important; -ms-flex-order: 2 !important; order: 2 !important; } .order-sm-3 { -webkit-box-ordinal-group: 4 !important; -ms-flex-order: 3 !important; order: 3 !important; } .order-sm-4 { -webkit-box-ordinal-group: 5 !important; -ms-flex-order: 4 !important; order: 4 !important; } .order-sm-5 { -webkit-box-ordinal-group: 6 !important; -ms-flex-order: 5 !important; order: 5 !important; } .order-sm-last { -webkit-box-ordinal-group: 7 !important; -ms-flex-order: 6 !important; order: 6 !important; } .m-sm-0 { margin: 0 !important; } .m-sm-50 { margin: 0.125rem !important; } .m-sm-1 { margin: 0.25rem !important; } .m-sm-1_5 { margin: 0.375rem !important; } .m-sm-2 { margin: 0.5rem !important; } .m-sm-3 { margin: 0.75rem !important; } .m-sm-4 { margin: 1rem !important; } .m-sm-5 { margin: 1.25rem !important; } .m-sm-6 { margin: 1.5rem !important; } .m-sm-7 { margin: 1.75rem !important; } .m-sm-8 { margin: 2rem !important; } .m-sm-9 { margin: 2.25rem !important; } .m-sm-10 { margin: 2.5rem !important; } .m-sm-11 { margin: 2.75rem !important; } .m-sm-12 { margin: 3rem !important; } .m-sm-auto { margin: auto !important; } .mx-sm-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .mx-sm-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .mx-sm-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .mx-sm-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .mx-sm-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .mx-sm-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .mx-sm-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .mx-sm-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .mx-sm-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .mx-sm-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .mx-sm-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .mx-sm-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .mx-sm-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .mx-sm-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .mx-sm-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .mx-sm-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .my-sm-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .my-sm-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .my-sm-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .my-sm-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .my-sm-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .my-sm-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .my-sm-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .my-sm-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .my-sm-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .my-sm-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .my-sm-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .my-sm-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .my-sm-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .my-sm-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .my-sm-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .my-sm-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; -webkit-margin-after: auto !important; margin-block-end: auto !important; } .mt-sm-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; } .mt-sm-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; } .mt-sm-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; } .mt-sm-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; } .mt-sm-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; } .mt-sm-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; } .mt-sm-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; } .mt-sm-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; } .mt-sm-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; } .mt-sm-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; } .mt-sm-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; } .mt-sm-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; } .mt-sm-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; } .mt-sm-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; } .mt-sm-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; } .mt-sm-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; } .me-sm-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; } .me-sm-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; } .me-sm-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; } .me-sm-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; } .me-sm-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; } .me-sm-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; } .me-sm-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; } .me-sm-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; } .me-sm-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; } .me-sm-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; } .me-sm-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; } .me-sm-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; } .me-sm-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; } .me-sm-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; } .me-sm-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; } .me-sm-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; } .mb-sm-0 { -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .mb-sm-50 { -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .mb-sm-1 { -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .mb-sm-1_5 { -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .mb-sm-2 { -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .mb-sm-3 { -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .mb-sm-4 { -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .mb-sm-5 { -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .mb-sm-6 { -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .mb-sm-7 { -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .mb-sm-8 { -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .mb-sm-9 { -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .mb-sm-10 { -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .mb-sm-11 { -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .mb-sm-12 { -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .mb-sm-auto { -webkit-margin-after: auto !important; margin-block-end: auto !important; } .ms-sm-0 { -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .ms-sm-50 { -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .ms-sm-1 { -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .ms-sm-1_5 { -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .ms-sm-2 { -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .ms-sm-3 { -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .ms-sm-4 { -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .ms-sm-5 { -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .ms-sm-6 { -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .ms-sm-7 { -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .ms-sm-8 { -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .ms-sm-9 { -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .ms-sm-10 { -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .ms-sm-11 { -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .ms-sm-12 { -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .ms-sm-auto { -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .m-sm-n50 { margin: -0.125rem !important; } .m-sm-n1 { margin: -0.25rem !important; } .m-sm-n1_5 { margin: -0.375rem !important; } .m-sm-n2 { margin: -0.5rem !important; } .m-sm-n3 { margin: -0.75rem !important; } .m-sm-n4 { margin: -1rem !important; } .m-sm-n5 { margin: -1.25rem !important; } .m-sm-n6 { margin: -1.5rem !important; } .m-sm-n7 { margin: -1.75rem !important; } .m-sm-n8 { margin: -2rem !important; } .m-sm-n9 { margin: -2.25rem !important; } .m-sm-n10 { margin: -2.5rem !important; } .m-sm-n11 { margin: -2.75rem !important; } .m-sm-n12 { margin: -3rem !important; } .mx-sm-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .mx-sm-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .mx-sm-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .mx-sm-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .mx-sm-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .mx-sm-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .mx-sm-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .mx-sm-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .mx-sm-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .mx-sm-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .mx-sm-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .mx-sm-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .mx-sm-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .mx-sm-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .my-sm-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .my-sm-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .my-sm-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .my-sm-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .my-sm-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .my-sm-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .my-sm-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .my-sm-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .my-sm-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .my-sm-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .my-sm-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .my-sm-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .my-sm-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .my-sm-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .mt-sm-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; } .mt-sm-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; } .mt-sm-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; } .mt-sm-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; } .mt-sm-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; } .mt-sm-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; } .mt-sm-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; } .mt-sm-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; } .mt-sm-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; } .mt-sm-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; } .mt-sm-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; } .mt-sm-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; } .mt-sm-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; } .mt-sm-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; } .me-sm-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; } .me-sm-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; } .me-sm-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; } .me-sm-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; } .me-sm-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; } .me-sm-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; } .me-sm-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; } .me-sm-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; } .me-sm-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; } .me-sm-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; } .me-sm-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; } .me-sm-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; } .me-sm-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; } .me-sm-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; } .mb-sm-n50 { -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .mb-sm-n1 { -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .mb-sm-n1_5 { -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .mb-sm-n2 { -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .mb-sm-n3 { -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .mb-sm-n4 { -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .mb-sm-n5 { -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .mb-sm-n6 { -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .mb-sm-n7 { -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .mb-sm-n8 { -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .mb-sm-n9 { -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .mb-sm-n10 { -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .mb-sm-n11 { -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .mb-sm-n12 { -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .ms-sm-n50 { -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .ms-sm-n1 { -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .ms-sm-n1_5 { -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .ms-sm-n2 { -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .ms-sm-n3 { -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .ms-sm-n4 { -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .ms-sm-n5 { -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .ms-sm-n6 { -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .ms-sm-n7 { -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .ms-sm-n8 { -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .ms-sm-n9 { -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .ms-sm-n10 { -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .ms-sm-n11 { -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .ms-sm-n12 { -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .p-sm-0 { padding: 0 !important; } .p-sm-50 { padding: 0.125rem !important; } .p-sm-1 { padding: 0.25rem !important; } .p-sm-1_5 { padding: 0.375rem !important; } .p-sm-2 { padding: 0.5rem !important; } .p-sm-3 { padding: 0.75rem !important; } .p-sm-4 { padding: 1rem !important; } .p-sm-5 { padding: 1.25rem !important; } .p-sm-6 { padding: 1.5rem !important; } .p-sm-7 { padding: 1.75rem !important; } .p-sm-8 { padding: 2rem !important; } .p-sm-9 { padding: 2.25rem !important; } .p-sm-10 { padding: 2.5rem !important; } .p-sm-11 { padding: 2.75rem !important; } .p-sm-12 { padding: 3rem !important; } .px-sm-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .px-sm-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .px-sm-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .px-sm-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .px-sm-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .px-sm-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .px-sm-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .px-sm-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .px-sm-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .px-sm-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .px-sm-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .px-sm-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .px-sm-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .px-sm-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .px-sm-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .py-sm-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .py-sm-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .py-sm-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .py-sm-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .py-sm-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .py-sm-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .py-sm-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .py-sm-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .py-sm-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .py-sm-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .py-sm-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .py-sm-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .py-sm-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .py-sm-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .py-sm-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .pt-sm-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; } .pt-sm-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; } .pt-sm-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; } .pt-sm-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; } .pt-sm-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; } .pt-sm-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; } .pt-sm-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; } .pt-sm-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; } .pt-sm-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; } .pt-sm-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; } .pt-sm-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; } .pt-sm-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; } .pt-sm-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; } .pt-sm-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; } .pt-sm-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; } .pe-sm-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; } .pe-sm-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; } .pe-sm-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; } .pe-sm-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; } .pe-sm-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; } .pe-sm-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; } .pe-sm-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; } .pe-sm-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; } .pe-sm-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; } .pe-sm-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; } .pe-sm-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; } .pe-sm-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; } .pe-sm-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; } .pe-sm-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; } .pe-sm-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; } .pb-sm-0 { -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .pb-sm-50 { -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .pb-sm-1 { -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .pb-sm-1_5 { -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .pb-sm-2 { -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .pb-sm-3 { -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .pb-sm-4 { -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .pb-sm-5 { -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .pb-sm-6 { -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .pb-sm-7 { -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .pb-sm-8 { -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .pb-sm-9 { -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .pb-sm-10 { -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .pb-sm-11 { -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .pb-sm-12 { -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .ps-sm-0 { -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .ps-sm-50 { -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .ps-sm-1 { -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .ps-sm-1_5 { -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .ps-sm-2 { -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .ps-sm-3 { -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .ps-sm-4 { -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .ps-sm-5 { -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .ps-sm-6 { -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .ps-sm-7 { -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .ps-sm-8 { -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .ps-sm-9 { -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .ps-sm-10 { -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .ps-sm-11 { -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .ps-sm-12 { -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .gap-sm-0 { gap: 0 !important; } .gap-sm-50 { gap: 0.125rem !important; } .gap-sm-1 { gap: 0.25rem !important; } .gap-sm-1_5 { gap: 0.375rem !important; } .gap-sm-2 { gap: 0.5rem !important; } .gap-sm-3 { gap: 0.75rem !important; } .gap-sm-4 { gap: 1rem !important; } .gap-sm-5 { gap: 1.25rem !important; } .gap-sm-6 { gap: 1.5rem !important; } .gap-sm-7 { gap: 1.75rem !important; } .gap-sm-8 { gap: 2rem !important; } .gap-sm-9 { gap: 2.25rem !important; } .gap-sm-10 { gap: 2.5rem !important; } .gap-sm-11 { gap: 2.75rem !important; } .gap-sm-12 { gap: 3rem !important; } .row-gap-sm-0 { row-gap: 0 !important; } .row-gap-sm-50 { row-gap: 0.125rem !important; } .row-gap-sm-1 { row-gap: 0.25rem !important; } .row-gap-sm-1_5 { row-gap: 0.375rem !important; } .row-gap-sm-2 { row-gap: 0.5rem !important; } .row-gap-sm-3 { row-gap: 0.75rem !important; } .row-gap-sm-4 { row-gap: 1rem !important; } .row-gap-sm-5 { row-gap: 1.25rem !important; } .row-gap-sm-6 { row-gap: 1.5rem !important; } .row-gap-sm-7 { row-gap: 1.75rem !important; } .row-gap-sm-8 { row-gap: 2rem !important; } .row-gap-sm-9 { row-gap: 2.25rem !important; } .row-gap-sm-10 { row-gap: 2.5rem !important; } .row-gap-sm-11 { row-gap: 2.75rem !important; } .row-gap-sm-12 { row-gap: 3rem !important; } .column-gap-sm-0 { -webkit-column-gap: 0 !important; -moz-column-gap: 0 !important; column-gap: 0 !important; } .column-gap-sm-50 { -webkit-column-gap: 0.125rem !important; -moz-column-gap: 0.125rem !important; column-gap: 0.125rem !important; } .column-gap-sm-1 { -webkit-column-gap: 0.25rem !important; -moz-column-gap: 0.25rem !important; column-gap: 0.25rem !important; } .column-gap-sm-1_5 { -webkit-column-gap: 0.375rem !important; -moz-column-gap: 0.375rem !important; column-gap: 0.375rem !important; } .column-gap-sm-2 { -webkit-column-gap: 0.5rem !important; -moz-column-gap: 0.5rem !important; column-gap: 0.5rem !important; } .column-gap-sm-3 { -webkit-column-gap: 0.75rem !important; -moz-column-gap: 0.75rem !important; column-gap: 0.75rem !important; } .column-gap-sm-4 { -webkit-column-gap: 1rem !important; -moz-column-gap: 1rem !important; column-gap: 1rem !important; } .column-gap-sm-5 { -webkit-column-gap: 1.25rem !important; -moz-column-gap: 1.25rem !important; column-gap: 1.25rem !important; } .column-gap-sm-6 { -webkit-column-gap: 1.5rem !important; -moz-column-gap: 1.5rem !important; column-gap: 1.5rem !important; } .column-gap-sm-7 { -webkit-column-gap: 1.75rem !important; -moz-column-gap: 1.75rem !important; column-gap: 1.75rem !important; } .column-gap-sm-8 { -webkit-column-gap: 2rem !important; -moz-column-gap: 2rem !important; column-gap: 2rem !important; } .column-gap-sm-9 { -webkit-column-gap: 2.25rem !important; -moz-column-gap: 2.25rem !important; column-gap: 2.25rem !important; } .column-gap-sm-10 { -webkit-column-gap: 2.5rem !important; -moz-column-gap: 2.5rem !important; column-gap: 2.5rem !important; } .column-gap-sm-11 { -webkit-column-gap: 2.75rem !important; -moz-column-gap: 2.75rem !important; column-gap: 2.75rem !important; } .column-gap-sm-12 { -webkit-column-gap: 3rem !important; -moz-column-gap: 3rem !important; column-gap: 3rem !important; } .text-sm-start { text-align: start !important; } .text-sm-end { text-align: end !important; } .text-sm-center { text-align: center !important; } } @media (min-width: 768px) { .float-md-start { float: inline-start !important; } .float-md-end { float: inline-end !important; } .float-md-none { float: none !important; } .object-fit-md-contain { -o-object-fit: contain !important; object-fit: contain !important; } .object-fit-md-cover { -o-object-fit: cover !important; object-fit: cover !important; } .object-fit-md-fill { -o-object-fit: fill !important; object-fit: fill !important; } .object-fit-md-scale { -o-object-fit: scale-down !important; object-fit: scale-down !important; } .object-fit-md-none { -o-object-fit: none !important; object-fit: none !important; } .d-md-inline { display: inline !important; } .d-md-inline-block { display: inline-block !important; } .d-md-block { display: block !important; } .d-md-grid { display: grid !important; } .d-md-table { display: table !important; } .d-md-table-row { display: table-row !important; } .d-md-table-cell { display: table-cell !important; } .d-md-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-md-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } .d-md-none { display: none !important; } .border-md-solid { border-style: solid !important; } .border-md-dashed { border-style: dashed !important; } .border-md-none { border-style: none !important; } .flex-md-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-md-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-md-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-md-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-md-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-md-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-md-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-md-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-md-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .flex-md-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-md-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-md-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .justify-content-md-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-md-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-md-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-md-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-md-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .justify-content-md-evenly { -webkit-box-pack: space-evenly !important; -ms-flex-pack: space-evenly !important; justify-content: space-evenly !important; } .align-items-md-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-md-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-md-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-md-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-md-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-md-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-md-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-md-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-md-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-md-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-md-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-md-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-md-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-md-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-md-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-md-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-md-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } .order-md-first { -webkit-box-ordinal-group: 0 !important; -ms-flex-order: -1 !important; order: -1 !important; } .order-md-0 { -webkit-box-ordinal-group: 1 !important; -ms-flex-order: 0 !important; order: 0 !important; } .order-md-1 { -webkit-box-ordinal-group: 2 !important; -ms-flex-order: 1 !important; order: 1 !important; } .order-md-2 { -webkit-box-ordinal-group: 3 !important; -ms-flex-order: 2 !important; order: 2 !important; } .order-md-3 { -webkit-box-ordinal-group: 4 !important; -ms-flex-order: 3 !important; order: 3 !important; } .order-md-4 { -webkit-box-ordinal-group: 5 !important; -ms-flex-order: 4 !important; order: 4 !important; } .order-md-5 { -webkit-box-ordinal-group: 6 !important; -ms-flex-order: 5 !important; order: 5 !important; } .order-md-last { -webkit-box-ordinal-group: 7 !important; -ms-flex-order: 6 !important; order: 6 !important; } .m-md-0 { margin: 0 !important; } .m-md-50 { margin: 0.125rem !important; } .m-md-1 { margin: 0.25rem !important; } .m-md-1_5 { margin: 0.375rem !important; } .m-md-2 { margin: 0.5rem !important; } .m-md-3 { margin: 0.75rem !important; } .m-md-4 { margin: 1rem !important; } .m-md-5 { margin: 1.25rem !important; } .m-md-6 { margin: 1.5rem !important; } .m-md-7 { margin: 1.75rem !important; } .m-md-8 { margin: 2rem !important; } .m-md-9 { margin: 2.25rem !important; } .m-md-10 { margin: 2.5rem !important; } .m-md-11 { margin: 2.75rem !important; } .m-md-12 { margin: 3rem !important; } .m-md-auto { margin: auto !important; } .mx-md-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .mx-md-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .mx-md-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .mx-md-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .mx-md-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .mx-md-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .mx-md-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .mx-md-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .mx-md-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .mx-md-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .mx-md-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .mx-md-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .mx-md-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .mx-md-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .mx-md-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .mx-md-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .my-md-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .my-md-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .my-md-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .my-md-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .my-md-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .my-md-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .my-md-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .my-md-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .my-md-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .my-md-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .my-md-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .my-md-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .my-md-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .my-md-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .my-md-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .my-md-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; -webkit-margin-after: auto !important; margin-block-end: auto !important; } .mt-md-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; } .mt-md-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; } .mt-md-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; } .mt-md-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; } .mt-md-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; } .mt-md-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; } .mt-md-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; } .mt-md-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; } .mt-md-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; } .mt-md-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; } .mt-md-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; } .mt-md-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; } .mt-md-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; } .mt-md-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; } .mt-md-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; } .mt-md-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; } .me-md-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; } .me-md-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; } .me-md-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; } .me-md-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; } .me-md-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; } .me-md-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; } .me-md-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; } .me-md-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; } .me-md-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; } .me-md-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; } .me-md-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; } .me-md-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; } .me-md-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; } .me-md-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; } .me-md-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; } .me-md-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; } .mb-md-0 { -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .mb-md-50 { -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .mb-md-1 { -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .mb-md-1_5 { -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .mb-md-2 { -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .mb-md-3 { -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .mb-md-4 { -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .mb-md-5 { -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .mb-md-6 { -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .mb-md-7 { -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .mb-md-8 { -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .mb-md-9 { -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .mb-md-10 { -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .mb-md-11 { -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .mb-md-12 { -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .mb-md-auto { -webkit-margin-after: auto !important; margin-block-end: auto !important; } .ms-md-0 { -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .ms-md-50 { -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .ms-md-1 { -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .ms-md-1_5 { -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .ms-md-2 { -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .ms-md-3 { -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .ms-md-4 { -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .ms-md-5 { -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .ms-md-6 { -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .ms-md-7 { -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .ms-md-8 { -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .ms-md-9 { -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .ms-md-10 { -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .ms-md-11 { -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .ms-md-12 { -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .ms-md-auto { -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .m-md-n50 { margin: -0.125rem !important; } .m-md-n1 { margin: -0.25rem !important; } .m-md-n1_5 { margin: -0.375rem !important; } .m-md-n2 { margin: -0.5rem !important; } .m-md-n3 { margin: -0.75rem !important; } .m-md-n4 { margin: -1rem !important; } .m-md-n5 { margin: -1.25rem !important; } .m-md-n6 { margin: -1.5rem !important; } .m-md-n7 { margin: -1.75rem !important; } .m-md-n8 { margin: -2rem !important; } .m-md-n9 { margin: -2.25rem !important; } .m-md-n10 { margin: -2.5rem !important; } .m-md-n11 { margin: -2.75rem !important; } .m-md-n12 { margin: -3rem !important; } .mx-md-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .mx-md-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .mx-md-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .mx-md-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .mx-md-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .mx-md-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .mx-md-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .mx-md-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .mx-md-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .mx-md-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .mx-md-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .mx-md-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .mx-md-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .mx-md-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .my-md-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .my-md-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .my-md-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .my-md-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .my-md-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .my-md-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .my-md-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .my-md-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .my-md-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .my-md-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .my-md-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .my-md-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .my-md-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .my-md-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .mt-md-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; } .mt-md-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; } .mt-md-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; } .mt-md-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; } .mt-md-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; } .mt-md-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; } .mt-md-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; } .mt-md-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; } .mt-md-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; } .mt-md-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; } .mt-md-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; } .mt-md-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; } .mt-md-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; } .mt-md-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; } .me-md-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; } .me-md-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; } .me-md-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; } .me-md-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; } .me-md-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; } .me-md-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; } .me-md-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; } .me-md-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; } .me-md-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; } .me-md-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; } .me-md-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; } .me-md-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; } .me-md-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; } .me-md-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; } .mb-md-n50 { -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .mb-md-n1 { -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .mb-md-n1_5 { -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .mb-md-n2 { -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .mb-md-n3 { -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .mb-md-n4 { -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .mb-md-n5 { -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .mb-md-n6 { -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .mb-md-n7 { -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .mb-md-n8 { -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .mb-md-n9 { -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .mb-md-n10 { -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .mb-md-n11 { -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .mb-md-n12 { -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .ms-md-n50 { -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .ms-md-n1 { -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .ms-md-n1_5 { -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .ms-md-n2 { -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .ms-md-n3 { -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .ms-md-n4 { -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .ms-md-n5 { -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .ms-md-n6 { -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .ms-md-n7 { -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .ms-md-n8 { -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .ms-md-n9 { -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .ms-md-n10 { -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .ms-md-n11 { -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .ms-md-n12 { -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .p-md-0 { padding: 0 !important; } .p-md-50 { padding: 0.125rem !important; } .p-md-1 { padding: 0.25rem !important; } .p-md-1_5 { padding: 0.375rem !important; } .p-md-2 { padding: 0.5rem !important; } .p-md-3 { padding: 0.75rem !important; } .p-md-4 { padding: 1rem !important; } .p-md-5 { padding: 1.25rem !important; } .p-md-6 { padding: 1.5rem !important; } .p-md-7 { padding: 1.75rem !important; } .p-md-8 { padding: 2rem !important; } .p-md-9 { padding: 2.25rem !important; } .p-md-10 { padding: 2.5rem !important; } .p-md-11 { padding: 2.75rem !important; } .p-md-12 { padding: 3rem !important; } .px-md-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .px-md-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .px-md-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .px-md-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .px-md-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .px-md-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .px-md-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .px-md-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .px-md-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .px-md-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .px-md-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .px-md-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .px-md-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .px-md-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .px-md-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .py-md-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .py-md-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .py-md-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .py-md-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .py-md-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .py-md-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .py-md-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .py-md-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .py-md-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .py-md-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .py-md-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .py-md-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .py-md-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .py-md-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .py-md-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .pt-md-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; } .pt-md-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; } .pt-md-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; } .pt-md-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; } .pt-md-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; } .pt-md-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; } .pt-md-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; } .pt-md-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; } .pt-md-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; } .pt-md-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; } .pt-md-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; } .pt-md-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; } .pt-md-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; } .pt-md-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; } .pt-md-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; } .pe-md-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; } .pe-md-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; } .pe-md-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; } .pe-md-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; } .pe-md-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; } .pe-md-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; } .pe-md-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; } .pe-md-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; } .pe-md-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; } .pe-md-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; } .pe-md-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; } .pe-md-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; } .pe-md-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; } .pe-md-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; } .pe-md-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; } .pb-md-0 { -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .pb-md-50 { -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .pb-md-1 { -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .pb-md-1_5 { -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .pb-md-2 { -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .pb-md-3 { -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .pb-md-4 { -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .pb-md-5 { -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .pb-md-6 { -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .pb-md-7 { -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .pb-md-8 { -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .pb-md-9 { -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .pb-md-10 { -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .pb-md-11 { -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .pb-md-12 { -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .ps-md-0 { -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .ps-md-50 { -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .ps-md-1 { -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .ps-md-1_5 { -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .ps-md-2 { -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .ps-md-3 { -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .ps-md-4 { -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .ps-md-5 { -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .ps-md-6 { -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .ps-md-7 { -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .ps-md-8 { -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .ps-md-9 { -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .ps-md-10 { -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .ps-md-11 { -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .ps-md-12 { -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .gap-md-0 { gap: 0 !important; } .gap-md-50 { gap: 0.125rem !important; } .gap-md-1 { gap: 0.25rem !important; } .gap-md-1_5 { gap: 0.375rem !important; } .gap-md-2 { gap: 0.5rem !important; } .gap-md-3 { gap: 0.75rem !important; } .gap-md-4 { gap: 1rem !important; } .gap-md-5 { gap: 1.25rem !important; } .gap-md-6 { gap: 1.5rem !important; } .gap-md-7 { gap: 1.75rem !important; } .gap-md-8 { gap: 2rem !important; } .gap-md-9 { gap: 2.25rem !important; } .gap-md-10 { gap: 2.5rem !important; } .gap-md-11 { gap: 2.75rem !important; } .gap-md-12 { gap: 3rem !important; } .row-gap-md-0 { row-gap: 0 !important; } .row-gap-md-50 { row-gap: 0.125rem !important; } .row-gap-md-1 { row-gap: 0.25rem !important; } .row-gap-md-1_5 { row-gap: 0.375rem !important; } .row-gap-md-2 { row-gap: 0.5rem !important; } .row-gap-md-3 { row-gap: 0.75rem !important; } .row-gap-md-4 { row-gap: 1rem !important; } .row-gap-md-5 { row-gap: 1.25rem !important; } .row-gap-md-6 { row-gap: 1.5rem !important; } .row-gap-md-7 { row-gap: 1.75rem !important; } .row-gap-md-8 { row-gap: 2rem !important; } .row-gap-md-9 { row-gap: 2.25rem !important; } .row-gap-md-10 { row-gap: 2.5rem !important; } .row-gap-md-11 { row-gap: 2.75rem !important; } .row-gap-md-12 { row-gap: 3rem !important; } .column-gap-md-0 { -webkit-column-gap: 0 !important; -moz-column-gap: 0 !important; column-gap: 0 !important; } .column-gap-md-50 { -webkit-column-gap: 0.125rem !important; -moz-column-gap: 0.125rem !important; column-gap: 0.125rem !important; } .column-gap-md-1 { -webkit-column-gap: 0.25rem !important; -moz-column-gap: 0.25rem !important; column-gap: 0.25rem !important; } .column-gap-md-1_5 { -webkit-column-gap: 0.375rem !important; -moz-column-gap: 0.375rem !important; column-gap: 0.375rem !important; } .column-gap-md-2 { -webkit-column-gap: 0.5rem !important; -moz-column-gap: 0.5rem !important; column-gap: 0.5rem !important; } .column-gap-md-3 { -webkit-column-gap: 0.75rem !important; -moz-column-gap: 0.75rem !important; column-gap: 0.75rem !important; } .column-gap-md-4 { -webkit-column-gap: 1rem !important; -moz-column-gap: 1rem !important; column-gap: 1rem !important; } .column-gap-md-5 { -webkit-column-gap: 1.25rem !important; -moz-column-gap: 1.25rem !important; column-gap: 1.25rem !important; } .column-gap-md-6 { -webkit-column-gap: 1.5rem !important; -moz-column-gap: 1.5rem !important; column-gap: 1.5rem !important; } .column-gap-md-7 { -webkit-column-gap: 1.75rem !important; -moz-column-gap: 1.75rem !important; column-gap: 1.75rem !important; } .column-gap-md-8 { -webkit-column-gap: 2rem !important; -moz-column-gap: 2rem !important; column-gap: 2rem !important; } .column-gap-md-9 { -webkit-column-gap: 2.25rem !important; -moz-column-gap: 2.25rem !important; column-gap: 2.25rem !important; } .column-gap-md-10 { -webkit-column-gap: 2.5rem !important; -moz-column-gap: 2.5rem !important; column-gap: 2.5rem !important; } .column-gap-md-11 { -webkit-column-gap: 2.75rem !important; -moz-column-gap: 2.75rem !important; column-gap: 2.75rem !important; } .column-gap-md-12 { -webkit-column-gap: 3rem !important; -moz-column-gap: 3rem !important; column-gap: 3rem !important; } .text-md-start { text-align: start !important; } .text-md-end { text-align: end !important; } .text-md-center { text-align: center !important; } } @media (min-width: 992px) { .float-lg-start { float: inline-start !important; } .float-lg-end { float: inline-end !important; } .float-lg-none { float: none !important; } .object-fit-lg-contain { -o-object-fit: contain !important; object-fit: contain !important; } .object-fit-lg-cover { -o-object-fit: cover !important; object-fit: cover !important; } .object-fit-lg-fill { -o-object-fit: fill !important; object-fit: fill !important; } .object-fit-lg-scale { -o-object-fit: scale-down !important; object-fit: scale-down !important; } .object-fit-lg-none { -o-object-fit: none !important; object-fit: none !important; } .d-lg-inline { display: inline !important; } .d-lg-inline-block { display: inline-block !important; } .d-lg-block { display: block !important; } .d-lg-grid { display: grid !important; } .d-lg-table { display: table !important; } .d-lg-table-row { display: table-row !important; } .d-lg-table-cell { display: table-cell !important; } .d-lg-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-lg-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } .d-lg-none { display: none !important; } .border-lg-solid { border-style: solid !important; } .border-lg-dashed { border-style: dashed !important; } .border-lg-none { border-style: none !important; } .flex-lg-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-lg-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-lg-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-lg-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-lg-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-lg-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-lg-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-lg-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-lg-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .flex-lg-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-lg-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-lg-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .justify-content-lg-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-lg-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-lg-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-lg-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-lg-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .justify-content-lg-evenly { -webkit-box-pack: space-evenly !important; -ms-flex-pack: space-evenly !important; justify-content: space-evenly !important; } .align-items-lg-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-lg-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-lg-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-lg-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-lg-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-lg-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-lg-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-lg-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-lg-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-lg-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-lg-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-lg-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-lg-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-lg-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-lg-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-lg-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-lg-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } .order-lg-first { -webkit-box-ordinal-group: 0 !important; -ms-flex-order: -1 !important; order: -1 !important; } .order-lg-0 { -webkit-box-ordinal-group: 1 !important; -ms-flex-order: 0 !important; order: 0 !important; } .order-lg-1 { -webkit-box-ordinal-group: 2 !important; -ms-flex-order: 1 !important; order: 1 !important; } .order-lg-2 { -webkit-box-ordinal-group: 3 !important; -ms-flex-order: 2 !important; order: 2 !important; } .order-lg-3 { -webkit-box-ordinal-group: 4 !important; -ms-flex-order: 3 !important; order: 3 !important; } .order-lg-4 { -webkit-box-ordinal-group: 5 !important; -ms-flex-order: 4 !important; order: 4 !important; } .order-lg-5 { -webkit-box-ordinal-group: 6 !important; -ms-flex-order: 5 !important; order: 5 !important; } .order-lg-last { -webkit-box-ordinal-group: 7 !important; -ms-flex-order: 6 !important; order: 6 !important; } .m-lg-0 { margin: 0 !important; } .m-lg-50 { margin: 0.125rem !important; } .m-lg-1 { margin: 0.25rem !important; } .m-lg-1_5 { margin: 0.375rem !important; } .m-lg-2 { margin: 0.5rem !important; } .m-lg-3 { margin: 0.75rem !important; } .m-lg-4 { margin: 1rem !important; } .m-lg-5 { margin: 1.25rem !important; } .m-lg-6 { margin: 1.5rem !important; } .m-lg-7 { margin: 1.75rem !important; } .m-lg-8 { margin: 2rem !important; } .m-lg-9 { margin: 2.25rem !important; } .m-lg-10 { margin: 2.5rem !important; } .m-lg-11 { margin: 2.75rem !important; } .m-lg-12 { margin: 3rem !important; } .m-lg-auto { margin: auto !important; } .mx-lg-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .mx-lg-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .mx-lg-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .mx-lg-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .mx-lg-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .mx-lg-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .mx-lg-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .mx-lg-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .mx-lg-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .mx-lg-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .mx-lg-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .mx-lg-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .mx-lg-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .mx-lg-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .mx-lg-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .mx-lg-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .my-lg-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .my-lg-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .my-lg-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .my-lg-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .my-lg-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .my-lg-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .my-lg-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .my-lg-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .my-lg-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .my-lg-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .my-lg-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .my-lg-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .my-lg-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .my-lg-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .my-lg-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .my-lg-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; -webkit-margin-after: auto !important; margin-block-end: auto !important; } .mt-lg-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; } .mt-lg-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; } .mt-lg-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; } .mt-lg-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; } .mt-lg-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; } .mt-lg-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; } .mt-lg-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; } .mt-lg-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; } .mt-lg-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; } .mt-lg-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; } .mt-lg-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; } .mt-lg-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; } .mt-lg-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; } .mt-lg-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; } .mt-lg-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; } .mt-lg-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; } .me-lg-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; } .me-lg-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; } .me-lg-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; } .me-lg-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; } .me-lg-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; } .me-lg-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; } .me-lg-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; } .me-lg-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; } .me-lg-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; } .me-lg-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; } .me-lg-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; } .me-lg-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; } .me-lg-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; } .me-lg-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; } .me-lg-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; } .me-lg-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; } .mb-lg-0 { -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .mb-lg-50 { -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .mb-lg-1 { -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .mb-lg-1_5 { -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .mb-lg-2 { -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .mb-lg-3 { -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .mb-lg-4 { -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .mb-lg-5 { -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .mb-lg-6 { -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .mb-lg-7 { -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .mb-lg-8 { -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .mb-lg-9 { -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .mb-lg-10 { -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .mb-lg-11 { -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .mb-lg-12 { -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .mb-lg-auto { -webkit-margin-after: auto !important; margin-block-end: auto !important; } .ms-lg-0 { -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .ms-lg-50 { -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .ms-lg-1 { -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .ms-lg-1_5 { -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .ms-lg-2 { -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .ms-lg-3 { -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .ms-lg-4 { -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .ms-lg-5 { -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .ms-lg-6 { -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .ms-lg-7 { -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .ms-lg-8 { -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .ms-lg-9 { -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .ms-lg-10 { -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .ms-lg-11 { -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .ms-lg-12 { -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .ms-lg-auto { -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .m-lg-n50 { margin: -0.125rem !important; } .m-lg-n1 { margin: -0.25rem !important; } .m-lg-n1_5 { margin: -0.375rem !important; } .m-lg-n2 { margin: -0.5rem !important; } .m-lg-n3 { margin: -0.75rem !important; } .m-lg-n4 { margin: -1rem !important; } .m-lg-n5 { margin: -1.25rem !important; } .m-lg-n6 { margin: -1.5rem !important; } .m-lg-n7 { margin: -1.75rem !important; } .m-lg-n8 { margin: -2rem !important; } .m-lg-n9 { margin: -2.25rem !important; } .m-lg-n10 { margin: -2.5rem !important; } .m-lg-n11 { margin: -2.75rem !important; } .m-lg-n12 { margin: -3rem !important; } .mx-lg-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .mx-lg-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .mx-lg-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .mx-lg-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .mx-lg-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .mx-lg-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .mx-lg-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .mx-lg-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .mx-lg-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .mx-lg-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .mx-lg-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .mx-lg-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .mx-lg-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .mx-lg-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .my-lg-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .my-lg-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .my-lg-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .my-lg-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .my-lg-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .my-lg-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .my-lg-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .my-lg-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .my-lg-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .my-lg-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .my-lg-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .my-lg-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .my-lg-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .my-lg-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .mt-lg-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; } .mt-lg-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; } .mt-lg-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; } .mt-lg-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; } .mt-lg-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; } .mt-lg-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; } .mt-lg-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; } .mt-lg-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; } .mt-lg-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; } .mt-lg-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; } .mt-lg-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; } .mt-lg-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; } .mt-lg-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; } .mt-lg-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; } .me-lg-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; } .me-lg-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; } .me-lg-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; } .me-lg-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; } .me-lg-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; } .me-lg-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; } .me-lg-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; } .me-lg-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; } .me-lg-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; } .me-lg-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; } .me-lg-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; } .me-lg-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; } .me-lg-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; } .me-lg-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; } .mb-lg-n50 { -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .mb-lg-n1 { -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .mb-lg-n1_5 { -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .mb-lg-n2 { -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .mb-lg-n3 { -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .mb-lg-n4 { -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .mb-lg-n5 { -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .mb-lg-n6 { -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .mb-lg-n7 { -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .mb-lg-n8 { -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .mb-lg-n9 { -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .mb-lg-n10 { -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .mb-lg-n11 { -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .mb-lg-n12 { -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .ms-lg-n50 { -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .ms-lg-n1 { -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .ms-lg-n1_5 { -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .ms-lg-n2 { -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .ms-lg-n3 { -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .ms-lg-n4 { -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .ms-lg-n5 { -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .ms-lg-n6 { -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .ms-lg-n7 { -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .ms-lg-n8 { -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .ms-lg-n9 { -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .ms-lg-n10 { -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .ms-lg-n11 { -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .ms-lg-n12 { -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .p-lg-0 { padding: 0 !important; } .p-lg-50 { padding: 0.125rem !important; } .p-lg-1 { padding: 0.25rem !important; } .p-lg-1_5 { padding: 0.375rem !important; } .p-lg-2 { padding: 0.5rem !important; } .p-lg-3 { padding: 0.75rem !important; } .p-lg-4 { padding: 1rem !important; } .p-lg-5 { padding: 1.25rem !important; } .p-lg-6 { padding: 1.5rem !important; } .p-lg-7 { padding: 1.75rem !important; } .p-lg-8 { padding: 2rem !important; } .p-lg-9 { padding: 2.25rem !important; } .p-lg-10 { padding: 2.5rem !important; } .p-lg-11 { padding: 2.75rem !important; } .p-lg-12 { padding: 3rem !important; } .px-lg-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .px-lg-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .px-lg-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .px-lg-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .px-lg-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .px-lg-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .px-lg-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .px-lg-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .px-lg-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .px-lg-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .px-lg-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .px-lg-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .px-lg-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .px-lg-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .px-lg-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .py-lg-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .py-lg-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .py-lg-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .py-lg-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .py-lg-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .py-lg-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .py-lg-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .py-lg-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .py-lg-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .py-lg-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .py-lg-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .py-lg-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .py-lg-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .py-lg-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .py-lg-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .pt-lg-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; } .pt-lg-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; } .pt-lg-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; } .pt-lg-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; } .pt-lg-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; } .pt-lg-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; } .pt-lg-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; } .pt-lg-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; } .pt-lg-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; } .pt-lg-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; } .pt-lg-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; } .pt-lg-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; } .pt-lg-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; } .pt-lg-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; } .pt-lg-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; } .pe-lg-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; } .pe-lg-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; } .pe-lg-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; } .pe-lg-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; } .pe-lg-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; } .pe-lg-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; } .pe-lg-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; } .pe-lg-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; } .pe-lg-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; } .pe-lg-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; } .pe-lg-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; } .pe-lg-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; } .pe-lg-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; } .pe-lg-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; } .pe-lg-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; } .pb-lg-0 { -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .pb-lg-50 { -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .pb-lg-1 { -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .pb-lg-1_5 { -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .pb-lg-2 { -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .pb-lg-3 { -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .pb-lg-4 { -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .pb-lg-5 { -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .pb-lg-6 { -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .pb-lg-7 { -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .pb-lg-8 { -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .pb-lg-9 { -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .pb-lg-10 { -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .pb-lg-11 { -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .pb-lg-12 { -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .ps-lg-0 { -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .ps-lg-50 { -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .ps-lg-1 { -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .ps-lg-1_5 { -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .ps-lg-2 { -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .ps-lg-3 { -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .ps-lg-4 { -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .ps-lg-5 { -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .ps-lg-6 { -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .ps-lg-7 { -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .ps-lg-8 { -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .ps-lg-9 { -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .ps-lg-10 { -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .ps-lg-11 { -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .ps-lg-12 { -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .gap-lg-0 { gap: 0 !important; } .gap-lg-50 { gap: 0.125rem !important; } .gap-lg-1 { gap: 0.25rem !important; } .gap-lg-1_5 { gap: 0.375rem !important; } .gap-lg-2 { gap: 0.5rem !important; } .gap-lg-3 { gap: 0.75rem !important; } .gap-lg-4 { gap: 1rem !important; } .gap-lg-5 { gap: 1.25rem !important; } .gap-lg-6 { gap: 1.5rem !important; } .gap-lg-7 { gap: 1.75rem !important; } .gap-lg-8 { gap: 2rem !important; } .gap-lg-9 { gap: 2.25rem !important; } .gap-lg-10 { gap: 2.5rem !important; } .gap-lg-11 { gap: 2.75rem !important; } .gap-lg-12 { gap: 3rem !important; } .row-gap-lg-0 { row-gap: 0 !important; } .row-gap-lg-50 { row-gap: 0.125rem !important; } .row-gap-lg-1 { row-gap: 0.25rem !important; } .row-gap-lg-1_5 { row-gap: 0.375rem !important; } .row-gap-lg-2 { row-gap: 0.5rem !important; } .row-gap-lg-3 { row-gap: 0.75rem !important; } .row-gap-lg-4 { row-gap: 1rem !important; } .row-gap-lg-5 { row-gap: 1.25rem !important; } .row-gap-lg-6 { row-gap: 1.5rem !important; } .row-gap-lg-7 { row-gap: 1.75rem !important; } .row-gap-lg-8 { row-gap: 2rem !important; } .row-gap-lg-9 { row-gap: 2.25rem !important; } .row-gap-lg-10 { row-gap: 2.5rem !important; } .row-gap-lg-11 { row-gap: 2.75rem !important; } .row-gap-lg-12 { row-gap: 3rem !important; } .column-gap-lg-0 { -webkit-column-gap: 0 !important; -moz-column-gap: 0 !important; column-gap: 0 !important; } .column-gap-lg-50 { -webkit-column-gap: 0.125rem !important; -moz-column-gap: 0.125rem !important; column-gap: 0.125rem !important; } .column-gap-lg-1 { -webkit-column-gap: 0.25rem !important; -moz-column-gap: 0.25rem !important; column-gap: 0.25rem !important; } .column-gap-lg-1_5 { -webkit-column-gap: 0.375rem !important; -moz-column-gap: 0.375rem !important; column-gap: 0.375rem !important; } .column-gap-lg-2 { -webkit-column-gap: 0.5rem !important; -moz-column-gap: 0.5rem !important; column-gap: 0.5rem !important; } .column-gap-lg-3 { -webkit-column-gap: 0.75rem !important; -moz-column-gap: 0.75rem !important; column-gap: 0.75rem !important; } .column-gap-lg-4 { -webkit-column-gap: 1rem !important; -moz-column-gap: 1rem !important; column-gap: 1rem !important; } .column-gap-lg-5 { -webkit-column-gap: 1.25rem !important; -moz-column-gap: 1.25rem !important; column-gap: 1.25rem !important; } .column-gap-lg-6 { -webkit-column-gap: 1.5rem !important; -moz-column-gap: 1.5rem !important; column-gap: 1.5rem !important; } .column-gap-lg-7 { -webkit-column-gap: 1.75rem !important; -moz-column-gap: 1.75rem !important; column-gap: 1.75rem !important; } .column-gap-lg-8 { -webkit-column-gap: 2rem !important; -moz-column-gap: 2rem !important; column-gap: 2rem !important; } .column-gap-lg-9 { -webkit-column-gap: 2.25rem !important; -moz-column-gap: 2.25rem !important; column-gap: 2.25rem !important; } .column-gap-lg-10 { -webkit-column-gap: 2.5rem !important; -moz-column-gap: 2.5rem !important; column-gap: 2.5rem !important; } .column-gap-lg-11 { -webkit-column-gap: 2.75rem !important; -moz-column-gap: 2.75rem !important; column-gap: 2.75rem !important; } .column-gap-lg-12 { -webkit-column-gap: 3rem !important; -moz-column-gap: 3rem !important; column-gap: 3rem !important; } .text-lg-start { text-align: start !important; } .text-lg-end { text-align: end !important; } .text-lg-center { text-align: center !important; } } @media (min-width: 1200px) { .float-xl-start { float: inline-start !important; } .float-xl-end { float: inline-end !important; } .float-xl-none { float: none !important; } .object-fit-xl-contain { -o-object-fit: contain !important; object-fit: contain !important; } .object-fit-xl-cover { -o-object-fit: cover !important; object-fit: cover !important; } .object-fit-xl-fill { -o-object-fit: fill !important; object-fit: fill !important; } .object-fit-xl-scale { -o-object-fit: scale-down !important; object-fit: scale-down !important; } .object-fit-xl-none { -o-object-fit: none !important; object-fit: none !important; } .d-xl-inline { display: inline !important; } .d-xl-inline-block { display: inline-block !important; } .d-xl-block { display: block !important; } .d-xl-grid { display: grid !important; } .d-xl-table { display: table !important; } .d-xl-table-row { display: table-row !important; } .d-xl-table-cell { display: table-cell !important; } .d-xl-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-xl-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } .d-xl-none { display: none !important; } .border-xl-solid { border-style: solid !important; } .border-xl-dashed { border-style: dashed !important; } .border-xl-none { border-style: none !important; } .flex-xl-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-xl-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-xl-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-xl-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-xl-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-xl-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-xl-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-xl-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-xl-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .flex-xl-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-xl-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-xl-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .justify-content-xl-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-xl-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-xl-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-xl-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-xl-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .justify-content-xl-evenly { -webkit-box-pack: space-evenly !important; -ms-flex-pack: space-evenly !important; justify-content: space-evenly !important; } .align-items-xl-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-xl-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-xl-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-xl-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-xl-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-xl-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-xl-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-xl-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-xl-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-xl-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-xl-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-xl-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-xl-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-xl-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-xl-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-xl-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-xl-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } .order-xl-first { -webkit-box-ordinal-group: 0 !important; -ms-flex-order: -1 !important; order: -1 !important; } .order-xl-0 { -webkit-box-ordinal-group: 1 !important; -ms-flex-order: 0 !important; order: 0 !important; } .order-xl-1 { -webkit-box-ordinal-group: 2 !important; -ms-flex-order: 1 !important; order: 1 !important; } .order-xl-2 { -webkit-box-ordinal-group: 3 !important; -ms-flex-order: 2 !important; order: 2 !important; } .order-xl-3 { -webkit-box-ordinal-group: 4 !important; -ms-flex-order: 3 !important; order: 3 !important; } .order-xl-4 { -webkit-box-ordinal-group: 5 !important; -ms-flex-order: 4 !important; order: 4 !important; } .order-xl-5 { -webkit-box-ordinal-group: 6 !important; -ms-flex-order: 5 !important; order: 5 !important; } .order-xl-last { -webkit-box-ordinal-group: 7 !important; -ms-flex-order: 6 !important; order: 6 !important; } .m-xl-0 { margin: 0 !important; } .m-xl-50 { margin: 0.125rem !important; } .m-xl-1 { margin: 0.25rem !important; } .m-xl-1_5 { margin: 0.375rem !important; } .m-xl-2 { margin: 0.5rem !important; } .m-xl-3 { margin: 0.75rem !important; } .m-xl-4 { margin: 1rem !important; } .m-xl-5 { margin: 1.25rem !important; } .m-xl-6 { margin: 1.5rem !important; } .m-xl-7 { margin: 1.75rem !important; } .m-xl-8 { margin: 2rem !important; } .m-xl-9 { margin: 2.25rem !important; } .m-xl-10 { margin: 2.5rem !important; } .m-xl-11 { margin: 2.75rem !important; } .m-xl-12 { margin: 3rem !important; } .m-xl-auto { margin: auto !important; } .mx-xl-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .mx-xl-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .mx-xl-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .mx-xl-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .mx-xl-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .mx-xl-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .mx-xl-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .mx-xl-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .mx-xl-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .mx-xl-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .mx-xl-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .mx-xl-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .mx-xl-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .mx-xl-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .mx-xl-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .mx-xl-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .my-xl-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .my-xl-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .my-xl-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .my-xl-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .my-xl-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .my-xl-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .my-xl-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .my-xl-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .my-xl-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .my-xl-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .my-xl-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .my-xl-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .my-xl-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .my-xl-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .my-xl-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .my-xl-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; -webkit-margin-after: auto !important; margin-block-end: auto !important; } .mt-xl-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; } .mt-xl-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; } .mt-xl-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; } .mt-xl-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; } .mt-xl-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; } .mt-xl-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; } .mt-xl-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; } .mt-xl-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; } .mt-xl-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; } .mt-xl-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; } .mt-xl-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; } .mt-xl-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; } .mt-xl-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; } .mt-xl-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; } .mt-xl-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; } .mt-xl-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; } .me-xl-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; } .me-xl-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; } .me-xl-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; } .me-xl-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; } .me-xl-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; } .me-xl-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; } .me-xl-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; } .me-xl-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; } .me-xl-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; } .me-xl-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; } .me-xl-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; } .me-xl-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; } .me-xl-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; } .me-xl-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; } .me-xl-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; } .me-xl-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; } .mb-xl-0 { -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .mb-xl-50 { -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .mb-xl-1 { -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .mb-xl-1_5 { -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .mb-xl-2 { -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .mb-xl-3 { -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .mb-xl-4 { -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .mb-xl-5 { -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .mb-xl-6 { -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .mb-xl-7 { -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .mb-xl-8 { -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .mb-xl-9 { -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .mb-xl-10 { -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .mb-xl-11 { -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .mb-xl-12 { -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .mb-xl-auto { -webkit-margin-after: auto !important; margin-block-end: auto !important; } .ms-xl-0 { -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .ms-xl-50 { -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .ms-xl-1 { -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .ms-xl-1_5 { -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .ms-xl-2 { -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .ms-xl-3 { -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .ms-xl-4 { -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .ms-xl-5 { -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .ms-xl-6 { -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .ms-xl-7 { -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .ms-xl-8 { -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .ms-xl-9 { -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .ms-xl-10 { -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .ms-xl-11 { -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .ms-xl-12 { -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .ms-xl-auto { -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .m-xl-n50 { margin: -0.125rem !important; } .m-xl-n1 { margin: -0.25rem !important; } .m-xl-n1_5 { margin: -0.375rem !important; } .m-xl-n2 { margin: -0.5rem !important; } .m-xl-n3 { margin: -0.75rem !important; } .m-xl-n4 { margin: -1rem !important; } .m-xl-n5 { margin: -1.25rem !important; } .m-xl-n6 { margin: -1.5rem !important; } .m-xl-n7 { margin: -1.75rem !important; } .m-xl-n8 { margin: -2rem !important; } .m-xl-n9 { margin: -2.25rem !important; } .m-xl-n10 { margin: -2.5rem !important; } .m-xl-n11 { margin: -2.75rem !important; } .m-xl-n12 { margin: -3rem !important; } .mx-xl-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .mx-xl-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .mx-xl-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .mx-xl-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .mx-xl-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .mx-xl-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .mx-xl-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .mx-xl-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .mx-xl-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .mx-xl-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .mx-xl-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .mx-xl-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .mx-xl-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .mx-xl-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .my-xl-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .my-xl-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .my-xl-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .my-xl-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .my-xl-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .my-xl-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .my-xl-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .my-xl-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .my-xl-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .my-xl-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .my-xl-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .my-xl-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .my-xl-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .my-xl-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .mt-xl-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; } .mt-xl-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; } .mt-xl-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; } .mt-xl-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; } .mt-xl-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; } .mt-xl-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; } .mt-xl-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; } .mt-xl-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; } .mt-xl-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; } .mt-xl-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; } .mt-xl-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; } .mt-xl-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; } .mt-xl-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; } .mt-xl-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; } .me-xl-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; } .me-xl-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; } .me-xl-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; } .me-xl-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; } .me-xl-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; } .me-xl-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; } .me-xl-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; } .me-xl-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; } .me-xl-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; } .me-xl-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; } .me-xl-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; } .me-xl-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; } .me-xl-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; } .me-xl-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; } .mb-xl-n50 { -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .mb-xl-n1 { -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .mb-xl-n1_5 { -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .mb-xl-n2 { -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .mb-xl-n3 { -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .mb-xl-n4 { -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .mb-xl-n5 { -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .mb-xl-n6 { -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .mb-xl-n7 { -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .mb-xl-n8 { -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .mb-xl-n9 { -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .mb-xl-n10 { -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .mb-xl-n11 { -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .mb-xl-n12 { -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .ms-xl-n50 { -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .ms-xl-n1 { -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .ms-xl-n1_5 { -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .ms-xl-n2 { -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .ms-xl-n3 { -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .ms-xl-n4 { -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .ms-xl-n5 { -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .ms-xl-n6 { -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .ms-xl-n7 { -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .ms-xl-n8 { -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .ms-xl-n9 { -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .ms-xl-n10 { -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .ms-xl-n11 { -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .ms-xl-n12 { -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .p-xl-0 { padding: 0 !important; } .p-xl-50 { padding: 0.125rem !important; } .p-xl-1 { padding: 0.25rem !important; } .p-xl-1_5 { padding: 0.375rem !important; } .p-xl-2 { padding: 0.5rem !important; } .p-xl-3 { padding: 0.75rem !important; } .p-xl-4 { padding: 1rem !important; } .p-xl-5 { padding: 1.25rem !important; } .p-xl-6 { padding: 1.5rem !important; } .p-xl-7 { padding: 1.75rem !important; } .p-xl-8 { padding: 2rem !important; } .p-xl-9 { padding: 2.25rem !important; } .p-xl-10 { padding: 2.5rem !important; } .p-xl-11 { padding: 2.75rem !important; } .p-xl-12 { padding: 3rem !important; } .px-xl-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .px-xl-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .px-xl-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .px-xl-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .px-xl-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .px-xl-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .px-xl-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .px-xl-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .px-xl-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .px-xl-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .px-xl-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .px-xl-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .px-xl-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .px-xl-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .px-xl-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .py-xl-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .py-xl-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .py-xl-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .py-xl-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .py-xl-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .py-xl-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .py-xl-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .py-xl-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .py-xl-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .py-xl-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .py-xl-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .py-xl-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .py-xl-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .py-xl-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .py-xl-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .pt-xl-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; } .pt-xl-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; } .pt-xl-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; } .pt-xl-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; } .pt-xl-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; } .pt-xl-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; } .pt-xl-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; } .pt-xl-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; } .pt-xl-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; } .pt-xl-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; } .pt-xl-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; } .pt-xl-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; } .pt-xl-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; } .pt-xl-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; } .pt-xl-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; } .pe-xl-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; } .pe-xl-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; } .pe-xl-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; } .pe-xl-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; } .pe-xl-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; } .pe-xl-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; } .pe-xl-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; } .pe-xl-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; } .pe-xl-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; } .pe-xl-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; } .pe-xl-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; } .pe-xl-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; } .pe-xl-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; } .pe-xl-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; } .pe-xl-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; } .pb-xl-0 { -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .pb-xl-50 { -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .pb-xl-1 { -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .pb-xl-1_5 { -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .pb-xl-2 { -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .pb-xl-3 { -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .pb-xl-4 { -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .pb-xl-5 { -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .pb-xl-6 { -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .pb-xl-7 { -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .pb-xl-8 { -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .pb-xl-9 { -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .pb-xl-10 { -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .pb-xl-11 { -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .pb-xl-12 { -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .ps-xl-0 { -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .ps-xl-50 { -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .ps-xl-1 { -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .ps-xl-1_5 { -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .ps-xl-2 { -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .ps-xl-3 { -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .ps-xl-4 { -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .ps-xl-5 { -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .ps-xl-6 { -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .ps-xl-7 { -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .ps-xl-8 { -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .ps-xl-9 { -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .ps-xl-10 { -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .ps-xl-11 { -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .ps-xl-12 { -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .gap-xl-0 { gap: 0 !important; } .gap-xl-50 { gap: 0.125rem !important; } .gap-xl-1 { gap: 0.25rem !important; } .gap-xl-1_5 { gap: 0.375rem !important; } .gap-xl-2 { gap: 0.5rem !important; } .gap-xl-3 { gap: 0.75rem !important; } .gap-xl-4 { gap: 1rem !important; } .gap-xl-5 { gap: 1.25rem !important; } .gap-xl-6 { gap: 1.5rem !important; } .gap-xl-7 { gap: 1.75rem !important; } .gap-xl-8 { gap: 2rem !important; } .gap-xl-9 { gap: 2.25rem !important; } .gap-xl-10 { gap: 2.5rem !important; } .gap-xl-11 { gap: 2.75rem !important; } .gap-xl-12 { gap: 3rem !important; } .row-gap-xl-0 { row-gap: 0 !important; } .row-gap-xl-50 { row-gap: 0.125rem !important; } .row-gap-xl-1 { row-gap: 0.25rem !important; } .row-gap-xl-1_5 { row-gap: 0.375rem !important; } .row-gap-xl-2 { row-gap: 0.5rem !important; } .row-gap-xl-3 { row-gap: 0.75rem !important; } .row-gap-xl-4 { row-gap: 1rem !important; } .row-gap-xl-5 { row-gap: 1.25rem !important; } .row-gap-xl-6 { row-gap: 1.5rem !important; } .row-gap-xl-7 { row-gap: 1.75rem !important; } .row-gap-xl-8 { row-gap: 2rem !important; } .row-gap-xl-9 { row-gap: 2.25rem !important; } .row-gap-xl-10 { row-gap: 2.5rem !important; } .row-gap-xl-11 { row-gap: 2.75rem !important; } .row-gap-xl-12 { row-gap: 3rem !important; } .column-gap-xl-0 { -webkit-column-gap: 0 !important; -moz-column-gap: 0 !important; column-gap: 0 !important; } .column-gap-xl-50 { -webkit-column-gap: 0.125rem !important; -moz-column-gap: 0.125rem !important; column-gap: 0.125rem !important; } .column-gap-xl-1 { -webkit-column-gap: 0.25rem !important; -moz-column-gap: 0.25rem !important; column-gap: 0.25rem !important; } .column-gap-xl-1_5 { -webkit-column-gap: 0.375rem !important; -moz-column-gap: 0.375rem !important; column-gap: 0.375rem !important; } .column-gap-xl-2 { -webkit-column-gap: 0.5rem !important; -moz-column-gap: 0.5rem !important; column-gap: 0.5rem !important; } .column-gap-xl-3 { -webkit-column-gap: 0.75rem !important; -moz-column-gap: 0.75rem !important; column-gap: 0.75rem !important; } .column-gap-xl-4 { -webkit-column-gap: 1rem !important; -moz-column-gap: 1rem !important; column-gap: 1rem !important; } .column-gap-xl-5 { -webkit-column-gap: 1.25rem !important; -moz-column-gap: 1.25rem !important; column-gap: 1.25rem !important; } .column-gap-xl-6 { -webkit-column-gap: 1.5rem !important; -moz-column-gap: 1.5rem !important; column-gap: 1.5rem !important; } .column-gap-xl-7 { -webkit-column-gap: 1.75rem !important; -moz-column-gap: 1.75rem !important; column-gap: 1.75rem !important; } .column-gap-xl-8 { -webkit-column-gap: 2rem !important; -moz-column-gap: 2rem !important; column-gap: 2rem !important; } .column-gap-xl-9 { -webkit-column-gap: 2.25rem !important; -moz-column-gap: 2.25rem !important; column-gap: 2.25rem !important; } .column-gap-xl-10 { -webkit-column-gap: 2.5rem !important; -moz-column-gap: 2.5rem !important; column-gap: 2.5rem !important; } .column-gap-xl-11 { -webkit-column-gap: 2.75rem !important; -moz-column-gap: 2.75rem !important; column-gap: 2.75rem !important; } .column-gap-xl-12 { -webkit-column-gap: 3rem !important; -moz-column-gap: 3rem !important; column-gap: 3rem !important; } .text-xl-start { text-align: start !important; } .text-xl-end { text-align: end !important; } .text-xl-center { text-align: center !important; } } @media (min-width: 1400px) { .float-xxl-start { float: inline-start !important; } .float-xxl-end { float: inline-end !important; } .float-xxl-none { float: none !important; } .object-fit-xxl-contain { -o-object-fit: contain !important; object-fit: contain !important; } .object-fit-xxl-cover { -o-object-fit: cover !important; object-fit: cover !important; } .object-fit-xxl-fill { -o-object-fit: fill !important; object-fit: fill !important; } .object-fit-xxl-scale { -o-object-fit: scale-down !important; object-fit: scale-down !important; } .object-fit-xxl-none { -o-object-fit: none !important; object-fit: none !important; } .d-xxl-inline { display: inline !important; } .d-xxl-inline-block { display: inline-block !important; } .d-xxl-block { display: block !important; } .d-xxl-grid { display: grid !important; } .d-xxl-table { display: table !important; } .d-xxl-table-row { display: table-row !important; } .d-xxl-table-cell { display: table-cell !important; } .d-xxl-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-xxl-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } .d-xxl-none { display: none !important; } .border-xxl-solid { border-style: solid !important; } .border-xxl-dashed { border-style: dashed !important; } .border-xxl-none { border-style: none !important; } .flex-xxl-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-xxl-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-xxl-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-xxl-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-xxl-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-xxl-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-xxl-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-xxl-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-xxl-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .flex-xxl-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-xxl-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-xxl-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .justify-content-xxl-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-xxl-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-xxl-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-xxl-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-xxl-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .justify-content-xxl-evenly { -webkit-box-pack: space-evenly !important; -ms-flex-pack: space-evenly !important; justify-content: space-evenly !important; } .align-items-xxl-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-xxl-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-xxl-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-xxl-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-xxl-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-xxl-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-xxl-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-xxl-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-xxl-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-xxl-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-xxl-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-xxl-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-xxl-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-xxl-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-xxl-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-xxl-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-xxl-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } .order-xxl-first { -webkit-box-ordinal-group: 0 !important; -ms-flex-order: -1 !important; order: -1 !important; } .order-xxl-0 { -webkit-box-ordinal-group: 1 !important; -ms-flex-order: 0 !important; order: 0 !important; } .order-xxl-1 { -webkit-box-ordinal-group: 2 !important; -ms-flex-order: 1 !important; order: 1 !important; } .order-xxl-2 { -webkit-box-ordinal-group: 3 !important; -ms-flex-order: 2 !important; order: 2 !important; } .order-xxl-3 { -webkit-box-ordinal-group: 4 !important; -ms-flex-order: 3 !important; order: 3 !important; } .order-xxl-4 { -webkit-box-ordinal-group: 5 !important; -ms-flex-order: 4 !important; order: 4 !important; } .order-xxl-5 { -webkit-box-ordinal-group: 6 !important; -ms-flex-order: 5 !important; order: 5 !important; } .order-xxl-last { -webkit-box-ordinal-group: 7 !important; -ms-flex-order: 6 !important; order: 6 !important; } .m-xxl-0 { margin: 0 !important; } .m-xxl-50 { margin: 0.125rem !important; } .m-xxl-1 { margin: 0.25rem !important; } .m-xxl-1_5 { margin: 0.375rem !important; } .m-xxl-2 { margin: 0.5rem !important; } .m-xxl-3 { margin: 0.75rem !important; } .m-xxl-4 { margin: 1rem !important; } .m-xxl-5 { margin: 1.25rem !important; } .m-xxl-6 { margin: 1.5rem !important; } .m-xxl-7 { margin: 1.75rem !important; } .m-xxl-8 { margin: 2rem !important; } .m-xxl-9 { margin: 2.25rem !important; } .m-xxl-10 { margin: 2.5rem !important; } .m-xxl-11 { margin: 2.75rem !important; } .m-xxl-12 { margin: 3rem !important; } .m-xxl-auto { margin: auto !important; } .mx-xxl-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .mx-xxl-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .mx-xxl-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .mx-xxl-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .mx-xxl-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .mx-xxl-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .mx-xxl-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .mx-xxl-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .mx-xxl-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .mx-xxl-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .mx-xxl-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .mx-xxl-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .mx-xxl-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .mx-xxl-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .mx-xxl-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .mx-xxl-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .my-xxl-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .my-xxl-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .my-xxl-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .my-xxl-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .my-xxl-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .my-xxl-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .my-xxl-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .my-xxl-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .my-xxl-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .my-xxl-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .my-xxl-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .my-xxl-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .my-xxl-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .my-xxl-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .my-xxl-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .my-xxl-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; -webkit-margin-after: auto !important; margin-block-end: auto !important; } .mt-xxl-0 { -webkit-margin-before: 0 !important; margin-block-start: 0 !important; } .mt-xxl-50 { -webkit-margin-before: 0.125rem !important; margin-block-start: 0.125rem !important; } .mt-xxl-1 { -webkit-margin-before: 0.25rem !important; margin-block-start: 0.25rem !important; } .mt-xxl-1_5 { -webkit-margin-before: 0.375rem !important; margin-block-start: 0.375rem !important; } .mt-xxl-2 { -webkit-margin-before: 0.5rem !important; margin-block-start: 0.5rem !important; } .mt-xxl-3 { -webkit-margin-before: 0.75rem !important; margin-block-start: 0.75rem !important; } .mt-xxl-4 { -webkit-margin-before: 1rem !important; margin-block-start: 1rem !important; } .mt-xxl-5 { -webkit-margin-before: 1.25rem !important; margin-block-start: 1.25rem !important; } .mt-xxl-6 { -webkit-margin-before: 1.5rem !important; margin-block-start: 1.5rem !important; } .mt-xxl-7 { -webkit-margin-before: 1.75rem !important; margin-block-start: 1.75rem !important; } .mt-xxl-8 { -webkit-margin-before: 2rem !important; margin-block-start: 2rem !important; } .mt-xxl-9 { -webkit-margin-before: 2.25rem !important; margin-block-start: 2.25rem !important; } .mt-xxl-10 { -webkit-margin-before: 2.5rem !important; margin-block-start: 2.5rem !important; } .mt-xxl-11 { -webkit-margin-before: 2.75rem !important; margin-block-start: 2.75rem !important; } .mt-xxl-12 { -webkit-margin-before: 3rem !important; margin-block-start: 3rem !important; } .mt-xxl-auto { -webkit-margin-before: auto !important; margin-block-start: auto !important; } .me-xxl-0 { -webkit-margin-end: 0 !important; margin-inline-end: 0 !important; } .me-xxl-50 { -webkit-margin-end: 0.125rem !important; margin-inline-end: 0.125rem !important; } .me-xxl-1 { -webkit-margin-end: 0.25rem !important; margin-inline-end: 0.25rem !important; } .me-xxl-1_5 { -webkit-margin-end: 0.375rem !important; margin-inline-end: 0.375rem !important; } .me-xxl-2 { -webkit-margin-end: 0.5rem !important; margin-inline-end: 0.5rem !important; } .me-xxl-3 { -webkit-margin-end: 0.75rem !important; margin-inline-end: 0.75rem !important; } .me-xxl-4 { -webkit-margin-end: 1rem !important; margin-inline-end: 1rem !important; } .me-xxl-5 { -webkit-margin-end: 1.25rem !important; margin-inline-end: 1.25rem !important; } .me-xxl-6 { -webkit-margin-end: 1.5rem !important; margin-inline-end: 1.5rem !important; } .me-xxl-7 { -webkit-margin-end: 1.75rem !important; margin-inline-end: 1.75rem !important; } .me-xxl-8 { -webkit-margin-end: 2rem !important; margin-inline-end: 2rem !important; } .me-xxl-9 { -webkit-margin-end: 2.25rem !important; margin-inline-end: 2.25rem !important; } .me-xxl-10 { -webkit-margin-end: 2.5rem !important; margin-inline-end: 2.5rem !important; } .me-xxl-11 { -webkit-margin-end: 2.75rem !important; margin-inline-end: 2.75rem !important; } .me-xxl-12 { -webkit-margin-end: 3rem !important; margin-inline-end: 3rem !important; } .me-xxl-auto { -webkit-margin-end: auto !important; margin-inline-end: auto !important; } .mb-xxl-0 { -webkit-margin-after: 0 !important; margin-block-end: 0 !important; } .mb-xxl-50 { -webkit-margin-after: 0.125rem !important; margin-block-end: 0.125rem !important; } .mb-xxl-1 { -webkit-margin-after: 0.25rem !important; margin-block-end: 0.25rem !important; } .mb-xxl-1_5 { -webkit-margin-after: 0.375rem !important; margin-block-end: 0.375rem !important; } .mb-xxl-2 { -webkit-margin-after: 0.5rem !important; margin-block-end: 0.5rem !important; } .mb-xxl-3 { -webkit-margin-after: 0.75rem !important; margin-block-end: 0.75rem !important; } .mb-xxl-4 { -webkit-margin-after: 1rem !important; margin-block-end: 1rem !important; } .mb-xxl-5 { -webkit-margin-after: 1.25rem !important; margin-block-end: 1.25rem !important; } .mb-xxl-6 { -webkit-margin-after: 1.5rem !important; margin-block-end: 1.5rem !important; } .mb-xxl-7 { -webkit-margin-after: 1.75rem !important; margin-block-end: 1.75rem !important; } .mb-xxl-8 { -webkit-margin-after: 2rem !important; margin-block-end: 2rem !important; } .mb-xxl-9 { -webkit-margin-after: 2.25rem !important; margin-block-end: 2.25rem !important; } .mb-xxl-10 { -webkit-margin-after: 2.5rem !important; margin-block-end: 2.5rem !important; } .mb-xxl-11 { -webkit-margin-after: 2.75rem !important; margin-block-end: 2.75rem !important; } .mb-xxl-12 { -webkit-margin-after: 3rem !important; margin-block-end: 3rem !important; } .mb-xxl-auto { -webkit-margin-after: auto !important; margin-block-end: auto !important; } .ms-xxl-0 { -webkit-margin-start: 0 !important; margin-inline-start: 0 !important; } .ms-xxl-50 { -webkit-margin-start: 0.125rem !important; margin-inline-start: 0.125rem !important; } .ms-xxl-1 { -webkit-margin-start: 0.25rem !important; margin-inline-start: 0.25rem !important; } .ms-xxl-1_5 { -webkit-margin-start: 0.375rem !important; margin-inline-start: 0.375rem !important; } .ms-xxl-2 { -webkit-margin-start: 0.5rem !important; margin-inline-start: 0.5rem !important; } .ms-xxl-3 { -webkit-margin-start: 0.75rem !important; margin-inline-start: 0.75rem !important; } .ms-xxl-4 { -webkit-margin-start: 1rem !important; margin-inline-start: 1rem !important; } .ms-xxl-5 { -webkit-margin-start: 1.25rem !important; margin-inline-start: 1.25rem !important; } .ms-xxl-6 { -webkit-margin-start: 1.5rem !important; margin-inline-start: 1.5rem !important; } .ms-xxl-7 { -webkit-margin-start: 1.75rem !important; margin-inline-start: 1.75rem !important; } .ms-xxl-8 { -webkit-margin-start: 2rem !important; margin-inline-start: 2rem !important; } .ms-xxl-9 { -webkit-margin-start: 2.25rem !important; margin-inline-start: 2.25rem !important; } .ms-xxl-10 { -webkit-margin-start: 2.5rem !important; margin-inline-start: 2.5rem !important; } .ms-xxl-11 { -webkit-margin-start: 2.75rem !important; margin-inline-start: 2.75rem !important; } .ms-xxl-12 { -webkit-margin-start: 3rem !important; margin-inline-start: 3rem !important; } .ms-xxl-auto { -webkit-margin-start: auto !important; margin-inline-start: auto !important; } .m-xxl-n50 { margin: -0.125rem !important; } .m-xxl-n1 { margin: -0.25rem !important; } .m-xxl-n1_5 { margin: -0.375rem !important; } .m-xxl-n2 { margin: -0.5rem !important; } .m-xxl-n3 { margin: -0.75rem !important; } .m-xxl-n4 { margin: -1rem !important; } .m-xxl-n5 { margin: -1.25rem !important; } .m-xxl-n6 { margin: -1.5rem !important; } .m-xxl-n7 { margin: -1.75rem !important; } .m-xxl-n8 { margin: -2rem !important; } .m-xxl-n9 { margin: -2.25rem !important; } .m-xxl-n10 { margin: -2.5rem !important; } .m-xxl-n11 { margin: -2.75rem !important; } .m-xxl-n12 { margin: -3rem !important; } .mx-xxl-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .mx-xxl-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .mx-xxl-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .mx-xxl-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .mx-xxl-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .mx-xxl-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .mx-xxl-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .mx-xxl-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .mx-xxl-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .mx-xxl-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .mx-xxl-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .mx-xxl-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .mx-xxl-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .mx-xxl-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .my-xxl-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .my-xxl-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .my-xxl-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .my-xxl-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .my-xxl-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .my-xxl-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .my-xxl-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .my-xxl-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .my-xxl-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .my-xxl-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .my-xxl-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .my-xxl-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .my-xxl-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .my-xxl-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .mt-xxl-n50 { -webkit-margin-before: -0.125rem !important; margin-block-start: -0.125rem !important; } .mt-xxl-n1 { -webkit-margin-before: -0.25rem !important; margin-block-start: -0.25rem !important; } .mt-xxl-n1_5 { -webkit-margin-before: -0.375rem !important; margin-block-start: -0.375rem !important; } .mt-xxl-n2 { -webkit-margin-before: -0.5rem !important; margin-block-start: -0.5rem !important; } .mt-xxl-n3 { -webkit-margin-before: -0.75rem !important; margin-block-start: -0.75rem !important; } .mt-xxl-n4 { -webkit-margin-before: -1rem !important; margin-block-start: -1rem !important; } .mt-xxl-n5 { -webkit-margin-before: -1.25rem !important; margin-block-start: -1.25rem !important; } .mt-xxl-n6 { -webkit-margin-before: -1.5rem !important; margin-block-start: -1.5rem !important; } .mt-xxl-n7 { -webkit-margin-before: -1.75rem !important; margin-block-start: -1.75rem !important; } .mt-xxl-n8 { -webkit-margin-before: -2rem !important; margin-block-start: -2rem !important; } .mt-xxl-n9 { -webkit-margin-before: -2.25rem !important; margin-block-start: -2.25rem !important; } .mt-xxl-n10 { -webkit-margin-before: -2.5rem !important; margin-block-start: -2.5rem !important; } .mt-xxl-n11 { -webkit-margin-before: -2.75rem !important; margin-block-start: -2.75rem !important; } .mt-xxl-n12 { -webkit-margin-before: -3rem !important; margin-block-start: -3rem !important; } .me-xxl-n50 { -webkit-margin-end: -0.125rem !important; margin-inline-end: -0.125rem !important; } .me-xxl-n1 { -webkit-margin-end: -0.25rem !important; margin-inline-end: -0.25rem !important; } .me-xxl-n1_5 { -webkit-margin-end: -0.375rem !important; margin-inline-end: -0.375rem !important; } .me-xxl-n2 { -webkit-margin-end: -0.5rem !important; margin-inline-end: -0.5rem !important; } .me-xxl-n3 { -webkit-margin-end: -0.75rem !important; margin-inline-end: -0.75rem !important; } .me-xxl-n4 { -webkit-margin-end: -1rem !important; margin-inline-end: -1rem !important; } .me-xxl-n5 { -webkit-margin-end: -1.25rem !important; margin-inline-end: -1.25rem !important; } .me-xxl-n6 { -webkit-margin-end: -1.5rem !important; margin-inline-end: -1.5rem !important; } .me-xxl-n7 { -webkit-margin-end: -1.75rem !important; margin-inline-end: -1.75rem !important; } .me-xxl-n8 { -webkit-margin-end: -2rem !important; margin-inline-end: -2rem !important; } .me-xxl-n9 { -webkit-margin-end: -2.25rem !important; margin-inline-end: -2.25rem !important; } .me-xxl-n10 { -webkit-margin-end: -2.5rem !important; margin-inline-end: -2.5rem !important; } .me-xxl-n11 { -webkit-margin-end: -2.75rem !important; margin-inline-end: -2.75rem !important; } .me-xxl-n12 { -webkit-margin-end: -3rem !important; margin-inline-end: -3rem !important; } .mb-xxl-n50 { -webkit-margin-after: -0.125rem !important; margin-block-end: -0.125rem !important; } .mb-xxl-n1 { -webkit-margin-after: -0.25rem !important; margin-block-end: -0.25rem !important; } .mb-xxl-n1_5 { -webkit-margin-after: -0.375rem !important; margin-block-end: -0.375rem !important; } .mb-xxl-n2 { -webkit-margin-after: -0.5rem !important; margin-block-end: -0.5rem !important; } .mb-xxl-n3 { -webkit-margin-after: -0.75rem !important; margin-block-end: -0.75rem !important; } .mb-xxl-n4 { -webkit-margin-after: -1rem !important; margin-block-end: -1rem !important; } .mb-xxl-n5 { -webkit-margin-after: -1.25rem !important; margin-block-end: -1.25rem !important; } .mb-xxl-n6 { -webkit-margin-after: -1.5rem !important; margin-block-end: -1.5rem !important; } .mb-xxl-n7 { -webkit-margin-after: -1.75rem !important; margin-block-end: -1.75rem !important; } .mb-xxl-n8 { -webkit-margin-after: -2rem !important; margin-block-end: -2rem !important; } .mb-xxl-n9 { -webkit-margin-after: -2.25rem !important; margin-block-end: -2.25rem !important; } .mb-xxl-n10 { -webkit-margin-after: -2.5rem !important; margin-block-end: -2.5rem !important; } .mb-xxl-n11 { -webkit-margin-after: -2.75rem !important; margin-block-end: -2.75rem !important; } .mb-xxl-n12 { -webkit-margin-after: -3rem !important; margin-block-end: -3rem !important; } .ms-xxl-n50 { -webkit-margin-start: -0.125rem !important; margin-inline-start: -0.125rem !important; } .ms-xxl-n1 { -webkit-margin-start: -0.25rem !important; margin-inline-start: -0.25rem !important; } .ms-xxl-n1_5 { -webkit-margin-start: -0.375rem !important; margin-inline-start: -0.375rem !important; } .ms-xxl-n2 { -webkit-margin-start: -0.5rem !important; margin-inline-start: -0.5rem !important; } .ms-xxl-n3 { -webkit-margin-start: -0.75rem !important; margin-inline-start: -0.75rem !important; } .ms-xxl-n4 { -webkit-margin-start: -1rem !important; margin-inline-start: -1rem !important; } .ms-xxl-n5 { -webkit-margin-start: -1.25rem !important; margin-inline-start: -1.25rem !important; } .ms-xxl-n6 { -webkit-margin-start: -1.5rem !important; margin-inline-start: -1.5rem !important; } .ms-xxl-n7 { -webkit-margin-start: -1.75rem !important; margin-inline-start: -1.75rem !important; } .ms-xxl-n8 { -webkit-margin-start: -2rem !important; margin-inline-start: -2rem !important; } .ms-xxl-n9 { -webkit-margin-start: -2.25rem !important; margin-inline-start: -2.25rem !important; } .ms-xxl-n10 { -webkit-margin-start: -2.5rem !important; margin-inline-start: -2.5rem !important; } .ms-xxl-n11 { -webkit-margin-start: -2.75rem !important; margin-inline-start: -2.75rem !important; } .ms-xxl-n12 { -webkit-margin-start: -3rem !important; margin-inline-start: -3rem !important; } .p-xxl-0 { padding: 0 !important; } .p-xxl-50 { padding: 0.125rem !important; } .p-xxl-1 { padding: 0.25rem !important; } .p-xxl-1_5 { padding: 0.375rem !important; } .p-xxl-2 { padding: 0.5rem !important; } .p-xxl-3 { padding: 0.75rem !important; } .p-xxl-4 { padding: 1rem !important; } .p-xxl-5 { padding: 1.25rem !important; } .p-xxl-6 { padding: 1.5rem !important; } .p-xxl-7 { padding: 1.75rem !important; } .p-xxl-8 { padding: 2rem !important; } .p-xxl-9 { padding: 2.25rem !important; } .p-xxl-10 { padding: 2.5rem !important; } .p-xxl-11 { padding: 2.75rem !important; } .p-xxl-12 { padding: 3rem !important; } .px-xxl-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .px-xxl-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .px-xxl-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .px-xxl-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .px-xxl-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .px-xxl-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .px-xxl-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .px-xxl-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .px-xxl-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .px-xxl-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .px-xxl-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .px-xxl-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .px-xxl-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .px-xxl-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .px-xxl-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .py-xxl-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .py-xxl-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .py-xxl-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .py-xxl-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .py-xxl-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .py-xxl-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .py-xxl-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .py-xxl-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .py-xxl-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .py-xxl-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .py-xxl-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .py-xxl-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .py-xxl-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .py-xxl-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .py-xxl-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .pt-xxl-0 { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; } .pt-xxl-50 { -webkit-padding-before: 0.125rem !important; padding-block-start: 0.125rem !important; } .pt-xxl-1 { -webkit-padding-before: 0.25rem !important; padding-block-start: 0.25rem !important; } .pt-xxl-1_5 { -webkit-padding-before: 0.375rem !important; padding-block-start: 0.375rem !important; } .pt-xxl-2 { -webkit-padding-before: 0.5rem !important; padding-block-start: 0.5rem !important; } .pt-xxl-3 { -webkit-padding-before: 0.75rem !important; padding-block-start: 0.75rem !important; } .pt-xxl-4 { -webkit-padding-before: 1rem !important; padding-block-start: 1rem !important; } .pt-xxl-5 { -webkit-padding-before: 1.25rem !important; padding-block-start: 1.25rem !important; } .pt-xxl-6 { -webkit-padding-before: 1.5rem !important; padding-block-start: 1.5rem !important; } .pt-xxl-7 { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; } .pt-xxl-8 { -webkit-padding-before: 2rem !important; padding-block-start: 2rem !important; } .pt-xxl-9 { -webkit-padding-before: 2.25rem !important; padding-block-start: 2.25rem !important; } .pt-xxl-10 { -webkit-padding-before: 2.5rem !important; padding-block-start: 2.5rem !important; } .pt-xxl-11 { -webkit-padding-before: 2.75rem !important; padding-block-start: 2.75rem !important; } .pt-xxl-12 { -webkit-padding-before: 3rem !important; padding-block-start: 3rem !important; } .pe-xxl-0 { -webkit-padding-end: 0 !important; padding-inline-end: 0 !important; } .pe-xxl-50 { -webkit-padding-end: 0.125rem !important; padding-inline-end: 0.125rem !important; } .pe-xxl-1 { -webkit-padding-end: 0.25rem !important; padding-inline-end: 0.25rem !important; } .pe-xxl-1_5 { -webkit-padding-end: 0.375rem !important; padding-inline-end: 0.375rem !important; } .pe-xxl-2 { -webkit-padding-end: 0.5rem !important; padding-inline-end: 0.5rem !important; } .pe-xxl-3 { -webkit-padding-end: 0.75rem !important; padding-inline-end: 0.75rem !important; } .pe-xxl-4 { -webkit-padding-end: 1rem !important; padding-inline-end: 1rem !important; } .pe-xxl-5 { -webkit-padding-end: 1.25rem !important; padding-inline-end: 1.25rem !important; } .pe-xxl-6 { -webkit-padding-end: 1.5rem !important; padding-inline-end: 1.5rem !important; } .pe-xxl-7 { -webkit-padding-end: 1.75rem !important; padding-inline-end: 1.75rem !important; } .pe-xxl-8 { -webkit-padding-end: 2rem !important; padding-inline-end: 2rem !important; } .pe-xxl-9 { -webkit-padding-end: 2.25rem !important; padding-inline-end: 2.25rem !important; } .pe-xxl-10 { -webkit-padding-end: 2.5rem !important; padding-inline-end: 2.5rem !important; } .pe-xxl-11 { -webkit-padding-end: 2.75rem !important; padding-inline-end: 2.75rem !important; } .pe-xxl-12 { -webkit-padding-end: 3rem !important; padding-inline-end: 3rem !important; } .pb-xxl-0 { -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } .pb-xxl-50 { -webkit-padding-after: 0.125rem !important; padding-block-end: 0.125rem !important; } .pb-xxl-1 { -webkit-padding-after: 0.25rem !important; padding-block-end: 0.25rem !important; } .pb-xxl-1_5 { -webkit-padding-after: 0.375rem !important; padding-block-end: 0.375rem !important; } .pb-xxl-2 { -webkit-padding-after: 0.5rem !important; padding-block-end: 0.5rem !important; } .pb-xxl-3 { -webkit-padding-after: 0.75rem !important; padding-block-end: 0.75rem !important; } .pb-xxl-4 { -webkit-padding-after: 1rem !important; padding-block-end: 1rem !important; } .pb-xxl-5 { -webkit-padding-after: 1.25rem !important; padding-block-end: 1.25rem !important; } .pb-xxl-6 { -webkit-padding-after: 1.5rem !important; padding-block-end: 1.5rem !important; } .pb-xxl-7 { -webkit-padding-after: 1.75rem !important; padding-block-end: 1.75rem !important; } .pb-xxl-8 { -webkit-padding-after: 2rem !important; padding-block-end: 2rem !important; } .pb-xxl-9 { -webkit-padding-after: 2.25rem !important; padding-block-end: 2.25rem !important; } .pb-xxl-10 { -webkit-padding-after: 2.5rem !important; padding-block-end: 2.5rem !important; } .pb-xxl-11 { -webkit-padding-after: 2.75rem !important; padding-block-end: 2.75rem !important; } .pb-xxl-12 { -webkit-padding-after: 3rem !important; padding-block-end: 3rem !important; } .ps-xxl-0 { -webkit-padding-start: 0 !important; padding-inline-start: 0 !important; } .ps-xxl-50 { -webkit-padding-start: 0.125rem !important; padding-inline-start: 0.125rem !important; } .ps-xxl-1 { -webkit-padding-start: 0.25rem !important; padding-inline-start: 0.25rem !important; } .ps-xxl-1_5 { -webkit-padding-start: 0.375rem !important; padding-inline-start: 0.375rem !important; } .ps-xxl-2 { -webkit-padding-start: 0.5rem !important; padding-inline-start: 0.5rem !important; } .ps-xxl-3 { -webkit-padding-start: 0.75rem !important; padding-inline-start: 0.75rem !important; } .ps-xxl-4 { -webkit-padding-start: 1rem !important; padding-inline-start: 1rem !important; } .ps-xxl-5 { -webkit-padding-start: 1.25rem !important; padding-inline-start: 1.25rem !important; } .ps-xxl-6 { -webkit-padding-start: 1.5rem !important; padding-inline-start: 1.5rem !important; } .ps-xxl-7 { -webkit-padding-start: 1.75rem !important; padding-inline-start: 1.75rem !important; } .ps-xxl-8 { -webkit-padding-start: 2rem !important; padding-inline-start: 2rem !important; } .ps-xxl-9 { -webkit-padding-start: 2.25rem !important; padding-inline-start: 2.25rem !important; } .ps-xxl-10 { -webkit-padding-start: 2.5rem !important; padding-inline-start: 2.5rem !important; } .ps-xxl-11 { -webkit-padding-start: 2.75rem !important; padding-inline-start: 2.75rem !important; } .ps-xxl-12 { -webkit-padding-start: 3rem !important; padding-inline-start: 3rem !important; } .gap-xxl-0 { gap: 0 !important; } .gap-xxl-50 { gap: 0.125rem !important; } .gap-xxl-1 { gap: 0.25rem !important; } .gap-xxl-1_5 { gap: 0.375rem !important; } .gap-xxl-2 { gap: 0.5rem !important; } .gap-xxl-3 { gap: 0.75rem !important; } .gap-xxl-4 { gap: 1rem !important; } .gap-xxl-5 { gap: 1.25rem !important; } .gap-xxl-6 { gap: 1.5rem !important; } .gap-xxl-7 { gap: 1.75rem !important; } .gap-xxl-8 { gap: 2rem !important; } .gap-xxl-9 { gap: 2.25rem !important; } .gap-xxl-10 { gap: 2.5rem !important; } .gap-xxl-11 { gap: 2.75rem !important; } .gap-xxl-12 { gap: 3rem !important; } .row-gap-xxl-0 { row-gap: 0 !important; } .row-gap-xxl-50 { row-gap: 0.125rem !important; } .row-gap-xxl-1 { row-gap: 0.25rem !important; } .row-gap-xxl-1_5 { row-gap: 0.375rem !important; } .row-gap-xxl-2 { row-gap: 0.5rem !important; } .row-gap-xxl-3 { row-gap: 0.75rem !important; } .row-gap-xxl-4 { row-gap: 1rem !important; } .row-gap-xxl-5 { row-gap: 1.25rem !important; } .row-gap-xxl-6 { row-gap: 1.5rem !important; } .row-gap-xxl-7 { row-gap: 1.75rem !important; } .row-gap-xxl-8 { row-gap: 2rem !important; } .row-gap-xxl-9 { row-gap: 2.25rem !important; } .row-gap-xxl-10 { row-gap: 2.5rem !important; } .row-gap-xxl-11 { row-gap: 2.75rem !important; } .row-gap-xxl-12 { row-gap: 3rem !important; } .column-gap-xxl-0 { -webkit-column-gap: 0 !important; -moz-column-gap: 0 !important; column-gap: 0 !important; } .column-gap-xxl-50 { -webkit-column-gap: 0.125rem !important; -moz-column-gap: 0.125rem !important; column-gap: 0.125rem !important; } .column-gap-xxl-1 { -webkit-column-gap: 0.25rem !important; -moz-column-gap: 0.25rem !important; column-gap: 0.25rem !important; } .column-gap-xxl-1_5 { -webkit-column-gap: 0.375rem !important; -moz-column-gap: 0.375rem !important; column-gap: 0.375rem !important; } .column-gap-xxl-2 { -webkit-column-gap: 0.5rem !important; -moz-column-gap: 0.5rem !important; column-gap: 0.5rem !important; } .column-gap-xxl-3 { -webkit-column-gap: 0.75rem !important; -moz-column-gap: 0.75rem !important; column-gap: 0.75rem !important; } .column-gap-xxl-4 { -webkit-column-gap: 1rem !important; -moz-column-gap: 1rem !important; column-gap: 1rem !important; } .column-gap-xxl-5 { -webkit-column-gap: 1.25rem !important; -moz-column-gap: 1.25rem !important; column-gap: 1.25rem !important; } .column-gap-xxl-6 { -webkit-column-gap: 1.5rem !important; -moz-column-gap: 1.5rem !important; column-gap: 1.5rem !important; } .column-gap-xxl-7 { -webkit-column-gap: 1.75rem !important; -moz-column-gap: 1.75rem !important; column-gap: 1.75rem !important; } .column-gap-xxl-8 { -webkit-column-gap: 2rem !important; -moz-column-gap: 2rem !important; column-gap: 2rem !important; } .column-gap-xxl-9 { -webkit-column-gap: 2.25rem !important; -moz-column-gap: 2.25rem !important; column-gap: 2.25rem !important; } .column-gap-xxl-10 { -webkit-column-gap: 2.5rem !important; -moz-column-gap: 2.5rem !important; column-gap: 2.5rem !important; } .column-gap-xxl-11 { -webkit-column-gap: 2.75rem !important; -moz-column-gap: 2.75rem !important; column-gap: 2.75rem !important; } .column-gap-xxl-12 { -webkit-column-gap: 3rem !important; -moz-column-gap: 3rem !important; column-gap: 3rem !important; } .text-xxl-start { text-align: start !important; } .text-xxl-end { text-align: end !important; } .text-xxl-center { text-align: center !important; } } @media (min-width: 1200px) { .fs-1 { font-size: 2.875rem !important; } .fs-2 { font-size: 2.375rem !important; } .fs-3 { font-size: 1.75rem !important; } .fs-4 { font-size: 1.5rem !important; } .fs-xxlarge { font-size: 6rem !important; } } @media print { .d-print-inline { display: inline !important; } .d-print-inline-block { display: inline-block !important; } .d-print-block { display: block !important; } .d-print-grid { display: grid !important; } .d-print-table { display: table !important; } .d-print-table-row { display: table-row !important; } .d-print-table-cell { display: table-cell !important; } .d-print-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-print-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } .d-print-none { display: none !important; } } /* Default */ :root { /* Menu */ --bs-menu-bg: var(--bs-paper-bg); --bs-menu-bg-rgb: var(--bs-paper-bg-rgb); --bs-menu-color: #384551; --bs-menu-color-rgb: 56, 69, 81; --bs-menu-hover-bg: #f2f3f3; --bs-menu-hover-color: #384551; --bs-menu-sub-active-bg: var(--bs-primary-bg-subtle); --bs-menu-sub-active-color: var(--bs-primary); --bs-menu-active-color: var(--bs-primary); --bs-menu-active-bg: var(--bs-primary-bg-subtle); --bs-menu-active-toggle-bg: #edeef0; --bs-menu-horizontal-active-bg: var(--bs-menu-bg); --bs-menu-box-shadow: 0 0.125rem 0.375rem 0 rgba(34, 48, 62, 0.08); --bs-menu-divider-color: var(--bs-white); --bs-menu-width: 16.25rem; --bs-menu-collapsed-width: 5.25rem; --bs-menu-item-spacer: 0.125rem; --bs-menu-vertical-link-padding-y: 0.3125rem; --bs-menu-vertical-link-padding-x: 0.9375rem; --bs-menu-vertical-menu-link-padding-y: 0.3125rem; --bs-menu-vertical-menu-level-spacer: 0.65rem; --bs-menu-horizontal-menu-box-shadow: var(--bs-box-shadow-lg); } /* App Overlay ******************************************************************************* */ .app-overlay { position: absolute; z-index: 3; background-color: transparent; inset: 0; -webkit-transition: all 0.25s ease-in-out; transition: all 0.25s ease-in-out; visibility: hidden; } .app-overlay.show { background-color: rgba(34, 48, 62, 0.5); visibility: visible; } /* IE Fixes ******************************************************************************* */ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { /* Fix IE parent container height bug when containing image with fluid width */ .card, .card-body, .media, .flex-column, .tab-content { min-block-size: 1px; } img { block-size: auto; min-block-size: 1px; } } /* Containers ******************************************************************************* */ .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { padding-inline: 1rem; } @media (min-width: 992px) { .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { padding-inline: 1.625rem; } } /* Buy now section ******************************************************************************* */ .buy-now .btn-buy-now { position: fixed; z-index: 1080; -webkit-box-shadow: 0 1px 20px 1px #ff3e1d; box-shadow: 0 1px 20px 1px #ff3e1d; inset-block-end: 3rem; inset-inline-end: 1.625rem; } .buy-now .btn-buy-now:hover { -webkit-box-shadow: none; box-shadow: none; } /* Common ******************************************************************************* */ /* Line Clamp with ellipsis ******************************************************************************* */ .line-clamp-1 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 1; } .line-clamp-2 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; } .line-clamp-3 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; } /* Background ******************************************************************************* */ .ui-bg-cover { background-color: rgba(0, 0, 0, 0); background-position: center center; background-size: cover; } .ui-bg-overlay-container, .ui-bg-video-container { position: relative; } .ui-bg-overlay-container > *, .ui-bg-video-container > * { position: relative; } .ui-bg-overlay-container .ui-bg-overlay { position: absolute; display: block; background-color: var(--bs-gray-900); inset: 0; } /* Menu ******************************************************************************* */ .menu { display: -webkit-box; display: -ms-flexbox; display: flex; background-color: var(--bs-menu-bg); /* PS Scrollbar */ } @media (min-width: 1200px) { .menu { -webkit-box-shadow: var(--bs-menu-box-shadow); box-shadow: var(--bs-menu-box-shadow); } } .menu .app-brand { inline-size: 100%; padding-inline: calc(var(--bs-menu-vertical-link-padding-x) * 2.1333); } .menu .app-brand .app-brand-text { color: var(--bs-heading-color); } .menu .app-brand .layout-menu-toggle { position: absolute; z-index: 3; border: 7px solid var(--bs-paper-bg); border-radius: 50%; background-color: var(--bs-primary); inset-inline-start: 15.2rem; opacity: 1; /* transition: opacity $menu-animation-duration ease-in-out; */ } .menu .app-brand .layout-menu-toggle i { block-size: 1.375rem; color: var(--bs-white); inline-size: 1.375rem; line-height: 1; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } @media (min-width: 1200px) { .menu .app-brand .layout-menu-toggle::before { position: absolute; z-index: -1; display: none; border: 1px solid var(--bs-border-color); border-radius: 50%; block-size: 2.25rem; clip-path: circle(71% at 0% 50%); content: ""; inline-size: 2.25rem; inset-block-start: -0.46rem; inset-inline-start: -0.5rem; } } @media (max-width: 1199.98px) { .menu .app-brand .layout-menu-toggle { display: none; border: 7px solid var(--bs-paper-bg); } .layout-menu-expanded .menu .app-brand .layout-menu-toggle { display: block; } } .menu .menu-sub > .menu-item > .menu-link::before { position: absolute; border-radius: 50%; background-color: var(--bs-gray-400); block-size: 0.375rem; content: ""; inline-size: 0.375rem; inset-inline-start: 1.4375rem; } .layout-horizontal .menu .menu-sub > .menu-item > .menu-link::before { inset-inline-start: 1rem; } @media (max-width: 1199.98px) { .layout-horizontal .menu .menu-sub > .menu-item > .menu-link::before { inset-inline-start: 1.5rem; } } .menu.menu-horizontal .menu-inner > .menu-item > .menu-sub > .menu-item > .menu-link { -webkit-padding-start: 1rem; padding-inline-start: 1rem; } .menu.menu-horizontal .menu-inner > .menu-item > .menu-sub > .menu-item > .menu-link::before { display: none; } .menu.menu-horizontal .menu-sub .menu-item .menu-link { -webkit-padding-start: 3rem; padding-inline-start: 3rem; } .menu .ps.ps--active-y > .ps__rail-y { background: none; } .menu .ps .ps__rail-y { inset-inline: auto 0.25rem !important; } .menu .ps .ps__thumb-y, .menu .ps .ps__rail-y { inline-size: 0.125rem; } .menu .ps .ps__rail-y:hover, .menu .ps .ps__rail-y:focus, .menu .ps .ps__rail-y.ps--clicking, .menu .ps .ps__rail-y:hover > .ps__thumb-y, .menu .ps .ps__rail-y:focus > .ps__thumb-y, .menu .ps .ps__rail-y.ps--clicking > .ps__thumb-y { inline-size: 0.375rem; } .menu .ps .ps__thumb-y, .menu .ps .ps__rail-y.ps--clicking > .ps__thumb-y { opacity: 0.3; } /* Menu link */ .menu-link { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin: 0; /* link hover animation */ } .menu:not(.menu-no-animation) .menu-link { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: color, background-color, inset-inline-start; transition-property: color, background-color, inset-inline-start; } .menu-item.disabled .menu-link { cursor: not-allowed; } .menu-link > :not(.menu-icon) { -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; opacity: 1; } .menu:not(.menu-no-animation) .menu-link > :not(.menu-icon) { -webkit-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .menu-inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; padding: 0; margin: 0; block-size: 100%; } .menu-inner > .menu-item.menu-item-closing .menu-item.open .menu-sub, .menu-inner > .menu-item.menu-item-closing .menu-item.open .menu-toggle { background-color: transparent; color: var(--bs-menu-color); } .menu-inner-shadow { position: absolute; z-index: 2; display: none; background: -webkit-gradient(linear, left top, left bottom, color-stop(41%, var(--bs-menu-bg)), color-stop(95%, rgba(var(--bs-menu-bg-rgb), 0.11)), to(rgba(var(--bs-menu-bg-rgb), 0))); background: linear-gradient(var(--bs-menu-bg) 41%, rgba(var(--bs-menu-bg-rgb), 0.11) 95%, rgba(var(--bs-menu-bg-rgb), 0)); inline-size: 100%; inset-block-start: 4.35rem; pointer-events: none; } @media (min-width: 1200px) { .menu-inner-shadow { block-size: 3rem; } } @media (max-width: 1199.98px) { .menu-inner-shadow { block-size: 1.5rem; } } .layout-navbar-full .menu-inner-shadow { inset-block-start: 0; } /* Menu item */ .menu-item { -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .menu-item.menu-item-animating { -webkit-transition: block-size 0.3s ease-in-out; transition: block-size 0.3s ease-in-out; } /* Horizontal Menu ****************************************************************************** */ .menu.menu-horizontal .menu-inner > .menu-item > .menu-link { border-radius: 0.375rem; } .menu.menu-horizontal .menu-inner > .menu-item.active > .menu-link.menu-toggle { background: var(--bs-menu-active-bg); color: var(--bs-menu-active-color); } .menu.menu-horizontal .menu-inner > .menu-item { margin-block: 0.625rem; margin-inline: 0; } .menu.menu-horizontal .menu-inner > .menu-item:not(:first-child) { -webkit-margin-start: 0.1875rem; margin-inline-start: 0.1875rem; } .menu.menu-horizontal .menu-inner > .menu-item:not(:last-child) { -webkit-margin-end: 0.1875rem; margin-inline-end: 0.1875rem; } .menu.menu-horizontal .menu-inner > .menu-item .menu-sub { z-index: 1; -webkit-box-shadow: var(--bs-menu-horizontal-menu-box-shadow); box-shadow: var(--bs-menu-horizontal-menu-box-shadow); } .menu-item, .menu-header, .menu-divider, .menu-block { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding: 0; margin: 0; list-style: none; } .menu-header { opacity: 1; -webkit-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .menu-header .menu-header-text { color: var(--bs-gray-400); letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; } /* Menu Icon */ .menu-icon { -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; -ms-flex-negative: 0; flex-shrink: 0; block-size: 1.375rem; font-size: 1.375rem; inline-size: 1.375rem; -webkit-margin-end: 0.5rem; margin-inline-end: 0.5rem; } .menu:not(.menu-no-animation) .menu-icon { -webkit-transition: -webkit-margin-end 0.3s ease; transition: -webkit-margin-end 0.3s ease; transition: margin-inline-end 0.3s ease; transition: margin-inline-end 0.3s ease, -webkit-margin-end 0.3s ease; } .menu-icon .menu-link { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; } .menu-icon .menu-toggle::after { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; transition-property: -webkit-transform, transform; } .menu-link, .menu-horizontal-prev, .menu-horizontal-next { color: var(--bs-menu-color); } .menu-link:hover, .menu-link:focus, .menu-horizontal-prev:hover, .menu-horizontal-prev:focus, .menu-horizontal-next:hover, .menu-horizontal-next:focus { color: var(--bs-menu-hover-color); } .menu-item.disabled .menu-link, .menu-horizontal-prev.disabled, .menu-horizontal-next.disabled { opacity: 0.6; } /* Sub menu */ .menu-sub { display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding: 0; margin: 0; } .menu-item.open > .menu-sub { display: -webkit-box; display: -ms-flexbox; display: flex; } .menu-sub > .menu-item.active > .menu-link { background-color: transparent; color: var(--bs-heading-color); } .menu-sub > .menu-item.active > .menu-link:not(.menu-toggle)::before { -webkit-box-shadow: 0 0 0 1px var(--bs-paper-bg); box-shadow: 0 0 0 1px var(--bs-paper-bg); } .menu-sub > .menu-item.active > .menu-link.menu-toggle { background-color: var(--bs-menu-active-toggle-bg); color: var(--bs-menu-color); } /* Menu toggle open/close arrow */ .menu-toggle::after { position: absolute; display: block; border: 2px solid; block-size: 0.45em; -webkit-border-after: 0; border-block-end: 0; -webkit-border-start: 0; border-inline-start: 0; content: ""; inline-size: 0.45em; inset-block-start: 49%; -webkit-transform: translateY(-50%) rotate(45deg); -ms-transform: translateY(-50%) rotate(45deg); transform: translateY(-50%) rotate(45deg); } /* Menu divider */ .menu-divider { border: 0; -webkit-border-before: 1px solid; border-block-start: 1px solid; border-block-start-color: var(--bs-menu-divider-color); inline-size: 100%; } .menu-vertical { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .menu-vertical:not(.menu-no-animation) { -webkit-transition: inline-size 0.3s; transition: inline-size 0.3s; } .menu-vertical, .menu-vertical .menu-block, .menu-vertical .menu-inner > .menu-item, .menu-vertical .menu-inner > .menu-header { inline-size: var(--bs-menu-width); } .menu-vertical .menu-inner { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .menu-vertical .menu-inner > .menu-item { margin-block: var(--bs-menu-item-spacer); margin-inline: 0; /* menu-link spacing */ } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item.active::before { position: absolute; background-color: var(--bs-primary); block-size: 2.6845rem; content: ""; inline-size: 0.25rem; inset-inline-end: 0; border-start-start-radius: 0.375rem; border-end-start-radius: 0.375rem; } .menu-vertical .menu-inner > .menu-item.active > .menu-link:not(.menu-toggle) { background-color: var(--bs-menu-active-bg); color: var(--bs-menu-active-color); } .menu-vertical .menu-inner > .menu-item .menu-link { border-radius: 0.375rem; margin-block: 0; margin-inline: 1rem; } .menu-vertical .menu-item .menu-link, .menu-vertical .menu-block { padding-block: var(--bs-menu-vertical-link-padding-y); padding-inline: var(--bs-menu-vertical-link-padding-x); } .layout-menu-hover .menu-vertical .menu-inner > .menu-item > .menu-link, .layout-menu-hover .menu-vertical .menu-inner > .menu-block, .layout-menu-hover .menu-vertical .menu-inner > .menu-header { padding-inline: calc(0.9375rem - 1px) calc(var(--bs-menu-vertical-link-padding-x) + 1.76em); } .menu-vertical .menu-header { position: relative; margin-block: 1rem 0.5rem; margin-inline: 0; padding-block: 0.625rem; padding-inline: 1.9996875rem; } .menu-vertical .menu-header::before { position: absolute; background-color: var(--bs-gray-200); block-size: 1px; content: ""; inline-size: 1rem; inset-block-start: 50%; inset-inline-start: 0; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .menu-vertical .menu-item .menu-link { font-size: 0.9375rem; min-block-size: 2.625rem; } .menu-vertical .menu-item .menu-link > div:not(.badge) { overflow: hidden; line-height: 1.375rem; text-overflow: ellipsis; white-space: nowrap; } .menu-vertical .menu-item .menu-toggle { -webkit-padding-end: calc(var(--bs-menu-vertical-link-padding-x) + 1.76em); padding-inline-end: calc(var(--bs-menu-vertical-link-padding-x) + 1.76em); } .menu-vertical .menu-item .menu-toggle::after { inset-inline-end: calc(var(--bs-menu-vertical-link-padding-x) + 0.3rem); -webkit-transition: -webkit-transform 0.3s; transition: -webkit-transform 0.3s; transition: transform 0.3s; transition: transform 0.3s, -webkit-transform 0.3s; } .menu-vertical .menu-item:not(.active):not(.open) .menu-link:hover { background-color: var(--bs-menu-hover-bg); } .menu-vertical .menu-item.active > .menu-toggle { background-color: var(--bs-menu-sub-active-bg); color: var(--bs-menu-sub-active-color); } .menu-vertical .menu-item.active:not(.open) > .menu-link:not(.menu-toggle)::before { /* border: 3px solid var(--bs-primary-bg-subtle); */ background-color: var(--bs-primary); block-size: 0.5rem; -webkit-box-shadow: 0 0 0 3px var(--bs-primary-bg-subtle); box-shadow: 0 0 0 3px var(--bs-primary-bg-subtle); inline-size: 0.5rem; inset-inline-start: 1.4rem; } .layout-horizontal .menu-vertical .menu-item.active:not(.open) > .menu-link:not(.menu-toggle)::before { inset-inline-start: 1.5rem; } .menu-vertical .menu-item.open:not(.menu-item-closing) > .menu-link::after { -webkit-transform: translateY(-50%) rotate(135deg); -ms-transform: translateY(-50%) rotate(135deg); transform: translateY(-50%) rotate(135deg); } .menu-vertical .menu-divider { padding: 0; margin-block: 0.5rem; } .menu-vertical .menu-sub .menu-item { margin-block: calc(var(--bs-menu-item-spacer) * 2) 0; margin-inline: 0; } @media (max-width: 1199.98px) { .layout-horizontal .menu-vertical .menu-sub .menu-icon { display: none; } } @media (max-width: 1199.98px) { .layout-horizontal .menu-vertical { -webkit-box-shadow: none; box-shadow: none; } } .layout-horizontal .menu-vertical .menu-item { -webkit-margin-before: 0.25rem; margin-block-start: 0.25rem; } .menu-vertical .menu-horizontal-wrapper { -webkit-box-flex: 0; -ms-flex: none; flex: none; } .menu-vertical ~ .menu-mobile-toggler { display: none; } .layout-navbar-hidden .menu-vertical ~ .menu-mobile-toggler { position: fixed; z-index: 1067; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background-color: var(--bs-secondary); inset-block-end: calc(1.625rem * 2); inset-inline-start: 1.625rem; } .menu-vertical .menu-sub .menu-link { -webkit-padding-start: 2.9375rem; padding-inline-start: 2.9375rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-link { -webkit-padding-start: 3.4375rem; padding-inline-start: 3.4375rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-link::before { inset-inline-start: 1.975rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub > .menu-item.active > .menu-link::before { inset-inline-start: 1.965rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub .menu-link { -webkit-padding-start: 4.0875rem; padding-inline-start: 4.0875rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub .menu-link::before { inset-inline-start: 2.625rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub > .menu-item.active > .menu-link::before { inset-inline-start: 2.615rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub .menu-sub .menu-link { -webkit-padding-start: 4.7375rem; padding-inline-start: 4.7375rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub .menu-sub .menu-link::before { inset-inline-start: 3.275rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub .menu-sub > .menu-item.active > .menu-link::before { inset-inline-start: 3.265rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub .menu-sub .menu-sub .menu-link { -webkit-padding-start: 5.3875rem; padding-inline-start: 5.3875rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub .menu-sub .menu-sub .menu-link::before { inset-inline-start: 3.925rem; } .layout-wrapper:not(.layout-horizontal) .menu-vertical .menu-inner > .menu-item .menu-sub .menu-sub .menu-sub .menu-sub .menu-sub > .menu-item.active > .menu-link::before { inset-inline-start: 3.915rem; } /* Vertical Menu Collapsed ******************************************************************************* */ /* Only for menu example */ .menu-collapsed:not(:hover) { inline-size: var(--bs-menu-collapsed-width); /* Custom for sneat only */ } .menu-collapsed:not(:hover) .menu-inner > .menu-item { inline-size: var(--bs-menu-collapsed-width); } .menu-collapsed:not(:hover) .menu-inner > .menu-header, .menu-collapsed:not(:hover) .menu-block { position: relative; inline-size: var(--bs-menu-width); -webkit-margin-start: var(--bs-menu-collapsed-width); margin-inline-start: var(--bs-menu-collapsed-width); padding-inline: 0.5rem calc(var(--bs-menu-vertical-link-padding-x) * 2 - 0.5rem); text-indent: -9999px; text-overflow: ellipsis; white-space: nowrap; } .menu-collapsed:not(:hover) .menu-inner > .menu-header .menu-header-text, .menu-collapsed:not(:hover) .menu-block .menu-header-text { overflow: hidden; opacity: 0; } .menu-collapsed:not(:hover) .menu-inner > .menu-header::before, .menu-collapsed:not(:hover) .menu-block::before { position: absolute; display: block; content: ""; inline-size: calc(var(--bs-menu-collapsed-width) * 0.22); inset-block: 1.1875rem; inset-inline-start: calc(-1 * var(--bs-menu-collapsed-width) * 0.61); text-align: center; } .menu-collapsed:not(:hover) .menu-block::before { block-size: 0.125rem; } .menu-collapsed:not(:hover) .menu-inner > .menu-item div:not(.menu-block) { overflow: hidden; opacity: 0; text-overflow: ellipsis; white-space: nowrap; } .menu-collapsed:not(:hover) .menu-inner > .menu-item > .menu-sub, .menu-collapsed:not(:hover) .menu-inner > .menu-item.open > .menu-sub { display: none; } .menu-collapsed:not(:hover) .menu-inner > .menu-item > .menu-toggle::after { display: none; } .menu-collapsed:not(:hover):not(.layout-menu-hover) .menu-inner > .menu-item > .menu-link, .menu-collapsed:not(:hover):not(.layout-menu-hover) .menu-inner > .menu-block, .menu-collapsed:not(:hover):not(.layout-menu-hover) .menu-inner > .menu-header { padding-inline: calc(0.9375rem - 1px); } .menu-collapsed:not(:hover) .menu-inner > .menu-item > .menu-link .menu-icon { -webkit-margin-end: 0; margin-inline-end: 0; text-align: center; } /* Horizontal ******************************************************************************* */ .menu-horizontal { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; inline-size: 100%; } .menu-horizontal .menu-inner { overflow: hidden; -webkit-box-flex: 0; -ms-flex: 0 1 100%; flex: 0 1 100%; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .menu-horizontal .menu-inner .menu-item:not(.menu-item-closing) > .menu-sub { background-color: var(--bs-menu-bg); } .menu-horizontal .menu-inner .menu-item:hover > .menu-link { background-color: var(--bs-menu-hover-bg); color: var(--bs-menu-hover-color); } .menu-horizontal .menu-item .menu-link { padding-block: 0.625rem; padding-inline: 1rem; } .menu-horizontal .menu-item.active > .menu-link:not(.menu-toggle) { background: var(--bs-menu-horizontal-active-bg); color: var(--bs-primary); } .menu-horizontal .menu-item.active > .menu-link:not(.menu-toggle)::before { background-color: var(--bs-primary); -webkit-box-shadow: 0 0 0 3px var(--bs-primary-bg-subtle); box-shadow: 0 0 0 3px var(--bs-primary-bg-subtle); } .menu-horizontal .menu-item .menu-toggle { -webkit-padding-end: calc(1rem + 1.76em); padding-inline-end: calc(1rem + 1.76em); } .menu-horizontal .menu-item .menu-toggle::after { inset-block-start: 47%; inset-inline-end: calc(1rem + 0.15rem); } .menu-horizontal .menu-inner > .menu-item > .menu-toggle::after { -webkit-transform: translateY(-50%) rotate(135deg); -ms-transform: translateY(-50%) rotate(135deg); transform: translateY(-50%) rotate(135deg); } .menu-horizontal .menu-inner > .menu-item > .menu-toggle::before { position: absolute; z-index: 2; block-size: 0.625rem; content: ""; inline-size: 100%; inset-block-start: 100%; inset-inline-start: 0; pointer-events: auto; } .menu-horizontal .menu-inner > .menu-item > .menu-sub { -webkit-margin-before: 0.625rem; margin-block-start: 0.625rem; } .menu-horizontal .menu-inner > .menu-item > .menu-sub .menu-sub { margin-block: 0; margin-inline: 0.375rem; } .menu-horizontal .menu-inner > .menu-item:not(.menu-item-closing).open .menu-item.open { position: relative; } .menu-horizontal .menu-sub { position: absolute; inline-size: 14.5rem; padding-block: 0.5rem; padding-inline: 0; } .menu-horizontal .menu-sub .menu-item { /* padding-inline: $menu-link-spacer-x; */ } .menu-horizontal .menu-sub .menu-item:not(:last-child) { -webkit-margin-after: 0.125rem; margin-block-end: 0.125rem; } .menu-horizontal .menu-sub .menu-item.open .menu-link > div::after { position: absolute; z-index: 2; block-size: 100%; content: ""; inline-size: 1.0625rem; inset-inline-end: -1.0625rem; pointer-events: auto; } .menu-horizontal .menu-sub .menu-sub { position: absolute; inline-size: 100%; inset-block-start: 0; inset-inline-start: 100%; } .menu-horizontal .menu-sub .menu-link { padding-block: 0.625rem; } .menu-horizontal .menu-inner > .menu-item .menu-sub { border-radius: 0.375rem; } .menu-horizontal .menu-inner > .menu-item .menu-sub .menu-sub .menu-link { -webkit-padding-start: 2rem; padding-inline-start: 2rem; } .menu-horizontal:not(.menu-no-animation) .menu-inner .menu-item.open .menu-sub { -webkit-animation: menuDropdownShow 0.3s ease-in-out; animation: menuDropdownShow 0.3s ease-in-out; } @media (max-width: 991.98px) { .menu-horizontal { display: none; } } .menu-horizontal-wrapper { overflow: hidden; -webkit-box-flex: 0; -ms-flex: 0 1 100%; flex: 0 1 100%; inline-size: 0; } .menu:not(.menu-no-animation) .menu-horizontal-wrapper .menu-inner { -webkit-transition: margin 0.3s; transition: margin 0.3s; } .menu-horizontal-prev, .menu-horizontal-next { position: relative; display: block; -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; inline-size: 2.25rem; } .menu-horizontal-prev::after, .menu-horizontal-next::after { position: absolute; display: block; border: 1px solid; block-size: 0.5rem; -webkit-border-before: 0; border-block-start: 0; content: ""; inline-size: 0.5rem; inset-block-start: 50%; inset-inline-start: 50%; } .menu-horizontal-prev.disabled, .menu-horizontal-next.disabled { cursor: not-allowed; } .menu-horizontal-prev::after { -webkit-border-end: 0; border-inline-end: 0; -webkit-transform: translate(0, -50%) rotate(45deg); -ms-transform: translate(0, -50%) rotate(45deg); transform: translate(0, -50%) rotate(45deg); } .menu-horizontal-next::after { -webkit-border-start: 0; border-inline-start: 0; -webkit-transform: translate(50%, -50%) rotate(315deg); -ms-transform: translate(50%, -50%) rotate(315deg); transform: translate(50%, -50%) rotate(315deg); } @-webkit-keyframes menuDropdownShow { 0% { opacity: 0; -webkit-transform: translateY(-0.5rem); transform: translateY(-0.5rem); } 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes menuDropdownShow { 0% { opacity: 0; -webkit-transform: translateY(-0.5rem); transform: translateY(-0.5rem); } 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } /* Layouts ******************************************************************************* */ .layout-container { min-block-size: 100vh; } .layout-wrapper, .layout-container { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; inline-size: 100%; } .layout-menu-offcanvas .layout-wrapper, .layout-menu-fixed-offcanvas .layout-wrapper { overflow: hidden; } /* Display menu toggle on navbar for .layout-menu-offcanvas, .layout-menu-fixed-offcanvas */ .layout-menu-offcanvas .layout-navbar .layout-menu-toggle, .layout-menu-fixed-offcanvas .layout-navbar .layout-menu-toggle { display: block !important; } /* Hide menu close icon from large screen for .layout-menu-offcanvas, .layout-menu-fixed-offcanvas */ @media (min-width: 1200px) { .layout-menu-offcanvas .layout-menu .layout-menu-toggle, .layout-menu-fixed-offcanvas .layout-menu .layout-menu-toggle { display: none; } .layout-horizontal .layout-page .menu-horizontal { -webkit-box-shadow: var(--bs-menu-box-shadow); box-shadow: var(--bs-menu-box-shadow); } } .layout-page, .content-wrapper, .content-wrapper > *, .layout-menu { min-block-size: 1px; } .layout-navbar, .content-footer { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; } .layout-page { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; padding: 0; } .layout-without-menu .layout-page { padding-inline: 0 !important; } .content-wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } /* Content backdrop */ .content-backdrop { /* z-index: 1 (layout static) */ position: fixed; top: 0; left: 0; z-index: 1; width: 100vw; height: 100vh; background-color: #22303e; } .content-backdrop.fade { opacity: 0; } .content-backdrop.show { opacity: 0.5; } .layout-menu-fixed .content-backdrop { z-index: 10; } .layout-horizontal .content-backdrop:not(.fade) { z-index: 9; } .content-backdrop.fade { z-index: -1; } /* Layout Navbar ******************************************************************************* */ .sticky-element { position: sticky; z-index: 8; } .window-scrolled .sticky-element { inset-block-start: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .layout-navbar-fixed .sticky-element { inset-block-start: 4.4375rem; } .layout-menu-fixed .layout-horizontal .sticky-element { inset-block-start: 7.75rem; } .layout-menu-fixed.layout-navbar-fixed .layout-horizontal .sticky-element { inset-block-start: 4rem; } .layout-navbar { position: relative; z-index: 2; -ms-flex-wrap: nowrap; flex-wrap: nowrap; block-size: 4rem; color: var(--bs-body-color); padding-block: 0.5rem; } .layout-navbar .navbar { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .layout-navbar .navbar-nav-right { -ms-flex-preferred-size: 100%; flex-basis: 100%; } .layout-navbar.navbar-detached { /* Container layout max-width */ border-radius: 0.375rem; -webkit-box-shadow: var(--bs-box-shadow-sm); box-shadow: var(--bs-box-shadow-sm); /* Navbar static */ inline-size: calc(100% - 1.625rem * 2); margin-block: 1rem 0; padding-block: 0; padding-inline: 1.5rem; } .layout-navbar.navbar-detached.container-xxl { max-inline-size: calc(1440px - 1.625rem * 2); } @media (max-width: 991.98px) { .layout-menu-fixed .layout-navbar.navbar-detached { inline-size: calc(100% - 1rem * 2) !important; } } .layout-navbar-fixed.layout-menu-collapsed .layout-navbar.navbar-detached { inline-size: calc(100% - 1.625rem * 2 - 5.25rem); } .layout-menu-collapsed .layout-navbar.navbar-detached, .layout-without-menu .layout-navbar.navbar-detached { inline-size: calc(100% - 1.625rem * 2); } .layout-wrapper:not(.layout-horizontal) .layout-navbar .dropdown-menu[data-bs-popper] { inset-block-start: 144%; } @media (max-width: 767.98px) { .layout-wrapper:not(.layout-horizontal) .layout-navbar .dropdown-menu[data-bs-popper] { inset-block-start: 110%; } } .layout-navbar .navbar-dropdown .badge-notifications { inset-block-start: 3px; inset-inline-end: -2px; } .layout-navbar .navbar-dropdown .dropdown-menu { overflow: hidden; min-inline-size: 22rem; } .layout-navbar .navbar-dropdown .dropdown-menu .dropdown-item { min-block-size: 2.375rem; } .layout-navbar .navbar-dropdown .dropdown-menu .last-login { white-space: normal; } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list { max-block-size: 30rem; } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item { cursor: pointer; padding-block: 0.75rem; padding-inline: 1rem; } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item .dropdown-notifications-actions { text-align: center; } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item .dropdown-notifications-actions > a { display: block; } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item .dropdown-notifications-archive i, .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item .dropdown-notifications-archive span { color: var(--bs-heading-color); } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item.marked-as-read .dropdown-notifications-read, .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item.marked-as-read .dropdown-notifications-archive { visibility: hidden; } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item.marked-as-read .dropdown-notifications-read span { background-color: var(--bs-secondary); } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:not(.marked-as-read) .dropdown-notifications-archive { visibility: hidden; } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:hover.marked-as-read .dropdown-notifications-read, .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:hover.marked-as-read .dropdown-notifications-archive { visibility: visible; } .layout-navbar .navbar-dropdown.dropdown-notifications .dropdown-notifications-list .dropdown-notifications-item:hover:not(.marked-as-read) .dropdown-notifications-archive { visibility: visible; } .layout-navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-list { max-block-size: 30rem; } .layout-navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item { padding: 1.5rem; text-align: center; } .layout-navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item:hover { background-color: var(--bs-gray-60); } .layout-navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item .dropdown-shortcuts-icon { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background-color: var(--bs-gray-80); block-size: 3.125rem; color: var(--bs-heading-color); inline-size: 3.125rem; margin-inline: auto; } .layout-navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item a, .layout-navbar .navbar-dropdown.dropdown-shortcuts .dropdown-shortcuts-item a:hover { display: block; color: var(--bs-heading-color) !important; font-weight: 500; -webkit-margin-after: 0; margin-block-end: 0; } .layout-navbar .navbar-dropdown.dropdown-user .dropdown-menu { min-inline-size: 14rem; } .layout-navbar[class*=bg-]:not(.bg-navbar-theme) .nav-item .input-group-text, .layout-navbar[class*=bg-]:not(.bg-navbar-theme) .nav-item .dropdown-toggle { color: var(--bs-white); } @media (max-width: 1199.98px) { .layout-navbar .navbar-nav .nav-item.dropdown .dropdown-menu { position: absolute; } .layout-navbar .navbar-nav .nav-item.dropdown .dropdown-menu .last-login { white-space: nowrap; } } @media (max-width: 767.98px) { .layout-navbar .navbar-nav .nav-item.dropdown { position: static; float: inline-start; } .layout-navbar .navbar-nav .nav-item.dropdown .dropdown-menu { position: absolute; inline-size: 92%; inset-inline-start: 0.9rem; min-inline-size: auto; } } /* Navbar require high z-index as we use z-index for menu slide-out for below large screen */ @media (max-width: 1199.98px) { .layout-navbar { z-index: 1080; } } /* Layout Menu ******************************************************************************* */ .layout-menu { position: relative; -webkit-box-flex: 1; -ms-flex: 1 0 auto; flex: 1 0 auto; } .layout-menu a:focus-visible { outline: none; } .layout-menu .menu { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .layout-menu.menu-vertical ~ .layout-page.window-scrolled .layout-navbar { -webkit-backdrop-filter: saturate(200%) blur(6px); backdrop-filter: saturate(200%) blur(6px); background-color: rgba(var(--bs-paper-bg-rgb), 0.88); } /* Layout Content navbar ******************************************************************************* */ .layout-content-navbar .layout-page { -ms-flex-preferred-size: 100%; flex-basis: 100%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; inline-size: 0; max-inline-size: 100%; min-inline-size: 0; } .layout-content-navbar .content-wrapper { inline-size: 100%; } /* Layout Navbar full ******************************************************************************* */ .layout-navbar-full .layout-container { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } @media (min-width: 1200px) { .layout-navbar-full:not(.layout-horizontal) .menu-inner { -webkit-margin-before: 0.75rem; margin-block-start: 0.75rem; } } .layout-navbar-full .content-wrapper { -ms-flex-preferred-size: 100%; flex-basis: 100%; inline-size: 0; max-inline-size: 100%; min-inline-size: 0; } .layout-navbar-full.layout-horizontal .layout-navbar { background-color: var(--bs-navbar-bg); -webkit-box-shadow: 0 1px 0 var(--bs-border-color); box-shadow: 0 1px 0 var(--bs-border-color); } .layout-navbar-full .content-backdrop.show { z-index: 9; } .layout-menu-fixed .layout-navbar-full .content-backdrop.show, .layout-menu-fixed-offcanvas .layout-navbar-full .content-backdrop.show { z-index: 1076; } /* Toggle ******************************************************************************* */ .layout-menu-toggle i { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: -webkit-transform; transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform; } @media (min-width: 992px) { .layout-menu-hover .layout-menu-toggle { display: none; } } /* Collapsed layout (Default static and static off-canvas menu) ******************************************************************************* */ @media (min-width: 1200px) { /* Menu style */ .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical { inline-size: var(--bs-menu-collapsed-width); /* Custom for sneat only */ } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-item, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-item { inline-size: var(--bs-menu-collapsed-width); } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-header, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-block, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-header, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-block { position: relative; inline-size: var(--bs-menu-width); -webkit-margin-start: var(--bs-menu-collapsed-width); margin-inline-start: var(--bs-menu-collapsed-width); padding-inline: 0.5rem calc(var(--bs-menu-vertical-link-padding-x) * 2 - 0.5rem); text-indent: -9999px; text-overflow: ellipsis; white-space: nowrap; } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-header .menu-header-text, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-block .menu-header-text, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-header .menu-header-text, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-block .menu-header-text { overflow: hidden; opacity: 0; } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-header::before, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-block::before, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-header::before, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-block::before { position: absolute; display: block; content: ""; inline-size: calc(var(--bs-menu-collapsed-width) * 0.22); inset-block: 1.1875rem; inset-inline-start: calc(-1 * var(--bs-menu-collapsed-width) * 0.61); text-align: center; } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-block::before, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-block::before { block-size: 0.125rem; } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-item div:not(.menu-block), .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-item div:not(.menu-block) { overflow: hidden; opacity: 0; text-overflow: ellipsis; white-space: nowrap; } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-item > .menu-sub, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-item.open > .menu-sub, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-item > .menu-sub, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-item.open > .menu-sub { display: none; } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-item > .menu-toggle::after, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-item > .menu-toggle::after { display: none; } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical:not(.layout-menu-hover) .menu-inner > .menu-item > .menu-link, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical:not(.layout-menu-hover) .menu-inner > .menu-block, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical:not(.layout-menu-hover) .menu-inner > .menu-header, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical:not(.layout-menu-hover) .menu-inner > .menu-item > .menu-link, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical:not(.layout-menu-hover) .menu-inner > .menu-block, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical:not(.layout-menu-hover) .menu-inner > .menu-header { padding-inline: calc(0.9375rem - 1px); } .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu .menu-vertical .menu-inner > .menu-item > .menu-link .menu-icon, .layout-menu-collapsed:not(.layout-menu-hover, .layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-menu.menu-vertical .menu-inner > .menu-item > .menu-link .menu-icon { -webkit-margin-end: 0; margin-inline-end: 0; text-align: center; } /* Menu position */ .layout-menu-hover.layout-menu-collapsed .layout-menu { -webkit-margin-end: -calc(var(--bs-menu-width)var(--bs-menu-collapsed-width)); margin-inline-end: -calc(var(--bs-menu-width)var(--bs-menu-collapsed-width)); } .layout-menu-hover.layout-menu-collapsed .layout-menu .layout-menu-toggle i { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: -webkit-transform; transition-property: -webkit-transform; transition-property: transform; transition-property: transform, -webkit-transform; } } /* Off-canvas layout (Layout Collapsed) ******************************************************************************* */ @media (min-width: 1200px) { .layout-menu-collapsed.layout-menu-offcanvas .layout-menu { -webkit-margin-end: -var(--bs-menu-width); margin-inline-end: -var(--bs-menu-width); -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } } /* Fixed off-canvas layout (Layout Fixed) ******************************************************************************* */ @media (min-width: 1200px) { /* Menu */ .layout-menu-fixed .layout-menu, .layout-menu-fixed-offcanvas .layout-menu { position: fixed; inset-block: 0; inset-inline-start: 0; margin-inline: 0 !important; } /* Fixed off-canvas */ /* Menu collapsed */ .layout-menu-fixed-offcanvas.layout-menu-collapsed .layout-menu { -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%); } /* Container */ /* Menu expanded */ .layout-menu-fixed:not(.layout-menu-collapsed) .layout-page, .layout-menu-fixed-offcanvas:not(.layout-menu-collapsed) .layout-page { -webkit-padding-start: var(--bs-menu-width); padding-inline-start: var(--bs-menu-width); } /* Menu collapsed */ .layout-menu-fixed.layout-menu-collapsed .layout-page { -webkit-padding-start: var(--bs-menu-collapsed-width); padding-inline-start: var(--bs-menu-collapsed-width); } } /* Reset paddings (for non fixed entities) */ html:not(.layout-navbar-fixed, .layout-menu-fixed, .layout-menu-fixed-offcanvas) .layout-page, html:not(.layout-navbar-fixed) .layout-content-navbar .layout-page { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; } html:not(.layout-footer-fixed) .content-wrapper { -webkit-padding-after: 0 !important; padding-block-end: 0 !important; } @media (max-width: 1199.98px) { .layout-menu-fixed .layout-wrapper.layout-navbar-full .layout-menu, .layout-menu-fixed-offcanvas .layout-wrapper.layout-navbar-full .layout-menu { inset-block-start: 0 !important; } html:not(.layout-navbar-fixed) .layout-navbar-full .layout-page { -webkit-padding-before: 0 !important; padding-block-start: 0 !important; } } /* Hidden navbar layout ******************************************************************************* */ .layout-navbar-hidden .layout-navbar { display: none; } /* Fixed navbar layout ******************************************************************************* */ .layout-navbar-fixed .layout-navbar { position: fixed; inset-block-start: 0; inset-inline: 0; } .layout-navbar-fixed .container-p-y:not([class^=pt-]):not([class*=" pt-"]) { -webkit-padding-before: 1.75rem !important; padding-block-start: 1.75rem !important; } .layout-navbar-fixed .layout-wrapper:not(.layout-horizontal) .layout-page::before { position: fixed; z-index: 10; -webkit-backdrop-filter: saturate(200%) blur(10px); backdrop-filter: saturate(200%) blur(10px); background: -webkit-gradient(linear, left top, left bottom, color-stop(44%, rgba(var(--bs-body-bg-rgb), 70%)), color-stop(73%, rgba(var(--bs-body-bg-rgb), 43%)), to(rgba(var(--bs-body-bg-rgb), 0%))); background: linear-gradient(180deg, rgba(var(--bs-body-bg-rgb), 70%) 44%, rgba(var(--bs-body-bg-rgb), 43%) 73%, rgba(var(--bs-body-bg-rgb), 0%)); block-size: 4.75rem; content: ""; inline-size: 100%; inset-block-start: 0; -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(var(--bs-body-bg)), color-stop(18%, var(--bs-body-bg)), to(transparent)); -webkit-mask: linear-gradient(var(--bs-body-bg), var(--bs-body-bg) 18%, transparent 100%); mask: -webkit-gradient(linear, left top, left bottom, from(var(--bs-body-bg)), color-stop(18%, var(--bs-body-bg)), to(transparent)); mask: linear-gradient(var(--bs-body-bg), var(--bs-body-bg) 18%, transparent 100%); } @media (min-width: 1200px) { /* Fix navbar within Navbar Full layout in fixed mode */ .layout-menu-fixed .layout-navbar-full .layout-navbar, .layout-menu-fixed-offcanvas .layout-navbar-full .layout-navbar { position: fixed; inset-block-start: 0; inset-inline: 0; } /* Fix navbar within Content Navbar layout in fixed mode - Menu expanded */ .layout-navbar-fixed:not(.layout-menu-collapsed) .layout-content-navbar:not(.layout-without-menu) .layout-navbar, .layout-menu-fixed.layout-navbar-fixed:not(.layout-menu-collapsed) .layout-content-navbar:not(.layout-without-menu) .layout-navbar, .layout-menu-fixed-offcanvas.layout-navbar-fixed:not(.layout-menu-collapsed) .layout-content-navbar:not(.layout-without-menu) .layout-navbar { inset-inline-start: var(--bs-menu-width); } .layout-navbar-fixed:not(.layout-menu-collapsed).swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar, .layout-navbar-fixed:not(.layout-menu-collapsed) .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar, .layout-menu-fixed.layout-navbar-fixed:not(.layout-menu-collapsed).swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar, .layout-menu-fixed.layout-navbar-fixed:not(.layout-menu-collapsed) .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar, .layout-menu-fixed-offcanvas.layout-navbar-fixed:not(.layout-menu-collapsed).swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar, .layout-menu-fixed-offcanvas.layout-navbar-fixed:not(.layout-menu-collapsed) .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar { inset-inline-start: calc(16.25rem - var(--bs-scrollbar-width)); } /* Horizontal Layout when menu fixed */ .layout-menu-fixed.swal2-shown .layout-horizontal .layout-navbar, .layout-menu-fixed.swal2-shown .layout-horizontal .layout-menu-horizontal, .layout-menu-fixed .modal-open .layout-horizontal .layout-navbar, .layout-menu-fixed .modal-open .layout-horizontal .layout-menu-horizontal { inline-size: calc(100% - var(--bs-scrollbar-width)); } .layout-menu-fixed:not(.layout-navbar-hidden) .layout-horizontal .layout-page .menu-horizontal, .layout-menu-fixed-offcanvas:not(.layout-navbar-hidden) .layout-horizontal .layout-page .menu-horizontal { position: fixed; inset-block-start: 4rem; } .layout-menu-fixed:not(.layout-navbar-hidden) .layout-horizontal .layout-page .menu-horizontal + [class*=container-], .layout-menu-fixed-offcanvas:not(.layout-navbar-hidden) .layout-horizontal .layout-page .menu-horizontal + [class*=container-] { -webkit-padding-before: 5.25rem !important; padding-block-start: 5.25rem !important; } /* Layout fixed not off-canvas - Menu collapsed */ .layout-navbar-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-content-navbar .layout-navbar, .layout-menu-fixed.layout-navbar-fixed.layout-menu-collapsed .layout-content-navbar .layout-navbar { inset-inline-start: var(--bs-menu-collapsed-width); } .layout-navbar-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas).swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-xxl), .layout-navbar-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas).swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-navbar-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-xxl), .layout-navbar-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-menu-fixed.layout-navbar-fixed.layout-menu-collapsed.swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-xxl), .layout-menu-fixed.layout-navbar-fixed.layout-menu-collapsed.swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-menu-fixed.layout-navbar-fixed.layout-menu-collapsed .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-xxl), .layout-menu-fixed.layout-navbar-fixed.layout-menu-collapsed .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl) { inset-inline-start: calc(var(--bs-menu-collapsed-width) - var(--bs-scrollbar-width)); } .layout-navbar-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas).swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-navbar-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-menu-fixed.layout-navbar-fixed.layout-menu-collapsed.swal2-shown .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-menu-fixed.layout-navbar-fixed.layout-menu-collapsed .modal-open .layout-content-navbar:not(.layout-without-menu) .layout-navbar:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl) { inline-size: calc(100% - 1.625rem * 2 - var(--bs-menu-collapsed-width) - var(--bs-scrollbar-width)); } } /* Fixed footer ******************************************************************************* */ .layout-footer-fixed .content-footer { position: fixed; z-index: 9; inset-block-end: 0; inset-inline: 0; } .layout-footer-fixed .layout-wrapper:not(.layout-horizontal) .content-footer .footer-container, .layout-footer-fixed .layout-wrapper.layout-horizontal .content-footer { background-color: var(--bs-footer-bg); -webkit-box-shadow: var(--bs-footer-box-shadow); box-shadow: var(--bs-footer-box-shadow); } .layout-footer-fixed .layout-wrapper:not(.layout-horizontal) .content-footer .footer-container { border: var(--bs-footer-border-width) solid var(--bs-footer-border-color); padding-inline: 1.5rem; border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; } @media (min-width: 1200px) { /* Fixed footer - Menu expanded */ .layout-footer-fixed:not(.layout-menu-collapsed) .layout-wrapper:not(.layout-without-menu) .content-footer { inset-inline-start: var(--bs-menu-width); } .layout-footer-fixed:not(.layout-menu-collapsed).swal2-shown .layout-wrapper .content-footer:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-footer-fixed:not(.layout-menu-collapsed) .modal-open .layout-wrapper .content-footer:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl) { inline-size: calc(100% - 16.25rem - var(--bs-scrollbar-width)); } /* Fixed footer - Menu collapsed */ .layout-footer-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-wrapper:not(.layout-without-menu) .content-footer { inset-inline-start: var(--bs-menu-collapsed-width); } .layout-footer-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas).swal2-shown .layout-wrapper:not(.layout-without-menu) .content-footer:has(.container-xxl), .layout-footer-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .modal-open .layout-wrapper:not(.layout-without-menu) .content-footer:has(.container-xxl) { inset-inline-start: calc(5.25rem - var(--bs-scrollbar-width)); } .layout-footer-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas).swal2-shown .layout-wrapper:not(.layout-without-menu) .content-footer:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl), .layout-footer-fixed.layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .modal-open .layout-wrapper:not(.layout-without-menu) .content-footer:has(.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl) { inline-size: calc(100% - 5.25rem - var(--bs-scrollbar-width)); inset-inline-start: 5.25rem; } } /* Small screens layout ******************************************************************************* */ @media (max-width: 1199.98px) { .layout-menu { position: fixed !important; block-size: 100% !important; inset-block-start: 0 !important; inset-inline-start: 0 !important; margin-inline: 0 !important; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); will-change: transform, -webkit-transform; } .layout-menu-expanded .layout-menu { -webkit-transform: translate3d(0, 0, 0) !important; transform: translate3d(0, 0, 0) !important; } .layout-menu-expanded body { overflow: hidden; } .layout-overlay { position: fixed; display: none; background: #22303e; block-size: 100% !important; cursor: pointer; inset-block-start: 0; inset-inline: 0; opacity: 0.5; } .layout-menu-expanded .layout-overlay { display: block; } .layout-menu-100vh .layout-menu, .layout-menu-100vh .layout-overlay { block-size: 100dvh !important; } .drag-target { position: fixed; z-index: 1036; block-size: 100%; inline-size: 40px; inset-block-start: 0; inset-inline-start: 0; } } /* Z-Indexes ******************************************************************************* */ /* Navbar (fixed) */ body:not(.modal-open) .layout-content-navbar .layout-navbar { z-index: 1075; } @media (max-width: 1199.98px) { .layout-menu { z-index: 1100; } .layout-overlay { z-index: 1099; } } @media (min-width: 1200px) { /* Navbar full layout */ .layout-navbar-full .layout-navbar { z-index: 10; } .layout-navbar-full .layout-menu { z-index: 9; } /* Content Navbar layout */ .layout-content-navbar .layout-navbar { z-index: 9; } .layout-content-navbar .layout-menu { z-index: 11; } /* Collapsed */ .layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas).layout-menu-hover .layout-navbar-full .layout-menu { z-index: 1075 !important; } .layout-menu-collapsed:not(.layout-menu-offcanvas, .layout-menu-fixed-offcanvas) .layout-content-navbar .layout-menu { z-index: 1085 !important; } /* Navbar full layout */ .layout-menu-fixed body:not(.modal-open) .layout-navbar-full .layout-menu, .layout-menu-fixed-offcanvas body:not(.modal-open) .layout-navbar-full .layout-menu { z-index: 1075; } /* Content Navbar layout */ .layout-navbar-fixed body:not(.modal-open) .layout-content-navbar .layout-menu, .layout-menu-fixed body:not(.modal-open) .layout-content-navbar .layout-menu, .layout-menu-fixed-offcanvas body:not(.modal-open) .layout-content-navbar .layout-menu { z-index: 1080; } } /* Transitions and animations ******************************************************************************* */ /* Disable navbar link hover transition */ .layout-menu-link-no-transition .layout-menu .menu-link, .layout-menu-link-no-transition .layout-menu-horizontal .menu-link { -webkit-animation: none !important; animation: none !important; -webkit-transition: none !important; transition: none !important; } /* Disable navbar link hover transition */ .layout-no-transition .layout-menu, .layout-no-transition .layout-menu .menu, .layout-no-transition .layout-menu .menu-item, .layout-no-transition .layout-menu-horizontal, .layout-no-transition .layout-menu-horizontal .menu, .layout-no-transition .layout-menu-horizontal .menu-item { -webkit-animation: none !important; animation: none !important; -webkit-transition: none !important; transition: none !important; } @media (max-width: 1199.98px) { .layout-transitioning .layout-overlay { -webkit-animation: menuAnimation 0.3s; animation: menuAnimation 0.3s; } .layout-transitioning .layout-menu { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; transition-property: transform, -webkit-transform; } } @media (min-width: 1200px) { .layout-menu-collapsed:not(.layout-transitioning, .layout-menu-offcanvas, .layout-menu-fixed, .layout-menu-fixed-offcanvas) .layout-menu { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: inline-size, -webkit-margin-start, -webkit-margin-end; transition-property: inline-size, -webkit-margin-start, -webkit-margin-end; transition-property: margin-inline-start, margin-inline-end, inline-size; transition-property: margin-inline-start, margin-inline-end, inline-size, -webkit-margin-start, -webkit-margin-end; } .layout-transitioning.layout-menu-offcanvas .layout-menu { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; transition-property: margin-inline-start, margin-inline-end, transform, -webkit-transform; } .layout-transitioning.layout-menu-fixed .layout-page, .layout-transitioning.layout-menu-fixed-offcanvas .layout-page { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: -webkit-padding-start, -webkit-padding-end; transition-property: -webkit-padding-start, -webkit-padding-end; transition-property: padding-inline-start, padding-inline-end; transition-property: padding-inline-start, padding-inline-end, -webkit-padding-start, -webkit-padding-end; } .layout-transitioning.layout-menu-fixed .layout-menu { -webkit-transition: inline-size 0.3s; transition: inline-size 0.3s; } .layout-transitioning.layout-menu-fixed-offcanvas .layout-menu { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; transition-property: transform, -webkit-transform; } .layout-transitioning.layout-navbar-fixed .layout-content-navbar .layout-navbar, .layout-transitioning.layout-footer-fixed .content-footer { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: inset-inline-start, inset-inline-end; transition-property: inset-inline-start, inset-inline-end; } .layout-transitioning:not(.layout-menu-offcanvas, .layout-menu-fixed, .layout-menu-fixed-offcanvas) .layout-menu { -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: inline-size, -webkit-margin-start, -webkit-margin-end; transition-property: inline-size, -webkit-margin-start, -webkit-margin-end; transition-property: margin-inline-start, margin-inline-end, inline-size; transition-property: margin-inline-start, margin-inline-end, inline-size, -webkit-margin-start, -webkit-margin-end; } } /* Disable transitions/animations in IE 10-11 */ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .menu, .layout-menu, .layout-page, .layout-navbar, .content-footer { -webkit-transition: none !important; transition: none !important; -webkit-transition-duration: 0s !important; transition-duration: 0s !important; } .layout-overlay { -webkit-animation: none !important; animation: none !important; } } @-webkit-keyframes menuAnimation { 0% { opacity: 0; } 100% { opacity: 0.5; } } @keyframes menuAnimation { 0% { opacity: 0; } 100% { opacity: 0.5; } } /* App Brand ******************************************************************************* */ .app-brand { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex-positive: 0; flex-grow: 0; -ms-flex-negative: 0; flex-shrink: 0; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .app-brand .app-brand-text { opacity: 1; -webkit-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .app-brand .layout-menu-toggle { display: block; } .app-brand .app-brand-img { display: block; } .app-brand .app-brand-img-collapsed { display: none; } .app-brand-link { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } /* App brand with vertical menu */ .menu-horizontal .app-brand, .menu-horizontal .app-brand + .menu-divider { display: none !important; } @media (min-width: 1200px) { .layout-menu-collapsed:not(.layout-menu-hover) .layout-menu .app-brand-logo ~ .app-brand-text, .menu-collapsed:not(:hover) .app-brand .app-brand-logo ~ .app-brand-text { opacity: 0; } .layout-menu-collapsed:not(.layout-menu-hover) .layout-menu .app-brand-img, .menu-collapsed:not(:hover) .app-brand .app-brand-img { display: none; } .layout-menu-collapsed:not(.layout-menu-hover) .layout-menu .app-brand-img-collapsed, .menu-collapsed:not(:hover) .app-brand .app-brand-img-collapsed { display: block; } } /* Within menu */ :not(.layout-menu) > .menu-vertical.menu-collapsed:not(.layout-menu):not(:hover) .app-brand, .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand { inline-size: 5.25rem; } :not(.layout-menu) > .menu-vertical.menu-collapsed:not(.layout-menu):not(:hover) .app-brand-logo, :not(.layout-menu) > .menu-vertical.menu-collapsed:not(.layout-menu):not(:hover) .app-brand-link, :not(.layout-menu) > .menu-vertical.menu-collapsed:not(.layout-menu):not(:hover) .app-brand-text, .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand-logo, .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand-link, .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand-text { margin-inline: auto; } :not(.layout-menu) > .menu-vertical.menu-collapsed:not(.layout-menu):not(:hover) .app-brand-logo ~ .app-brand-text, .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand-logo ~ .app-brand-text { overflow: hidden; opacity: 0; text-overflow: ellipsis; white-space: nowrap; } :not(.layout-menu) > .menu-vertical.menu-collapsed:not(.layout-menu):not(:hover) .app-brand .layout-menu-toggle, .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand .layout-menu-toggle { inset-inline-start: calc(5.25rem - 1.5rem); opacity: 0; } :not(.layout-menu) > .menu-vertical.menu-collapsed:not(.layout-menu):not(:hover) .app-brand-img, .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand-img { display: none; } :not(.layout-menu) > .menu-vertical.menu-collapsed:not(.layout-menu):not(:hover) .app-brand-img-collapsed, .layout-menu-collapsed:not(.layout-menu-hover):not(.layout-menu-offcanvas):not(.layout-menu-fixed-offcanvas) .layout-menu .app-brand-img-collapsed { display: block; } /* Avatar ******************************************************************************* */ /* Avatar Styles */ .avatar { --bs-avatar-size: 2.375rem; --bs-avatar-group-border: var(--bs-paper-bg); --bs-avatar-initial-inline: 3px; --bs-avatar-initial-bg: #eeedf0; position: relative; block-size: var(--bs-avatar-size); cursor: pointer; inline-size: var(--bs-avatar-size); } .avatar .avatar-initial { position: absolute; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background-color: var(--bs-avatar-initial-bg); color: var(--bs-white); font-size: var(--bs-avatar-initial); font-weight: 500; inset: 0; text-transform: uppercase; } .avatar.avatar-online::after, .avatar.avatar-offline::after, .avatar.avatar-away::after, .avatar.avatar-busy::after { position: absolute; border-radius: 100%; block-size: calc(var(--bs-avatar-size) * 0.2); -webkit-box-shadow: 0 0 0 2px var(--bs-white); box-shadow: 0 0 0 2px var(--bs-white); content: ""; inline-size: calc(var(--bs-avatar-size) * 0.2); inset-block-end: 0; inset-inline-end: var(--bs-avatar-initial-inline); } .avatar img { block-size: 100%; inline-size: 100%; } .avatar.avatar-online::after { background-color: var(--bs-success); } .avatar.avatar-offline::after { background-color: var(--bs-secondary); } .avatar.avatar-away::after { background-color: var(--bs-warning); } .avatar.avatar-busy::after { background-color: var(--bs-danger); } .avatar [class*=avatar-shadow-] { background-color: var(--bs-avatar-icon-bg); -webkit-box-shadow: 0 0 0 0.25rem rgba(var(--bs-avatar-icon-shadow-color), 0.06); box-shadow: 0 0 0 0.25rem rgba(var(--bs-avatar-icon-shadow-color), 0.06); color: var(--bs-avatar-icon-color); } /* Pull up avatar style */ .pull-up { -webkit-transition: all 0.25s ease; transition: all 0.25s ease; } .pull-up:hover { z-index: 30; border-radius: 50%; -webkit-box-shadow: var(--bs-box-shadow); box-shadow: var(--bs-box-shadow); -webkit-transform: translateY(-4px) scale(1.02); -ms-transform: translateY(-4px) scale(1.02); transform: translateY(-4px) scale(1.02); } .avatar-xs { --bs-avatar-size: 1.5rem; --bs-avatar-initial: 0.625rem; --bs-avatar-initial-inline: 1px; } .avatar-sm { --bs-avatar-size: 2rem; --bs-avatar-initial: 0.8125rem; --bs-avatar-initial-inline: 2px; } .avatar-md { --bs-avatar-size: 3rem; --bs-avatar-initial: 1.125rem; --bs-avatar-initial-inline: 3px; } .avatar-lg { --bs-avatar-size: 3.5rem; --bs-avatar-initial: 1.5rem; --bs-avatar-initial-inline: 4px; } .avatar-xl { --bs-avatar-size: 4rem; --bs-avatar-initial: 1.875rem; --bs-avatar-initial-inline: 5px; } /* Avatar Group SCSS */ .avatar-group .avatar { -webkit-margin-start: -0.8rem; margin-inline-start: -0.8rem; -webkit-transition: all 0.25s ease; transition: all 0.25s ease; } .avatar-group .avatar:first-child { -webkit-margin-start: 0; margin-inline-start: 0; } .avatar-group .avatar img, .avatar-group .avatar .avatar-initial { border: 2px solid var(--bs-avatar-group-border); color: var(--bs-heading-color); } .avatar-group .avatar:hover { z-index: 30; -webkit-transition: all 0.25s ease; transition: all 0.25s ease; } .avatar-group .avatar-xs { -webkit-margin-start: -0.65rem; margin-inline-start: -0.65rem; } .avatar-group .avatar-sm { -webkit-margin-start: -0.75rem; margin-inline-start: -0.75rem; } .avatar-group .avatar-md { -webkit-margin-start: -0.9rem; margin-inline-start: -0.9rem; } .avatar-group .avatar-lg { -webkit-margin-start: -1.5rem; margin-inline-start: -1.5rem; } .avatar-group .avatar-xl { -webkit-margin-start: -1.75rem; margin-inline-start: -1.75rem; } .avatar .avatar-shadow-primary { --bs-avatar-icon-color: var(--bs-primary); --bs-avatar-icon-shadow-color: var(--bs-primary-rgb); --bs-avatar-icon-bg: var(--bs-primary-bg-subtle); } .avatar .avatar-shadow-secondary { --bs-avatar-icon-color: var(--bs-secondary); --bs-avatar-icon-shadow-color: var(--bs-secondary-rgb); --bs-avatar-icon-bg: var(--bs-secondary-bg-subtle); } .avatar .avatar-shadow-success { --bs-avatar-icon-color: var(--bs-success); --bs-avatar-icon-shadow-color: var(--bs-success-rgb); --bs-avatar-icon-bg: var(--bs-success-bg-subtle); } .avatar .avatar-shadow-info { --bs-avatar-icon-color: var(--bs-info); --bs-avatar-icon-shadow-color: var(--bs-info-rgb); --bs-avatar-icon-bg: var(--bs-info-bg-subtle); } .avatar .avatar-shadow-warning { --bs-avatar-icon-color: var(--bs-warning); --bs-avatar-icon-shadow-color: var(--bs-warning-rgb); --bs-avatar-icon-bg: var(--bs-warning-bg-subtle); } .avatar .avatar-shadow-danger { --bs-avatar-icon-color: var(--bs-danger); --bs-avatar-icon-shadow-color: var(--bs-danger-rgb); --bs-avatar-icon-bg: var(--bs-danger-bg-subtle); } .avatar .avatar-shadow-light { --bs-avatar-icon-color: var(--bs-light); --bs-avatar-icon-shadow-color: var(--bs-light-rgb); --bs-avatar-icon-bg: var(--bs-light-bg-subtle); } .avatar .avatar-shadow-dark { --bs-avatar-icon-color: var(--bs-dark); --bs-avatar-icon-shadow-color: var(--bs-dark-rgb); --bs-avatar-icon-bg: var(--bs-dark-bg-subtle); } .avatar .avatar-shadow-gray { --bs-avatar-icon-color: var(--bs-gray); --bs-avatar-icon-shadow-color: var(--bs-gray-rgb); --bs-avatar-icon-bg: var(--bs-gray-bg-subtle); } /* Divider ******************************************************************************* */ .divider { --bs-divider-color: var(--bs-gray-200); display: block; overflow: hidden; margin-block: 1rem; margin-inline: 0; text-align: center; white-space: nowrap; } .divider .divider-text { position: relative; display: inline-block; color: var(--bs-heading-color); font-size: 0.9375rem; padding-block: 0; padding-inline: 0.677rem; } .divider .divider-text .icon-base { block-size: 1rem; font-size: 1rem; inline-size: 1rem; } .divider .divider-text::before, .divider .divider-text::after { position: absolute; -webkit-border-before: 1px solid var(--bs-divider-color); border-block-start: 1px solid var(--bs-divider-color); content: ""; inline-size: 100vw; inset-block-start: 50%; } .divider .divider-text::before { inset-inline-end: 100%; } .divider .divider-text::after { inset-inline-start: 100%; } .divider.text-start .divider-text { -webkit-padding-start: 0; padding-inline-start: 0; } .divider.text-end .divider-text { -webkit-padding-end: 0; padding-inline-end: 0; } .divider.text-start-center .divider-text { inset-inline-start: -25%; } .divider.text-end-center .divider-text { inset-inline-end: -25%; } .divider.divider-dotted .divider-text::before, .divider.divider-dotted .divider-text::after { border-width: 0 1px 1px; border-style: dotted; border-color: var(--bs-divider-color); } .divider.divider-dashed .divider-text::before, .divider.divider-dashed .divider-text::after { border-width: 0 1px 1px; border-style: dashed; border-color: var(--bs-divider-color); } .divider-primary { --bs-divider-color: var(--bs-primary); } .divider-secondary { --bs-divider-color: var(--bs-secondary); } .divider-success { --bs-divider-color: var(--bs-success); } .divider-info { --bs-divider-color: var(--bs-info); } .divider-warning { --bs-divider-color: var(--bs-warning); } .divider-danger { --bs-divider-color: var(--bs-danger); } .divider-light { --bs-divider-color: var(--bs-light); } .divider-dark { --bs-divider-color: var(--bs-dark); } .divider-gray { --bs-divider-color: var(--bs-gray); } /* Footer ******************************************************************************* */ .footer { --bs-footer-color: var(--bs-body-color); --bs-footer-bg: var(--bs-paper-bg); --bs-footer-border-width: 0; --bs-footer-border-color: var(--bs-border-color); --bs-footer-link-color: var(--bs-primary); --bs-footer-link-hover-color: rgba(var(--bs-primary-rgb), 0.8); --bs-footer-link-disabled-color: var(--bs-gray-300); --bs-footer-link-active-color: var(--bs-primary); --bs-footer-brand-color: var(--bs-primary); --bs-footer-brand-hover-color: color-mix(in sRGB, var(--bs-primary) 84%, var(--bs-paper-bg)); --bs-footer-box-shadow: var(--bs-box-shadow-lg); color: var(--bs-footer-color); } .footer .footer-brand { color: var(--bs-footer-brand-color); } .footer .footer-brand:hover, .footer .footer-brand:focus { color: var(--bs-footer-brand-hover-color); } .footer.content-footer .footer-container { block-size: 54px; } .footer .footer-link { display: inline-block; color: var(--bs-footer-link-color); } .footer .footer-link:hover, .footer .footer-link:focus { color: var(--bs-footer-link-hover-color); } .footer .footer-link.disabled { color: var(--bs-footer-link-disabled-color) !important; } .footer .footer-link:active, .footer .footer-link.active { color: var(--bs-footer-link-active-color); } .footer.bg-footer-theme { --bs-footer-brand-color: var(--bs-body-color); } .footer.bg-light { --bs-footer-brand-hover-color: color-mix(in sRGB, var(--bs-paper-bg) 40%, var(--bs-light-contrast)); --bs-footer-link-hover-color: var(--bs-light-contrast); --bs-footer-color: var(--bs-body-color); --bs-footer-link-color: var(--bs-body-color); --bs-footer-brand-color: var(--bs-heading-color); } ================================================ FILE: assets/vendor/css/pages/page-auth.css ================================================ @charset "UTF-8"; /* Authentication ******************************************************************************* */ .authentication-wrapper { --bs-auth-basic-inner-max-width: 460px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-preferred-size: 100%; flex-basis: 100%; inline-size: 100%; min-block-size: 100vh; } .authentication-wrapper .authentication-inner { inline-size: 100%; } .authentication-wrapper .app-brand-logo.demo svg { block-size: 38px; inline-size: 22px; } .authentication-wrapper.authentication-basic { overflow: hidden; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .authentication-wrapper.authentication-basic .authentication-inner { position: relative; max-inline-size: var(--bs-auth-basic-inner-max-width); } .authentication-wrapper.authentication-basic .authentication-inner::before { position: absolute; background: color-mix(in sRGB, var(--bs-primary) 60%, var(--bs-paper-bg)); block-size: 148px; content: " "; inline-size: 148px; inset-block-start: -55px; inset-inline-end: -50px; -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='148px' height='148px' viewBox='0 0 148 148' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M355,144 C356.104569,144 357,144.895431 357,146 C357,147.104569 356.104569,148 355,148 C353.895431,148 353,147.104569 353,146 C353,144.895431 353.895431,144 355,144 Z M382,144 C383.104569,144 384,144.895431 384,146 C384,147.104569 383.104569,148 382,148 C380.895431,148 380,147.104569 380,146 C380,144.895431 380.895431,144 382,144 Z M412,144 C413.104569,144 414,144.895431 414,146 C414,147.104569 413.104569,148 412,148 C410.895431,148 410,147.104569 410,146 C410,144.895431 410.895431,144 412,144 Z M442,144 C443.104569,144 444,144.895431 444,146 C444,147.104569 443.104569,148 442,148 C440.895431,148 440,147.104569 440,146 C440,144.895431 440.895431,144 442,144 Z M472,144 C473.104569,144 474,144.895431 474,146 C474,147.104569 473.104569,148 472,148 C470.895431,148 470,147.104569 470,146 C470,144.895431 470.895431,144 472,144 Z M499,144 C500.104569,144 501,144.895431 501,146 C501,147.104569 500.104569,148 499,148 C497.895431,148 497,147.104569 497,146 C497,144.895431 497.895431,144 499,144 Z M355,117 C356.104569,117 357,117.895431 357,119 C357,120.104569 356.104569,121 355,121 C353.895431,121 353,120.104569 353,119 C353,117.895431 353.895431,117 355,117 Z M382,117 C383.104569,117 384,117.895431 384,119 C384,120.104569 383.104569,121 382,121 C380.895431,121 380,120.104569 380,119 C380,117.895431 380.895431,117 382,117 Z M412,117 C413.104569,117 414,117.895431 414,119 C414,120.104569 413.104569,121 412,121 C410.895431,121 410,120.104569 410,119 C410,117.895431 410.895431,117 412,117 Z M442,117 C443.104569,117 444,117.895431 444,119 C444,120.104569 443.104569,121 442,121 C440.895431,121 440,120.104569 440,119 C440,117.895431 440.895431,117 442,117 Z M472,117 C473.104569,117 474,117.895431 474,119 C474,120.104569 473.104569,121 472,121 C470.895431,121 470,120.104569 470,119 C470,117.895431 470.895431,117 472,117 Z M499,117 C500.104569,117 501,117.895431 501,119 C501,120.104569 500.104569,121 499,121 C497.895431,121 497,120.104569 497,119 C497,117.895431 497.895431,117 499,117 Z M355,87 C356.104569,87 357,87.8954305 357,89 C357,90.1045695 356.104569,91 355,91 C353.895431,91 353,90.1045695 353,89 C353,87.8954305 353.895431,87 355,87 Z M382,87 C383.104569,87 384,87.8954305 384,89 C384,90.1045695 383.104569,91 382,91 C380.895431,91 380,90.1045695 380,89 C380,87.8954305 380.895431,87 382,87 Z M412,87 C413.104569,87 414,87.8954305 414,89 C414,90.1045695 413.104569,91 412,91 C410.895431,91 410,90.1045695 410,89 C410,87.8954305 410.895431,87 412,87 Z M442,87 C443.104569,87 444,87.8954305 444,89 C444,90.1045695 443.104569,91 442,91 C440.895431,91 440,90.1045695 440,89 C440,87.8954305 440.895431,87 442,87 Z M472,87 C473.104569,87 474,87.8954305 474,89 C474,90.1045695 473.104569,91 472,91 C470.895431,91 470,90.1045695 470,89 C470,87.8954305 470.895431,87 472,87 Z M499,87 C500.104569,87 501,87.8954305 501,89 C501,90.1045695 500.104569,91 499,91 C497.895431,91 497,90.1045695 497,89 C497,87.8954305 497.895431,87 499,87 Z M355,57 C356.104569,57 357,57.8954305 357,59 C357,60.1045695 356.104569,61 355,61 C353.895431,61 353,60.1045695 353,59 C353,57.8954305 353.895431,57 355,57 Z M472,57 C473.104569,57 474,57.8954305 474,59 C474,60.1045695 473.104569,61 472,61 C470.895431,61 470,60.1045695 470,59 C470,57.8954305 470.895431,57 472,57 Z M412,57 C413.104569,57 414,57.8954305 414,59 C414,60.1045695 413.104569,61 412,61 C410.895431,61 410,60.1045695 410,59 C410,57.8954305 410.895431,57 412,57 Z M499,57 C500.104569,57 501,57.8954305 501,59 C501,60.1045695 500.104569,61 499,61 C497.895431,61 497,60.1045695 497,59 C497,57.8954305 497.895431,57 499,57 Z M382,57 C383.104569,57 384,57.8954305 384,59 C384,60.1045695 383.104569,61 382,61 C380.895431,61 380,60.1045695 380,59 C380,57.8954305 380.895431,57 382,57 Z M442,57 C443.104569,57 444,57.8954305 444,59 C444,60.1045695 443.104569,61 442,61 C440.895431,61 440,60.1045695 440,59 C440,57.8954305 440.895431,57 442,57 Z M355,27 C356.104569,27 357,27.8954305 357,29 C357,30.1045695 356.104569,31 355,31 C353.895431,31 353,30.1045695 353,29 C353,27.8954305 353.895431,27 355,27 Z M382,27 C383.104569,27 384,27.8954305 384,29 C384,30.1045695 383.104569,31 382,31 C380.895431,31 380,30.1045695 380,29 C380,27.8954305 380.895431,27 382,27 Z M412,27 C413.104569,27 414,27.8954305 414,29 C414,30.1045695 413.104569,31 412,31 C410.895431,31 410,30.1045695 410,29 C410,27.8954305 410.895431,27 412,27 Z M442,27 C443.104569,27 444,27.8954305 444,29 C444,30.1045695 443.104569,31 442,31 C440.895431,31 440,30.1045695 440,29 C440,27.8954305 440.895431,27 442,27 Z M472,27 C473.104569,27 474,27.8954305 474,29 C474,30.1045695 473.104569,31 472,31 C470.895431,31 470,30.1045695 470,29 C470,27.8954305 470.895431,27 472,27 Z M499,27 C500.104569,27 501,27.8954305 501,29 C501,30.1045695 500.104569,31 499,31 C497.895431,31 497,30.1045695 497,29 C497,27.8954305 497.895431,27 499,27 Z M355,0 C356.104569,0 357,0.8954305 357,2 C357,3.1045695 356.104569,4 355,4 C353.895431,4 353,3.1045695 353,2 C353,0.8954305 353.895431,0 355,0 Z M382,0 C383.104569,0 384,0.8954305 384,2 C384,3.1045695 383.104569,4 382,4 C380.895431,4 380,3.1045695 380,2 C380,0.8954305 380.895431,0 382,0 Z M412,0 C413.104569,0 414,0.8954305 414,2 C414,3.1045695 413.104569,4 412,4 C410.895431,4 410,3.1045695 410,2 C410,0.8954305 410.895431,0 412,0 Z M442,0 C443.104569,0 444,0.8954305 444,2 C444,3.1045695 443.104569,4 442,4 C440.895431,4 440,3.1045695 440,2 C440,0.8954305 440.895431,0 442,0 Z M472,0 C473.104569,0 474,0.8954305 474,2 C474,3.1045695 473.104569,4 472,4 C470.895431,4 470,3.1045695 470,2 C470,0.8954305 470.895431,0 472,0 Z M499,0 C500.104569,0 501,0.8954305 501,2 C501,3.1045695 500.104569,4 499,4 C497.895431,4 497,3.1045695 497,2 C497,0.8954305 497.895431,0 499,0 Z' id='path-1'%3E%3C/path%3E%3C/defs%3E%3Cg id='📝-Pages' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Login---V2' transform='translate(-822.000000, -197.000000)'%3E%3Cg id='top-illustration' transform='translate(469.000000, 197.000000)'%3E%3Cuse fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.6' fill='%23FFFFFF' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg width='148px' height='148px' viewBox='0 0 148 148' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M355,144 C356.104569,144 357,144.895431 357,146 C357,147.104569 356.104569,148 355,148 C353.895431,148 353,147.104569 353,146 C353,144.895431 353.895431,144 355,144 Z M382,144 C383.104569,144 384,144.895431 384,146 C384,147.104569 383.104569,148 382,148 C380.895431,148 380,147.104569 380,146 C380,144.895431 380.895431,144 382,144 Z M412,144 C413.104569,144 414,144.895431 414,146 C414,147.104569 413.104569,148 412,148 C410.895431,148 410,147.104569 410,146 C410,144.895431 410.895431,144 412,144 Z M442,144 C443.104569,144 444,144.895431 444,146 C444,147.104569 443.104569,148 442,148 C440.895431,148 440,147.104569 440,146 C440,144.895431 440.895431,144 442,144 Z M472,144 C473.104569,144 474,144.895431 474,146 C474,147.104569 473.104569,148 472,148 C470.895431,148 470,147.104569 470,146 C470,144.895431 470.895431,144 472,144 Z M499,144 C500.104569,144 501,144.895431 501,146 C501,147.104569 500.104569,148 499,148 C497.895431,148 497,147.104569 497,146 C497,144.895431 497.895431,144 499,144 Z M355,117 C356.104569,117 357,117.895431 357,119 C357,120.104569 356.104569,121 355,121 C353.895431,121 353,120.104569 353,119 C353,117.895431 353.895431,117 355,117 Z M382,117 C383.104569,117 384,117.895431 384,119 C384,120.104569 383.104569,121 382,121 C380.895431,121 380,120.104569 380,119 C380,117.895431 380.895431,117 382,117 Z M412,117 C413.104569,117 414,117.895431 414,119 C414,120.104569 413.104569,121 412,121 C410.895431,121 410,120.104569 410,119 C410,117.895431 410.895431,117 412,117 Z M442,117 C443.104569,117 444,117.895431 444,119 C444,120.104569 443.104569,121 442,121 C440.895431,121 440,120.104569 440,119 C440,117.895431 440.895431,117 442,117 Z M472,117 C473.104569,117 474,117.895431 474,119 C474,120.104569 473.104569,121 472,121 C470.895431,121 470,120.104569 470,119 C470,117.895431 470.895431,117 472,117 Z M499,117 C500.104569,117 501,117.895431 501,119 C501,120.104569 500.104569,121 499,121 C497.895431,121 497,120.104569 497,119 C497,117.895431 497.895431,117 499,117 Z M355,87 C356.104569,87 357,87.8954305 357,89 C357,90.1045695 356.104569,91 355,91 C353.895431,91 353,90.1045695 353,89 C353,87.8954305 353.895431,87 355,87 Z M382,87 C383.104569,87 384,87.8954305 384,89 C384,90.1045695 383.104569,91 382,91 C380.895431,91 380,90.1045695 380,89 C380,87.8954305 380.895431,87 382,87 Z M412,87 C413.104569,87 414,87.8954305 414,89 C414,90.1045695 413.104569,91 412,91 C410.895431,91 410,90.1045695 410,89 C410,87.8954305 410.895431,87 412,87 Z M442,87 C443.104569,87 444,87.8954305 444,89 C444,90.1045695 443.104569,91 442,91 C440.895431,91 440,90.1045695 440,89 C440,87.8954305 440.895431,87 442,87 Z M472,87 C473.104569,87 474,87.8954305 474,89 C474,90.1045695 473.104569,91 472,91 C470.895431,91 470,90.1045695 470,89 C470,87.8954305 470.895431,87 472,87 Z M499,87 C500.104569,87 501,87.8954305 501,89 C501,90.1045695 500.104569,91 499,91 C497.895431,91 497,90.1045695 497,89 C497,87.8954305 497.895431,87 499,87 Z M355,57 C356.104569,57 357,57.8954305 357,59 C357,60.1045695 356.104569,61 355,61 C353.895431,61 353,60.1045695 353,59 C353,57.8954305 353.895431,57 355,57 Z M472,57 C473.104569,57 474,57.8954305 474,59 C474,60.1045695 473.104569,61 472,61 C470.895431,61 470,60.1045695 470,59 C470,57.8954305 470.895431,57 472,57 Z M412,57 C413.104569,57 414,57.8954305 414,59 C414,60.1045695 413.104569,61 412,61 C410.895431,61 410,60.1045695 410,59 C410,57.8954305 410.895431,57 412,57 Z M499,57 C500.104569,57 501,57.8954305 501,59 C501,60.1045695 500.104569,61 499,61 C497.895431,61 497,60.1045695 497,59 C497,57.8954305 497.895431,57 499,57 Z M382,57 C383.104569,57 384,57.8954305 384,59 C384,60.1045695 383.104569,61 382,61 C380.895431,61 380,60.1045695 380,59 C380,57.8954305 380.895431,57 382,57 Z M442,57 C443.104569,57 444,57.8954305 444,59 C444,60.1045695 443.104569,61 442,61 C440.895431,61 440,60.1045695 440,59 C440,57.8954305 440.895431,57 442,57 Z M355,27 C356.104569,27 357,27.8954305 357,29 C357,30.1045695 356.104569,31 355,31 C353.895431,31 353,30.1045695 353,29 C353,27.8954305 353.895431,27 355,27 Z M382,27 C383.104569,27 384,27.8954305 384,29 C384,30.1045695 383.104569,31 382,31 C380.895431,31 380,30.1045695 380,29 C380,27.8954305 380.895431,27 382,27 Z M412,27 C413.104569,27 414,27.8954305 414,29 C414,30.1045695 413.104569,31 412,31 C410.895431,31 410,30.1045695 410,29 C410,27.8954305 410.895431,27 412,27 Z M442,27 C443.104569,27 444,27.8954305 444,29 C444,30.1045695 443.104569,31 442,31 C440.895431,31 440,30.1045695 440,29 C440,27.8954305 440.895431,27 442,27 Z M472,27 C473.104569,27 474,27.8954305 474,29 C474,30.1045695 473.104569,31 472,31 C470.895431,31 470,30.1045695 470,29 C470,27.8954305 470.895431,27 472,27 Z M499,27 C500.104569,27 501,27.8954305 501,29 C501,30.1045695 500.104569,31 499,31 C497.895431,31 497,30.1045695 497,29 C497,27.8954305 497.895431,27 499,27 Z M355,0 C356.104569,0 357,0.8954305 357,2 C357,3.1045695 356.104569,4 355,4 C353.895431,4 353,3.1045695 353,2 C353,0.8954305 353.895431,0 355,0 Z M382,0 C383.104569,0 384,0.8954305 384,2 C384,3.1045695 383.104569,4 382,4 C380.895431,4 380,3.1045695 380,2 C380,0.8954305 380.895431,0 382,0 Z M412,0 C413.104569,0 414,0.8954305 414,2 C414,3.1045695 413.104569,4 412,4 C410.895431,4 410,3.1045695 410,2 C410,0.8954305 410.895431,0 412,0 Z M442,0 C443.104569,0 444,0.8954305 444,2 C444,3.1045695 443.104569,4 442,4 C440.895431,4 440,3.1045695 440,2 C440,0.8954305 440.895431,0 442,0 Z M472,0 C473.104569,0 474,0.8954305 474,2 C474,3.1045695 473.104569,4 472,4 C470.895431,4 470,3.1045695 470,2 C470,0.8954305 470.895431,0 472,0 Z M499,0 C500.104569,0 501,0.8954305 501,2 C501,3.1045695 500.104569,4 499,4 C497.895431,4 497,3.1045695 497,2 C497,0.8954305 497.895431,0 499,0 Z' id='path-1'%3E%3C/path%3E%3C/defs%3E%3Cg id='📝-Pages' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Login---V2' transform='translate(-822.000000, -197.000000)'%3E%3Cg id='top-illustration' transform='translate(469.000000, 197.000000)'%3E%3Cuse fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.6' fill='%23FFFFFF' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } @media (max-width: 575.98px) { .authentication-wrapper.authentication-basic .authentication-inner::before { display: none; } } .authentication-wrapper.authentication-basic .authentication-inner::after { position: absolute; z-index: -1; background: color-mix(in sRGB, var(--bs-primary) 60%, var(--bs-paper-bg)); block-size: 240px; content: " "; inline-size: 243px; inset-block-end: -88px; inset-inline-start: -50px; -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='243px' height='240px' viewBox='0 0 243 240' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M34.5,182 C35.8807119,182 37,183.119288 37,184.5 C37,185.880712 35.8807119,187 34.5,187 C33.1192881,187 32,185.880712 32,184.5 C32,183.119288 33.1192881,182 34.5,182 Z M61.5,182 C62.8807119,182 64,183.119288 64,184.5 C64,185.880712 62.8807119,187 61.5,187 C60.1192881,187 59,185.880712 59,184.5 C59,183.119288 60.1192881,182 61.5,182 Z M91.5,182 C92.8807119,182 94,183.119288 94,184.5 C94,185.880712 92.8807119,187 91.5,187 C90.1192881,187 89,185.880712 89,184.5 C89,183.119288 90.1192881,182 91.5,182 Z M123.5,182 C124.880712,182 126,183.119288 126,184.5 C126,185.880712 124.880712,187 123.5,187 C122.119288,187 121,185.880712 121,184.5 C121,183.119288 122.119288,182 123.5,182 Z M153.5,182 C154.880712,182 156,183.119288 156,184.5 C156,185.880712 154.880712,187 153.5,187 C152.119288,187 151,185.880712 151,184.5 C151,183.119288 152.119288,182 153.5,182 Z M180.5,182 C181.880712,182 183,183.119288 183,184.5 C183,185.880712 181.880712,187 180.5,187 C179.119288,187 178,185.880712 178,184.5 C178,183.119288 179.119288,182 180.5,182 Z M34.5,154 C35.8807119,154 37,155.119288 37,156.5 C37,157.880712 35.8807119,159 34.5,159 C33.1192881,159 32,157.880712 32,156.5 C32,155.119288 33.1192881,154 34.5,154 Z M61.5,154 C62.8807119,154 64,155.119288 64,156.5 C64,157.880712 62.8807119,159 61.5,159 C60.1192881,159 59,157.880712 59,156.5 C59,155.119288 60.1192881,154 61.5,154 Z M91.5,154 C92.8807119,154 94,155.119288 94,156.5 C94,157.880712 92.8807119,159 91.5,159 C90.1192881,159 89,157.880712 89,156.5 C89,155.119288 90.1192881,154 91.5,154 Z M123.5,154 C124.880712,154 126,155.119288 126,156.5 C126,157.880712 124.880712,159 123.5,159 C122.119288,159 121,157.880712 121,156.5 C121,155.119288 122.119288,154 123.5,154 Z M153.5,154 C154.880712,154 156,155.119288 156,156.5 C156,157.880712 154.880712,159 153.5,159 C152.119288,159 151,157.880712 151,156.5 C151,155.119288 152.119288,154 153.5,154 Z M180.5,154 C181.880712,154 183,155.119288 183,156.5 C183,157.880712 181.880712,159 180.5,159 C179.119288,159 178,157.880712 178,156.5 C178,155.119288 179.119288,154 180.5,154 Z M34.5,124 C35.8807119,124 37,125.119288 37,126.5 C37,127.880712 35.8807119,129 34.5,129 C33.1192881,129 32,127.880712 32,126.5 C32,125.119288 33.1192881,124 34.5,124 Z M61.5,124 C62.8807119,124 64,125.119288 64,126.5 C64,127.880712 62.8807119,129 61.5,129 C60.1192881,129 59,127.880712 59,126.5 C59,125.119288 60.1192881,124 61.5,124 Z M91.5,124 C92.8807119,124 94,125.119288 94,126.5 C94,127.880712 92.8807119,129 91.5,129 C90.1192881,129 89,127.880712 89,126.5 C89,125.119288 90.1192881,124 91.5,124 Z M123.5,124 C124.880712,124 126,125.119288 126,126.5 C126,127.880712 124.880712,129 123.5,129 C122.119288,129 121,127.880712 121,126.5 C121,125.119288 122.119288,124 123.5,124 Z M153.5,124 C154.880712,124 156,125.119288 156,126.5 C156,127.880712 154.880712,129 153.5,129 C152.119288,129 151,127.880712 151,126.5 C151,125.119288 152.119288,124 153.5,124 Z M180.5,124 C181.880712,124 183,125.119288 183,126.5 C183,127.880712 181.880712,129 180.5,129 C179.119288,129 178,127.880712 178,126.5 C178,125.119288 179.119288,124 180.5,124 Z M34.5,94 C35.8807119,94 37,95.1192881 37,96.5 C37,97.8807119 35.8807119,99 34.5,99 C33.1192881,99 32,97.8807119 32,96.5 C32,95.1192881 33.1192881,94 34.5,94 Z M153.5,94 C154.880712,94 156,95.1192881 156,96.5 C156,97.8807119 154.880712,99 153.5,99 C152.119288,99 151,97.8807119 151,96.5 C151,95.1192881 152.119288,94 153.5,94 Z M91.5,94 C92.8807119,94 94,95.1192881 94,96.5 C94,97.8807119 92.8807119,99 91.5,99 C90.1192881,99 89,97.8807119 89,96.5 C89,95.1192881 90.1192881,94 91.5,94 Z M180.5,94 C181.880712,94 183,95.1192881 183,96.5 C183,97.8807119 181.880712,99 180.5,99 C179.119288,99 178,97.8807119 178,96.5 C178,95.1192881 179.119288,94 180.5,94 Z M61.5,94 C62.8807119,94 64,95.1192881 64,96.5 C64,97.8807119 62.8807119,99 61.5,99 C60.1192881,99 59,97.8807119 59,96.5 C59,95.1192881 60.1192881,94 61.5,94 Z M123.5,94 C124.880712,94 126,95.1192881 126,96.5 C126,97.8807119 124.880712,99 123.5,99 C122.119288,99 121,97.8807119 121,96.5 C121,95.1192881 122.119288,94 123.5,94 Z M34.5,64 C35.8807119,64 37,65.1192881 37,66.5 C37,67.8807119 35.8807119,69 34.5,69 C33.1192881,69 32,67.8807119 32,66.5 C32,65.1192881 33.1192881,64 34.5,64 Z M61.5,64 C62.8807119,64 64,65.1192881 64,66.5 C64,67.8807119 62.8807119,69 61.5,69 C60.1192881,69 59,67.8807119 59,66.5 C59,65.1192881 60.1192881,64 61.5,64 Z M91.5,64 C92.8807119,64 94,65.1192881 94,66.5 C94,67.8807119 92.8807119,69 91.5,69 C90.1192881,69 89,67.8807119 89,66.5 C89,65.1192881 90.1192881,64 91.5,64 Z M123.5,64 C124.880712,64 126,65.1192881 126,66.5 C126,67.8807119 124.880712,69 123.5,69 C122.119288,69 121,67.8807119 121,66.5 C121,65.1192881 122.119288,64 123.5,64 Z M153.5,64 C154.880712,64 156,65.1192881 156,66.5 C156,67.8807119 154.880712,69 153.5,69 C152.119288,69 151,67.8807119 151,66.5 C151,65.1192881 152.119288,64 153.5,64 Z M180.5,64 C181.880712,64 183,65.1192881 183,66.5 C183,67.8807119 181.880712,69 180.5,69 C179.119288,69 178,67.8807119 178,66.5 C178,65.1192881 179.119288,64 180.5,64 Z M34.5,37 C35.8807119,37 37,38.1192881 37,39.5 C37,40.8807119 35.8807119,42 34.5,42 C33.1192881,42 32,40.8807119 32,39.5 C32,38.1192881 33.1192881,37 34.5,37 Z M61.5,37 C62.8807119,37 64,38.1192881 64,39.5 C64,40.8807119 62.8807119,42 61.5,42 C60.1192881,42 59,40.8807119 59,39.5 C59,38.1192881 60.1192881,37 61.5,37 Z M91.5,37 C92.8807119,37 94,38.1192881 94,39.5 C94,40.8807119 92.8807119,42 91.5,42 C90.1192881,42 89,40.8807119 89,39.5 C89,38.1192881 90.1192881,37 91.5,37 Z M123.5,37 C124.880712,37 126,38.1192881 126,39.5 C126,40.8807119 124.880712,42 123.5,42 C122.119288,42 121,40.8807119 121,39.5 C121,38.1192881 122.119288,37 123.5,37 Z M153.5,37 C154.880712,37 156,38.1192881 156,39.5 C156,40.8807119 154.880712,42 153.5,42 C152.119288,42 151,40.8807119 151,39.5 C151,38.1192881 152.119288,37 153.5,37 Z M180.5,37 C181.880712,37 183,38.1192881 183,39.5 C183,40.8807119 181.880712,42 180.5,42 C179.119288,42 178,40.8807119 178,39.5 C178,38.1192881 179.119288,37 180.5,37 Z' id='path-1'%3E%3C/path%3E%3C/defs%3E%3Cg id='%F0%9F%93%9D-Pages' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Login---V2' transform='translate(-469.000000, -670.000000)'%3E%3Cg id='Shapes' transform='translate(469.000000, 197.000000)'%3E%3Cg id='bottom-illustration' transform='translate(0.000000, 473.000000)'%3E%3Crect id='Rectangle' fill='currentColor' opacity='0.04' x='0' y='0' width='215' height='216' rx='10'%3E%3C/rect%3E%3Crect id='Rectangle' stroke='rgba(79, 84, 89, 0.2)' opacity='0.48' x='104.5' y='100.5' width='138' height='139' rx='10'%3E%3C/rect%3E%3Cg id='Dot'%3E%3Cuse fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.6' fill='%23FFFFFF' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg width='243px' height='240px' viewBox='0 0 243 240' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M34.5,182 C35.8807119,182 37,183.119288 37,184.5 C37,185.880712 35.8807119,187 34.5,187 C33.1192881,187 32,185.880712 32,184.5 C32,183.119288 33.1192881,182 34.5,182 Z M61.5,182 C62.8807119,182 64,183.119288 64,184.5 C64,185.880712 62.8807119,187 61.5,187 C60.1192881,187 59,185.880712 59,184.5 C59,183.119288 60.1192881,182 61.5,182 Z M91.5,182 C92.8807119,182 94,183.119288 94,184.5 C94,185.880712 92.8807119,187 91.5,187 C90.1192881,187 89,185.880712 89,184.5 C89,183.119288 90.1192881,182 91.5,182 Z M123.5,182 C124.880712,182 126,183.119288 126,184.5 C126,185.880712 124.880712,187 123.5,187 C122.119288,187 121,185.880712 121,184.5 C121,183.119288 122.119288,182 123.5,182 Z M153.5,182 C154.880712,182 156,183.119288 156,184.5 C156,185.880712 154.880712,187 153.5,187 C152.119288,187 151,185.880712 151,184.5 C151,183.119288 152.119288,182 153.5,182 Z M180.5,182 C181.880712,182 183,183.119288 183,184.5 C183,185.880712 181.880712,187 180.5,187 C179.119288,187 178,185.880712 178,184.5 C178,183.119288 179.119288,182 180.5,182 Z M34.5,154 C35.8807119,154 37,155.119288 37,156.5 C37,157.880712 35.8807119,159 34.5,159 C33.1192881,159 32,157.880712 32,156.5 C32,155.119288 33.1192881,154 34.5,154 Z M61.5,154 C62.8807119,154 64,155.119288 64,156.5 C64,157.880712 62.8807119,159 61.5,159 C60.1192881,159 59,157.880712 59,156.5 C59,155.119288 60.1192881,154 61.5,154 Z M91.5,154 C92.8807119,154 94,155.119288 94,156.5 C94,157.880712 92.8807119,159 91.5,159 C90.1192881,159 89,157.880712 89,156.5 C89,155.119288 90.1192881,154 91.5,154 Z M123.5,154 C124.880712,154 126,155.119288 126,156.5 C126,157.880712 124.880712,159 123.5,159 C122.119288,159 121,157.880712 121,156.5 C121,155.119288 122.119288,154 123.5,154 Z M153.5,154 C154.880712,154 156,155.119288 156,156.5 C156,157.880712 154.880712,159 153.5,159 C152.119288,159 151,157.880712 151,156.5 C151,155.119288 152.119288,154 153.5,154 Z M180.5,154 C181.880712,154 183,155.119288 183,156.5 C183,157.880712 181.880712,159 180.5,159 C179.119288,159 178,157.880712 178,156.5 C178,155.119288 179.119288,154 180.5,154 Z M34.5,124 C35.8807119,124 37,125.119288 37,126.5 C37,127.880712 35.8807119,129 34.5,129 C33.1192881,129 32,127.880712 32,126.5 C32,125.119288 33.1192881,124 34.5,124 Z M61.5,124 C62.8807119,124 64,125.119288 64,126.5 C64,127.880712 62.8807119,129 61.5,129 C60.1192881,129 59,127.880712 59,126.5 C59,125.119288 60.1192881,124 61.5,124 Z M91.5,124 C92.8807119,124 94,125.119288 94,126.5 C94,127.880712 92.8807119,129 91.5,129 C90.1192881,129 89,127.880712 89,126.5 C89,125.119288 90.1192881,124 91.5,124 Z M123.5,124 C124.880712,124 126,125.119288 126,126.5 C126,127.880712 124.880712,129 123.5,129 C122.119288,129 121,127.880712 121,126.5 C121,125.119288 122.119288,124 123.5,124 Z M153.5,124 C154.880712,124 156,125.119288 156,126.5 C156,127.880712 154.880712,129 153.5,129 C152.119288,129 151,127.880712 151,126.5 C151,125.119288 152.119288,124 153.5,124 Z M180.5,124 C181.880712,124 183,125.119288 183,126.5 C183,127.880712 181.880712,129 180.5,129 C179.119288,129 178,127.880712 178,126.5 C178,125.119288 179.119288,124 180.5,124 Z M34.5,94 C35.8807119,94 37,95.1192881 37,96.5 C37,97.8807119 35.8807119,99 34.5,99 C33.1192881,99 32,97.8807119 32,96.5 C32,95.1192881 33.1192881,94 34.5,94 Z M153.5,94 C154.880712,94 156,95.1192881 156,96.5 C156,97.8807119 154.880712,99 153.5,99 C152.119288,99 151,97.8807119 151,96.5 C151,95.1192881 152.119288,94 153.5,94 Z M91.5,94 C92.8807119,94 94,95.1192881 94,96.5 C94,97.8807119 92.8807119,99 91.5,99 C90.1192881,99 89,97.8807119 89,96.5 C89,95.1192881 90.1192881,94 91.5,94 Z M180.5,94 C181.880712,94 183,95.1192881 183,96.5 C183,97.8807119 181.880712,99 180.5,99 C179.119288,99 178,97.8807119 178,96.5 C178,95.1192881 179.119288,94 180.5,94 Z M61.5,94 C62.8807119,94 64,95.1192881 64,96.5 C64,97.8807119 62.8807119,99 61.5,99 C60.1192881,99 59,97.8807119 59,96.5 C59,95.1192881 60.1192881,94 61.5,94 Z M123.5,94 C124.880712,94 126,95.1192881 126,96.5 C126,97.8807119 124.880712,99 123.5,99 C122.119288,99 121,97.8807119 121,96.5 C121,95.1192881 122.119288,94 123.5,94 Z M34.5,64 C35.8807119,64 37,65.1192881 37,66.5 C37,67.8807119 35.8807119,69 34.5,69 C33.1192881,69 32,67.8807119 32,66.5 C32,65.1192881 33.1192881,64 34.5,64 Z M61.5,64 C62.8807119,64 64,65.1192881 64,66.5 C64,67.8807119 62.8807119,69 61.5,69 C60.1192881,69 59,67.8807119 59,66.5 C59,65.1192881 60.1192881,64 61.5,64 Z M91.5,64 C92.8807119,64 94,65.1192881 94,66.5 C94,67.8807119 92.8807119,69 91.5,69 C90.1192881,69 89,67.8807119 89,66.5 C89,65.1192881 90.1192881,64 91.5,64 Z M123.5,64 C124.880712,64 126,65.1192881 126,66.5 C126,67.8807119 124.880712,69 123.5,69 C122.119288,69 121,67.8807119 121,66.5 C121,65.1192881 122.119288,64 123.5,64 Z M153.5,64 C154.880712,64 156,65.1192881 156,66.5 C156,67.8807119 154.880712,69 153.5,69 C152.119288,69 151,67.8807119 151,66.5 C151,65.1192881 152.119288,64 153.5,64 Z M180.5,64 C181.880712,64 183,65.1192881 183,66.5 C183,67.8807119 181.880712,69 180.5,69 C179.119288,69 178,67.8807119 178,66.5 C178,65.1192881 179.119288,64 180.5,64 Z M34.5,37 C35.8807119,37 37,38.1192881 37,39.5 C37,40.8807119 35.8807119,42 34.5,42 C33.1192881,42 32,40.8807119 32,39.5 C32,38.1192881 33.1192881,37 34.5,37 Z M61.5,37 C62.8807119,37 64,38.1192881 64,39.5 C64,40.8807119 62.8807119,42 61.5,42 C60.1192881,42 59,40.8807119 59,39.5 C59,38.1192881 60.1192881,37 61.5,37 Z M91.5,37 C92.8807119,37 94,38.1192881 94,39.5 C94,40.8807119 92.8807119,42 91.5,42 C90.1192881,42 89,40.8807119 89,39.5 C89,38.1192881 90.1192881,37 91.5,37 Z M123.5,37 C124.880712,37 126,38.1192881 126,39.5 C126,40.8807119 124.880712,42 123.5,42 C122.119288,42 121,40.8807119 121,39.5 C121,38.1192881 122.119288,37 123.5,37 Z M153.5,37 C154.880712,37 156,38.1192881 156,39.5 C156,40.8807119 154.880712,42 153.5,42 C152.119288,42 151,40.8807119 151,39.5 C151,38.1192881 152.119288,37 153.5,37 Z M180.5,37 C181.880712,37 183,38.1192881 183,39.5 C183,40.8807119 181.880712,42 180.5,42 C179.119288,42 178,40.8807119 178,39.5 C178,38.1192881 179.119288,37 180.5,37 Z' id='path-1'%3E%3C/path%3E%3C/defs%3E%3Cg id='%F0%9F%93%9D-Pages' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Login---V2' transform='translate(-469.000000, -670.000000)'%3E%3Cg id='Shapes' transform='translate(469.000000, 197.000000)'%3E%3Cg id='bottom-illustration' transform='translate(0.000000, 473.000000)'%3E%3Crect id='Rectangle' fill='currentColor' opacity='0.04' x='0' y='0' width='215' height='216' rx='10'%3E%3C/rect%3E%3Crect id='Rectangle' stroke='rgba(79, 84, 89, 0.2)' opacity='0.48' x='104.5' y='100.5' width='138' height='139' rx='10'%3E%3C/rect%3E%3Cg id='Dot'%3E%3Cuse fill='currentColor' xlink:href='%23path-1'%3E%3C/use%3E%3Cuse fill-opacity='0.6' fill='%23FFFFFF' xlink:href='%23path-1'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } @media (max-width: 575.98px) { .authentication-wrapper.authentication-basic .authentication-inner::after { display: none; } } .authentication-wrapper.authentication-basic .authentication-inner .card { z-index: 1; } @media (min-width: 576px) { .authentication-wrapper.authentication-basic .authentication-inner .card { padding: 1.5rem; } } .authentication-wrapper.authentication-basic .authentication-inner .card .app-brand { -webkit-margin-after: 1.5rem; margin-block-end: 1.5rem; } ================================================ FILE: assets/vendor/css/pages/page-icons.css ================================================ /* Page Icons (Page specific only) ******************************************************************************* */ #icons-container .icon-card { inline-size: 128px; } #icons-container .icon-card .icon-base { block-size: 2rem; font-size: 2rem; inline-size: 2rem; } @media (width <= 1024px) { #icons-container .icon-card { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; inline-size: 126px; } } @media (max-width: 767.98px) { #icons-container .icon-card { inline-size: 131px; } } @media (width <= 414px) { #icons-container .icon-card { inline-size: 110px; } } @media (width <= 375px) { #icons-container .icon-card { inline-size: 150px; } } ================================================ FILE: assets/vendor/css/pages/page-misc.css ================================================ /* Miscellaneous ******************************************************************************* */ .misc-wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; min-block-size: calc(100vh - 1.5rem * 2); /* ?we have added container-p-y class to add padding on top & bottom */ text-align: center; } ================================================ FILE: assets/vendor/fonts/iconify-icons.css ================================================ .bx { display: inline-block; width: 1em; height: 1em; background-color: currentColor; -webkit-mask-image: var(--svg); mask-image: var(--svg); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } .bx-abacus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 3h2v18H2zm18 0h2v18h-2zM5 13h2v1h2v-1h2v1h2v-1h4v1h2v-4h-2v1h-4v-1h-2v1H9v-1H7v1H5zm0-9v4h2V7h8v1h2V7h2V5h-2V4h-2v1H7V4zm0 13v3h2v-1h2v1h2v-1h8v-2h-8v-1H9v1H7v-1H5z'/%3E%3C/svg%3E"); } .bx-accessibility { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='18' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='m17.836 12.014l-4.345.725l3.29-4.113a1 1 0 0 0-.227-1.457l-6-4a1 1 0 0 0-1.262.125l-4 4l1.414 1.414l3.42-3.42l2.584 1.723l-2.681 3.352a5.91 5.91 0 0 0-5.5.752l1.451 1.451A3.97 3.97 0 0 1 8 12c2.206 0 4 1.794 4 4c0 .739-.216 1.425-.566 2.02l1.451 1.451A5.96 5.96 0 0 0 14 16c0-.445-.053-.878-.145-1.295L17 14.181V20h2v-7a.998.998 0 0 0-1.164-.986M8 20c-2.206 0-4-1.794-4-4c0-.739.216-1.425.566-2.02l-1.451-1.451A5.96 5.96 0 0 0 2 16c0 3.309 2.691 6 6 6c1.294 0 2.49-.416 3.471-1.115l-1.451-1.451A3.97 3.97 0 0 1 8 20'/%3E%3C/svg%3E"); } .bx-add-to-queue { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H8c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M8 16V4h12l.002 12z'/%3E%3Cpath fill='black' d='M4 8H2v12c0 1.103.897 2 2 2h12v-2H4zm11-2h-2v3h-3v2h3v3h2v-3h3V9h-3z'/%3E%3C/svg%3E"); } .bx-adjust { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10m0-18c4.411 0 8 3.589 8 8s-3.589 8-8 8s-8-3.589-8-8s3.589-8 8-8'/%3E%3Cpath fill='black' d='M19 12a7 7 0 0 0-7-7v14a7 7 0 0 0 7-7'/%3E%3C/svg%3E"); } .bx-alarm { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9m0 16c-3.794 0-7-3.206-7-7s3.206-7 7-7s7 3.206 7 7s-3.206 7-7 7'/%3E%3Cpath fill='black' d='M13 12V8h-2v6h6v-2zm4.284-8.293l1.412-1.416l3.01 3l-1.413 1.417zm-10.586 0l-2.99 2.999L2.29 5.294l2.99-3z'/%3E%3C/svg%3E"); } .bx-alarm-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9m0 16c-3.794 0-7-3.206-7-7s3.206-7 7-7s7 3.206 7 7s-3.206 7-7 7'/%3E%3Cpath fill='black' d='M13 8h-2v4H7v2h4v4h2v-4h4v-2h-4zm7.292-1.292l-3.01-3l1.412-1.417l3.01 3zM5.282 2.294L6.7 3.706l-2.99 3l-1.417-1.413z'/%3E%3C/svg%3E"); } .bx-alarm-exclamation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c4.879 0 9-4.121 9-9s-4.121-9-9-9s-9 4.121-9 9s4.121 9 9 9m0-16c3.794 0 7 3.206 7 7s-3.206 7-7 7s-7-3.206-7-7s3.206-7 7-7m5.284-2.293l1.412-1.416l3.01 3l-1.413 1.417zM5.282 2.294L6.7 3.706l-2.99 3l-1.417-1.413z'/%3E%3Cpath fill='black' d='M11 9h2v5h-2zm0 6h2v2h-2z'/%3E%3C/svg%3E"); } .bx-alarm-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.292 6.708l-3.01-3l1.412-1.417l3.01 3zm1.415 13.585l-2.287-2.287C20.409 16.563 21 14.838 21 13c0-4.879-4.121-9-9-9c-1.838 0-3.563.591-5.006 1.58L5.91 4.496l.788-.79l-1.416-1.412l-.786.788l-.789-.789l-1.414 1.414l18 18zM12 6c3.794 0 7 3.206 7 7c0 1.292-.387 2.507-1.027 3.559L15.414 14H17v-2h-3.586L13 11.586V8h-2v1.586L8.441 7.027C9.493 6.387 10.708 6 12 6M4.305 8.426A8.8 8.8 0 0 0 3 13c0 4.879 4.121 9 9 9a8.8 8.8 0 0 0 4.574-1.305l-1.461-1.461A6.8 6.8 0 0 1 12 20c-3.794 0-7-3.206-7-7c0-1.111.281-2.169.766-3.113z'/%3E%3C/svg%3E"); } .bx-alarm-snooze { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9m0 16c-3.794 0-7-3.206-7-7s3.206-7 7-7s7 3.206 7 7s-3.206 7-7 7m8.292-13.292l-3.01-3l1.412-1.417l3.01 3zM6.698 3.707l-2.99 2.999L2.29 5.294l2.99-3z'/%3E%3Cpath fill='black' d='M14.832 10.555A1 1 0 0 0 14 9H9v2h3.132l-2.964 4.445A1 1 0 0 0 10 17h5v-2h-3.132z'/%3E%3C/svg%3E"); } .bx-album { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='11.99' cy='11.99' r='2.01' fill='black'/%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m0 18a8 8 0 1 1 8-8a8 8 0 0 1-8 8'/%3E%3Cpath fill='black' d='M12 6a6 6 0 0 0-6 6h2a4 4 0 0 1 4-4z'/%3E%3C/svg%3E"); } .bx-align-justify { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 7h16v2H4zm0-4h16v2H4zm0 8h16v2H4zm0 4h16v2H4zm2 4h12v2H6z'/%3E%3C/svg%3E"); } .bx-align-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 19h16v2H4zm0-4h11v2H4zm0-4h16v2H4zm0-8h16v2H4zm0 4h11v2H4z'/%3E%3C/svg%3E"); } .bx-align-middle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 19h16v2H4zm3-4h10v2H7zm-3-4h16v2H4zm0-8h16v2H4zm3 4h10v2H7z'/%3E%3C/svg%3E"); } .bx-align-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 19h16v2H4zm5-4h11v2H9zm-5-4h16v2H4zm0-8h16v2H4zm5 4h11v2H9z'/%3E%3C/svg%3E"); } .bx-analyse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 12h2a8 8 0 0 1 2.337-5.663a7.9 7.9 0 0 1 2.542-1.71a8.12 8.12 0 0 1 6.13-.041A2.49 2.49 0 0 0 17.5 7C18.886 7 20 5.886 20 4.5S18.886 2 17.5 2c-.689 0-1.312.276-1.763.725c-2.431-.973-5.223-.958-7.635.059a9.9 9.9 0 0 0-3.18 2.139a9.9 9.9 0 0 0-2.14 3.179A10 10 0 0 0 2 12m17.373 3.122c-.401.952-.977 1.808-1.71 2.541s-1.589 1.309-2.542 1.71a8.12 8.12 0 0 1-6.13.041A2.49 2.49 0 0 0 6.5 17C5.114 17 4 18.114 4 19.5S5.114 22 6.5 22c.689 0 1.312-.276 1.763-.725A10 10 0 0 0 12 22a9.98 9.98 0 0 0 9.217-6.102A10 10 0 0 0 22 12h-2a8 8 0 0 1-.627 3.122'/%3E%3Cpath fill='black' d='M12 7.462c-2.502 0-4.538 2.036-4.538 4.538S9.498 16.538 12 16.538s4.538-2.036 4.538-4.538S14.502 7.462 12 7.462m0 7.076c-1.399 0-2.538-1.139-2.538-2.538S10.601 9.462 12 9.462s2.538 1.139 2.538 2.538s-1.139 2.538-2.538 2.538'/%3E%3C/svg%3E"); } .bx-anchor { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m22 15l-3-4l-3 4h1.906c-.436 2.469-2.438 4.471-4.906 4.906V13h2v-2h-2V9.336c1.543-.459 2.714-1.923 2.714-3.621C15.714 3.666 14.048 2 12 2S8.286 3.666 8.286 5.715c0 1.698 1.171 3.162 2.714 3.621V11H9v2h2v6.906C8.531 19.471 6.529 17.469 6.094 15H8l-3-4l-3 4h2.073c.511 3.885 3.929 7 7.927 7s7.416-3.115 7.927-7zM10.286 5.715C10.286 4.77 11.055 4 12 4s1.714.77 1.714 1.715c0 .951-.801 1.785-1.714 1.785s-1.714-.834-1.714-1.785'/%3E%3C/svg%3E"); } .bx-angry { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M12 14c-3 0-4 3-4 3h8s-1-3-4-3m-2.439-2.439c.014-.014.023-.03.037-.044l1.031.413l.742-1.857l-5-2l-.742 1.856l1.373.549L7 10.5a1.499 1.499 0 0 0 2.561 1.061m3.068-1.49l.742 1.857l1.037-.415l.029.035a1.49 1.49 0 0 0 2.112 0c.271-.271.438-.644.438-1.056l-.001-.01l1.386-.554l-.742-1.857z'/%3E%3C/svg%3E"); } .bx-aperture { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.579 2 2 6.579 2 12s4.579 10 10 10s10-4.579 10-10S17.421 2 12 2m2.113 13H9.986l-1.723-3.094L10.202 9h3.736l1.871 3.062zM4 12c0-.953.186-1.87.508-2.727L7.696 15H4.61A7.8 7.8 0 0 1 4 12m12.283-3h3.106A7.7 7.7 0 0 1 20 12c0 .844-.143 1.66-.397 2.432zm1.905-2h-6.653l1.905-2.857c1.886.359 3.562 1.403 4.748 2.857m-7.095-2.941L9.132 7H9v.197L7.17 9.942L5.65 7.214c1.3-1.703 3.249-2.895 5.443-3.155M5.812 17h7.147l-1.709 2.961C9.084 19.748 7.141 18.63 5.812 17m7.828 2.82l3.357-5.815l1.544 2.526c-1.154 1.642-2.901 2.854-4.901 3.289'/%3E%3C/svg%3E"); } .bx-arch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 22h1v-6.995c.006-.502.177-3.005 3-3.005s2.994 2.503 3 3v7h7v-2h-1V4h1V2H2v2h1v16H2v2zM19 4v2H5V4zM5 8h14v12h-2v-5c0-1.729-1.045-5-5-5s-5 3.271-5 5v5H5z'/%3E%3C/svg%3E"); } .bx-archive { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.706 5.291l-2.999-2.998A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.294 5.291A1 1 0 0 0 2 5.999V19c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5.999a1 1 0 0 0-.294-.708M6.414 4h11.172l.999.999H5.415zM4 19V6.999h16L20.002 19z'/%3E%3Cpath fill='black' d='M15 12H9v-2H7v4h10v-4h-2z'/%3E%3C/svg%3E"); } .bx-archive-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.706 5.292l-2.999-2.999A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.294 5.292A1 1 0 0 0 2 6v13c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6a1 1 0 0 0-.294-.708M6.414 4h11.172l1 1H5.414zM4 19V7h16l.002 12z'/%3E%3Cpath fill='black' d='M14 9h-4v3H7l5 5l5-5h-3z'/%3E%3C/svg%3E"); } .bx-archive-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.706 5.292l-2.999-2.999A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.294 5.292A1 1 0 0 0 2 6v13c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6a1 1 0 0 0-.294-.708M6.414 4h11.172l1 1H5.414zM4 19V7h16l.002 12z'/%3E%3Cpath fill='black' d='M7 14h3v3h4v-3h3l-5-5z'/%3E%3C/svg%3E"); } .bx-area { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 5v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m16.002 14H5V5h14z'/%3E%3Cpath fill='black' d='M15 12h2V7h-5v2h3zm-3 3H9v-3H7v5h5z'/%3E%3C/svg%3E"); } .bx-arrow-back { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 11H6.414l5.293-5.293l-1.414-1.414L2.586 12l7.707 7.707l1.414-1.414L6.414 13H21z'/%3E%3C/svg%3E"); } .bx-arrow-from-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 18h12v2H6zm6-14.414l-6.707 6.707l1.414 1.414L11 7.414V16h2V7.414l4.293 4.293l1.414-1.414z'/%3E%3C/svg%3E"); } .bx-arrow-from-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 6h2v12H4zm4 7h8.586l-4.293 4.293l1.414 1.414L20.414 12l-6.707-6.707l-1.414 1.414L16.586 11H8z'/%3E%3C/svg%3E"); } .bx-arrow-from-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 6h2v12h-2zm-2 5H7.414l4.293-4.293l-1.414-1.414L3.586 12l6.707 6.707l1.414-1.414L7.414 13H16z'/%3E%3C/svg%3E"); } .bx-arrow-from-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 4h12v2H6zm6 16.414l6.707-6.707l-1.414-1.414L13 16.586V8h-2v8.586l-4.293-4.293l-1.414 1.414z'/%3E%3C/svg%3E"); } .bx-arrow-to-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 18h12v2H6zm5-14v8.586L6.707 8.293L5.293 9.707L12 16.414l6.707-6.707l-1.414-1.414L13 12.586V4z'/%3E%3C/svg%3E"); } .bx-arrow-to-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 6h2v12H4zm10.293-.707L7.586 12l6.707 6.707l1.414-1.414L11.414 13H20v-2h-8.586l4.293-4.293z'/%3E%3C/svg%3E"); } .bx-arrow-to-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 6h2v12h-2zM4 13h8.586l-4.293 4.293l1.414 1.414L16.414 12L9.707 5.293L8.293 6.707L12.586 11H4z'/%3E%3C/svg%3E"); } .bx-arrow-to-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 4h12v2H6zm.707 11.707L11 11.414V20h2v-8.586l4.293 4.293l1.414-1.414L12 7.586l-6.707 6.707z'/%3E%3C/svg%3E"); } .bx-at { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10c1.466 0 2.961-.371 4.442-1.104l-.885-1.793C14.353 19.698 13.156 20 12 20c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8v1c0 .692-.313 2-1.5 2c-1.396 0-1.494-1.819-1.5-2V8h-2v.025A4.95 4.95 0 0 0 12 7c-2.757 0-5 2.243-5 5s2.243 5 5 5c1.45 0 2.748-.631 3.662-1.621c.524.89 1.408 1.621 2.838 1.621c2.273 0 3.5-2.061 3.5-4v-1c0-5.514-4.486-10-10-10m0 13c-1.654 0-3-1.346-3-3s1.346-3 3-3s3 1.346 3 3s-1.346 3-3 3'/%3E%3C/svg%3E"); } .bx-atom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3.102 20.898c.698.699 1.696 1.068 2.887 1.068c1.742 0 3.855-.778 6.012-2.127c2.156 1.35 4.27 2.127 6.012 2.127c1.19 0 2.188-.369 2.887-1.068c1.269-1.269 1.411-3.413.401-6.039c-.358-.932-.854-1.895-1.457-2.859a17 17 0 0 0 1.457-2.859c1.01-2.626.867-4.771-.401-6.039c-.698-.699-1.696-1.068-2.887-1.068c-1.742 0-3.855.778-6.012 2.127c-2.156-1.35-4.27-2.127-6.012-2.127c-1.19 0-2.188.369-2.887 1.068C1.833 4.371 1.69 6.515 2.7 9.141c.359.932.854 1.895 1.457 2.859A17 17 0 0 0 2.7 14.859c-1.01 2.626-.867 4.77.402 6.039m16.331-5.321c.689 1.79.708 3.251.052 3.907c-.32.32-.815.482-1.473.482c-1.167 0-2.646-.503-4.208-1.38a26.6 26.6 0 0 0 4.783-4.784c.336.601.623 1.196.846 1.775M12 17.417a23.6 23.6 0 0 1-2.934-2.483A24 24 0 0 1 6.566 12A23.7 23.7 0 0 1 12 6.583a23.6 23.6 0 0 1 2.934 2.483a24 24 0 0 1 2.5 2.934A23.7 23.7 0 0 1 12 17.417m6.012-13.383c.657 0 1.152.162 1.473.482c.656.656.638 2.117-.052 3.907c-.223.579-.51 1.174-.846 1.775a26.5 26.5 0 0 0-4.783-4.784c1.562-.876 3.041-1.38 4.208-1.38M4.567 8.423c-.689-1.79-.708-3.251-.052-3.907c.32-.32.815-.482 1.473-.482c1.167 0 2.646.503 4.208 1.38a26.5 26.5 0 0 0-4.783 4.784a14 14 0 0 1-.846-1.775m0 7.154c.223-.579.51-1.174.846-1.775a26.5 26.5 0 0 0 4.783 4.784c-1.563.877-3.041 1.38-4.208 1.38c-.657 0-1.152-.162-1.473-.482c-.656-.656-.637-2.117.052-3.907'/%3E%3Ccircle cx='12' cy='12' r='2.574' fill='black'/%3E%3C/svg%3E"); } .bx-award { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 8.999c0 1.902.765 3.627 2 4.89V21a.998.998 0 0 0 1.447.895L12 20.118l3.553 1.776a.99.99 0 0 0 .972-.043c.295-.183.475-.504.475-.851v-7.11a6.98 6.98 0 0 0 2-4.891C19 5.14 15.86 2 12 2S5 5.14 5 8.999m7.447 9.106a1 1 0 0 0-.895 0L9 19.382v-4.067c.911.434 1.926.685 3 .685s2.089-.25 3-.685v4.066zM12 4c2.756 0 5 2.242 5 4.999A5.006 5.006 0 0 1 12 14c-2.757 0-5-2.243-5-5.001A5.005 5.005 0 0 1 12 4'/%3E%3C/svg%3E"); } .bx-badge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.965 8.521Q20 8.26 20 8c0-2.378-2.143-4.288-4.521-3.964C14.786 2.802 13.466 2 12 2s-2.786.802-3.479 2.036C6.138 3.712 4 5.622 4 8q0 .26.035.521C2.802 9.214 2 10.535 2 12s.802 2.786 2.035 3.479A4 4 0 0 0 4 16c0 2.378 2.138 4.284 4.521 3.964C9.214 21.198 10.534 22 12 22s2.786-.802 3.479-2.036C17.857 20.284 20 18.378 20 16q0-.26-.035-.521C21.198 14.786 22 13.465 22 12s-.802-2.786-2.035-3.479m-1.442 5.403l-1.102.293l.434 1.053c.095.23.145.483.145.73c0 1.103-.897 2-2 2c-.247 0-.499-.05-.73-.145l-1.054-.434l-.293 1.102a1.99 1.99 0 0 1-3.846 0l-.293-1.102l-1.054.434A1.9 1.9 0 0 1 8 18c-1.103 0-2-.897-2-2c0-.247.05-.5.145-.73l.434-1.053l-1.102-.293a1.993 1.993 0 0 1 0-3.848l1.102-.293l-.434-1.053A1.9 1.9 0 0 1 6 8c0-1.103.897-2 2-2c.247 0 .499.05.73.145l1.054.434l.293-1.102a1.99 1.99 0 0 1 3.846 0l.293 1.102l1.054-.434C15.501 6.05 15.753 6 16 6c1.103 0 2 .897 2 2c0 .247-.05.5-.145.73l-.434 1.053l1.102.293a1.993 1.993 0 0 1 0 3.848'/%3E%3C/svg%3E"); } .bx-badge-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.035 15.479A4 4 0 0 0 4 16c0 2.378 2.138 4.284 4.521 3.964C9.214 21.198 10.534 22 12 22s2.786-.802 3.479-2.036C17.857 20.284 20 18.378 20 16q0-.26-.035-.521C21.198 14.786 22 13.465 22 12s-.802-2.786-2.035-3.479Q20 8.26 20 8c0-2.378-2.143-4.288-4.521-3.964C14.786 2.802 13.466 2 12 2s-2.786.802-3.479 2.036C6.138 3.712 4 5.622 4 8q0 .26.035.521C2.802 9.214 2 10.535 2 12s.802 2.786 2.035 3.479m1.442-5.403l1.102-.293l-.434-1.053A1.9 1.9 0 0 1 6 8c0-1.103.897-2 2-2c.247 0 .499.05.73.145l1.054.434l.293-1.102a1.99 1.99 0 0 1 3.846 0l.293 1.102l1.054-.434C15.501 6.05 15.753 6 16 6c1.103 0 2 .897 2 2c0 .247-.05.5-.145.73l-.434 1.053l1.102.293a1.993 1.993 0 0 1 0 3.848l-1.102.293l.434 1.053c.095.23.145.483.145.73c0 1.103-.897 2-2 2c-.247 0-.499-.05-.73-.145l-1.054-.434l-.293 1.102a1.99 1.99 0 0 1-3.846 0l-.293-1.102l-1.054.434A1.9 1.9 0 0 1 8 18c-1.103 0-2-.897-2-2c0-.247.05-.5.145-.73l.434-1.053l-1.102-.293a1.993 1.993 0 0 1 0-3.848'/%3E%3Cpath fill='black' d='m15.742 10.71l-1.408-1.42l-3.331 3.299l-1.296-1.296l-1.414 1.414l2.704 2.704z'/%3E%3C/svg%3E"); } .bx-baguette { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.64 21.71a8 8 0 0 0 5.6-2.47l6-6c2.87-2.87 3.31-7.11 1-9.45s-6.58-1.91-9.45 1l-6 6c-2.87 2.87-3.31 7.11-1 9.45a5.38 5.38 0 0 0 3.85 1.47m-2-9l2.78 2.79l1.42-1.42l-2.79-2.79l1.41-1.41l2.83 2.83l1.42-1.42l-2.83-2.83l1.41-1.41l2.83 2.83l1.42-1.42l-2.79-2.78c2-1.61 4.65-1.87 6-.47s1.09 4.56-1 6.62l-6 6c-2.06 2.05-5.09 2.5-6.62 1s-1.06-4.07.55-6.08z'/%3E%3C/svg%3E"); } .bx-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3.76 21a17.7 17.7 0 0 0 4 .43a13.9 13.9 0 0 0 9.93-3.69C23 12.37 21.06 4.11 21 3.76a1 1 0 0 0-.76-.76a18 18 0 0 0-4-.43a13.82 13.82 0 0 0-9.96 3.71C.94 11.63 2.94 19.89 3 20.24a1 1 0 0 0 .76.76M7.7 7.7a11.86 11.86 0 0 1 8.49-3.1a17.6 17.6 0 0 1 3 .25c.31 1.87.91 7.67-2.86 11.44a11.9 11.9 0 0 1-8.55 3.11a17 17 0 0 1-2.93-.25c-.32-1.88-.92-7.67 2.85-11.45'/%3E%3Cpath fill='black' d='m7.29 15.29l1.42 1.42l1.79-1.79l1.79 1.79l1.42-1.42l-1.8-1.79l1.59-1.59l1.79 1.8l1.42-1.42l-1.8-1.79l1.8-1.79l-1.42-1.42l-1.79 1.8l-1.79-1.8l-1.42 1.42l1.8 1.79l-1.59 1.59l-1.79-1.8l-1.42 1.42l1.8 1.79z'/%3E%3C/svg%3E"); } .bx-band-aid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.111 21.889a5.96 5.96 0 0 0 4.242-1.757l7.778-7.778a6.007 6.007 0 0 0 0-8.485a5.97 5.97 0 0 0-4.243-1.757a5.96 5.96 0 0 0-4.242 1.757l-7.778 7.778a6.007 6.007 0 0 0 0 8.485a5.97 5.97 0 0 0 4.243 1.757m-2.829-8.828l7.778-7.778a3.98 3.98 0 0 1 2.828-1.171c1.069 0 2.073.416 2.829 1.171a4.006 4.006 0 0 1 0 5.657l-7.778 7.778a3.98 3.98 0 0 1-2.828 1.171a3.98 3.98 0 0 1-2.829-1.171a4.01 4.01 0 0 1 0-5.657'/%3E%3Ccircle cx='9' cy='12' r='1' fill='black'/%3E%3Ccircle cx='15' cy='12' r='1' fill='black'/%3E%3Ccircle cx='12' cy='15' r='1' fill='black'/%3E%3Ccircle cx='12' cy='9' r='1' fill='black'/%3E%3C/svg%3E"); } .bx-bar-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 6h2v14H9zm4 2h2v12h-2zm4-4h2v16h-2zM5 12h2v8H5z'/%3E%3C/svg%3E"); } .bx-bar-chart-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 6h2v11h-2zm4-3h2v14h-2zM9 9h2v8H9zM4 19h16v2H4zm1-7h2v5H5z'/%3E%3C/svg%3E"); } .bx-bar-chart-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 7h-4V4c0-1.103-.897-2-2-2h-4c-1.103 0-2 .897-2 2v5H4c-1.103 0-2 .897-2 2v9a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9c0-1.103-.897-2-2-2M4 11h4v8H4zm6-1V4h4v15h-4zm10 9h-4V9h4z'/%3E%3C/svg%3E"); } .bx-bar-chart-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 5v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m16.001 14H5V5h14z'/%3E%3Cpath fill='black' d='M11 7h2v10h-2zm4 3h2v7h-2zm-8 2h2v5H7z'/%3E%3C/svg%3E"); } .bx-barcode { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M4 18V6h16v12z'/%3E%3Cpath fill='black' d='M6 8h2v8H6zm3 0h1v8H9zm8 0h1v8h-1zm-4 0h3v8h-3zm-2 0h1v8h-1z'/%3E%3C/svg%3E"); } .bx-barcode-reader { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 7h2v10H5zm9 0h1v10h-1zm-4 0h3v10h-3zM8 7h1v10H8zm8 0h3v10h-3z'/%3E%3Cpath fill='black' d='M4 5h4V3H4c-1.103 0-2 .897-2 2v4h2zm0 16h4v-2H4v-4H2v4c0 1.103.897 2 2 2M20 3h-4v2h4v4h2V5c0-1.103-.897-2-2-2m0 16h-4v2h4c1.103 0 2-.897 2-2v-4h-2z'/%3E%3C/svg%3E"); } .bx-baseball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.99 2a9.94 9.94 0 0 0-7.071 2.938c-3.898 3.898-3.898 10.243 0 14.143c1.895 1.895 4.405 2.938 7.071 2.938s5.177-1.043 7.071-2.938c3.899-3.899 3.899-10.244 0-14.143A9.94 9.94 0 0 0 11.99 2m5.657 15.667a7.96 7.96 0 0 1-3.816 2.129l-.001-.037a6.2 6.2 0 0 1 .421-2.259l-1.863-.729a8.2 8.2 0 0 0-.552 3.239a7.95 7.95 0 0 1-5.503-2.344a7.97 7.97 0 0 1-2.332-5.503q.12.004.24.005a8.2 8.2 0 0 0 2.988-.558l-.73-1.862a6.2 6.2 0 0 1-2.281.412a7.94 7.94 0 0 1 2.115-3.809a7.96 7.96 0 0 1 3.972-2.168a6 6 0 0 1-.357 1.95l1.881.681a7.9 7.9 0 0 0 .482-2.701l-.005-.098c2.013.079 3.9.896 5.342 2.336a7.96 7.96 0 0 1 2.324 5.348a7.9 7.9 0 0 0-2.787.473l.684 1.88a5.9 5.9 0 0 1 1.935-.361a7.95 7.95 0 0 1-2.157 3.976'/%3E%3Cpath fill='black' d='M14.112 14.13a7.6 7.6 0 0 0-.926 1.121l1.656 1.12c.2-.296.43-.574.683-.826a6.4 6.4 0 0 1 1.178-.929l-1.049-1.703a8.4 8.4 0 0 0-1.542 1.217M8.456 8.474a5.7 5.7 0 0 1-.827.681l1.119 1.658a7.7 7.7 0 0 0 1.122-.926a8.5 8.5 0 0 0 1.217-1.542L9.384 7.297a6.5 6.5 0 0 1-.928 1.177'/%3E%3C/svg%3E"); } .bx-basket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 9h-1.42l-3.712-6.496l-1.736.992L17.277 9H6.723l3.146-5.504l-1.737-.992L4.42 9H3a1 1 0 0 0-.965 1.263l2.799 10.264A2.005 2.005 0 0 0 6.764 22h10.473c.898 0 1.692-.605 1.93-1.475l2.799-10.263A.998.998 0 0 0 21 9m-3.764 11v1zH6.764L4.31 11h15.38z'/%3E%3Cpath fill='black' d='M9 13h2v5H9zm4 0h2v5h-2z'/%3E%3C/svg%3E"); } .bx-basketball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.929 19.071c1.895 1.895 4.405 2.938 7.071 2.938s5.177-1.043 7.071-2.938c3.899-3.899 3.899-10.243 0-14.143C17.177 3.034 14.665 1.99 12 1.99S6.823 3.034 4.929 4.929c-3.899 3.898-3.899 10.243 0 14.142m7.38-15.065a7.9 7.9 0 0 1 4.594 1.678L12 10.586l-1.46-1.46c1.161-1.479 1.792-3.308 1.769-5.12M9.11 7.696L7.098 5.684a7.9 7.9 0 0 1 3.218-1.51c-.015 1.236-.445 2.477-1.206 3.522M7.686 9.1a6.07 6.07 0 0 1-3.459 1.057a7.9 7.9 0 0 1 1.458-3.058zm-3.675 3.046c.077.002.154.014.231.014a8.05 8.05 0 0 0 4.877-1.626L10.586 12l-4.901 4.901a7.97 7.97 0 0 1-1.674-4.755m12.294 2.745c1.042-.758 2.28-1.188 3.508-1.206a7.95 7.95 0 0 1-1.497 3.217zm.597 3.425a7.9 7.9 0 0 1-3.059 1.47a6.05 6.05 0 0 1 1.057-3.472zm-5.044 1.686a7.92 7.92 0 0 1-4.761-1.686L12 13.414l1.463 1.463c-1.103 1.444-1.659 3.266-1.605 5.125m8.124-8.31c-1.807-.018-3.633.61-5.108 1.768L13.414 12l4.901-4.901a7.97 7.97 0 0 1 1.667 4.593'/%3E%3C/svg%3E"); } .bx-bath { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 10H7V7c0-1.103.897-2 2-2s2 .897 2 2h2c0-2.206-1.794-4-4-4S5 4.794 5 7v3H3a1 1 0 0 0-1 1v2c0 2.606 1.674 4.823 4 5.65V22h2v-3h8v3h2v-3.35c2.326-.827 4-3.044 4-5.65v-2a1 1 0 0 0-1-1m-1 3c0 2.206-1.794 4-4 4H8c-2.206 0-4-1.794-4-4v-1h16z'/%3E%3C/svg%3E"); } .bx-battery { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 18h14c1.103 0 2-.897 2-2v-2h2v-4h-2V8c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2M4 8h14l.002 8H4z'/%3E%3C/svg%3E"); } .bx-bed { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 9.557V3h-2v2H6V3H4v6.557C2.81 10.25 2 11.525 2 13v4a1 1 0 0 0 1 1h1v4h2v-4h12v4h2v-4h1a1 1 0 0 0 1-1v-4c0-1.475-.811-2.75-2-3.443M18 7v2h-5V7zM6 7h5v2H6zm14 9H4v-3c0-1.103.897-2 2-2h12c1.103 0 2 .897 2 2z'/%3E%3C/svg%3E"); } .bx-been-here { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C7.589 2 4 5.589 4 9.995c-.029 6.445 7.116 11.604 7.42 11.819a1 1 0 0 0 1.16 0C12.884 21.599 20.029 16.44 20 10c0-4.411-3.589-8-8-8m0 17.735C10.389 18.427 5.979 14.441 6 10c0-3.309 2.691-6 6-6s6 2.691 6 6.005c.021 4.437-4.388 8.423-6 9.73'/%3E%3Cpath fill='black' d='M11 11.586L8.707 9.293l-1.414 1.414L11 14.414l5.707-5.707l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-beer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-2V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v15c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-1h2c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2m-4 13c0 .551-.448 1-1 1H5c-.552 0-1-.449-1-1V5h12zm4-3h-2V8h2z'/%3E%3Cpath fill='black' d='M6 7h2v10H6zm6 0h2v10h-2z'/%3E%3C/svg%3E"); } .bx-bell { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 13.586V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v3.586l-1.707 1.707A1 1 0 0 0 3 16v2a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-2a1 1 0 0 0-.293-.707zM19 17H5v-.586l1.707-1.707A1 1 0 0 0 7 14v-4c0-2.757 2.243-5 5-5s5 2.243 5 5v4c0 .266.105.52.293.707L19 16.414zm-7 5a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22'/%3E%3C/svg%3E"); } .bx-bell-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.707 15.293L19 13.586V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v3.586l-1.707 1.707A1 1 0 0 0 3 16v2a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-2a1 1 0 0 0-.293-.707M19 17H5v-.586l1.707-1.707A1 1 0 0 0 7 14v-4c0-2.757 2.243-5 5-5s5 2.243 5 5v4c0 .266.105.52.293.707L19 16.414zm-7 5a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22'/%3E%3Cpath fill='black' d='M8.037 10h7.926v2H8.037z'/%3E%3C/svg%3E"); } .bx-bell-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m9-4v-2a1 1 0 0 0-.293-.707L19 13.586V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258c-1.323.364-2.463 1.128-3.346 2.127L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-1.362-1.362A.99.99 0 0 0 21 18M12 5c2.757 0 5 2.243 5 5v4c0 .266.105.52.293.707L19 16.414V17h-.586L8.207 6.793C9.12 5.705 10.471 5 12 5m-5.293 9.707A1 1 0 0 0 7 14v-2.879L5.068 9.189C5.037 9.457 5 9.724 5 10v3.586l-1.707 1.707A1 1 0 0 0 3 16v2a1 1 0 0 0 1 1h10.879l-2-2H5v-.586z'/%3E%3C/svg%3E"); } .bx-bell-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 7.037h-2V10H8.037v2H11v2.963h2V12h2.963v-2H13z'/%3E%3Cpath fill='black' d='M19 13.586V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v3.586l-1.707 1.707A1 1 0 0 0 3 16v2a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-2a1 1 0 0 0-.293-.707zM19 17H5v-.586l1.707-1.707A1 1 0 0 0 7 14v-4c0-2.757 2.243-5 5-5s5 2.243 5 5v4c0 .266.105.52.293.707L19 16.414zm-7 5a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22'/%3E%3C/svg%3E"); } .bx-bible { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 22h15v-2H6.012C5.55 19.988 5 19.805 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3M5 8V5c0-.805.55-.988 1-1h13v12H5z'/%3E%3Cpath fill='black' d='M11 14h2v-4h2V8h-2V6h-2v2H9v2h2z'/%3E%3C/svg%3E"); } .bx-bitcoin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 13v4H6v2h3v2h2v-2h2v2h2v-2.051c1.968-.249 3.5-1.915 3.5-3.949c0-1.32-.65-2.484-1.64-3.213A3.98 3.98 0 0 0 18 9c0-1.858-1.279-3.411-3-3.858V3h-2v2h-2V3H9v2H6v2h2zm6.5 4H10v-4h4.5c1.103 0 2 .897 2 2s-.897 2-2 2M10 7h4c1.103 0 2 .897 2 2s-.897 2-2 2h-4z'/%3E%3C/svg%3E"); } .bx-blanket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H7C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h12c1.654 0 3-1.346 3-3s-1.346-3-3-3H6v2h13a1 1 0 0 1 0 2H7c-1.654 0-3-1.346-3-3s1.346-3 3-3h13c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 10H7a4.97 4.97 0 0 0-3 1.002V7c0-1.654 1.346-3 3-3h13z'/%3E%3C/svg%3E"); } .bx-block { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M4 12c0-1.846.634-3.542 1.688-4.897l11.209 11.209A7.95 7.95 0 0 1 12 20c-4.411 0-8-3.589-8-8m14.312 4.897L7.103 5.688A7.95 7.95 0 0 1 12 4c4.411 0 8 3.589 8 8a7.95 7.95 0 0 1-1.688 4.897'/%3E%3C/svg%3E"); } .bx-bluetooth { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m4.41 16.192l1.18 1.615L10 14.584V21a1 1 0 0 0 1.541.841l7-4.5a1 1 0 0 0 .049-1.649L13.537 12l5.053-3.692a1.002 1.002 0 0 0-.049-1.65l-7-4.5a1 1 0 0 0-1.021-.037c-.32.176-.52.513-.52.879v6.416L5.59 6.192L4.41 7.808L10 11.893v.215zM12 4.832l4.232 2.721L12 10.646zm0 8.522l4.232 3.093L12 19.168z'/%3E%3C/svg%3E"); } .bx-body { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M15 22V9h5V7H4v2h5v13h2v-7h2v7z'/%3E%3C/svg%3E"); } .bx-bold { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.061 11.22A4.46 4.46 0 0 0 18 8.5C18 6.019 15.981 4 13.5 4H6v15h8c2.481 0 4.5-2.019 4.5-4.5a4.48 4.48 0 0 0-1.439-3.28M13.5 7c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5H9V7zm.5 9H9v-3h5c.827 0 1.5.673 1.5 1.5S14.827 16 14 16'/%3E%3C/svg%3E"); } .bx-bolt-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='m13 6l-6 7h4v5l6-7h-4z'/%3E%3C/svg%3E"); } .bx-bomb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 3.001c-1.4 0-2.584 1.167-2.707 1.293L17.207 5.38l-1.091-1.088a1 1 0 0 0-1.413.001L13.46 5.537A8.4 8.4 0 0 0 10.5 5C5.813 5 2 8.813 2 13.5S5.813 22 10.5 22s8.5-3.813 8.5-8.5c0-.909-.144-1.8-.428-2.658l1.345-1.345a1 1 0 0 0-.001-1.415l-1.293-1.29l1.088-1.088c.229-.229.845-.703 1.289-.703h1v-2zm-4.511 7.978c.339.804.511 1.652.511 2.521c0 3.584-2.916 6.5-6.5 6.5S4 17.084 4 13.5S6.916 7 10.5 7c.96 0 1.89.21 2.762.624c.381.181.837.103 1.136-.196l1.014-1.014l2.384 2.377l-1.092 1.092a1 1 0 0 0-.215 1.096'/%3E%3Cpath fill='black' d='M6 13.5a4.47 4.47 0 0 0 1.318 3.182l1.414-1.414C8.26 14.795 8 14.168 8 13.5s.26-1.295.732-1.768A2.48 2.48 0 0 1 10.5 11V9a4.47 4.47 0 0 0-3.182 1.318A4.47 4.47 0 0 0 6 13.5'/%3E%3C/svg%3E"); } .bx-bone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.049 4.951a3.95 3.95 0 0 0-1.028-1.801c-1.51-1.51-4.146-1.51-5.656 0a4.01 4.01 0 0 0-.618 4.86l-3.714 3.714c-1.505-.89-3.591-.649-4.86.618a4.004 4.004 0 0 0 0 5.657a3.95 3.95 0 0 0 1.8 1.028c.178.681.53 1.302 1.028 1.8A3.97 3.97 0 0 0 8.829 22a3.97 3.97 0 0 0 2.828-1.172a4.01 4.01 0 0 0 .617-4.859l3.714-3.714c1.507.891 3.593.65 4.861-.619a4.003 4.003 0 0 0 0-5.656a3.94 3.94 0 0 0-1.8-1.029m.387 5.271c-.756.755-2.073.756-2.829 0l-.707-.707l-6.363 6.364l.707.707a2.003 2.003 0 0 1 0 2.828c-.757.757-2.074.755-2.829 0a1.96 1.96 0 0 1-.571-1.31l-.047-.9l-.9-.047a1.97 1.97 0 0 1-1.31-.571a2.003 2.003 0 0 1 0-2.829c.377-.377.879-.585 1.413-.585s1.036.208 1.414.585l.707.707l6.364-6.363l-.707-.707a2.003 2.003 0 0 1 0-2.829c.756-.754 2.072-.754 2.828 0c.343.343.546.809.572 1.312l.048.897l.897.048c.503.026.969.229 1.312.572c.377.378.585.88.585 1.414s-.207 1.036-.584 1.414'/%3E%3C/svg%3E"); } .bx-bong { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19.293 8.293l-2.069 2.069A7 7 0 0 0 15 8.681V4h1V2H8v2h1v4.681A7.01 7.01 0 0 0 5 15c0 3.859 3.141 7 7 7s7-3.141 7-7a7 7 0 0 0-.652-2.934l2.359-2.359zm-8.959 1.998l.666-.235V4h2v6.056l.666.235A5 5 0 0 1 16.886 14H7.114a5 5 0 0 1 3.22-3.709M12 20a5.01 5.01 0 0 1-4.898-4h9.797A5.01 5.01 0 0 1 12 20'/%3E%3C/svg%3E"); } .bx-book { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 22h15v-2H6.012C5.55 19.988 5 19.805 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3M5 8V5c0-.805.55-.988 1-1h13v12H5z'/%3E%3Cpath fill='black' d='M8 6h9v2H8z'/%3E%3C/svg%3E"); } .bx-book-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 8v11c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19q0-.15.024-.273c.112-.576.584-.717.988-.727H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3zm3-4h13v12H5V5c0-.806.55-.988 1-1'/%3E%3Cpath fill='black' d='M11 14h2v-3h3V9h-3V6h-2v3H8v2h3z'/%3E%3C/svg%3E"); } .bx-book-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2m0 14H5V5c0-.806.55-.988 1-1h13z'/%3E%3C/svg%3E"); } .bx-book-bookmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2.01H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.998 5 19.815 5 19.01q0-.15.024-.273c.112-.575.583-.717.987-.727H20c.018 0 .031-.009.049-.01H21V4.01c0-1.103-.897-2-2-2m0 14H5v-11c0-.806.55-.988 1-1h7v7l2-1l2 1v-7h2z'/%3E%3C/svg%3E"); } .bx-book-content { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 19V5h7v14zm9 0V5h7l.001 14z'/%3E%3Cpath fill='black' d='M15 7h3v2h-3zm0 4h3v2h-3z'/%3E%3C/svg%3E"); } .bx-book-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 8v11c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3zm3-4h13v12H5V5c0-.806.55-.988 1-1'/%3E%3Cpath fill='black' d='m11.997 14l3.35-3.289a2.13 2.13 0 0 0 0-3.069a2.225 2.225 0 0 0-3.126 0l-.224.218l-.224-.219a2.224 2.224 0 0 0-3.125 0a2.13 2.13 0 0 0 0 3.069z'/%3E%3C/svg%3E"); } .bx-book-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 3h-7a2.98 2.98 0 0 0-2 .78A2.98 2.98 0 0 0 10 3H3a1 1 0 0 0-1 1v15a1 1 0 0 0 1 1h5.758c.526 0 1.042.214 1.414.586l1.121 1.121c.009.009.021.012.03.021c.086.079.182.149.294.196h.002a1 1 0 0 0 .762 0h.002c.112-.047.208-.117.294-.196c.009-.009.021-.012.03-.021l1.121-1.121A2.02 2.02 0 0 1 15.242 20H21a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M8.758 18H4V5h6c.552 0 1 .449 1 1v12.689A4.03 4.03 0 0 0 8.758 18M20 18h-4.758c-.799 0-1.584.246-2.242.689V6c0-.551.448-1 1-1h6z'/%3E%3C/svg%3E"); } .bx-book-reader { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 8c-.202 0-4.85.029-9 2.008C7.85 8.029 3.202 8 3 8a1 1 0 0 0-1 1v9.883a1 1 0 0 0 .305.719c.195.188.48.305.729.28l.127-.001c.683 0 4.296.098 8.416 2.025c.016.008.034.005.05.011c.119.049.244.083.373.083s.254-.034.374-.083c.016-.006.034-.003.05-.011c4.12-1.928 7.733-2.025 8.416-2.025l.127.001c.238.025.533-.092.729-.28c.194-.189.304-.449.304-.719V9a1 1 0 0 0-1-1M4 10.049c1.485.111 4.381.48 7 1.692v7.742c-3-1.175-5.59-1.494-7-1.576zm16 7.858c-1.41.082-4 .401-7 1.576v-7.742c2.619-1.212 5.515-1.581 7-1.692z'/%3E%3Ccircle cx='12' cy='5' r='3' fill='black'/%3E%3C/svg%3E"); } .bx-bookmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 2H6c-1.103 0-2 .897-2 2v18l8-4.572L20 22V4c0-1.103-.897-2-2-2m0 16.553l-6-3.428l-6 3.428V4h12z'/%3E%3C/svg%3E"); } .bx-bookmark-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2M15 18.764l-5-2.5l-5 2.5V5.5C5 4.673 5.673 4 6.5 4h8.852A3.45 3.45 0 0 0 15 5.5zM20 11h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z'/%3E%3C/svg%3E"); } .bx-bookmark-alt-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2M15 18.764l-5-2.5l-5 2.5V5.5C5 4.673 5.673 4 6.5 4h8.852A3.45 3.45 0 0 0 15 5.5zM20 11h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z'/%3E%3Cpath fill='black' d='M7 9h6v2H7z'/%3E%3C/svg%3E"); } .bx-bookmark-alt-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2M15 18.764l-5-2.5l-5 2.5V5.5C5 4.673 5.673 4 6.5 4h8.852A3.45 3.45 0 0 0 15 5.5zM20 11h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z'/%3E%3Cpath fill='black' d='M11 7H9v2H7v2h2v2h2v-2h2V9h-2z'/%3E%3C/svg%3E"); } .bx-bookmark-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 22V4c0-1.103-.897-2-2-2H6c-1.103 0-2 .897-2 2v18l8-4.572zM6 10V4h12v14.553l-6-3.428l-6 3.428z'/%3E%3Cpath fill='black' d='M15.409 9.512c.361-.372.585-.888.585-1.456s-.223-1.083-.585-1.456a1.96 1.96 0 0 0-1.412-.603S13.001 5.994 12 7.026c-1.001-1.032-1.997-1.029-1.997-1.029c-.552 0-1.051.23-1.412.603c-.362.373-.585.887-.585 1.456s.223 1.084.585 1.456L12 13.203z'/%3E%3C/svg%3E"); } .bx-bookmark-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 9h8v2H8z'/%3E%3Cpath fill='black' d='M20 22V4c0-1.103-.897-2-2-2H6c-1.103 0-2 .897-2 2v18l8-4.572zM6 10V4h12v14.553l-6-3.428l-6 3.428z'/%3E%3C/svg%3E"); } .bx-bookmark-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 14v-3h3V9h-3V6h-2v3H8v2h3v3z'/%3E%3Cpath fill='black' d='M20 22V4c0-1.103-.897-2-2-2H6c-1.103 0-2 .897-2 2v18l8-4.572zM6 10V4h12v14.553l-6-3.428l-6 3.428z'/%3E%3C/svg%3E"); } .bx-bookmarks { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 5H6c-1.103 0-2 .897-2 2v16l6-3.601L16 23V7c0-1.103-.897-2-2-2m0 14.467l-4-2.399l-4 2.399V7h8z'/%3E%3Cpath fill='black' d='M18 1h-8c-1.103 0-2 .897-2 2h8c1.103 0 2 .897 2 2v10.443l2 2.489V3c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bx-border-all { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 21h12V3H3v18zm10-4v2h-6v-6h6zM15 5h4v6h-6V5zM5 7V5h6v6H5zm0 12v-6h6v6z'/%3E%3C/svg%3E"); } .bx-border-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 7h2v2H3zm0 4h2v2H3zm0 4h2v2H3zM3 3h2v2H3zm8 0h2v2h-2zM7 3h2v2H7zm8 0h2v2h-2zm4 0h2v2h-2zm0 12h2v2h-2zm0-4h2v2h-2zm0-4h2v2h-2zm-4 4h2v2h-2zm-8 0h2v2H7zm4-4h2v2h-2zm0 8h2v2h-2zm0-4h2v2h-2zm6 8H3v2h18v-2h-2z'/%3E%3C/svg%3E"); } .bx-border-inner { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 19h2v2h-2zM7 19h2v2H7zm8 0h2v2h-2zM3 19h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm0-4h2v2H3zm12 0h2v2h-2zM7 3h2v2H7zm12 0h2v2h-2zm0 12h2v2h-2zm0-8h2v2h-2z'/%3E%3Cpath fill='black' d='M5 13h6v8h2v-8h8v-2h-8V3h-2v8H3v2h1.93z'/%3E%3C/svg%3E"); } .bx-border-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 3h2v2h-2zm4 0h2v2h-2zM7 3h2v2H7zm12 0h2v2h-2zm0 8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zm0 12h2v2h-2zm-4 0h2v2h-2zm-8 0h2v2H7zm4 0h2v2h-2zm0-4h2v2h-2zm0-8h2v2h-2zm4 4h2v2h-2zm-8 0h2v2H7zm4 0h2v2h-2zM3 5v16h2V3H3z'/%3E%3C/svg%3E"); } .bx-border-none { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 19h2v2h-2zm-8 0h2v2h-2zm4 0h2v2h-2zm-8 0h2v2H7zm-4 0h2v2H3zM3 7h2v2H3zm0 8h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm4 0h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zm4 0h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2zm-8-8h2v2h-2zm0 8h2v2h-2zm-4-4h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z'/%3E%3C/svg%3E"); } .bx-border-outer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 7h2v2h-2zm0 8h2v2h-2zm-4-4h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2z'/%3E%3Cpath fill='black' d='M19 3H3v18h18V3zm0 4v12H5V5h14z'/%3E%3C/svg%3E"); } .bx-border-radius { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 19h2v2h-2zM7 19h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2zm-8 0h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm0 4h2v2H3zm0-8h2v2H3zm4 0h2v2H7zm12 12h2v2h-2zM16 3h-5v2h5c1.654 0 3 1.346 3 3v5h2V8c0-2.757-2.243-5-5-5'/%3E%3C/svg%3E"); } .bx-border-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 19h2v2h-2zm-4 0h2v2h-2zm-4 0h2v2H7zm-4 0h2v2H3zM3 7h2v2H3zm0 8h2v2H3zm0-4h2v2H3zm0-8h2v2H3zm12 0h2v2h-2zm-4 0h2v2h-2zM7 3h2v2H7zm4 4h2v2h-2zm0 8h2v2h-2zm-4-4h2v2H7zm8 0h2v2h-2zm-4 0h2v2h-2zm8-6v16h2V3h-2z'/%3E%3C/svg%3E"); } .bx-border-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 11h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zm0 12h2v2h-2zm-8 0h2v2h-2zm4 0h2v2h-2zm-8 0h2v2H7zm-4 0h2v2H3zm0-8h2v2H3zm0 4h2v2H3zm0-8h2v2H3zm4 4h2v2H7zm8 0h2v2h-2zm-4-4h2v2h-2zm0 8h2v2h-2zm0-4h2v2h-2zm10-8H3v2h18z'/%3E%3C/svg%3E"); } .bx-bot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.928 11.607c-.202-.488-.635-.605-.928-.633V8c0-1.103-.897-2-2-2h-6V4.61c.305-.274.5-.668.5-1.11a1.5 1.5 0 0 0-3 0c0 .442.195.836.5 1.11V6H5c-1.103 0-2 .897-2 2v2.997l-.082.006A1 1 0 0 0 1.99 12v2a1 1 0 0 0 1 1H3v5c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5a1 1 0 0 0 1-1v-1.938a1 1 0 0 0-.072-.455M5 20V8h14l.001 3.996L19 12v2l.001.005l.001 5.995z'/%3E%3Cellipse cx='8.5' cy='12' fill='black' rx='1.5' ry='2'/%3E%3Cellipse cx='15.5' cy='12' fill='black' rx='1.5' ry='2'/%3E%3Cpath fill='black' d='M8 16h8v2H8z'/%3E%3C/svg%3E"); } .bx-bowl-hot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 10H3a1 1 0 0 0-1 1a10 10 0 0 0 5 8.66V21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.34A10 10 0 0 0 22 11a1 1 0 0 0-1-1m-5.45 8.16a1 1 0 0 0-.55.9V20H9v-.94a1 1 0 0 0-.55-.9A8 8 0 0 1 4.06 12h15.88a8 8 0 0 1-4.39 6.16M9 9V7.93a4.53 4.53 0 0 0-1.28-3.15A2.5 2.5 0 0 1 7 3V2H5v1a4.53 4.53 0 0 0 1.28 3.17A2.5 2.5 0 0 1 7 7.93V9zm4 0V7.93a4.53 4.53 0 0 0-1.28-3.15A2.5 2.5 0 0 1 11 3V2H9v1a4.53 4.53 0 0 0 1.28 3.15A2.5 2.5 0 0 1 11 7.93V9zm4 0V7.93a4.53 4.53 0 0 0-1.28-3.15A2.5 2.5 0 0 1 15 3V2h-2v1a4.53 4.53 0 0 0 1.28 3.15A2.5 2.5 0 0 1 15 7.93V9z'/%3E%3C/svg%3E"); } .bx-bowl-rice { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 19.66V21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.34A10 10 0 0 0 22 11a1 1 0 0 0-1-1a3.58 3.58 0 0 0-1.8-3a3.66 3.66 0 0 0-3.63-3.13a4 4 0 0 0-1 .13a3.7 3.7 0 0 0-5.11 0a4 4 0 0 0-1-.13A3.66 3.66 0 0 0 4.81 7A3.58 3.58 0 0 0 3 10a1 1 0 0 0-1 1a10 10 0 0 0 5 8.66m-.89-11l.83-.26l-.16-.9a1.64 1.64 0 0 1 1.66-1.62a1.8 1.8 0 0 1 .83.2l.81.45l.5-.77a1.71 1.71 0 0 1 2.84 0l.5.77l.81-.45a1.8 1.8 0 0 1 .83-.2a1.65 1.65 0 0 1 1.67 1.6l-.16.85l.82.28A1.59 1.59 0 0 1 19 10H5a1.59 1.59 0 0 1 1.11-1.39zM19.94 12a8 8 0 0 1-4.39 6.16a1 1 0 0 0-.55.9V20H9v-.94a1 1 0 0 0-.55-.9A8 8 0 0 1 4.06 12z'/%3E%3C/svg%3E"); } .bx-bowling-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Ccircle cx='7.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='10.5' cy='7.5' r='1.5' fill='black'/%3E%3Ccircle cx='11.5' cy='11.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-box { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a2 2 0 0 0-2 2v2a2 2 0 0 0 1 1.72V19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.72A2 2 0 0 0 22 7V5a2 2 0 0 0-2-2M4 5h16v2H4zm1 14V9h14v10z'/%3E%3Cpath fill='black' d='M8 11h8v2H8z'/%3E%3C/svg%3E"); } .bx-bracket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 4V2H4v20h6v-2H6V4zm4 16v2h6V2h-6v2h4v16z'/%3E%3C/svg%3E"); } .bx-braille { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='4' cy='7' r='2' fill='black'/%3E%3Ccircle cx='9' cy='12' r='2' fill='black'/%3E%3Ccircle cx='15' cy='7' r='2' fill='black'/%3E%3Ccircle cx='15' cy='12' r='2' fill='black'/%3E%3Ccircle cx='15' cy='17' r='2' fill='black'/%3E%3Ccircle cx='20' cy='7' r='2' fill='black'/%3E%3Ccircle cx='4' cy='17' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-brain { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.864 8.465a3.505 3.505 0 0 0-3.03-4.449A3.005 3.005 0 0 0 14 2a2.98 2.98 0 0 0-2 .78A2.98 2.98 0 0 0 10 2c-1.301 0-2.41.831-2.825 2.015a3.505 3.505 0 0 0-3.039 4.45A4.03 4.03 0 0 0 2 12c0 1.075.428 2.086 1.172 2.832A4 4 0 0 0 3 16c0 1.957 1.412 3.59 3.306 3.934A3.52 3.52 0 0 0 9.5 22c.979 0 1.864-.407 2.5-1.059A3.48 3.48 0 0 0 14.5 22a3.51 3.51 0 0 0 3.19-2.06a4.006 4.006 0 0 0 3.138-5.108A4 4 0 0 0 22 12a4.03 4.03 0 0 0-2.136-3.535M9.5 20c-.711 0-1.33-.504-1.47-1.198L7.818 18H7c-1.103 0-2-.897-2-2c0-.352.085-.682.253-.981l.456-.816l-.784-.51A2.02 2.02 0 0 1 4 12c0-.977.723-1.824 1.682-1.972l1.693-.26l-1.059-1.346a1.502 1.502 0 0 1 1.498-2.39L9 6.207V5a1 1 0 0 1 2 0v13.5c0 .827-.673 1.5-1.5 1.5m9.575-6.308l-.784.51l.456.816q.252.452.253.982c0 1.103-.897 2-2.05 2h-.818l-.162.802A1.5 1.5 0 0 1 14.5 20c-.827 0-1.5-.673-1.5-1.5V5c0-.552.448-1 1-1s1 .448 1 1.05v1.207l1.186-.225a1.502 1.502 0 0 1 1.498 2.39l-1.059 1.347l1.693.26A2 2 0 0 1 20 12c0 .683-.346 1.315-.925 1.692'/%3E%3C/svg%3E"); } .bx-briefcase { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2m-5-2v2H9V4zM8 8h12v3H4V8zM4 19v-6h6v2h4v-2h6l.001 6z'/%3E%3C/svg%3E"); } .bx-briefcase-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2m-4 2v11H8V8zm-1-4v2H9V4zM4 8h2v11H4zm14 11V8h2l.001 11z'/%3E%3C/svg%3E"); } .bx-briefcase-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2m-5-2v2H9V4zM4 8h16v4h-3v-2h-2v2H9v-2H7v2H4zm0 11v-5h3v2h2v-2h6v2h2v-2h3.001v5z'/%3E%3C/svg%3E"); } .bx-brightness { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.707 9.293L19 8.586V6a1 1 0 0 0-1-1h-2.586l-.707-.707l-2-2a1 1 0 0 0-1.414 0l-2 2L8.586 5H6a1 1 0 0 0-1 1v2.586l-.707.707l-2 2a1 1 0 0 0 0 1.414l2 2l.707.707V18a1 1 0 0 0 1 1h2.586l.707.707l2 2a.997.997 0 0 0 1.414 0l2-2l.707-.707H18a1 1 0 0 0 1-1v-2.586l.707-.707l2-2a1 1 0 0 0 0-1.414zm-2.414 5l-.293.293V17h-2.414l-.293.293l-1 1L12 19.586l-1.293-1.293l-1-1L9.414 17H7v-2.414l-.293-.293l-1-1L4.414 12l1.293-1.293l1-1L7 9.414V7h2.414l.293-.293l1-1L12 4.414l1.293 1.293l1 1l.293.293H17v2.414l.293.293l1 1L19.586 12l-1.293 1.293z'/%3E%3Cpath fill='black' d='M12 8c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4'/%3E%3C/svg%3E"); } .bx-brightness-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.707 11.293l-2-2L19 8.586V6a1 1 0 0 0-1-1h-2.586l-.707-.707l-2-2a1 1 0 0 0-1.414 0l-2 2L8.586 5H6a1 1 0 0 0-1 1v2.586l-.707.707l-2 2a1 1 0 0 0 0 1.414l2 2l.707.707V18a1 1 0 0 0 1 1h2.586l.707.707l2 2a.997.997 0 0 0 1.414 0l2-2l.707-.707H18a1 1 0 0 0 1-1v-2.586l.707-.707l2-2a1 1 0 0 0 0-1.414m-4.414 3l-.293.293V17h-2.414l-.293.293l-1 1L12 19.586l-1.293-1.293l-1-1L9.414 17H7v-2.414l-.293-.293l-1-1L4.414 12l1.293-1.293l1-1L7 9.414V7h2.414l.293-.293l1-1L12 4.414l1.293 1.293l1 1l.293.293H17v2.414l.293.293l1 1L19.586 12l-1.293 1.293z'/%3E%3Cpath fill='black' d='M12 8v8c2.206 0 4-1.794 4-4s-1.794-4-4-4'/%3E%3C/svg%3E"); } .bx-broadcast { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19.707 4.293l-1.414 1.414c2.733 2.733 2.733 7.353 0 10.086l1.414 1.414c3.5-3.5 3.5-9.414 0-12.914m-4.414 4.414c.566.566.879 1.292.879 2.043s-.313 1.477-.879 2.043l1.414 1.414c.944-.943 1.465-2.172 1.465-3.457s-.521-2.514-1.465-3.457zm-9.086-3L4.793 4.293c-3.5 3.5-3.5 9.414 0 12.914l1.414-1.414c-2.733-2.733-2.733-7.353 0-10.086'/%3E%3Cpath fill='black' d='M7.293 7.293c-.944.943-1.465 2.172-1.465 3.457s.521 2.514 1.465 3.457l1.414-1.414c-.566-.566-.879-1.292-.879-2.043s.313-1.477.879-2.043zM14 10.5a2 2 0 0 0-4 0a2 2 0 0 0 .895 1.666L10.002 22h3.996l-.893-9.835c.54-.358.895-.97.895-1.665'/%3E%3C/svg%3E"); } .bx-brush { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.707 2.293a1 1 0 0 0-1.414 0l-5.84 5.84c-.015-.001-.029-.009-.044-.009a1 1 0 0 0-.707.293L4.288 9.831a3 3 0 0 0-.878 2.122c0 .802.313 1.556.879 2.121l.707.707l-2.122 2.122A2.92 2.92 0 0 0 2 19.012a2.97 2.97 0 0 0 1.063 2.308c.519.439 1.188.68 1.885.68c.834 0 1.654-.341 2.25-.937l2.04-2.039l.707.706c1.134 1.133 3.109 1.134 4.242.001l1.415-1.414a1 1 0 0 0 .293-.707c0-.026-.013-.05-.015-.076l5.827-5.827a1 1 0 0 0 0-1.414zm-.935 16.024a1.023 1.023 0 0 1-1.414-.001l-1.414-1.413a1 1 0 0 0-1.414 0l-2.746 2.745a1.2 1.2 0 0 1-.836.352a.9.9 0 0 1-.594-.208A.98.98 0 0 1 4 19.01a.96.96 0 0 1 .287-.692l2.829-2.829a1 1 0 0 0 0-1.414L5.701 12.66a1 1 0 0 1-.292-.706c0-.268.104-.519.293-.708l.707-.707l7.071 7.072zm1.889-2.392L8.075 9.339L13 4.414L19.586 11z'/%3E%3C/svg%3E"); } .bx-brush-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 8.001h-4V4.999a2.92 2.92 0 0 0-.874-2.108a2.94 2.94 0 0 0-2.39-.879C10.202 2.144 9 3.508 9 5.117V8H5c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-9.999c0-1.103-.897-2-2-2M5 10h6V5.117c0-.57.407-1.07 1.002-1.117c.266 0 .512.103.712.307a.96.96 0 0 1 .286.692V10h.995l.005.001h5V12H5zm0 10v-6h14l.002 6z'/%3E%3C/svg%3E"); } .bx-bug { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m16.895 6.519l2.813-2.812l-1.414-1.414l-2.846 2.846a7 7 0 0 0-.723-.454a5.78 5.78 0 0 0-5.45 0c-.25.132-.488.287-.722.453L5.707 2.293L4.293 3.707l2.813 2.812A8.5 8.5 0 0 0 5.756 9H2v2h2.307c-.065.495-.107.997-.107 1.5c0 .507.042 1.013.107 1.511H2v2h2.753c.013.039.021.08.034.118c.188.555.421 1.093.695 1.6c.044.081.095.155.141.234l-2.33 2.33l1.414 1.414l2.11-2.111a7.5 7.5 0 0 0 2.068 1.619c.479.253.982.449 1.496.58a6.5 6.5 0 0 0 3.237.001a6.8 6.8 0 0 0 1.496-.58c.465-.246.914-.55 1.333-.904c.258-.218.5-.462.734-.716l2.111 2.111l1.414-1.414l-2.33-2.33c.047-.08.098-.155.142-.236c.273-.505.507-1.043.694-1.599c.013-.039.021-.079.034-.118H22v-2h-2.308c.065-.499.107-1.004.107-1.511c0-.503-.042-1.005-.106-1.5H22V9h-3.756a8.5 8.5 0 0 0-1.349-2.481M8.681 7.748c.445-.558.96-.993 1.528-1.294a3.77 3.77 0 0 1 3.581 0a4.9 4.9 0 0 1 1.53 1.295c.299.373.54.8.753 1.251H7.927c.214-.451.454-.879.754-1.252M17.8 12.5c0 .522-.042 1.044-.126 1.553c-.079.49-.199.973-.355 1.436a8.3 8.3 0 0 1-.559 1.288a7.6 7.6 0 0 1-.733 1.11c-.267.333-.56.636-.869.898q-.467.393-.979.664c-.512.271-.695.317-1.057.41c-.04.01-.082.014-.122.023V14h-2v5.881c-.04-.009-.082-.013-.122-.023c-.361-.093-.717-.23-1.057-.41s-.669-.403-.978-.664a6.5 6.5 0 0 1-.871-.899a7.4 7.4 0 0 1-.731-1.108a8.3 8.3 0 0 1-.56-1.289a9 9 0 0 1-.356-1.438A9.6 9.6 0 0 1 6.319 11H17.68c.079.491.12.995.12 1.5'/%3E%3C/svg%3E"); } .bx-bug-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 9h6v2H9zm0 4h6v2H9z'/%3E%3Cpath fill='black' d='m18 5.414l1.707-1.707l-1.414-1.414l-1.563 1.562C15.483 2.708 13.824 2 12 2s-3.483.708-4.73 1.855L5.707 2.293L4.293 3.707L6 5.414A6.94 6.94 0 0 0 5 9H3v2h2v2H3v2h2c0 3.86 3.141 7 7 7s7-3.14 7-7h2v-2h-2v-2h2V9h-2a6.94 6.94 0 0 0-1-3.586M17 13v2c0 2.757-2.243 5-5 5s-5-2.243-5-5V9c0-2.757 2.243-5 5-5s5 2.243 5 5z'/%3E%3C/svg%3E"); } .bx-building { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 2H6c-1.103 0-2 .897-2 2v17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V4c0-1.103-.897-2-2-2m0 18H6V4h12z'/%3E%3Cpath fill='black' d='M8 6h3v2H8zm5 0h3v2h-3zm-5 4h3v2H8zm5 .031h3V12h-3zM8 14h3v2H8zm5 0h3v2h-3z'/%3E%3C/svg%3E"); } .bx-building-house { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H9c-1.103 0-2 .897-2 2v5.586l-4.707 4.707A1 1 0 0 0 3 16v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4c0-1.103-.897-2-2-2m-8 18H5v-5.586l3-3l3 3zm8 0h-6v-4a.999.999 0 0 0 .707-1.707L9 9.586V4h10z'/%3E%3Cpath fill='black' d='M11 6h2v2h-2zm4 0h2v2h-2zm0 4.031h2V12h-2zM15 14h2v2h-2zm-8 1h2v2H7z'/%3E%3C/svg%3E"); } .bx-buildings { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H9c-1.103 0-2 .897-2 2v6H5c-1.103 0-2 .897-2 2v9a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4c0-1.103-.897-2-2-2M5 12h6v8H5zm14 8h-6v-8c0-1.103-.897-2-2-2H9V4h10z'/%3E%3Cpath fill='black' d='M11 6h2v2h-2zm4 0h2v2h-2zm0 4.031h2V12h-2zM15 14h2v2h-2zm-8 .001h2v2H7z'/%3E%3C/svg%3E"); } .bx-bulb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 20h6v2H9zm7.906-6.288C17.936 12.506 19 11.259 19 9c0-3.859-3.141-7-7-7S5 5.141 5 9c0 2.285 1.067 3.528 2.101 4.73c.358.418.729.851 1.084 1.349c.144.206.38.996.591 1.921H8v2h8v-2h-.774c.213-.927.45-1.719.593-1.925c.352-.503.726-.94 1.087-1.363m-2.724.213c-.434.617-.796 2.075-1.006 3.075h-2.351c-.209-1.002-.572-2.463-1.011-3.08a21 21 0 0 0-1.196-1.492C7.644 11.294 7 10.544 7 9c0-2.757 2.243-5 5-5s5 2.243 5 5c0 1.521-.643 2.274-1.615 3.413c-.373.438-.796.933-1.203 1.512'/%3E%3C/svg%3E"); } .bx-bullseye { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 6c-3.309 0-6 2.691-6 6s2.691 6 6 6s6-2.691 6-6s-2.691-6-6-6m0 10c-2.206 0-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4s-1.794 4-4 4'/%3E%3Cpath fill='black' d='M12 2C6.579 2 2 6.579 2 12s4.579 10 10 10s10-4.579 10-10S17.421 2 12 2m0 18c-4.337 0-8-3.663-8-8s3.663-8 8-8s8 3.663 8 8s-3.663 8-8 8'/%3E%3Cpath fill='black' d='M12 10c-1.081 0-2 .919-2 2s.919 2 2 2s2-.919 2-2s-.919-2-2-2'/%3E%3C/svg%3E"); } .bx-buoy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m7.411 7H16v.031A5 5 0 0 0 14.969 8H15V4.589A8.04 8.04 0 0 1 19.411 9M12 15c-1.654 0-3-1.346-3-3s1.346-3 3-3s3 1.346 3 3s-1.346 3-3 3m1-10.931v3.032a5 5 0 0 0-2 0V4.069c.328-.041.66-.069 1-.069s.672.028 1 .069m-4 .52V8h.031A5 5 0 0 0 8 9.031V9H4.589C5.402 7 6.999 5.402 9 4.589M4.069 11h3.032a5 5 0 0 0 .001 2H4.069C4.028 12.672 4 12.339 4 12s.028-.672.069-1m.52 4H8v-.031c.284.381.621.718 1 1.005v3.437A8.04 8.04 0 0 1 4.589 15M11 19.931v-3.032a5 5 0 0 0 2 0v3.032c-.328.041-.66.069-1 .069s-.672-.028-1-.069m4-.52v-3.437a5 5 0 0 0 1-1.005V15h3.411A8.04 8.04 0 0 1 15 19.411M19.931 13h-3.032a5 5 0 0 0-.001-2h3.032c.042.328.07.661.07 1s-.028.672-.069 1'/%3E%3C/svg%3E"); } .bx-bus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.004 7.975V6c0-2.206-1.794-4-4-4h-10c-2.206 0-4 1.794-4 4v1.998l-.076.004A1 1 0 0 0 2 9v2a1 1 0 0 0 1 1h.004v6c0 .735.403 1.372.996 1.72V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h10v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.276A2 2 0 0 0 21.004 18v-6a1 1 0 0 0 1-1V9.062a1 1 0 0 0-.072-.455c-.203-.487-.635-.604-.928-.632M19.006 18H5.004v-5h14.001zM11.004 7v4h-6V7zm8 0v4h-6V7zm-12-3h10c.736 0 1.375.405 1.722 1H5.282c.347-.595.986-1 1.722-1'/%3E%3Ccircle cx='7.5' cy='15.5' r='1.5' fill='black'/%3E%3Ccircle cx='16.5' cy='15.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-bus-school { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.259 11.948A.986.986 0 0 0 22 11V8a1 1 0 0 0-.996-.999V6H21c0-2.206-1.794-4-4-4H7C4.794 2 3 3.794 3 6v1a1 1 0 0 0-1 1v3c0 .461.317.832.742.948a3.95 3.95 0 0 0-.741 2.298l.004 3.757c.001.733.404 1.369.995 1.716V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.274a2 2 0 0 0 .421-.313c.377-.378.585-.881.584-1.415l-.004-3.759a3.97 3.97 0 0 0-.742-2.291M5 18h-.995l-.004-3.757c-.001-.459.161-.89.443-1.243h15.111c.283.353.445.783.446 1.242L20.006 18zm6.004-10v3H5V8zM19 11h-5.996V8H19zM7 4h10c1.103 0 2 .897 2 2h-4V5H9v1H5c0-1.103.897-2 2-2'/%3E%3Ccircle cx='6.5' cy='15.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='15.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-500px { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.379 14.791c.004.01.098.269.151.396a5.859 5.859 0 0 0 1.258 1.865a5.86 5.86 0 0 0 6.437 1.259a5.876 5.876 0 0 0 3.124-3.125a5.802 5.802 0 0 0 .461-2.285c0-.793-.153-1.563-.461-2.287a5.862 5.862 0 0 0-1.257-1.864a5.86 5.86 0 0 0-4.152-1.72a6 6 0 0 0-2.318.461c-.57.241-1.536.862-2.102 1.446l-.002.002V4.107h8.117c.295-.003.295-.417.295-.55c0-.137 0-.549-.296-.553H7.857a.387.387 0 0 0-.388.384v6.801c0 .221.273.379.527.434c.496.104.61-.053.732-.222l.015-.021c.187-.275.767-.858.771-.863a4.776 4.776 0 0 1 3.406-1.403a4.76 4.76 0 0 1 3.394 1.403a4.75 4.75 0 0 1 1.408 3.385c0 1.28-.498 2.483-1.4 3.385a4.858 4.858 0 0 1-3.416 1.403a4.656 4.656 0 0 1-2.42-.668l.004-4.137c0-.552.238-1.151.64-1.604a2.351 2.351 0 0 1 1.778-.803c.667 0 1.291.254 1.754.714c.46.455.714 1.064.714 1.711a2.443 2.443 0 0 1-2.474 2.466c-.268 0-.753-.117-.773-.123c-.281-.084-.4.305-.439.435c-.151.492.077.59.122.604c.448.138.741.164 1.124.164a3.555 3.555 0 0 0 3.551-3.553c0-1.943-1.592-3.526-3.548-3.526a3.59 3.59 0 0 0-2.536 1.033c-.644.632-1.013 1.478-1.013 2.317v.021c-.004.105-.004 2.583-.005 3.398l-.005-.006c-.368-.407-.731-1.029-.973-1.668c-.097-.25-.309-.206-.601-.116c-.127.04-.514.159-.429.438l.002.004zm4.172-.972c.002.118.111.223.175.286l.021.019c.111.11.217.164.315.164c.081 0 .13-.037.148-.054c.05-.046.604-.608.658-.662l.618.618c.058.064.12.097.192.098c.1 0 .207-.058.32-.174c.267-.272.134-.42.069-.49l-.628-.63l.655-.658c.144-.155.017-.32-.111-.446c-.183-.184-.359-.23-.474-.127l-.65.652l-.657-.658a.183.183 0 0 0-.128-.051c-.087 0-.191.06-.308.177c-.202.201-.246.341-.141.453l.657.656l-.653.655a.247.247 0 0 0-.078.172m1.434-8.891c-1.053 0-2.171.211-2.992.566a.23.23 0 0 0-.151.205c-.011.093.013.216.076.377c.051.131.187.478.449.376a7.566 7.566 0 0 1 2.618-.498c.96 0 1.892.188 2.768.558c.696.296 1.354.721 2.068 1.341a.243.243 0 0 0 .165.068c.138 0 .271-.137.386-.266c.191-.214.321-.392.135-.569a7.674 7.674 0 0 0-2.354-1.52a8.088 8.088 0 0 0-3.168-.638m5.668 12.986c-.127-.126-.235-.199-.33-.228a.24.24 0 0 0-.247.059l-.063.062a7.07 7.07 0 0 1-5.018 2.081a7.09 7.09 0 0 1-5.02-2.081a6.794 6.794 0 0 1-1.521-2.255a7.618 7.618 0 0 1-.462-1.596c-.004-.018-.005-.031-.009-.041c-.044-.232-.257-.249-.564-.202c-.127.019-.517.078-.479.358l.002.006a8.104 8.104 0 0 0 2.288 4.478a8.089 8.089 0 0 0 2.59 1.747a8.093 8.093 0 0 0 3.175.642a8.062 8.062 0 0 0 3.172-.643a8.129 8.129 0 0 0 2.658-1.813c.083-.09.154-.248-.172-.574' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-99designs { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.93 10.61A2.7 2.7 0 0 0 19 10a2.74 2.74 0 0 0-1.1-.19a3.28 3.28 0 0 0-2.16.76v-.05a3.67 3.67 0 0 0-5.09-3.39a3.61 3.61 0 0 0-1.78 1.56a3.67 3.67 0 0 0-3.12-1.86a3.74 3.74 0 0 0-1.82.44a3.66 3.66 0 0 0-1.37 1.28A3.77 3.77 0 0 0 2 10.34a3.67 3.67 0 0 0 3.42 3.83l-1.6 2.76h2.39l2.65-4.59a3.63 3.63 0 0 0 2.93 1.84l-1.59 2.76h2.4l1.86-3.23a3.53 3.53 0 0 0 2.07 3.19a3.52 3.52 0 0 0 2.61.05a2.58 2.58 0 0 0 .9-.74v.73h2V7.06h-2.11zm-12.78.72a1.69 1.69 0 0 1-1.46.83a1.72 1.72 0 0 1-.86-.16a1.75 1.75 0 0 1-.62-.62a1.78 1.78 0 0 1-.21-.87a1.69 1.69 0 0 1 1.67-1.69a1.63 1.63 0 0 1 .84.23a1.58 1.58 0 0 1 .62.61a1.62 1.62 0 0 1 .23.83a1.72 1.72 0 0 1-.21.84zm6.38 0a1.58 1.58 0 0 1-.62.61a1.53 1.53 0 0 1-.84.22a1.78 1.78 0 0 1-.84-.22a1.65 1.65 0 0 1-.61-.62a1.67 1.67 0 0 1 0-1.69a1.73 1.73 0 0 1 .62-.61a1.63 1.63 0 0 1 .84-.23a1.69 1.69 0 0 1 .84.23a1.69 1.69 0 0 1 .63 2.28zm6.3 3a1.72 1.72 0 0 1-2 .85a1.72 1.72 0 0 1-1-.7a1.75 1.75 0 0 1-.29-1.15a1.77 1.77 0 0 1 .51-1.07a1.75 1.75 0 0 1 2.35-.11a1.73 1.73 0 0 1 .43 2.18z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-adobe { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 19.966V4.034h-6.654zM3 4.034v15.932L9.658 4.034zM9.092 16.76h3.104l1.268 3.205h2.778L12.003 9.904z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-airbnb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.001 16.709c-1.013-1.271-1.609-2.386-1.808-3.34c-.197-.769-.12-1.385.218-1.848c.357-.532.89-.791 1.589-.791s1.231.259 1.589.796c.335.458.419 1.075.215 1.848c-.218.974-.813 2.087-1.808 3.341l.005-.006zm7.196.855c-.14.934-.775 1.708-1.65 2.085c-1.687.734-3.359-.437-4.789-2.026c2.365-2.961 2.803-5.268 1.787-6.758c-.596-.855-1.449-1.271-2.544-1.271c-2.206 0-3.419 1.867-2.942 4.034c.276 1.173 1.013 2.506 2.186 3.996c-.735.813-1.432 1.391-2.047 1.748c-.478.258-.934.418-1.37.456c-2.008.299-3.582-1.647-2.867-3.656c.1-.259.297-.734.634-1.471l.019-.039c1.097-2.382 2.43-5.088 3.961-8.09l.039-.1l.435-.836c.338-.616.477-.892 1.014-1.231c.258-.157.576-.235.934-.235c.715 0 1.271.418 1.511.753c.118.18.259.419.436.716l.419.815l.06.119c1.53 3.001 2.863 5.702 3.955 8.089l.02.019l.401.915l.237.573c.183.459.221.915.16 1.393l.001.002zm.913-1.791c-.139-.438-.378-.953-.675-1.569v-.022a262.99 262.99 0 0 0-3.976-8.128l-.084-.121C14.486 4.109 13.849 3.014 12 3.014c-1.827 0-2.604 1.27-3.397 2.922l-.061.119c-1.251 2.426-2.564 5.128-3.975 8.13v.039l-.418.914c-.158.378-.237.575-.259.636C2.878 18.556 4.964 21 7.489 21c.021 0 .099 0 .198-.021h.278c1.313-.159 2.664-.993 4.035-2.485c1.371 1.49 2.725 2.326 4.033 2.485h.279c.1.021.18.021.2.021c2.525.002 4.61-2.444 3.598-5.227z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-algolia { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.177 9.059a3.582 3.582 0 0 0-3.576 3.584a3.584 3.584 0 0 0 3.576 3.585a3.578 3.578 0 0 0 3.575-3.585a3.582 3.582 0 0 0-3.575-3.584zm2.518 2.268l-2.366 1.229c-.07.039-.153-.017-.153-.093V9.791h.001c0-.06.054-.104.109-.104a2.943 2.943 0 0 1 2.452 1.492c.028.055.011.121-.043.148z' fill='black'/%3E%3Cpath d='M18.578 3H5.361A2.363 2.363 0 0 0 3 5.366v13.277a2.368 2.368 0 0 0 2.361 2.371h13.217a2.367 2.367 0 0 0 2.361-2.372V5.372A2.368 2.368 0 0 0 18.578 3zm-8.112 3.404a.78.78 0 0 1 .779-.781h1.815c.43 0 .778.35.778.781v.618a.106.106 0 0 1-.131.104a5.677 5.677 0 0 0-3.106.017c-.07.016-.136-.033-.136-.104v-.635zM7.08 8.993a.78.78 0 0 1 .001-1.103l.371-.371l.002-.002a.776.776 0 0 1 1.099.002l.31.311c.043.05.038.127-.017.159a5.82 5.82 0 0 0-1.296 1.3c-.044.049-.114.06-.163.011l-.306-.306l-.001-.001zm5.097 8.737a5.078 5.078 0 0 1-5.074-5.087c0-2.813 2.272-5.092 5.074-5.092a5.074 5.074 0 0 1 5.074 5.086c0 2.815-2.272 5.093-5.074 5.093z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-amazon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.027 17.023c.061-.098.156-.105.289-.02c3.035 1.76 6.338 2.645 9.906 2.645c2.381 0 4.73-.447 7.051-1.332l.262-.117c.115-.051.195-.084.244-.109c.189-.074.326-.037.438.109c.102.143.076.279-.1.4c-.213.158-.5.342-.84.545c-1.037.619-2.203 1.098-3.492 1.441a14.815 14.815 0 0 1-3.77.508c-1.889 0-3.68-.33-5.369-.99a14.875 14.875 0 0 1-4.531-2.797c-.084-.061-.125-.123-.125-.184c0-.039.016-.074.041-.109l-.004.01zm5.479-5.189c0-.84.207-1.555.619-2.152c.414-.592.977-1.041 1.703-1.346c.666-.281 1.465-.48 2.43-.602c.326-.037.861-.086 1.6-.145v-.31c0-.773-.084-1.299-.248-1.564c-.252-.359-.65-.541-1.203-.541h-.15c-.4.039-.746.162-1.039.383a1.51 1.51 0 0 0-.564.916c-.049.25-.172.387-.361.426l-2.105-.264c-.209-.051-.311-.15-.311-.326c0-.037.006-.074.018-.123c.209-1.078.715-1.881 1.52-2.404c.814-.514 1.752-.814 2.828-.875h.451c1.379 0 2.469.361 3.244 1.076c.115.123.227.25.34.398c.1.139.188.264.234.377c.063.111.127.275.164.475c.051.213.088.352.113.426c.023.086.051.25.064.514c.006.262.016.41.016.461v4.406c0 .314.049.602.137.865c.088.26.174.451.262.563l.428.561a.598.598 0 0 1 .111.303c0 .102-.049.188-.148.26c-1.002.877-1.553 1.352-1.639 1.428c-.137.113-.313.125-.525.039a5.397 5.397 0 0 1-.439-.414l-.258-.291c-.051-.063-.141-.174-.266-.352l-.25-.363c-.676.74-1.338 1.205-2.002 1.393c-.414.125-.914.188-1.529.188c-.926 0-1.701-.285-2.303-.863c-.598-.576-.9-1.389-.9-2.453l-.043-.063l.001-.007zm3.131-.367c0 .475.117.852.355 1.139c.236.285.563.428.965.428c.035 0 .088-.008.16-.018c.078-.012.111-.02.141-.02c.512-.133.902-.461 1.189-.982a2.62 2.62 0 0 0 .299-.758c.076-.268.1-.494.111-.666c.016-.166.016-.453.016-.84v-.451c-.703 0-1.24.049-1.604.148c-1.063.303-1.604.977-1.604 2.029l-.029-.016v.007zm7.646 5.865c.025-.051.063-.092.109-.143c.301-.201.596-.342.877-.416a6.597 6.597 0 0 1 1.344-.201c.117-.01.234 0 .346.025c.539.051.873.141.977.273c.053.078.074.191.074.328v.125c0 .426-.117.926-.348 1.502s-.553 1.041-.963 1.402c-.061.049-.115.074-.164.074c-.025 0-.051 0-.074-.01c-.076-.037-.09-.1-.055-.201c.451-1.051.672-1.787.672-2.201c0-.127-.025-.227-.074-.289c-.119-.137-.457-.217-1.02-.217a9.42 9.42 0 0 0-.727.039c-.303.041-.582.078-.834.115c-.074 0-.123-.014-.15-.037c-.025-.025-.031-.039-.018-.064c0-.014.006-.025.018-.053v-.049l.01-.002z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-android { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.344 8.71c-.707 0-1.279.572-1.279 1.278v4.53a1.278 1.278 0 1 0 2.558 0v-4.53c0-.706-.572-1.278-1.279-1.278zm-12.688 0c-.707 0-1.279.572-1.279 1.278v4.53a1.278 1.278 0 1 0 2.558 0v-4.53A1.277 1.277 0 0 0 5.656 8.71zm8.889-3.809l.768-1.388a.343.343 0 0 0-.133-.47a.344.344 0 0 0-.471.135l-.789 1.42c-.588-.235-1.236-.368-1.92-.368s-1.332.132-1.92.367l-.789-1.418a.344.344 0 0 0-.471-.135a.345.345 0 0 0-.133.47l.768 1.388C8.072 5.69 7.148 7.099 7.148 8.71c0 .011 0 .021.002.034c-.002.006-.002.013-.002.019v.001h9.703V8.71c.001-1.611-.923-3.019-2.306-3.809zM9.76 6.869a.346.346 0 1 1 .005-.693a.346.346 0 0 1-.005.693zm4.48 0a.347.347 0 0 1 0-.692a.346.346 0 0 1 0 .692zM7.148 16.12c0 .646.525 1.171 1.174 1.171h.586v2.401a1.279 1.279 0 0 0 2.558 0v-2.401h1.066v2.401c0 .707.572 1.278 1.277 1.278c.709 0 1.281-.571 1.281-1.278v-2.401h.586c.648 0 1.174-.524 1.174-1.171V9.028H7.148v7.092z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-angular { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10.483 12.482h3.034L12 8.831z' fill='black'/%3E%3Cpath d='M12 3.074L3.689 6.038l1.268 10.987l7.043 3.9l7.043-3.9l1.268-10.987L12 3.074zm5.187 13.621H15.25l-1.045-2.606h-4.41L8.75 16.695H6.813L12 5.047l5.187 11.648z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-apple { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.665 16.811a10.316 10.316 0 0 1-1.021 1.837c-.537.767-.978 1.297-1.316 1.592c-.525.482-1.089.73-1.692.744c-.432 0-.954-.123-1.562-.373c-.61-.249-1.17-.371-1.683-.371c-.537 0-1.113.122-1.73.371c-.616.25-1.114.381-1.495.393c-.577.025-1.154-.229-1.729-.764c-.367-.32-.826-.87-1.377-1.648c-.59-.829-1.075-1.794-1.455-2.891c-.407-1.187-.611-2.335-.611-3.447c0-1.273.275-2.372.826-3.292a4.857 4.857 0 0 1 1.73-1.751a4.65 4.65 0 0 1 2.34-.662c.46 0 1.063.142 1.81.422s1.227.422 1.436.422c.158 0 .689-.167 1.593-.498c.853-.307 1.573-.434 2.163-.384c1.6.129 2.801.759 3.6 1.895c-1.43.867-2.137 2.08-2.123 3.637c.012 1.213.453 2.222 1.317 3.023a4.33 4.33 0 0 0 1.315.863c-.106.307-.218.6-.336.882zM15.998 2.38c0 .95-.348 1.838-1.039 2.659c-.836.976-1.846 1.541-2.941 1.452a2.955 2.955 0 0 1-.021-.36c0-.913.396-1.889 1.103-2.688c.352-.404.8-.741 1.343-1.009c.542-.264 1.054-.41 1.536-.435c.013.128.019.255.019.381z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-audible { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.005 10.238v1.69l10.002 6.254l9.988-6.254v-1.69l-9.988 6.229z' fill='black'/%3E%3Cpath d='M15.938 12.469l1.465-.938c-1.161-1.701-3.153-2.876-5.396-2.876c-2.257 0-4.236 1.135-5.371 2.89c.093-.093.146-.146.238-.211c2.811-2.336 6.86-1.808 9.064 1.135z' fill='black'/%3E%3Cpath d='M9.051 13.063a2.99 2.99 0 0 1 1.78-.58c1.083 0 2.047.554 2.692 1.49l1.399-.871c-.607-.963-1.688-1.557-2.916-1.557c-1.226 0-2.309.62-2.955 1.518zM5.25 9.012c4.117-3.246 9.937-2.362 13.037 1.953l.026.026l1.517-.938a9.337 9.337 0 0 0-7.823-4.235a9.35 9.35 0 0 0-7.825 4.235c.304-.342.686-.751 1.068-1.041z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-aws { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.75 11.35a4.32 4.32 0 0 1-.79-.08a3.9 3.9 0 0 1-.73-.23l-.17-.04h-.12q-.15 0-.15.21v.33a.43.43 0 0 0 0 .19a.5.5 0 0 0 .21.19a3 3 0 0 0 .76.26a4.38 4.38 0 0 0 1 .12a3 3 0 0 0 1-.14a1.94 1.94 0 0 0 .73-.37a1.81 1.81 0 0 0 .49-.58a1.79 1.79 0 0 0 .17-.78a1.54 1.54 0 0 0-.3-.93a2.15 2.15 0 0 0-1-.64l-.95-.3a2 2 0 0 1-.73-.36a.65.65 0 0 1-.2-.47a.66.66 0 0 1 .31-.6a1.82 1.82 0 0 1 .89-.18a2.89 2.89 0 0 1 1.27.26a.79.79 0 0 0 .26.08c.1 0 .15-.08.15-.22v-.36a.38.38 0 0 0-.06-.22a.56.56 0 0 0-.2-.16a1.55 1.55 0 0 0-.28-.12a3.44 3.44 0 0 0-.38-.11l-.44-.1A3.4 3.4 0 0 0 19 6a2.82 2.82 0 0 0-.83.11a2.19 2.19 0 0 0-.7.35A1.61 1.61 0 0 0 17 7a1.5 1.5 0 0 0-.18.74a1.6 1.6 0 0 0 .33 1a2.08 2.08 0 0 0 1.06.68l1 .3a1.58 1.58 0 0 1 .67.34a.66.66 0 0 1 .18.47a.72.72 0 0 1-.35.63a1.83 1.83 0 0 1-.96.19zM12.94 6.5a.48.48 0 0 0-.13-.26a.37.37 0 0 0-.26-.07H12a.43.43 0 0 0-.26.07a.42.42 0 0 0-.13.26l-1 4.4l-1.14-4.4a.48.48 0 0 0-.14-.26s-.13-.07-.26-.07h-.65c-.11 0-.16.06-.16.17a1.22 1.22 0 0 0 .06.27l1.56 5.14A.61.61 0 0 0 10 12a.45.45 0 0 0 .26.06h.57a.49.49 0 0 0 .27-.06a.57.57 0 0 0 .12-.27l1-4.28l1 4.29a.42.42 0 0 0 .12.26a.4.4 0 0 0 .27.07h.57a.41.41 0 0 0 .25-.07a.44.44 0 0 0 .14-.26l1.61-5.14a.73.73 0 0 0 0-.16a.52.52 0 0 0 0-.11a.15.15 0 0 0-.17-.17h-.62a.45.45 0 0 0-.26.07a.68.68 0 0 0-.13.26L14 11zM5.77 8.63a5.92 5.92 0 0 0-.71-.05a2.42 2.42 0 0 0-1.63.52a1.72 1.72 0 0 0-.6 1.37a1.7 1.7 0 0 0 .49 1.28a1.82 1.82 0 0 0 1.33.48a2.48 2.48 0 0 0 2-.92a3.5 3.5 0 0 0 .2.39a2.34 2.34 0 0 0 .24.31a.26.26 0 0 0 .37 0l.42-.28a.28.28 0 0 0 .13-.2a.27.27 0 0 0 0-.16a3.63 3.63 0 0 1-.21-.47a2 2 0 0 1-.07-.6V8.19a2.2 2.2 0 0 0-.55-1.64A2.42 2.42 0 0 0 5.33 6a3.9 3.9 0 0 0-1 .13a3.9 3.9 0 0 0-.84.3a.47.47 0 0 0-.18.14a.37.37 0 0 0 0 .23v.33c0 .14 0 .2.14.2a.26.26 0 0 0 .11 0l.23-.08A4.32 4.32 0 0 1 4.42 7a3 3 0 0 1 .72-.09a1.5 1.5 0 0 1 1.08.31a1.46 1.46 0 0 1 .31 1.06v.49zm.78.9v.27a2.36 2.36 0 0 1-.07.58a1.06 1.06 0 0 1-.23.43a1.38 1.38 0 0 1-.63.42a2.12 2.12 0 0 1-.68.12a.94.94 0 0 1-.7-.24a.92.92 0 0 1-.24-.71a.92.92 0 0 1 .33-.76a1.52 1.52 0 0 1 1-.27h.62a5.67 5.67 0 0 1 .6.16zM19.76 15a19.68 19.68 0 0 1-7.55 1.54a20 20 0 0 1-9.9-2.62c-.24-.15-.43.1-.22.29A14.68 14.68 0 0 0 12 18a14.4 14.4 0 0 0 8.1-2.47c.34-.31.03-.72-.34-.53z' fill='black'/%3E%3Cpath d='M18.38 14.06c-.19.14-.16.33.05.3c.71-.09 2.28-.27 2.56.09s-.31 1.83-.58 2.49c-.08.2.1.28.28.13a3.9 3.9 0 0 0 1.23-3.34a3.94 3.94 0 0 0-3.54.33z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-baidu { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.217 12.486c1.964-.422 1.693-2.772 1.637-3.287c-.096-.788-1.028-2.172-2.291-2.061c-1.588.141-1.821 2.44-1.821 2.44c-.216 1.06.515 3.33 2.475 2.908m3.646-3.944c1.084 0 1.959-1.251 1.959-2.792c0-1.537-.871-2.785-1.955-2.785c-1.086 0-1.966 1.242-1.966 2.785s.88 2.792 1.965 2.792m4.671.186c1.454.195 2.38-1.355 2.568-2.53c.188-1.166-.754-2.528-1.776-2.763c-1.031-.237-2.303 1.411-2.431 2.484c-.136 1.318.188 2.627 1.634 2.813m5.751 1.973c0-.562-.46-2.253-2.19-2.253c-1.729 0-1.965 1.596-1.965 2.726c0 1.077.089 2.573 2.247 2.528c2.148-.052 1.913-2.438 1.913-3.002M18.1 15.626s-2.247-1.739-3.557-3.613c-1.776-2.768-4.304-1.64-5.144-.239c-.845 1.418-2.153 2.306-2.339 2.544c-.188.232-2.709 1.596-2.147 4.079c.563 2.483 2.528 2.439 2.528 2.439s1.446.142 3.133-.234c1.686-.375 3.13.091 3.13.091s3.92 1.317 5.005-1.212c1.072-2.537-.61-3.847-.61-3.847' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-behance { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.803 5.731c.589 0 1.119.051 1.605.155c.483.103.895.273 1.243.508c.343.235.611.547.804.939c.187.387.28.871.28 1.443c0 .62-.14 1.138-.421 1.551c-.283.414-.7.753-1.256 1.015c.757.219 1.318.602 1.69 1.146c.374.549.557 1.206.557 1.976c0 .625-.119 1.162-.358 1.613a3.11 3.11 0 0 1-.974 1.114a4.315 4.315 0 0 1-1.399.64a6.287 6.287 0 0 1-1.609.206H2V5.731h5.803zm-.351 4.972c.48 0 .878-.114 1.192-.345c.312-.228.463-.604.463-1.119c0-.286-.051-.522-.151-.707a1.114 1.114 0 0 0-.417-.428a1.683 1.683 0 0 0-.597-.215a3.609 3.609 0 0 0-.697-.061H4.71v2.875h2.742zm.151 5.239c.267 0 .521-.023.76-.077c.241-.052.455-.136.637-.261c.182-.12.332-.283.44-.491c.109-.206.162-.475.162-.798c0-.634-.179-1.085-.533-1.358c-.355-.27-.831-.404-1.414-.404H4.71v3.39h2.893zm8.565-.041c.367.358.896.538 1.584.538c.493 0 .919-.125 1.278-.373c.354-.249.57-.515.653-.79h2.155c-.346 1.072-.871 1.838-1.589 2.299c-.709.463-1.572.693-2.58.693c-.702 0-1.334-.113-1.9-.337a4.033 4.033 0 0 1-1.439-.958a4.37 4.37 0 0 1-.905-1.485a5.433 5.433 0 0 1-.32-1.899c0-.666.111-1.289.329-1.864a4.376 4.376 0 0 1 .934-1.493c.405-.42.885-.751 1.444-.994a4.634 4.634 0 0 1 1.858-.362c.754 0 1.413.146 1.979.44a3.967 3.967 0 0 1 1.39 1.182c.363.493.622 1.058.783 1.691c.161.632.217 1.292.171 1.983h-6.431c.001.704.238 1.371.606 1.729zm2.812-4.681c-.291-.322-.783-.496-1.385-.496c-.391 0-.714.065-.974.199a1.97 1.97 0 0 0-.62.491a1.772 1.772 0 0 0-.328.628a2.82 2.82 0 0 0-.111.587h3.982c-.058-.624-.272-1.085-.564-1.409zm-3.918-4.663h4.989v1.215h-4.989z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-bing { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5.71 3l3.593 1.264v12.645l5.061-2.919l-2.48-1.165l-1.566-3.897l7.974 2.802v4.073l-8.984 5.183l-3.595-2L5.71 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-bitcoin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.953 8.819l-.547 2.19c.619.154 2.529.784 2.838-.456c.322-1.291-1.673-1.579-2.291-1.734zm-.822 3.296l-.603 2.415c.743.185 3.037.921 3.376-.441c.355-1.422-2.029-1.789-2.773-1.974z' fill='black'/%3E%3Cpath d='M14.421 2.299C9.064.964 3.641 4.224 2.306 9.581C.97 14.936 4.23 20.361 9.583 21.697c5.357 1.335 10.783-1.924 12.117-7.281c1.336-5.356-1.924-10.781-7.279-12.117zm1.991 8.275c-.145.974-.686 1.445-1.402 1.611c.985.512 1.485 1.298 1.009 2.661c-.592 1.691-1.998 1.834-3.87 1.48l-.454 1.82l-1.096-.273l.447-1.794a44.624 44.624 0 0 1-.875-.228l-.449 1.804l-1.095-.275l.454-1.823c-.257-.066-.517-.136-.782-.202L6.87 15l.546-1.256s.808.215.797.199c.311.077.448-.125.502-.261l.719-2.875l.115.029a.864.864 0 0 0-.114-.037l.512-2.053c.013-.234-.066-.528-.511-.639c.018-.011-.797-.198-.797-.198l.291-1.172l1.514.378l-.001.005c.227.057.461.111.7.165l.449-1.802l1.097.273l-.44 1.766c.294.067.591.135.879.207l.438-1.755l1.097.273l-.449 1.802c1.384.479 2.396 1.195 2.198 2.525z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-blender { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.427 13.011c.037-.667.363-1.254.856-1.671a2.855 2.855 0 0 1 1.844-.66c.71 0 1.36.25 1.845.66c.492.417.819 1.005.856 1.671c.038.686-.237 1.323-.721 1.795a2.829 2.829 0 0 1-1.979.782a2.83 2.83 0 0 1-1.981-.782c-.483-.472-.759-1.109-.72-1.795z' fill='black'/%3E%3Cpath d='M8.124 14.361c.005.26.089.767.213 1.164a6.156 6.156 0 0 0 1.328 2.299a6.833 6.833 0 0 0 2.323 1.667a7.465 7.465 0 0 0 3.05.635a7.495 7.495 0 0 0 3.051-.645a6.913 6.913 0 0 0 2.321-1.675a6.196 6.196 0 0 0 1.326-2.303a5.76 5.76 0 0 0 .25-1.285a5.942 5.942 0 0 0-.888-3.594a6.496 6.496 0 0 0-1.545-1.703l.001-.001l-6.249-4.799l-.016-.014c-.411-.314-1.101-.313-1.551.002c-.457.319-.508.846-.104 1.18l-.001.001l2.606 2.121l-7.943.009h-.012c-.656 0-1.287.432-1.412.976c-.128.555.318 1.015 1.001 1.017l-.001.003l4.027-.008l-7.188 5.516l-.027.021c-.677.519-.896 1.382-.47 1.929c.434.556 1.354.556 2.04.002l3.922-3.209c.001 0-.056.433-.052.694zm10.078 1.45c-.808.824-1.938 1.291-3.163 1.293c-1.226.002-2.356-.461-3.165-1.283a3.739 3.739 0 0 1-.864-1.352a3.503 3.503 0 0 1-.199-1.511c.044-.505.193-.987.434-1.422c.236-.429.562-.815.962-1.144a4.477 4.477 0 0 1 2.832-.988a4.478 4.478 0 0 1 2.832.98c.399.326.725.711.961 1.139c.24.436.39.916.434 1.421a3.52 3.52 0 0 1-.198 1.511a3.804 3.804 0 0 1-.866 1.356z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-blogger { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.954 10.667c-.072-.322-.272-.621-.502-.745c-.07-.039-.522-.088-1.004-.109c-.809-.036-.898-.052-1.152-.201c-.405-.237-.516-.493-.518-1.187c-.002-1.327-.554-2.559-1.646-3.67c-.776-.793-1.645-1.329-2.634-1.629c-.236-.072-.768-.097-2.545-.118c-2.787-.033-3.405.024-4.356.402c-1.748.697-3.008 2.166-3.465 4.05c-.087.353-.103.92-.124 4.177c-.025 4.08.004 4.68.258 5.488c.212.668.425 1.077.861 1.657c.835 1.108 2.083 1.907 3.334 2.133c.595.107 7.931.135 8.683.032c1.306-.178 2.331-.702 3.293-1.684c.694-.71 1.129-1.479 1.414-2.499c.117-.424.127-.63.149-3.117c.017-1.878.002-2.758-.046-2.98zM8.007 8.108c.313-.316.399-.329 2.364-.329c1.764 0 1.822.004 2.081.134c.375.189.538.456.538.88c0 .384-.153.653-.493.869c-.184.115-.293.123-2.021.133c-1.067.007-1.916-.013-2.043-.048c-.669-.184-.918-1.143-.426-1.639zm7.706 8.037l-.597.098l-3.114.035c-2.736.033-3.511-.018-3.652-.08c-.288-.124-.554-.472-.602-.78c-.042-.292.104-.696.33-.9c.285-.257.409-.266 3.911-.27c3.602-.002 3.583-.003 3.925.315c.482.45.381 1.251-.201 1.582z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-bootstrap { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.002 2.997H5.999A3.011 3.011 0 0 0 2.997 6v12.002a3.012 3.012 0 0 0 3.002 3.001h12.003a3.012 3.012 0 0 0 3.001-3.001V6a3.012 3.012 0 0 0-3.001-3.003zm-1.64 12.647c-.152.36-.389.68-.693.927a3.594 3.594 0 0 1-1.206.614c-.49.151-1.074.229-1.75.229H7.888V6.909h5.103c.943 0 1.7.213 2.267.646c.569.436.854 1.082.854 1.958c0 .528-.13.983-.389 1.357c-.259.373-.63.664-1.111.868v.034c.642.135 1.137.438 1.464.912c.327.473.493 1.069.493 1.789c0 .405-.078.788-.225 1.147l.02.021v.003zm-2.084-2.589c-.309-.282-.739-.419-1.297-.419H9.737v3.276h3.253c.554 0 .991-.144 1.298-.435c.308-.289.464-.701.464-1.229c-.005-.518-.156-.919-.464-1.193h-.014h.004zm-.451-2.119c.299-.251.444-.613.444-1.084c0-.526-.131-.902-.397-1.116c-.264-.214-.646-.326-1.146-.326H9.727v2.898h3.001c.436.001.81-.127 1.099-.372z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-c-plus-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.66 7a1.51 1.51 0 0 0-.55-.57l-7.34-4.24a1.67 1.67 0 0 0-1.54 0L3.89 6.43a1.68 1.68 0 0 0-.77 1.33v8.48a1.57 1.57 0 0 0 .22.76a1.51 1.51 0 0 0 .55.57l7.34 4.24a1.67 1.67 0 0 0 1.54 0l7.34-4.24a1.51 1.51 0 0 0 .55-.57a1.57 1.57 0 0 0 .22-.76V7.76a1.57 1.57 0 0 0-.22-.76zM12 17.92A5.92 5.92 0 1 1 17.13 9L16 9.71l-.36.2l-1 .61A3 3 0 0 0 9 12a2.88 2.88 0 0 0 .4 1.48a3 3 0 0 0 5.13 0l2.6 1.52A5.94 5.94 0 0 1 12 17.92zm5.92-5.59h-.66V13h-.65v-.66H16v-.66h.66V11h.65v.66h.66zm2.47 0h-.66V13h-.66v-.66h-.65v-.66h.65V11h.66v.66h.66z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-chrome { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10.742 2.04c-1.404.183-3.06.808-4.281 1.626c-1.01.664-2.397 2.02-2.309 2.251c.193.501 3.28 5.658 3.33 5.562c.038-.067.095-.279.123-.49c.25-1.385 1.425-2.704 2.897-3.253c.568-.221.683-.221 5.495-.27l4.917-.047l-.395-.646c-1.385-2.26-3.522-3.819-6.197-4.512c-.731-.193-2.81-.318-3.58-.22z' fill='black'/%3E%3Cpath d='M3.2 7.217c-.453.799-.983 2.415-1.107 3.358c-.588 4.273 1.568 8.4 5.379 10.315c.894.452 2.174.885 2.732.933l.356.029l1.674-2.838c.915-1.559 1.655-2.849 1.636-2.868c-.02-.019-.231.039-.481.125c-1.569.53-3.387.086-4.57-1.116c-.424-.424-1.002-1.357-2.84-4.542C4.71 8.41 3.642 6.601 3.603 6.601c-.028 0-.211.279-.403.616z' fill='black'/%3E%3Cpath d='M15.15 8.804c1.222 1.242 1.655 3.003 1.116 4.59c-.086.26-1.212 2.271-2.501 4.485c-1.29 2.203-2.349 4.031-2.349 4.06c0 .115 1.328.057 2.175-.087c4.32-.74 7.573-4.002 8.265-8.276c.26-1.558.164-2.925-.307-4.503l-.25-.837h-6.707l.557.568z' fill='black'/%3E%3Cpath d='M10.608 8.563C9.598 8.987 8.905 9.7 8.53 10.71c-.173.453-.202.713-.173 1.424c.03.75.068.963.347 1.511c.366.75.962 1.329 1.751 1.703c.462.221.654.25 1.54.25c.895 0 1.077-.029 1.559-.26c.712-.326 1.462-1.077 1.79-1.79c.23-.48.259-.663.259-1.558c0-.886-.029-1.078-.25-1.54c-.375-.788-.952-1.386-1.703-1.75c-.568-.28-.742-.318-1.56-.348c-.788-.019-.99.01-1.48.212z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-codepen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.838 8.445c0-.001-.001-.001 0 0l-.003-.004l-.001-.001v-.001a.809.809 0 0 0-.235-.228l-9.164-6.08a.834.834 0 0 0-.898 0L2.371 8.214A.786.786 0 0 0 2 8.897v6.16a.789.789 0 0 0 .131.448v.001l.002.002l.01.015v.002h.001l.001.001l.001.001c.063.088.14.16.226.215l9.165 6.082a.787.787 0 0 0 .448.139a.784.784 0 0 0 .45-.139l9.165-6.082a.794.794 0 0 0 .371-.685v-6.16a.793.793 0 0 0-.133-.452zm-9.057-4.172l6.953 4.613l-3.183 2.112l-3.771-2.536V4.273zm-1.592 0v4.189l-3.771 2.536l-3.181-2.111l6.952-4.614zm-7.595 6.098l2.395 1.59l-2.395 1.611v-3.201zm7.595 9.311l-6.96-4.617l3.195-2.15l3.765 2.498v4.269zm.795-5.653l-3.128-2.078l3.128-2.105l3.131 2.105l-3.131 2.078zm.797 5.653v-4.27l3.766-2.498l3.193 2.15l-6.959 4.618zm7.597-6.11l-2.396-1.611l2.396-1.59v3.201z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-creative-commons { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.354 6.479a10.021 10.021 0 0 0-7.421-4.429c-3.108-.294-6.031.771-8.123 2.963C3.533 6.35 2.699 7.839 2.21 9.66c-.217.805-.247 1.104-.244 2.396c.002 1.293.034 1.599.255 2.432a10.232 10.232 0 0 0 7.451 7.332c.315.078.702.16.859.182c.696.097 2.381.056 3.131-.075c3.088-.538 5.832-2.531 7.24-5.258c1.644-3.181 1.426-7.222-.548-10.19zm-.41 7.688c-.808 2.99-3.263 5.272-6.361 5.912c-4.831.997-9.538-2.658-9.839-7.641c-.194-3.217 1.755-6.446 4.745-7.863c1.133-.536 2.045-.733 3.425-.738c1.327-.004 2.064.132 3.223.596c2.324.931 4.146 3.04 4.816 5.573c.281 1.06.276 3.103-.009 4.161z' fill='black'/%3E%3Cpath d='M8.042 14.955c-.915-.324-1.616-1.275-1.74-2.36c-.183-1.607.422-2.856 1.654-3.415c.669-.303 1.882-.296 2.603.016c.438.19 1.261.933 1.261 1.139c0 .033-.284.201-.631.372l-.632.312l-.337-.337c-.187-.188-.475-.363-.649-.396c-.433-.082-.952.111-1.187.44c-.389.546-.415 1.972-.048 2.533c.191.291.512.494.813.518c.635.05.796-.006 1.172-.401l.379-.398l.488.269c.269.148.527.305.575.347c.164.148-.592.92-1.199 1.224c-.517.259-.679.293-1.358.286c-.425-.006-.949-.074-1.164-.149zm5.816 0c-.901-.32-1.591-1.241-1.739-2.325c-.215-1.569.419-2.888 1.654-3.45c.717-.324 1.934-.3 2.661.056c.45.221 1.201.911 1.201 1.104c0 .034-.295.203-.654.377l-.654.317l-.341-.37c-.304-.332-.385-.369-.802-.369c-.576 0-.945.225-1.145.698c-.18.423-.201 1.461-.043 1.934c.324.961 1.505 1.188 2.175.419l.304-.346l.58.294c.32.161.582.319.582.352c0 .219-.75.918-1.256 1.17c-.517.259-.679.293-1.358.287c-.425-.005-.949-.073-1.165-.148z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-css3 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.192 3.143h15.615l-1.42 16.034l-6.404 1.812l-6.369-1.813L4.192 3.143zM16.9 6.424l-9.8-.002l.158 1.949l7.529.002l-.189 2.02H9.66l.179 1.913h4.597l-.272 2.62l-2.164.598l-2.197-.603l-.141-1.569h-1.94l.216 2.867L12 17.484l3.995-1.137l.905-9.923z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-dailymotion { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.551 11.485a2.327 2.327 0 0 0-2.328 2.332c0 1.314 1.013 2.313 2.441 2.313l-.012.002c1.192 0 2.193-.983 2.193-2.28c.001-1.349-1.001-2.367-2.294-2.367z' fill='black'/%3E%3Cpath d='M3 3v18h18V3H3zm15.52 15.605h-2.682v-1.058c-.825.81-1.667 1.103-2.786 1.103c-1.142 0-2.124-.371-2.947-1.114c-1.086-.956-1.648-2.227-1.648-3.701c0-1.351.524-2.561 1.507-3.506c.878-.859 1.946-1.298 3.139-1.298c1.14 0 2.018.385 2.647 1.192V6.118l2.77-.574v-.002l.002.003h-.002v13.06z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-dev-to { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.826 10.083a.784.784 0 0 0-.468-.175h-.701v4.198h.701a.786.786 0 0 0 .469-.175c.155-.117.233-.292.233-.525v-2.798c.001-.233-.079-.408-.234-.525zM19.236 3H4.764C3.791 3 3.002 3.787 3 4.76v14.48c.002.973.791 1.76 1.764 1.76h14.473c.973 0 1.762-.787 1.764-1.76V4.76A1.765 1.765 0 0 0 19.236 3zM9.195 13.414c0 .755-.466 1.901-1.942 1.898H5.389V8.665h1.903c1.424 0 1.902 1.144 1.903 1.899v2.85zm4.045-3.562H11.1v1.544h1.309v1.188H11.1v1.543h2.142v1.188h-2.498a.813.813 0 0 1-.833-.792V9.497a.813.813 0 0 1 .792-.832h2.539l-.002 1.187zm4.165 4.632c-.531 1.235-1.481.99-1.906 0l-1.548-5.818h1.309l1.193 4.569l1.188-4.569h1.31l-1.546 5.818z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-deviantart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.57 3h-3.271l-.326.33l-1.544 2.942l-.486.327H6.432v4.495h3.03l.27.327l-3.3 6.305v3.273h3.272l.327-.33l1.543-2.943l.486-.326h5.511v-4.495h-3.03l-.269-.329l3.299-6.303L17.57 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-digg { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.803 8.8v6.801h3.2v.799h-3.2v1.602h5.2V8.8h-5.2zm-6 0v6.801h3.199v.799h-3.199v1.602h5.199V8.8h-5.199zM5.2 5.999V8.8H2v6.801h5.201V5.999H5.2zM10.001 8.8h-2v6.801h2V8.8zM20.003 14h-1.2v-3.601h1.2V14zM5.2 14H4v-3.601h1.2V14zm8.802 0h-1.2v-3.601h1.2V14zm-4.001-8.001h-2v2h2v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-digitalocean { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.005 21.992v-3.877c4.104 0 7.288-4.068 5.714-8.388a5.81 5.81 0 0 0-3.457-3.446c-4.319-1.563-8.389 1.61-8.389 5.714H2.008c0-6.541 6.325-11.642 13.184-9.499c2.991.94 5.383 3.321 6.313 6.313c2.141 6.858-2.96 13.183-9.5 13.183z' fill='black'/%3E%3Cpath d='M12.017 18.139H8.152v-3.866h3.865zm-3.865 2.959H5.193v-2.959h2.959zm-2.959-2.959H2.711v-2.483h2.482v2.483z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-discord { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9.593 10.971c-.542 0-.969.475-.969 1.055c0 .578.437 1.055.969 1.055c.541 0 .968-.477.968-1.055c.011-.581-.427-1.055-.968-1.055zm3.468 0c-.542 0-.969.475-.969 1.055c0 .578.437 1.055.969 1.055c.541 0 .968-.477.968-1.055c-.001-.581-.427-1.055-.968-1.055z' fill='black'/%3E%3Cpath d='M17.678 3H4.947A1.952 1.952 0 0 0 3 4.957v12.844c0 1.083.874 1.957 1.947 1.957H15.72l-.505-1.759l1.217 1.131l1.149 1.064L19.625 22V4.957A1.952 1.952 0 0 0 17.678 3zM14.01 15.407s-.342-.408-.626-.771c1.244-.352 1.719-1.13 1.719-1.13c-.39.256-.76.438-1.093.562a6.679 6.679 0 0 1-3.838.398a7.944 7.944 0 0 1-1.396-.41a5.402 5.402 0 0 1-.693-.321c-.029-.021-.057-.029-.085-.048a.117.117 0 0 1-.039-.03c-.171-.094-.266-.16-.266-.16s.456.76 1.663 1.121c-.285.36-.637.789-.637.789c-2.099-.067-2.896-1.444-2.896-1.444c0-3.059 1.368-5.538 1.368-5.538c1.368-1.027 2.669-.998 2.669-.998l.095.114c-1.71.495-2.499 1.245-2.499 1.245s.21-.114.561-.275c1.016-.446 1.823-.57 2.156-.599c.057-.009.105-.019.162-.019a7.756 7.756 0 0 1 4.778.893s-.751-.712-2.366-1.206l.133-.152s1.302-.029 2.669.998c0 0 1.368 2.479 1.368 5.538c0-.001-.807 1.376-2.907 1.443z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-discord-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14.82 4.26a10.14 10.14 0 0 0-.53 1.1a14.66 14.66 0 0 0-4.58 0a10.14 10.14 0 0 0-.53-1.1a16 16 0 0 0-4.13 1.3a17.33 17.33 0 0 0-3 11.59a16.6 16.6 0 0 0 5.07 2.59A12.89 12.89 0 0 0 8.23 18a9.65 9.65 0 0 1-1.71-.83a3.39 3.39 0 0 0 .42-.33a11.66 11.66 0 0 0 10.12 0q.21.18.42.33a10.84 10.84 0 0 1-1.71.84a12.41 12.41 0 0 0 1.08 1.78a16.44 16.44 0 0 0 5.06-2.59a17.22 17.22 0 0 0-3-11.59a16.09 16.09 0 0 0-4.09-1.35zM8.68 14.81a1.94 1.94 0 0 1-1.8-2a1.93 1.93 0 0 1 1.8-2a1.93 1.93 0 0 1 1.8 2a1.93 1.93 0 0 1-1.8 2zm6.64 0a1.94 1.94 0 0 1-1.8-2a1.93 1.93 0 0 1 1.8-2a1.92 1.92 0 0 1 1.8 2a1.92 1.92 0 0 1-1.8 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-discourse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.077 3C7.149 3 3 6.96 3 11.843V21l9.075-.01c4.928 0 8.925-4.11 8.925-8.993C21 7.113 17 3 12.077 3zm3.92 12.859a5.568 5.568 0 0 1-6.102 1.043l-3.595.805l1.001-3.192a5.435 5.435 0 0 1 .11-5.415a5.55 5.55 0 0 1 4.753-2.678v.001h.006a5.533 5.533 0 0 1 5.131 3.438a5.442 5.442 0 0 1-1.304 5.998z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-django { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.533 12.249c-.011 1.985 1.445 3.168 3.768 2.63V9.618c-2.352-.716-3.758.733-3.768 2.631m3.839-10.238h3.199v15.143c-3.066.501-6.004.819-8.104-.355c-2.705-1.513-2.923-6.319-.782-8.46c1.085-1.085 3.271-1.85 5.616-1.351V2.225c-.006-.101-.012-.202.071-.214m8.389 3.342h-3.199V2.011h3.199v3.342z' fill='black'/%3E%3Cpath d='M19.761 7.044c-.003 2.356-.003 4.048-.003 6.911c-.136 2.813-.104 5.052-1.135 6.398c-.203.266-.634.652-.995.924c-.303.228-.881.691-1.208.711c-.331.021-1.18-.459-1.564-.64c-.505-.237-.971-.553-1.493-.71c1.218-.754 2.372-1.32 2.844-2.844c.41-1.326.355-3.247.355-5.119c0-1.849.009-3.998.009-5.63l3.19-.001z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-docker { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.17 9.82a4.76 4.76 0 0 0-.84.07a3.12 3.12 0 0 0-1.43-2.14l-.28-.16l-.19.27a3.7 3.7 0 0 0-.51 1.19a2.84 2.84 0 0 0 .33 2.22a4.11 4.11 0 0 1-1.45.35H2.63a.63.63 0 0 0-.63.62a9.6 9.6 0 0 0 .58 3.39a5 5 0 0 0 2 2.6a8.86 8.86 0 0 0 4.42.95a13.27 13.27 0 0 0 2.42-.18a10.09 10.09 0 0 0 3.19-1.15A8.9 8.9 0 0 0 16.78 16a11.94 11.94 0 0 0 2.13-3.67h.19a3.08 3.08 0 0 0 2.23-.84a2.36 2.36 0 0 0 .59-.87l.08-.22l-.2-.16a2.69 2.69 0 0 0-1.63-.42z' fill='black'/%3E%3Cpath d='M5.61 9.35H3.85a.16.16 0 0 0-.16.15v1.58a.16.16 0 0 0 .16.15h1.76a.16.16 0 0 0 .16-.15V9.5a.16.16 0 0 0-.16-.15zm2.44 0H6.28a.16.16 0 0 0-.16.15v1.58a.16.16 0 0 0 .16.15h1.77a.15.15 0 0 0 .15-.15V9.5a.15.15 0 0 0-.15-.15zm2.47 0H8.75a.15.15 0 0 0-.15.15v1.58a.15.15 0 0 0 .15.15h1.77a.15.15 0 0 0 .15-.15V9.5a.15.15 0 0 0-.15-.15zm.67 0a.15.15 0 0 0-.19.15v1.58a.15.15 0 0 0 .15.15H13a.15.15 0 0 0 .15-.15V9.5a.15.15 0 0 0-.15-.15zM6.28 7.09H8a.16.16 0 0 1 .16.16v1.56A.16.16 0 0 1 8 9H6.28a.15.15 0 0 1-.15-.15V7.24a.15.15 0 0 1 .15-.15zm2.47 0h1.77a.15.15 0 0 1 .15.15v1.57a.16.16 0 0 1-.16.16H8.75a.15.15 0 0 1-.15-.15V7.24a.15.15 0 0 1 .15-.15zm2.44 0H13a.15.15 0 0 1 .15.15v1.57A.15.15 0 0 1 13 9h-1.81a.16.16 0 0 1-.19-.19V7.24a.15.15 0 0 1 .19-.15z' fill='black'/%3E%3Crect x='11.04' y='4.82' width='2.07' height='1.88' rx='.15' fill='black'/%3E%3Cpath d='M13.65 9.35a.15.15 0 0 0-.15.15v1.58a.15.15 0 0 0 .15.15h1.77a.15.15 0 0 0 .15-.15V9.5a.15.15 0 0 0-.15-.15z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-dribbble { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.66 6.98a9.932 9.932 0 0 0-3.641-3.64C15.486 2.447 13.813 2 12 2s-3.486.447-5.02 1.34c-1.533.893-2.747 2.107-3.64 3.64S2 10.187 2 12s.446 3.487 1.34 5.02a9.924 9.924 0 0 0 3.641 3.64C8.514 21.553 10.187 22 12 22s3.486-.447 5.02-1.34a9.932 9.932 0 0 0 3.641-3.64C21.554 15.487 22 13.813 22 12s-.446-3.487-1.34-5.02zM12 3.66c2 0 3.772.64 5.32 1.919c-.92 1.174-2.286 2.14-4.1 2.9c-1.002-1.813-2.088-3.327-3.261-4.54A7.715 7.715 0 0 1 12 3.66zM5.51 6.8a8.116 8.116 0 0 1 2.711-2.22c1.212 1.201 2.325 2.7 3.34 4.5c-2 .6-4.114.9-6.341.9c-.573 0-1.006-.013-1.3-.04A8.549 8.549 0 0 1 5.51 6.8zM3.66 12c0-.054.003-.12.01-.2c.007-.08.01-.146.01-.2c.254.014.641.02 1.161.02c2.666 0 5.146-.367 7.439-1.1c.187.373.381.793.58 1.26c-1.32.293-2.674 1.006-4.061 2.14S6.4 16.247 5.76 17.5c-1.4-1.587-2.1-3.42-2.1-5.5zM12 20.34c-1.894 0-3.594-.587-5.101-1.759c.601-1.187 1.524-2.322 2.771-3.401c1.246-1.08 2.483-1.753 3.71-2.02a29.441 29.441 0 0 1 1.56 6.62a8.166 8.166 0 0 1-2.94.56zm7.08-3.96a8.351 8.351 0 0 1-2.58 2.621c-.24-2.08-.7-4.107-1.379-6.081c.932-.066 1.765-.1 2.5-.1c.799 0 1.686.034 2.659.1a8.098 8.098 0 0 1-1.2 3.46zm-1.24-5c-1.16 0-2.233.047-3.22.14a27.053 27.053 0 0 0-.68-1.62c2.066-.906 3.532-2.006 4.399-3.3c1.2 1.414 1.854 3.027 1.96 4.84c-.812-.04-1.632-.06-2.459-.06z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-dropbox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.004 3.5L2 6.689l5.004 3.186l5.002-3.186zm10.005 0l-5.003 3.189l5.003 3.186l5.003-3.186zM2 13.062l5.004 3.187l5.002-3.187l-5.002-3.187zm15.009-3.187l-5.003 3.187l5.003 3.187l5.003-3.187zM7.004 17.311l5.002 3.189l5.003-3.189l-5.003-3.186z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-drupal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.474 14.42a3.162 3.162 0 1 0 0 6.324a3.162 3.162 0 0 0 0-6.324zm3.936-.606a5.433 5.433 0 0 1 1.513 3.769a5.441 5.441 0 0 1-2.335 4.47c2.609-.803 4.771-2.767 5.737-5.142c1.338-3.288.09-5.761-1.999-8.005c.066.288.103.592.103.898a4.175 4.175 0 0 1-3.019 4.01zm-3.577-4.003c0 1.34 1.087 2.419 2.42 2.419s2.423-1.087 2.423-2.419a2.418 2.418 0 0 0-2.417-2.417a2.425 2.425 0 0 0-2.426 2.417z' fill='black'/%3E%3Cpath d='M7.303 21.093a5.435 5.435 0 0 1-1.276-3.51a5.441 5.441 0 0 1 4.8-5.408a4.162 4.162 0 0 1 3.99-6.492c-1.361-1.176-2.724-2.369-3.799-3.672c.547 5.714-5.2 3.638-7.332 8.904c-1.422 3.527-.138 7.892 3.617 10.178z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-ebay { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.021 12.111V8.004h1.001v2.525c.493-.586 1.17-.756 1.838-.756c1.118 0 2.361.754 2.361 2.383c0 .195-.014.381-.051.559c.2-.797 1.063-1.09 2.418-1.123c.426-.016.914-.016 1.302-.016v-.111c0-.738-.464-1.039-1.276-1.039c-.602 0-1.04.25-1.09.676H12.46c.113-1.076 1.253-1.352 2.242-1.352c.889 0 1.666.225 2.017.852l-.365-.702h1.177l1.716 3.443l1.716-3.445H22l-3.105 6.098h-1.124l.894-1.703l-1.945-3.656c.108.213.167.465.167.777v2.055c0 .289.009.574.034.838h-.931a5.478 5.478 0 0 1-.038-.639c-.503.613-1.103.803-1.937.803c-1.236 0-1.897-.652-1.897-1.416c0-.125.013-.236.031-.338c-.251 1.041-1.135 1.74-2.31 1.74c-.727 0-1.414-.262-1.837-.775c0 .201-.013.412-.033.611h-.986c.018-.324.034-.713.034-1.037v-.877H2.985c.054.914.683 1.451 1.547 1.451c.599 0 1.131-.25 1.309-.775h1.035c-.2 1.078-1.344 1.439-2.329 1.439c-1.789.018-2.582-.973-2.582-2.301c0-1.463.819-2.428 2.602-2.428c1.409 0 2.445.738 2.454 2.342v.004zm7.627.153c-.915.027-1.479.193-1.479.793c0 .389.301.809 1.09.809c1.052 0 1.615-.574 1.615-1.514v-.109c-.376 0-.826.006-1.239.02h.011l.002.001zm-5.059 1.564c.927 0 1.566-.672 1.566-1.686s-.642-1.686-1.58-1.686c-.928 0-1.578.672-1.578 1.686s.639 1.686 1.565 1.686h.027zM5.958 11.73c-.037-.939-.714-1.291-1.44-1.291c-.788 0-1.414.395-1.516 1.291h2.956z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-edge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.349 13.684H8.874c0 .433.063.825.195 1.178a3.334 3.334 0 0 0 1.381 1.634c.309.196.646.359 1.005.484c.356.13.729.226 1.107.288c.821.13 1.658.123 2.477-.021a9.79 9.79 0 0 0 2.421-.783c.393-.18.79-.376 1.201-.594v3.805a13.453 13.453 0 0 1-2.711.978c-.457.112-.92.196-1.396.246c-.486.054-.975.079-1.464.079a8.185 8.185 0 0 1-1.95-.232a7.679 7.679 0 0 1-1.762-.668a7.29 7.29 0 0 1-1.51-1.062a6.67 6.67 0 0 1-1.941-3.103a6.978 6.978 0 0 1-.267-1.953c0-.737.101-1.439.303-2.11a6.718 6.718 0 0 1 2.264-3.342a7.38 7.38 0 0 1 1.847-1.066a3.891 3.891 0 0 0-.869 1.329a5.682 5.682 0 0 0-.401 1.538h6.391c0-.646-.063-1.207-.196-1.689c-.131-.484-.342-.885-.637-1.201A2.64 2.64 0 0 0 13.23 6.7c-.462-.16-1.021-.241-1.675-.241c-.771 0-1.543.111-2.314.344a9.804 9.804 0 0 0-2.2.955c-.695.412-1.335.897-1.919 1.452a9.167 9.167 0 0 0-1.474 1.819c.084-.742.247-1.474.485-2.18a9.304 9.304 0 0 1 .912-1.938a8.622 8.622 0 0 1 1.303-1.609a7.735 7.735 0 0 1 1.655-1.235a8.45 8.45 0 0 1 1.955-.792a10.042 10.042 0 0 1 2.233-.254c.46 0 .917.041 1.375.124c.457.084.903.196 1.339.342a8.012 8.012 0 0 1 2.315 1.239a7.95 7.95 0 0 1 1.711 1.833c.463.692.813 1.459 1.055 2.292s.365 1.701.365 2.602v2.23h-.002z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-etsy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.139 14.058c-.438 0-.693-.294-.693-1.058v-2.696l1.456.112l.074-.694l-1.496.074v-1.53h-.438c-.216 1.201-.759 1.638-1.488 1.712v.364h.869v3.062c0 .836.588 1.271 1.313 1.271c.585 0 1.202-.255 1.418-.763l-.217-.255c-.108.18-.402.401-.798.401zm-3.494-.803c-.294.69-.767.729-1.24.729h-1.53c-.508 0-.729-.186-.729-.62v-2.258s1.092 0 1.457.039c.291.035.438.109.546.473l.108.511h.438l-.039-1.309l.074-1.278h-.434l-.147.585c-.073.399-.147.438-.546.508c-.508.038-1.457.038-1.457.038V7.979c0-.112 0-.147.185-.147h2.291c.402 0 .62.326.763.98l.147.512h.399c.039-1.457.074-2.074.074-2.074s-.981.105-1.562.105H3.53L2 7.324v.399l.508.107c.367.074.475.147.475.473c0 0 .039.984.039 2.619c0 1.639-.039 2.623-.039 2.623c0 .291-.108.399-.475.473L2 14.131v.396l1.565-.035h2.623c.581 0 1.965.035 1.965.035c.034-.361.216-1.964.255-2.146H8.04l-.395.874zm6.04-2.622c0-.474.437-.655.875-.655c.36 0 .653.147.729.325l.255.729l.361-.035c0-.364.038-.838.111-1.201c-.328-.147-.983-.221-1.421-.221c-.984 0-1.747.441-1.747 1.387c0 1.674 2.44 1.31 2.44 2.549c0 .399-.256.729-.876.729c-.581 0-.837-.294-.945-.585l-.29-.693h-.369c.04.476.074.948 0 1.382c0 0 .767.294 1.531.294c1.022 0 1.858-.507 1.858-1.457c0-1.674-2.512-1.421-2.512-2.548zm6.369-.945v.364l.259.074c.252.07.36.178.36.363c0 .108-.034.144-.073.291c-.108.291-.802 2.003-1.162 2.767a75.566 75.566 0 0 1-1.093-2.949c-.035-.073-.035-.108-.035-.146c0-.148.105-.292.361-.326l.329-.074v-.364l-1.346.073l-1.096-.039v.368l.187.069c.251.074.287.11.469.512c.693 1.53 1.457 3.529 1.716 4.15c-.584 1.019-1.204 1.309-1.677 1.309c-.291 0-.399-.147-.435-.329l-.146-.763l-.4.035c-.073.477-.147.984-.255 1.383c.287.182.616.294 1.053.293c.691 0 1.675-.182 2.623-2.332l1.601-3.747c.145-.293.182-.329.546-.476l.183-.144v-.362l-.945.034l-1.024-.034z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-facebook { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.397 20.997v-8.196h2.765l.411-3.209h-3.176V7.548c0-.926.258-1.56 1.587-1.56h1.684V3.127A22.336 22.336 0 0 0 14.201 3c-2.444 0-4.122 1.492-4.122 4.231v2.355H7.332v3.209h2.753v8.202h3.312z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-facebook-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.001 2.002c-5.522 0-9.999 4.477-9.999 9.999c0 4.99 3.656 9.126 8.437 9.879v-6.988h-2.54v-2.891h2.54V9.798c0-2.508 1.493-3.891 3.776-3.891c1.094 0 2.24.195 2.24.195v2.459h-1.264c-1.24 0-1.628.772-1.628 1.563v1.875h2.771l-.443 2.891h-2.328v6.988C18.344 21.129 22 16.992 22 12.001c0-5.522-4.477-9.999-9.999-9.999z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-facebook-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h8.615v-6.96h-2.338v-2.725h2.338v-2c0-2.325 1.42-3.592 3.5-3.592c.699-.002 1.399.034 2.095.107v2.42h-1.435c-1.128 0-1.348.538-1.348 1.325v1.735h2.697l-.35 2.725h-2.348V21H20a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-figma { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.332 8.668a3.333 3.333 0 0 0 0-6.663H8.668a3.333 3.333 0 0 0 0 6.663a3.333 3.333 0 0 0 0 6.665a3.333 3.333 0 0 0 0 6.664A3.334 3.334 0 0 0 12 18.664V8.668h3.332z' fill='black'/%3E%3Ccircle cx='15.332' cy='12' r='3.332' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-firebase { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5.239 15.063L7.21 2.381a.453.453 0 0 1 .847-.145l2.12 3.979l-4.938 8.848zM19.24 18.14L17.363 6.469a.454.454 0 0 0-.766-.246L4.76 18.14l6.55 3.691c.411.23.912.23 1.323 0l6.607-3.691zM13.917 7.955L12.4 5.052a.452.452 0 0 0-.8 0L4.939 16.989l8.978-9.034z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-firefox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.634 11.138a2.16 2.16 0 0 0-.06-.286l-.187.236a6.354 6.354 0 0 0-.228-1.274a8.66 8.66 0 0 0-.591-1.511a5.33 5.33 0 0 0-.54-.92c-.109-.17-.203-.296-.221-.322c-.362-.589-.767-.947-1.249-1.621a4.942 4.942 0 0 1-.615-1.679a6.091 6.091 0 0 0-.303 1.097c-.483-.489-.913-.846-1.168-1.08c-1.267-1.183-1.113-1.79-1.113-1.79s-2.364 2.635-1.342 5.377a5.278 5.278 0 0 0 1.764 2.347c.989.813 2.052 1.452 2.609 3.101a5.2 5.2 0 0 0-1.967-2.087c.253.602.38 1.232.371 1.884a4.468 4.468 0 0 1-4.476 4.465a4.28 4.28 0 0 1-.985-.109a4.117 4.117 0 0 1-1.107-.379a4.4 4.4 0 0 1-1.334-1.226v-.007a.372.372 0 0 0 .075.024c.187.067.372.118.567.153a3.558 3.558 0 0 0 2.245-.263c.708-.396 1.139-.685 1.484-.574c.348.109.608-.22.373-.565a1.853 1.853 0 0 0-1.79-.692c-.711.101-1.36.599-2.28.117c-.067-.032-.117-.066-.176-.101c-.06-.042.202.051.134.009a4.138 4.138 0 0 1-.582-.347c-.009-.009.145.043.126.033a2.235 2.235 0 0 1-.608-.614a1.118 1.118 0 0 1-.04-.973a.844.844 0 0 1 .38-.354l.192.1s-.059-.1-.085-.151c.01-.008.019 0 .035-.008c.102.042.329.159.455.236a.6.6 0 0 1 .212.186s.043-.017.009-.108a.511.511 0 0 0-.221-.263h.018c.093.051.178.102.261.167c.076-.186.119-.368.112-.563a.825.825 0 0 0-.043-.313c-.035-.067.017-.093.075-.025a.545.545 0 0 0-.051-.152s.034-.051.051-.062c.043-.04.084-.082.136-.107c.293-.185.599-.347.92-.474a6.52 6.52 0 0 0 .515-.228c.067-.042.127-.084.186-.136c.22-.185.364-.438.413-.718c.01-.04.01-.074.01-.107v-.069c-.034-.144-.279-.245-1.553-.372a1.104 1.104 0 0 1-.911-.852v.007a2.035 2.035 0 0 0-.051.146c.016-.053.033-.094.051-.146v-.007a3.257 3.257 0 0 1 1.249-1.553c.031-.025-.126.007-.093-.017c.102-.051.211-.103.329-.145c.059-.018-.245-.134-.515-.11a1.545 1.545 0 0 0-.473.11c.067-.049.252-.118.21-.118a2.837 2.837 0 0 0-.97.363c0-.033.01-.06.018-.083a1.474 1.474 0 0 0-.6.464v-.112a2.706 2.706 0 0 0-.295.28h-.008a3.92 3.92 0 0 0-2.205-.184l-.008-.009h.008a1.684 1.684 0 0 1-.387-.439l-.01.007l-.015-.016c-.053-.068-.093-.152-.147-.246c-.04-.06-.074-.136-.116-.21c0 0 0-.008-.008-.008c-.01 0-.026.077-.033.049a2.668 2.668 0 0 1-.179-1.053H5.28a1.12 1.12 0 0 0-.448.589c-.041.086-.067.128-.092.179v-.028l.024-.125c-.006.009-.006.017-.017.025a1.06 1.06 0 0 0-.15.23a1.117 1.117 0 0 0-.103.243v-.042c0-.034.009-.085 0-.067l-.009.023a5.968 5.968 0 0 0-.506 1.902c-.016.118-.016.228-.016.337v.018a4.422 4.422 0 0 0-.514.683a9.703 9.703 0 0 0-1.082 2.659c.161-.354.354-.701.583-1.021a9.332 9.332 0 0 0-.659 3.454c.076-.346.169-.684.278-1.022a8.737 8.737 0 0 0 .787 4.062a9.397 9.397 0 0 0 3.738 4.229a8.052 8.052 0 0 0 2.169 1.048c.102.033.213.074.313.109c-.034-.018-.059-.035-.092-.042a9.912 9.912 0 0 0 2.818.413c3.387 0 4.501-1.292 4.61-1.418c.16-.151.303-.331.396-.541c.068-.024.127-.05.195-.084l.041-.016c.051-.026.075-.034.075-.034a7.11 7.11 0 0 0 1.437-.896a3.475 3.475 0 0 0 1.326-1.951c.125-.286.125-.6.024-.894c.05-.084.094-.161.101-.178a7.954 7.954 0 0 0 1.199-3.876v-.116a4.918 4.918 0 0 0-.072-.872z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-flask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.78 18.29c0 .12.15 0 0 0z' fill='black'/%3E%3Cpath d='M10.43 15.59c.39.17-.31-.6 0 0z' fill='black'/%3E%3Cpath d='M5.4 15.87c.15.26 0-.12 0 0z' fill='black'/%3E%3Cpath d='M11 16.26c-.27-.42-.2.06 0 .32c.48.47.18-.26 0-.32z' fill='black'/%3E%3Cpath d='M20.24 19.06c-.53.63-1-.07-1.63.13c-1.1 0 .09-.5.06-1c-.58-.45-1.24.61-1.62.9a10.75 10.75 0 0 1-2.67-.83a8 8 0 0 1-2.6-1.94a8.36 8.36 0 0 1-1.87-2.84a21.36 21.36 0 0 1-.84-5.74c.07-1.3 1.44.14 2-.33c-.21-.67-1.29-.88-1.89-1.16c-.58 0-.79-.55-1.4-.59c0-.73-1.13-.33-1.56-.84c.42-1.08-1.37 0-1.23-.91c.58-1.2-1.78-1-.8.06c.95.54-.93.93-.38 1.29a.59.59 0 0 1-.53.86c-.74.07-.67 1.09.06.55c.81-.25.14.11-.25.18a1.3 1.3 0 0 0-.95 1.9a35.32 35.32 0 0 1 1 3.42A16.25 16.25 0 0 0 5.84 17A9.78 9.78 0 0 0 8 19a9.89 9.89 0 0 0 2.43 1.22a18 18 0 0 0 4.73.73a16.53 16.53 0 0 0 2.9-.24c.87.09 1.49-.65 2.26-.26c.48-.42 1.16-.23 1.63-.54c.32-1.22-1.22-.27-1.71-.85zm-1.74-.74c-.22 0 .05-.34 0 0zm-7.63-11c-.1 0-.08-.12-.16-.15c-.8-.37.39-.23.16.19zm6.76 11.39c-.35-.08.28-.25 0 0zm-2.81.11c-.23 0 .18-.14 0 0zm-1.88-1.18c-.13 0 0-.13 0 0zm-.22-.17c-.36 0-.09-.23 0 0zm-.42-.36c-.33.08 0-.34 0 0zm-6-11.66c-.53-.28.11.33-.34.32c-.24 0-.69-.52-.54-.78c.3.16.83.21.92.5zm-.92-.81h-.11c-.03-.27.87-.06.15.04zm-1.02-.79c-.42-.19 0-.93.44-.58c.51.73-.95-.08-.44.58zm.49.69c-.27.11.16-.21 0 0zm.48.92c.6.46-.34 0-.72.29c-.61.06.66-.34.72-.29zm.17.6c.35 0 1.88-.69 1.37-.07c.47.55.1.37-.21 0c.28.19.06 1-.37.45s-.5-.18-.17.21C5.8 6 4.88 6.28 4.21 6.5c-.43-.04 1.13-.37 1.29-.44zM3.58 7.51c-.16.4.24.53.62.6c.62-.17-.41-.28.06-.44c.26 0-.82-.26.08-.38S6.09 6.77 7 6.58a8.71 8.71 0 0 1 2.35-.19c.3.35-.23.94-.77 1a8.61 8.61 0 0 1-2 .39c-.8-.1-1.37.61-2.19.7c.22-.4-.18-.14-.59-.16c.21.82-1.47-.21-.48-.41c-.74-.26-.75.52-.67 1c-.65-.91.07-1.29.93-1.4zm1.88 1.08c-.22-.05.17-.2 0 0zm-.72.88s-.34-.08-.2-.17c1 .13-.9-.33.13-.22c.66-.02.44.36.07.39zm.33.17c-.12.12 0-.24 0 0zm-.71 0c-.44-.09.21-.22 0 0zm-.06 1.43c-.07.1-.1-.08 0 0zM4 10.9c-.55-.19 0-.21 0 0zm-.12 1.28c-.26-.09-.25-.5-.37-.72c-.38-1.03.41.4.33.72zm.23-1.49c-.69-.08-.05-.49 0 0zm0-.34h-.09c-.76-.35.45-.17-.02 0zM4 9.56c-.61-.31.58-.36 0 0zm.21.26c-.34.06.05-.32 0 0zm-1.3.07c-.12.08 0-.23 0 0zM3 9.75c-.16 0 0-.27 0 0zm.08-1c-.4-.1.33-.25 0 0zm.26 2c-.44-.1-.12-.65 0 0zm.3 1.25c.42.51.26.79.69 1.41c-.56-.35-.67-1.2-1-1.75c-.41-.9.23-.01.31.34zm4.09 6.38c-.34-.07-.57-.43-.81-.66a4.88 4.88 0 0 1-1.57-1.94a12.26 12.26 0 0 1-1.46-2.38c-.41-.92.25.07.35.42c.21.68.88 1.07.94 1.52c.74.42.36 1.12 1 1.31c.27-.14.3.84.89.64c-.33.15.13.33.3.61c.35-.05 1.17.82.36.52zM4.62 12c-.31-.07.33-.11 0 0zm.2.47c-.55-.14.52-.2 0 0zm1.39.47c.4-.17.16.78.55.9c.76 1-.53 0-1-.07c.06 0-.38-.12-.19-.16c-.14-.15-.45-.66.26-.32c.6.24.65.06.38-.39zm1.31 1.76c0 .15-.72.13-.06.42c-.38 0-.5 0 0 .3c-.22.17.43.31.21.57c.66.52-.12.13-.4-.08s-.85-.35-.75-.5c.81.42.21 0-.15-.3c.65.16-.51-.48.1-.31c.19.05-.27-.38.33-.07c-.54-.52.47-.12.72-.07zm.48-.17c-.61-.14 0-.34 0 0zm-.17 2c-.61-.26.39 0 0 0zm-.45-.17c-.71-.23.52 0 0 0zm-.09.11c-.22 0 0-.17 0 0zm-1.08-1.55c-.72-.3-.2-.33 0 0zm-.54-.35c-.58-.33-.08-.33 0 0zm0 .65c-.57-.44-.07-.25 0 0zm-.15-1.34c-.35 0 .13-.2 0 0zM8 17.38c-.51-.15 0-.14 0 0zM7.63 17h-.16c-.68-.54.31-.38.75-.14c.97.14-.22.39-.59.14zm2.7 1.65c-.68-.16.16-.27 0 0zm-.17-.52c-.05 0-.1-.11 0 0zm-.86-1.34c-.59-.14.21-.19.36 0c1.02.21-.06.26-.36 0zM9.51 18H9.4l-.13-.06c-.56-.59 1.19.28.24.06zm-.28.69c-.15.06 0-.14 0 0zm.29-1.19l-.16-.05c-.66-.45.84.09.16 0zm.16 1.72c-.4-.16.26-.25 0 0zm.1-.74c-.58-.14.36-.13 0 0zm.13-.61c-.44-.06.05-.21 0 0zm-.72-.88c.46.06.47.27 0 .14c-.09 0-.24 0-.28-.17c-.76-.5.03-.25.28-.02zm-.06 2c-.2.12 0-.22 0 0zm-.31-.51c-.53 0 .4-.26 0 0zm-.12.35c-.26-.1.17-.08 0 0zm.3-.89c-.52-.14.25-.18 0 0zm-.16-.57c-.28 0-.06-.16 0 0zm-.54-.95c-.57-.46 1.18.38 0 0zm-.06.19c0 .06-.11-.09 0 0zm3.65 3.78a9.4 9.4 0 0 1-2.56-.85l-.33-.2c-.57-.31-.5-.38.06-.07c.19.16 1.59.73.93.35c-.29-.07-1.9-.95-.84-.57a20.92 20.92 0 0 0 2.74 1.21a7.14 7.14 0 0 0 2.43.15c.65.33 1.33-.08 2 .21a13.05 13.05 0 0 1-4.45-.23zm-1.25-.7c-.51-.09.16-.23 0 0zm.73-1c-.58-.11.6-.23 0 0zm.84 1.31c1 .37-.6.12-.93-.09c-.92-.38.72.09.93.09zm-1.06-1.1c-.81-.12.9 0 0 0zm1.52.85c-.29.23 0-.3 0 0zm.29.05c-.15.06 0-.17 0 0zm.27-.38c-.16.2 0-.23 0 0zm.31 0c-.45.17.47-.39 0 0zm.14 0c.49-.42.51-.22.5.13c-.43.48-.17-.2-.44.06s-.19-.1-.06-.17zm.83.45c-.5 0 .51-.54 0 0zm0 .18c-.2.05 0-.13 0 0zm-.16-.35c-.39-.26.94-.61 0 0zm.57.09h-.08c-.03-.23.54-.27.08.02zm.15.19c-.3-.08.47-.4 0 0zm.36-.1c-.51.18.48-.4 0 0zm.22.11l-.12.08c-.23-.14.71-.48.12-.07zm-.43-.53c-.54-.18-1.4-.76-2-.37c-.8.51.41-.56-.24-.08c-.66.79-.45-.5-1.09-.11c0-.12-.57-.16-.17-.37c-.36 0-.13-.05 0-.34c-.16 0-1 0-1.36-.29c-.4-.52.07-.3.48-.23c-.67.12.24.5.68.29c-.2-.09-.43-.52-1-.9a18.83 18.83 0 0 0-2.13-1c-.84-.5.18-.18.47.08c.84.37.51-.51 0-.74c-.54 0-.67-.59-1.1-.56c.67.11 1.14-.17.39-.85s.3.63-.11.44c-.19-.25-.05-.6-.65-.73c0 .23-.08.58-.21.1c-.17 0-.36.21-.5-.28c.13-.57-.56-.7-.67-1.06c.6.38.87.08.45-.33s-.33-.11-.49 0c-.59.6-.06-1-.32-.56c-.26 0-.11.29-.1.65c-.86-.21.2.45.45.81c-.39-.4-.32.31-.65 0c-.11-.3-.12-.77-.67-.85c.62-.22-.36-.65-.28-.67c.35-.32.4-.76.82-.07c-.53 0 0 .88.12.6c0-.47.22-1-.59-1.19c-.24.32-.65-.63-.18-.43c-.06-.63.74-.26.69-.53c.42-.18-.5-.77 0-1c.38.24 1.36-.36.7-.44c.42 0 .75.18.79-.24c.33.07 1.24.36.42-.09a3.45 3.45 0 0 1 1.13-.25c.79-.61.63 1 .45 1.45c.3-.21.24.94.14 1.37c.16-.22.23.36 0 .77c0-.07.4-.13.12.35c-.22-.47-.31 1-.17.32c.37-.61.28 0 .39.24c.08.55.32 1.06.4 1.56c.35.35-.15.11-.15.59c.11-.14.58.19.57.68c0-.78.09-.18.47 0a5.48 5.48 0 0 0 1 1.42c.37.43 0 .13.14.39a3.19 3.19 0 0 0 2.09 1.28a1.46 1.46 0 0 0 1.57.7c-.6.37 1.68.47.91.67c-.23.16-.62-.2-1.01-.18zM8.7 15.89c-.24 0 0-.2 0 0zm.38.22c-.18 0-.12-.24 0 0zm-2.61-3.65c-.24-.07.1-.09 0 0zm-.59 0c-.26 0 0-.34 0 0zm-.3-.08c-.1.05 0-.11 0 0zm11 8.25c-.39-.07.32-.22 0 0zm.73-1.05h-.3c.06-.45 1.33-.1 1.85-.09c-.16.34-1.13.04-1.55.13zm2 0c-.27 0 .12-.32 0 0zm1-.09c-.25.13 0-.3 0 0zm.48.11c-.52-.12.24-.12.4-.14c.94.02 0 .16-.47.16z' fill='black'/%3E%3Cpath d='M6.51 7.11c1-.2-.38-.33-.69 0c.18.13.41-.21.69 0z' fill='black'/%3E%3Cpath d='M5.69 7.24c0 .19.18-.22 0 0z' fill='black'/%3E%3Cpath d='M8.31 6.76c.67-.11.11-.41-.09.1c.07.14.11-.05.09-.1z' fill='black'/%3E%3Cpath d='M7.69 6.86c.93.36-.05-1 0 0z' fill='black'/%3E%3Cpath d='M4.77 7.79a.51.51 0 0 1 .33.1c.75.52-.1-.84-.33-.1z' fill='black'/%3E%3Cpath d='M4.81 7.43c.16.13.29-.21 0 0z' fill='black'/%3E%3Cpath d='M5.18 7.44l.14.12c.68.06-.11-.46-.14-.12z' fill='black'/%3E%3Cpath d='M10.69 16c.09.3 0-.39 0 0z' fill='black'/%3E%3Cpath d='M5.91 11c.1.18.18-.18 0 0z' fill='black'/%3E%3Cpath d='M6 11.61c.19.34 0-.51 0 0z' fill='black'/%3E%3Cpath d='M6.21 11.12c.33.21-.28-.52 0 0z' fill='black'/%3E%3Cpath d='M5.8 10.3c.07.15.24.16.37.2c1.32.61-.95-1-.37-.2z' fill='black'/%3E%3Cpath d='M6.34 11.73c.31.53.18-.37 0 0z' fill='black'/%3E%3Cpath d='M6.82 11.57c.37.92-.23-.12-.3-.43a2.11 2.11 0 0 0 .28 1c.34.51.19-.28.55.23c-.2-.45.1-.2.06-.4s-1-1.17-.59-.4z' fill='black'/%3E%3Cpath d='M7.18 13.35c.09.31.18 0 0 0z' fill='black'/%3E%3Cpath d='M5.85 9c.06.14.11 0 0 0z' fill='black'/%3E%3Cpath d='M6.52 9.42c.32.41.17-.36 0 0z' fill='black'/%3E%3Cpath d='M5.63 10.56l.14.15c.99.29-1.05-.95-.14-.15z' fill='black'/%3E%3Cpath d='M6.33 10.19c1 .41-.09-.27-.44-.2c.11.13.32.07.44.2z' fill='black'/%3E%3Cpath d='M6.15 9.75c.18.18.82.51.31.06c.32-.06 0-.16-.24-.32c-.44-.67.07.06-.07.26z' fill='black'/%3E%3Cpath d='M5.51 10.64c-.53-.44.16.21-.06.2c-.55-.4-.32-.11 0 .2c.33.5.6-.3.06-.4z' fill='black'/%3E%3Cpath d='M7.65 11.28c.12.11-.06-.68 0 0z' fill='black'/%3E%3Cpath d='M8.67 7.78c0 .12.07-.1 0 0z' fill='black'/%3E%3Cpath d='M9 12.47c0 .21 0-.18 0 0z' fill='black'/%3E%3Cpath d='M8.71 11.25c.08.46.1-.78 0 0z' fill='black'/%3E%3Cpath d='M8.85 11.47v.1c.21-.51.04-.79 0-.1z' fill='black'/%3E%3Cpath d='M8.75 8.77c-.14.7-.27.41-.08-.11c-.05-.67-.45.41-.27.72c.29.47.6-1.16.35-.61z' fill='black'/%3E%3Cpath d='M9.76 14.75c.13.35.11-.42 0 0z' fill='black'/%3E%3Cpath d='M8.41 10.47c0 .2 0-.14 0 0z' fill='black'/%3E%3Cpath d='M9.05 12.17c0 .26.11-.38 0 0z' fill='black'/%3E%3Cpath d='M9.5 14l.07.11c.14-.49-.36-.79-.07-.11z' fill='black'/%3E%3Cpath d='M7.94 13.48c.27.22-.13-.23 0 0z' fill='black'/%3E%3Cpath d='M9.17 12.63c.08.29 0-.42 0 0z' fill='black'/%3E%3Cpath d='M8.14 9.81c.15.33-.05-.27 0 0z' fill='black'/%3E%3Cpath d='M8.3 10.23c.24.34-.26-.64 0 0z' fill='black'/%3E%3Cpath d='M8.24 11.38c-.13-1-.42.45 0 .69c.13.34.25.2.3-.19c-.32 0 .08-.62-.3-.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-flickr { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.157 12a4.573 4.573 0 1 1-9.147 0a4.573 4.573 0 0 1 9.147 0zm10.833 0a4.573 4.573 0 1 1-9.147 0a4.573 4.573 0 0 1 9.147 0z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-flickr-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM8.747 14.746A2.745 2.745 0 1 1 11.494 12a2.744 2.744 0 0 1-2.747 2.746zm6.506 0a2.746 2.746 0 1 1-.001-5.493a2.746 2.746 0 0 1 .001 5.493z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-flutter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.9 2.01L3.9 12l3.09 3.09l2.71-2.7L20.09 2l-6.19.01zm.82 14.6l5.39-5.38h-5.93c-.11 0-.26 0-.34.07l-2.23 2.23l-3.09 3.07l3.09 3.1l2.15 2.15c.07.07.14.17.26.15h6.07z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-foursquare { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.549 5.557l-.403 2.113c-.049.229-.337.47-.605.47h-3.76c-.425 0-.729.296-.729.714v.463c0 .43.307.725.73.725h3.194c.298 0 .591.33.524.646l-.404 2.083c-.037.181-.237.475-.592.475h-2.609c-.477 0-.617.069-.936.454c-.316.395-3.175 3.827-3.175 3.827c-.026.033-.054.022-.054-.011V5.522c0-.271.234-.588.586-.588h7.756c.283 0 .549.269.477.618v.005zm.341 8.288c.111-.437 1.319-6.63 1.722-8.593m-1.489-2.311H8.457c-1.33 0-1.723 1.002-1.723 1.635v15.353c0 .71.381.975.596 1.062c.214.087.807.161 1.163-.247c0 0 4.563-5.296 4.64-5.373c.125-.118.125-.118.238-.118h2.954c1.245 0 1.438-.885 1.574-1.405c.114-.429 1.325-6.622 1.721-8.595c.307-1.496-.079-2.311-1.495-2.311h-.002z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-git { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.62 11.108l-8.731-8.729a1.292 1.292 0 0 0-1.823 0L9.257 4.19l2.299 2.3a1.532 1.532 0 0 1 1.939 1.95l2.214 2.217a1.53 1.53 0 0 1 1.583 2.531c-.599.6-1.566.6-2.166 0a1.536 1.536 0 0 1-.337-1.662l-2.074-2.063V14.9c.146.071.286.169.407.29a1.537 1.537 0 0 1 0 2.166a1.536 1.536 0 0 1-2.174 0a1.528 1.528 0 0 1 0-2.164c.152-.15.322-.264.504-.339v-5.49a1.529 1.529 0 0 1-.83-2.008l-2.26-2.271l-5.987 5.982c-.5.504-.5 1.32 0 1.824l8.731 8.729a1.286 1.286 0 0 0 1.821 0l8.69-8.689a1.284 1.284 0 0 0 .003-1.822' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-github { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.026 2c-5.509 0-9.974 4.465-9.974 9.974c0 4.406 2.857 8.145 6.821 9.465c.499.09.679-.217.679-.481c0-.237-.008-.865-.011-1.696c-2.775.602-3.361-1.338-3.361-1.338c-.452-1.152-1.107-1.459-1.107-1.459c-.905-.619.069-.605.069-.605c1.002.07 1.527 1.028 1.527 1.028c.89 1.524 2.336 1.084 2.902.829c.091-.645.351-1.085.635-1.334c-2.214-.251-4.542-1.107-4.542-4.93c0-1.087.389-1.979 1.024-2.675c-.101-.253-.446-1.268.099-2.64c0 0 .837-.269 2.742 1.021a9.582 9.582 0 0 1 2.496-.336a9.554 9.554 0 0 1 2.496.336c1.906-1.291 2.742-1.021 2.742-1.021c.545 1.372.203 2.387.099 2.64c.64.696 1.024 1.587 1.024 2.675c0 3.833-2.33 4.675-4.552 4.922c.355.308.675.916.675 1.846c0 1.334-.012 2.41-.012 2.737c0 .267.178.577.687.479C19.146 20.115 22 16.379 22 11.974C22 6.465 17.535 2 12.026 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-gitlab { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.892 9.889a.664.664 0 0 0-.025-.087l-2.104-6.479a.84.84 0 0 0-.8-.57a.822.822 0 0 0-.789.575l-2.006 6.175H8.834L6.826 3.327a.823.823 0 0 0-.786-.575h-.006a.837.837 0 0 0-.795.575L3.133 9.815c0 .005-.005.01-.007.016l-1.067 3.281a1.195 1.195 0 0 0 .435 1.34l9.227 6.706c.167.121.393.12.558-.003l9.229-6.703a1.2 1.2 0 0 0 .435-1.34l-1.051-3.223zM17.97 3.936l1.809 5.566H16.16l1.81-5.566zm-11.94 0l1.812 5.566H4.228L6.03 3.936zm-2.982 9.752a.253.253 0 0 1-.093-.284l.793-2.437l5.817 7.456l-6.517-4.735zm1.499-3.239h3.601l2.573 7.916l-6.174-7.916zm7.452 8.794l-2.856-8.798h5.718l-1.792 5.515l-1.07 3.283zm1.282-.877l2.467-7.588l.106-.329h3.604l-5.586 7.156l-.591.761zm7.671-4.678l-6.519 4.733l.022-.029l5.794-7.425l.792 2.436a.25.25 0 0 1-.089.285z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-gmail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.73 5.41l-1.28 1L12 10.46L6.55 6.37l-1.28-1A2 2 0 0 0 2 7.05v11.59A1.36 1.36 0 0 0 3.36 20h3.19v-7.72L12 16.37l5.45-4.09V20h3.19A1.36 1.36 0 0 0 22 18.64V7.05a2 2 0 0 0-3.27-1.64z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-go-lang { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3.79 10.17a.18.18 0 0 0-.11 0l-.2.27H7a.15.15 0 0 0 .1-.06l.17-.26v-.05z' fill='black'/%3E%3Cpath d='M2.32 11.06a.14.14 0 0 0-.11 0l-.2.26v.05h4.6a.09.09 0 0 0 .09-.06l.08-.23v-.06z' fill='black'/%3E%3Cpath d='M4.6 12a.13.13 0 0 0-.1.06l-.13.24v.06h2.15a.08.08 0 0 0 .07-.07v-.23s0-.07-.06-.07z' fill='black'/%3E%3Cpath d='M20.59 8.93a3.62 3.62 0 0 0-2.78-.5a4.09 4.09 0 0 0-2.72 1.63a4 4 0 0 0-.67 1.26h-3.14a.25.25 0 0 0-.24.16c-.14.25-.37.76-.5 1.06s0 .29.18.29h1.88a2.8 2.8 0 0 1-.26.36a1.81 1.81 0 0 1-1.65.65a1.53 1.53 0 0 1-1.32-1.53a2.07 2.07 0 0 1 1-1.85a1.71 1.71 0 0 1 1.77-.15a1.36 1.36 0 0 1 .45.37c.13.15.14.14.29.1l1.63-.43c.12 0 .16-.08.1-.16a3 3 0 0 0-1.13-1.38a3.35 3.35 0 0 0-2.58-.47A4.31 4.31 0 0 0 8.16 10a3.81 3.81 0 0 0-.82 2.85A3 3 0 0 0 8.57 15a3.46 3.46 0 0 0 2.62.65A4.06 4.06 0 0 0 14 14a4.33 4.33 0 0 0 .41-.69a3 3 0 0 0 1 1.55a3.68 3.68 0 0 0 2.38.86c.25 0 .51 0 .78-.09a4.51 4.51 0 0 0 2.33-1.25A3.72 3.72 0 0 0 22 11.1a3 3 0 0 0-1.41-2.17zm-1.78 4.73a1.81 1.81 0 0 1-1.59.06a1.61 1.61 0 0 1-.9-1.84A2.12 2.12 0 0 1 18 10.19a1.59 1.59 0 0 1 2 1.29a2.91 2.91 0 0 1 0 .32a2.11 2.11 0 0 1-1.19 1.86z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-google { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.283 10.356h-8.327v3.451h4.792c-.446 2.193-2.313 3.453-4.792 3.453a5.27 5.27 0 0 1-5.279-5.28a5.27 5.27 0 0 1 5.279-5.279c1.259 0 2.397.447 3.29 1.178l2.6-2.599c-1.584-1.381-3.615-2.233-5.89-2.233a8.908 8.908 0 0 0-8.934 8.934a8.907 8.907 0 0 0 8.934 8.934c4.467 0 8.529-3.249 8.529-8.934c0-.528-.081-1.097-.202-1.625z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-google-cloud { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.511 9.722a7.833 7.833 0 0 0-2.359-3.804l-.035.035l.005-.042A7.81 7.81 0 0 0 4.418 9.722c.031-.013.066-.013.099-.023a5.643 5.643 0 0 0-.306 9.166l.006-.006l-.006.024a5.612 5.612 0 0 0 3.407 1.134h4.321l.024.024h4.341a5.644 5.644 0 0 0 3.207-10.319zm-3.206 6.845h-4.341l-.006.006v-.031h-4.34c-.308 0-.611-.066-.892-.193l.002-.001a2.17 2.17 0 1 1 2.87-2.871l2.518-2.518a5.634 5.634 0 0 0-3.396-2.1c.018-.009.035-.024.05-.021a4.334 4.334 0 0 1 5.931-.451h.046a4.334 4.334 0 0 1 1.558 3.407v.433a2.17 2.17 0 1 1 0 4.34z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-google-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.545 15.025v-2.421h2.422v-1.815h-2.422V8.368H17.73v2.421h-2.421v1.815h2.421v2.421zM8.052 8.302c1.133 0 1.896.484 2.33.896l1.722-1.67c-1.048-.98-2.415-1.58-4.052-1.58C4.714 5.947 2 8.659 2 12s2.714 6.053 6.052 6.053c3.493 0 5.812-2.457 5.812-5.913c0-.503-.064-.86-.153-1.24H8.049v2.256h3.332c-.158.951-1.011 2.556-3.329 2.556c-2.003 0-3.637-1.665-3.637-3.704c0-2.042 1.634-3.706 3.637-3.706z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-google-plus-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M22.014 11.974C21.996 6.462 17.521 2 12.008 2C6.493 2 2.019 6.462 2.001 11.974L2 11.948v.112l.001-.023c.017 5.513 4.491 9.977 10.007 9.977c5.514 0 9.988-4.462 10.006-9.974l.001.026v-.118l-.001.026zM9.281 16.557c-2.509 0-4.548-2.039-4.548-4.549s2.039-4.549 4.548-4.549c1.23 0 2.258.451 3.046 1.188l-1.295 1.255c-.325-.309-.899-.673-1.751-.673c-1.505 0-2.733 1.251-2.733 2.785c0 1.533 1.229 2.784 2.733 2.784c1.742 0 2.384-1.206 2.502-1.92H9.279V11.18h4.255c.066.286.115.554.115.932c0 2.597-1.742 4.445-4.368 4.445zm10.458-4.095H17.92v1.819h-1.364v-1.819h-1.82v-1.364h1.82v-1.82h1.364v1.82h1.819v1.364z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-heroku { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.17 2H4.83A1.79 1.79 0 0 0 3 3.8v16.4A1.79 1.79 0 0 0 4.83 22h14.34A1.8 1.8 0 0 0 21 20.2V3.8A1.8 1.8 0 0 0 19.17 2zM20 20.2a.8.8 0 0 1-.81.8H4.83a.79.79 0 0 1-.8-.8V3.8a.79.79 0 0 1 .8-.8h14.34a.8.8 0 0 1 .81.8z' fill='black'/%3E%3Cpath d='M7.53 19l2.25-2l-2.25-2v4z' fill='black'/%3E%3Cpath d='M13.22 10a12 12 0 0 0-3.75.7V5h-2v8.65L8.88 13a12.3 12.3 0 0 1 4.29-1c1 0 1.25.55 1.25 1.05v6h2V13a2.68 2.68 0 0 0-.8-2.1a3.27 3.27 0 0 0-2.4-.9z' fill='black'/%3E%3Cpath d='M13 8.25h2A5.89 5.89 0 0 0 16.47 5h-2A7.17 7.17 0 0 1 13 8.25z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-html5 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.136 3.012h15.729l-1.431 16.15l-6.451 1.826l-6.414-1.826l-1.433-16.15zm5.266 7.302l-.173-2.035l7.533.002l.173-1.963l-9.87-.002l.522 5.998h6.835l-.243 2.566l-2.179.602l-2.214-.605l-.141-1.58H7.691l.247 3.123L12 17.506l4.028-1.08l.558-6.111H9.402v-.001z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-imdb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.646 10.237c-.057-.032-.16-.048-.313-.048v3.542c.201 0 .324-.041.371-.122s.07-.301.07-.66v-2.092c0-.244-.008-.4-.023-.469a.223.223 0 0 0-.105-.151zm3.499 1.182c-.082 0-.137.031-.162.091c-.025.061-.037.214-.037.46v1.426c0 .237.014.389.041.456c.029.066.086.1.168.1c.086 0 .199-.035.225-.103c.027-.069.039-.234.039-.495V11.97c0-.228-.014-.377-.043-.447c-.032-.069-.147-.104-.231-.104z' fill='black'/%3E%3Cpath d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM6.631 14.663H5.229V9.266h1.402v5.397zm4.822 0H10.23l-.006-3.643l-.49 3.643h-.875L8.342 11.1l-.004 3.563H7.111V9.266H8.93c.051.327.107.71.166 1.15l.201 1.371l.324-2.521h1.832v5.397zm3.664-1.601c0 .484-.027.808-.072.97a.728.728 0 0 1-.238.383a.996.996 0 0 1-.422.193c-.166.037-.418.055-.754.055h-1.699V9.266h1.047c.678 0 1.07.031 1.309.093c.24.062.422.164.545.306c.125.142.203.3.234.475c.031.174.051.516.051 1.026v1.896zm3.654.362c0 .324-.023.565-.066.723a.757.757 0 0 1-.309.413a.947.947 0 0 1-.572.174c-.158 0-.365-.035-.502-.104a1.144 1.144 0 0 1-.377-.312l-.088.344h-1.262V9.266h1.35v1.755a1.09 1.09 0 0 1 .375-.289c.137-.064.344-.096.504-.096c.186 0 .348.029.484.087a.716.716 0 0 1 .44.549c.016.1.023.313.023.638v1.514z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-instagram { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.999 7.377a4.623 4.623 0 1 0 0 9.248a4.623 4.623 0 0 0 0-9.248zm0 7.627a3.004 3.004 0 1 1 0-6.008a3.004 3.004 0 0 1 0 6.008z' fill='black'/%3E%3Ccircle cx='16.806' cy='7.207' r='1.078' fill='black'/%3E%3Cpath d='M20.533 6.111A4.605 4.605 0 0 0 17.9 3.479a6.606 6.606 0 0 0-2.186-.42c-.963-.042-1.268-.054-3.71-.054s-2.755 0-3.71.054a6.554 6.554 0 0 0-2.184.42a4.6 4.6 0 0 0-2.633 2.632a6.585 6.585 0 0 0-.419 2.186c-.043.962-.056 1.267-.056 3.71c0 2.442 0 2.753.056 3.71c.015.748.156 1.486.419 2.187a4.61 4.61 0 0 0 2.634 2.632a6.584 6.584 0 0 0 2.185.45c.963.042 1.268.055 3.71.055s2.755 0 3.71-.055a6.615 6.615 0 0 0 2.186-.419a4.613 4.613 0 0 0 2.633-2.633c.263-.7.404-1.438.419-2.186c.043-.962.056-1.267.056-3.71s0-2.753-.056-3.71a6.581 6.581 0 0 0-.421-2.217zm-1.218 9.532a5.043 5.043 0 0 1-.311 1.688a2.987 2.987 0 0 1-1.712 1.711a4.985 4.985 0 0 1-1.67.311c-.95.044-1.218.055-3.654.055c-2.438 0-2.687 0-3.655-.055a4.96 4.96 0 0 1-1.669-.311a2.985 2.985 0 0 1-1.719-1.711a5.08 5.08 0 0 1-.311-1.669c-.043-.95-.053-1.218-.053-3.654c0-2.437 0-2.686.053-3.655a5.038 5.038 0 0 1 .311-1.687c.305-.789.93-1.41 1.719-1.712a5.01 5.01 0 0 1 1.669-.311c.951-.043 1.218-.055 3.655-.055s2.687 0 3.654.055a4.96 4.96 0 0 1 1.67.311a2.991 2.991 0 0 1 1.712 1.712a5.08 5.08 0 0 1 .311 1.669c.043.951.054 1.218.054 3.655c0 2.436 0 2.698-.043 3.654h-.011z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-instagram-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.947 8.305a6.53 6.53 0 0 0-.419-2.216a4.61 4.61 0 0 0-2.633-2.633a6.606 6.606 0 0 0-2.186-.42c-.962-.043-1.267-.055-3.709-.055s-2.755 0-3.71.055a6.606 6.606 0 0 0-2.185.42a4.607 4.607 0 0 0-2.633 2.633a6.554 6.554 0 0 0-.419 2.185c-.043.963-.056 1.268-.056 3.71s0 2.754.056 3.71c.015.748.156 1.486.419 2.187a4.61 4.61 0 0 0 2.634 2.632a6.584 6.584 0 0 0 2.185.45c.963.043 1.268.056 3.71.056s2.755 0 3.71-.056a6.59 6.59 0 0 0 2.186-.419a4.615 4.615 0 0 0 2.633-2.633c.263-.7.404-1.438.419-2.187c.043-.962.056-1.267.056-3.71c-.002-2.442-.002-2.752-.058-3.709zm-8.953 8.297c-2.554 0-4.623-2.069-4.623-4.623s2.069-4.623 4.623-4.623a4.623 4.623 0 0 1 0 9.246zm4.807-8.339a1.077 1.077 0 0 1-1.078-1.078a1.077 1.077 0 1 1 2.155 0c0 .596-.482 1.078-1.077 1.078z' fill='black'/%3E%3Ccircle cx='11.994' cy='11.979' r='3.003' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-internet-explorer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.154 8.514c.85-2.039.906-3.738-.113-4.757c-1.133-1.132-3.852-.792-6.737.565h-.341c-2.037 0-4.02.738-5.492 2.039c-1.244 1.133-2.15 2.605-2.547 4.246c.283-.337 1.869-2.207 3.68-3.226c.058 0 .51-.283.51-.283c-.057 0-.905.85-1.074 1.02c-3.965 4.076-6.285 10.248-4.473 12.059c1.188 1.189 3.34.906 5.831-.452c1.075.51 2.265.735 3.565.735c1.699 0 3.285-.453 4.643-1.359c1.416-.906 2.436-2.319 3.059-3.962h-4.416c-.566 1.075-1.869 1.812-3.227 1.812c-1.926 0-3.512-1.586-3.568-3.397v-.169h11.551v-.17c0-.283.057-.623.057-.848c-.001-1.362-.341-2.664-.908-3.853zM4.811 19.838c-.906-.906-.621-2.662.453-4.756c.51 1.416 1.359 2.662 2.435 3.567c.341.282.735.565 1.133.792c-1.814.963-3.285 1.133-4.021.397zm11.606-8.606H9.51v-.057c.113-1.756 1.754-3.285 3.681-3.285c1.812 0 3.284 1.416 3.397 3.285v.057h-.171zm3.454-3.171a6.948 6.948 0 0 0-1.303-1.585a8.445 8.445 0 0 0-2.718-1.699c1.813-.849 3.341-.961 4.134-.169c.623.736.567 1.981-.113 3.453c0 .057 0 .057 0 0c0 .057 0 .057 0 0z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-invision { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.361 3.008H4.638c-.901 0-1.63.729-1.63 1.63v14.724c0 .9.729 1.631 1.63 1.631h14.724c.9 0 1.631-.73 1.631-1.631V4.638a1.63 1.63 0 0 0-1.632-1.63zM9.018 6.505c.597 0 1.098.472 1.098 1.078c0 .616-.501 1.08-1.098 1.08v.022c-.604 0-1.09-.486-1.09-1.088c0-.605.486-1.092 1.09-1.092zm7.354 10.352c-1.112 0-1.651-.662-1.651-1.566c0-.26.033-.533.114-.812l.528-1.906c.068-.208.086-.405.086-.581c0-.615-.375-.984-.971-.984c-.761 0-1.26.543-1.52 1.598l-1.033 4.146h-1.811l.327-1.303c-.534.873-1.271 1.412-2.183 1.412c-1.102 0-1.617-.632-1.617-1.584a4.02 4.02 0 0 1 .096-.811l.826-3.366H6.285l.388-1.43h3.075l-1.216 4.804c-.08.309-.11.559-.11.738c0 .307.148.396.385.452c.146.03 1.295.011 1.918-1.376l.798-3.188h-1.294l.391-1.404h2.787l-.359 1.617c.484-.899 1.452-1.762 2.406-1.762c1.012 0 1.855.728 1.855 2.111c0 .4-.063.796-.18 1.18l-.52 1.858a2.286 2.286 0 0 0-.075.492c0 .326.136.484.368.484c.238 0 .553-.181.899-1.172l.708.272c-.414 1.473-1.182 2.081-2.137 2.081z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-java { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9.37 17.51c-3.09.86 1.87 2.64 5.8 1a7.18 7.18 0 0 1-1.1-.54a11.59 11.59 0 0 1-4.16.18c-1.31-.15-.54-.64-.54-.64z' fill='black'/%3E%3Cpath d='M14.7 15.83a16.27 16.27 0 0 1-5.36.26c-1.31-.14-.45-.77-.45-.77c-3.4 1.12 1.89 2.4 6.64 1a2.25 2.25 0 0 1-.83-.49z' fill='black'/%3E%3Cpath d='M16.52 6.1s-6.87 1.71-3.59 5.49a1.47 1.47 0 0 1-.25 2.12s2.46-1.27 1.33-2.86s-1.86-2.22 2.51-4.75z' fill='black'/%3E%3Cpath d='M18.13 19.14s.56.46-.63.82c-2.27.69-9.43.9-11.42 0c-.72-.31.62-.74 1-.83a2.54 2.54 0 0 1 .69-.08c-.8-.56-5.15 1.1-2.21 1.58c8.05 1.37 14.64-.56 12.57-1.49z' fill='black'/%3E%3Cpath d='M15.37 14.26a7 7 0 0 1 .92-.49s-1.51.27-3 .4a28.11 28.11 0 0 1-4.82.05C6.09 13.91 9.74 13 9.74 13a6.81 6.81 0 0 0-3.16.75c-2.06 1.03 5.09 1.48 8.79.51z' fill='black'/%3E%3Cpath d='M16.28 16.7a.39.39 0 0 1-.08.09c5-1.32 3.18-4.65.78-3.81a.71.71 0 0 0-.33.25s.14-.05.43-.12c1.22-.25 2.92 1.63-.8 3.59z' fill='black'/%3E%3Cpath d='M12 13c-.74-1.67-3.26-3.14 0-5.71C16.09 4.08 14 2 14 2c.84 3.31-3 4.31-4.34 6.37c-.93 1.41.47 2.92 2.34 4.63z' fill='black'/%3E%3Cpath d='M16.41 21.32a29.75 29.75 0 0 1-9.14.14s.46.38 2.84.53c3.61.23 9.15-.12 9.29-1.83c0 0-.26.64-2.99 1.16z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-javascript { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 3h18v18H3V3zm16.525 13.707c-.131-.821-.666-1.511-2.252-2.155c-.552-.259-1.165-.438-1.349-.854c-.068-.248-.078-.382-.034-.529c.113-.484.687-.629 1.137-.495c.293.09.563.315.732.676c.775-.507.775-.507 1.316-.844c-.203-.314-.304-.451-.439-.586c-.473-.528-1.103-.798-2.126-.775l-.528.067c-.507.124-.991.395-1.283.754c-.855.968-.608 2.655.427 3.354c1.023.765 2.521.933 2.712 1.653c.18.878-.652 1.159-1.475 1.058c-.607-.136-.945-.439-1.316-1.002l-1.372.788c.157.359.337.517.607.832c1.305 1.316 4.568 1.249 5.153-.754c.021-.067.18-.528.056-1.237l.034.049zm-6.737-5.434h-1.686c0 1.453-.007 2.898-.007 4.354c0 .924.047 1.772-.104 2.033c-.247.517-.886.451-1.175.359c-.297-.146-.448-.349-.623-.641c-.047-.078-.082-.146-.095-.146l-1.368.844c.229.473.563.879.994 1.137c.641.383 1.502.507 2.404.305c.588-.17 1.095-.519 1.358-1.059c.384-.697.302-1.553.299-2.509c.008-1.541 0-3.083 0-4.635l.003-.042z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-joomla { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.539 14.059l-1.874 1.875l-1.777 1.777l-.347.35a3.993 3.993 0 0 1-3.785 1.048A2.41 2.41 0 0 1 3 18.567c0-1.138.792-2.092 1.852-2.342a3.993 3.993 0 0 1 1.047-3.811l.135-.135l1.777 1.778l-.138.135a1.48 1.48 0 0 0 0 2.092a1.462 1.462 0 0 0 2.09 0l.349-.349l1.775-1.778l1.877-1.879l1.775 1.781zm.693 4.988a3.986 3.986 0 0 1-3.996-.988l-.135-.139l1.773-1.777l.135.139a1.48 1.48 0 0 0 2.09 0a1.474 1.474 0 0 0-.002-2.086l-.35-.349l-1.773-1.777l-1.877-1.878l1.777-1.776l1.875 1.879l1.774 1.777l.349.349a3.962 3.962 0 0 1 1.058 3.766a2.407 2.407 0 0 1-.336 4.79a2.392 2.392 0 0 1-2.352-1.924l-.01-.006zm-8.001-8.962l1.881-1.879l1.777-1.777l.347-.346a3.972 3.972 0 0 1 3.949-1.002a2.408 2.408 0 1 1 2.699 2.716a3.98 3.98 0 0 1-1.012 3.925l-.137.139l-1.777-1.777l.139-.138a1.474 1.474 0 1 0-2.086-2.085l-.347.346l-1.777 1.776l-1.879 1.876l-1.777-1.774zm-1.99 1.984l-.346-.347a3.984 3.984 0 0 1-.999-3.965a2.414 2.414 0 0 1-1.874-2.35A2.41 2.41 0 0 1 5.43 3c1.197 0 2.19.875 2.378 2.019a3.99 3.99 0 0 1 3.734 1.061l.138.14l-1.778 1.776l-.137-.136a1.481 1.481 0 0 0-2.088 0a1.481 1.481 0 0 0-.004 2.092l.349.35l1.777 1.777l1.879 1.879l-1.775 1.777l-1.883-1.879l-1.778-1.777v-.01h-.001z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-jquery { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3.345 6.935c-1.756 2.523-1.538 5.806-.196 8.487l.098.19c.021.04.041.082.063.121c.012.024.026.047.039.069a7.842 7.842 0 0 0 .198.344l.073.12a9.14 9.14 0 0 0 .211.33a10.179 10.179 0 0 0 .221.319l.036.049c.063.088.129.175.196.261l.074.094l.182.223l.069.082c.082.097.167.194.252.289l.005.005c.004.004.007.006.01.011c.083.091.17.181.256.271l.083.083l.205.201l.084.08c.092.087.186.172.281.256l.004.004l.049.041c.083.073.169.145.255.215l.105.084a11.03 11.03 0 0 0 .565.424c.029.021.057.042.087.062l.024.017c.076.053.154.103.231.153c.033.022.066.045.101.067a10.975 10.975 0 0 0 .886.509c.065.034.129.068.195.101l.045.022l.08.039c.102.048.205.097.308.143l.066.029c.119.052.239.102.36.149l.088.035a13.895 13.895 0 0 0 .382.142c.125.044.252.085.38.124l.092.028c.128.039.256.085.39.11c8.492 1.548 10.958-5.102 10.958-5.102c-2.072 2.698-5.748 3.41-9.232 2.618c-.132-.03-.261-.071-.39-.109l-.097-.029a10.929 10.929 0 0 1-.755-.264l-.093-.036c-.12-.047-.239-.097-.356-.148l-.071-.031a11.932 11.932 0 0 1-.301-.14l-.087-.042c-.078-.038-.155-.079-.232-.118c-.051-.027-.104-.053-.155-.082a8.294 8.294 0 0 1-.278-.156l-.094-.052a11.4 11.4 0 0 1-.363-.223l-.098-.065a10.557 10.557 0 0 1-.259-.172l-.083-.059c-.082-.058-.164-.116-.244-.176a11.921 11.921 0 0 1-.328-.255l-.099-.079c-.092-.076-.184-.152-.274-.231a12.01 12.01 0 0 1-.319-.288c-.028-.026-.055-.051-.081-.078a7.985 7.985 0 0 1-.208-.203l-.081-.081a10.76 10.76 0 0 1-.254-.269l-.012-.012a11.75 11.75 0 0 1-.258-.293l-.067-.081a10.313 10.313 0 0 1-.254-.313a11.855 11.855 0 0 1-.215-.286C3.864 11.825 3.17 8.186 4.715 5.198' fill='black'/%3E%3Cpath d='M8.794 4.809c-1.27 1.827-1.2 4.273-.21 6.205c.166.324.353.639.561.938c.191.273.401.597.654.816c.092.101.187.199.284.295l.076.074c.094.092.19.182.291.271l.011.01l.003.002c.111.097.224.19.34.281l.078.06a8.281 8.281 0 0 0 .366.268c.053.037.108.072.161.107c.026.017.051.035.078.051a7.14 7.14 0 0 0 .301.184c.076.044.155.087.233.13c.026.015.055.029.082.043c.055.028.108.057.163.083a9.645 9.645 0 0 0 .365.171l.074.031c.093.039.186.077.281.113l.117.044c.086.032.171.06.256.089l.117.037c.121.038.243.085.37.107c6.556 1.086 8.068-3.961 8.068-3.961c-1.364 1.964-4.006 2.902-6.825 2.17a7.866 7.866 0 0 1-.743-.232l-.118-.043a7.629 7.629 0 0 1-.353-.145a8.79 8.79 0 0 1-.344-.159c-.057-.028-.113-.058-.17-.087l-.099-.051a9.352 9.352 0 0 1-.533-.313l-.08-.053a7.65 7.65 0 0 1-.602-.435c-1.234-.974-2.213-2.306-2.678-3.815c-.488-1.566-.382-3.323.462-4.75' fill='black'/%3E%3Cpath d='M13.379 3.221c-.749 1.102-.823 2.469-.304 3.686c.548 1.292 1.671 2.304 2.981 2.785a3.85 3.85 0 0 0 .234.079c.077.024.152.053.233.067c3.62.699 4.601-1.857 4.862-2.234c-.86 1.239-2.306 1.536-4.078 1.105a5.403 5.403 0 0 1-.939-.344a5.39 5.39 0 0 1-.895-.545c-1.585-1.204-2.573-3.501-1.536-5.372' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-jsfiddle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.58 11.375c.008-.117.018-.231.018-.35c0-3.243-2.668-5.871-5.959-5.871A5.966 5.966 0 0 0 8.26 8.502a2.732 2.732 0 0 0-1.674-.568c-1.521 0-2.752 1.21-2.752 2.704c0 .283.043.554.125.808a3.957 3.957 0 0 0-1.98 3.418c0 2.173 1.773 3.938 3.975 3.972h11.898c.074 0 .15.012.227.012c2.178 0 3.943-1.739 3.943-3.893a3.885 3.885 0 0 0-2.432-3.579h-.01v-.001zM7.355 15.842a2.329 2.329 0 0 1-.748-1.318a2.865 2.865 0 0 1-.053-.544c0-.74.27-1.347.809-1.827c.537-.48 1.221-.722 2.049-.722c.854 0 1.654.32 2.363.957c.176.158.352.338.514.536l.912 1.071c.158.217.324.399.5.56c.471.422.977.632 1.408.632c.365 0 .67-.112.912-.336c.209-.19.336-.45.363-.73l.008-.123a1.054 1.054 0 0 0-.055-.347a1.275 1.275 0 0 0-1.238-.838c-.453 0-.902.153-1.396.631l-.807-.95l-.088-.108c.713-.691 1.414-.95 2.367-.95c.838 0 1.525.237 2.037.712l.014.014c.539.474.801 1.089.801 1.842a2.6 2.6 0 0 1-.049.528a2.38 2.38 0 0 1-.74 1.301a2.685 2.685 0 0 1-1.428.677a4.505 4.505 0 0 1-.588.038c-.863 0-1.676-.313-2.365-.938a4.866 4.866 0 0 1-.537-.576l-.914-1.065a3.58 3.58 0 0 0-.488-.563c-.463-.425-.977-.626-1.428-.626c-.129 0-.26.018-.389.051a1.19 1.19 0 0 0-.523.289c-.232.216-.365.52-.365.839c0 .324.113.6.352.825l.014.013c.25.227.563.338.926.338c.463 0 .914-.162 1.4-.639l.801.938l.088.099c-.725.703-1.428.965-2.342.965c-.838 0-1.525-.238-2.051-.713l-.046.057z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-kickstarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10.198 9.127l3.309-4.799c.628-.902 1.434-1.354 2.427-1.354c.806 0 1.506.287 2.097.861c.59.574.885 1.26.885 2.059c0 .59-.155 1.113-.469 1.563l-2.983 4.34l3.649 4.627c.363.461.547 1 .547 1.617c0 .816-.286 1.518-.86 2.105a2.81 2.81 0 0 1-2.084.879c-.895 0-1.577-.291-2.047-.873L10.2 14.574v3.074c0 .879-.152 1.561-.457 2.049c-.555.885-1.356 1.328-2.417 1.328c-.963 0-1.711-.328-2.24-.977c-.496-.602-.744-1.396-.744-2.387V6.258c0-.936.253-1.709.755-2.318c.525-.643 1.255-.965 2.186-.965c.887 0 1.624.322 2.216.965c.329.357.537.717.625 1.082c.053.227.079.646.079 1.266v2.84h-.005z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-kubernetes { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10.013 13.738l-2.254.387a4.475 4.475 0 0 0 1.753 2.231l.865-2.095a.27.27 0 0 0 .022-.228c-.022-.18-.204-.295-.386-.295zm.865-2.914c.205 0 .387-.159.387-.364l.114-2.277l-.456.091a4.516 4.516 0 0 0-2.118 1.162l1.89 1.343c.069.022.115.045.183.045zm-1.002 1.48a.366.366 0 0 0-.045-.524l-1.685-1.503a4.797 4.797 0 0 0-.661 2.778l2.209-.637c.091-.023.137-.046.182-.114zm1.457.797l.616.296l.614-.296l.16-.661l-.433-.546h-.683l-.433.546zm1.344-2.436c.114.159.341.182.5.091l1.867-1.32a4.286 4.286 0 0 0-2.573-1.23l.137 2.3a.215.215 0 0 0 .069.159z' fill='black'/%3E%3Cpath d='M21.944 14.103l-1.73-7.446c-.113-.364-.387-.66-.729-.842L12.541 2.49c-.182-.091-.387-.114-.569-.114s-.387 0-.569.045L4.457 5.769a1.22 1.22 0 0 0-.683.842l-1.708 7.492c-.068.387.023.774.25 1.093l4.805 5.943c.273.273.66.456 1.047.479h7.651c.41.045.797-.137 1.048-.479l4.805-5.943c.227-.319.318-.706.272-1.093zm-2.845.501c-.046 0-.068 0-.114-.023c-.022-.023-.022-.023-.045-.023c-.046 0-.068-.022-.092-.022c-.091-.023-.159-.068-.25-.114a.32.32 0 0 1-.137-.045h-.022a3.91 3.91 0 0 0-.729-.205h-.022a.26.26 0 0 0-.182.068s0 .023-.023.023l-.183-.024a5.628 5.628 0 0 1-2.46 3.097l.068.182s-.022 0-.022.022a.264.264 0 0 0-.022.228c.091.228.205.455.364.66v.045a.396.396 0 0 1 .091.114a.81.81 0 0 1 .159.228c.023.022.046.045.046.068c0 0 .022 0 .022.022a.582.582 0 0 1 .023.342a.38.38 0 0 1-.205.25c-.068.022-.114.045-.183.045a.511.511 0 0 1-.433-.273c-.022 0-.022-.022-.022-.022c-.022-.023-.022-.045-.046-.068c-.045-.068-.068-.159-.091-.25l-.046-.137v-.022a3.816 3.816 0 0 0-.296-.706a.353.353 0 0 0-.182-.137c0-.023 0-.023-.023-.023l-.091-.159c-.228.068-.479.159-.729.205c-.41.114-.82.159-1.229.159a5.368 5.368 0 0 1-1.981-.364l-.091.182c0 .023 0 .023-.023.023a.35.35 0 0 0-.182.137c-.114.228-.228.455-.296.706l-.045.137c-.023.091-.068.159-.091.25c-.022.023-.045.045-.045.068c-.023 0-.023.022-.023.022a.508.508 0 0 1-.433.273a.434.434 0 0 1-.159-.045a.469.469 0 0 1-.182-.615c.023 0 .023-.023.023-.023c.022-.023.022-.045.045-.068c.068-.091.114-.182.159-.228s.068-.068.091-.114v-.023a3.73 3.73 0 0 0 .364-.66a.268.268 0 0 0-.023-.228s-.022 0-.022-.022l.114-.16a3.578 3.578 0 0 1-.615-.41a5.493 5.493 0 0 1-1.867-2.664l-.205.022s0-.022-.023-.022a.256.256 0 0 0-.182-.068h-.022a4.015 4.015 0 0 0-.751.205h-.024c-.045 0-.091.023-.137.046c-.068.022-.159.068-.25.091c-.022 0-.091-.022-.091 0c0 .023 0 .023-.023.023c-.045.023-.068.023-.114.023a.424.424 0 0 1-.456-.319a.445.445 0 0 1 .364-.524c.023-.023.023-.023.046-.023c.045 0 .068-.022.091-.022c.091 0 .182-.023.273-.023c.045-.022.091-.022.137-.022a4.2 4.2 0 0 0 .774-.137c.068-.046.137-.091.16-.16c0 0 .022 0 .022-.022l.182-.046c-.205-1.298.091-2.618.797-3.734c.022-.045.045-.068.068-.114l-.131-.132a.106.106 0 0 1-.004.019v-.023l.004.004c.01-.065-.031-.145-.072-.186c-.182-.182-.41-.319-.638-.455l-.136-.069a2.587 2.587 0 0 1-.251-.136c-.022 0-.068-.045-.068-.045s0-.023-.022-.023a.49.49 0 0 1-.092-.639c.068-.114.182-.159.319-.159a.54.54 0 0 1 .319.114l.023.023c.022.022.045.022.068.045c.068.069.114.137.182.205c.023.022.068.045.091.091c.159.182.364.364.569.524c.045.022.091.045.137.045c.045 0 .068-.023.091-.023h.023l.137.091a5.426 5.426 0 0 1 2.801-1.594c.273-.046.523-.091.774-.114l.023-.182v-.045c.068-.045.091-.114.114-.182c0-.273 0-.524-.045-.774v-.023c0-.045 0-.091-.023-.137a1.129 1.129 0 0 1-.045-.273v-.113c0-.114.045-.228.137-.319c.114-.114.25-.182.387-.159a.45.45 0 0 1 .387.478v.137c-.023.091-.023.182-.045.273c0 .045-.023.091-.023.136v.023c-.048.273-.048.524-.048.774c.023.068.045.136.114.182v-.023l.023.182a5.84 5.84 0 0 1 2.96 1.184c.183.182.387.364.569.546l.183-.114h.022c.022.023.068.023.091.023c.046 0 .091-.023.137-.045c.205-.137.41-.319.569-.501c.022-.023.068-.046.091-.091c.046-.068.114-.137.183-.205c.022 0 .045-.022.068-.045l.022-.023a.546.546 0 0 1 .318-.114c.114 0 .251.068.319.16c.159.205.113.478-.091.637c0 .023.022.023 0 .046c-.023.022-.046.022-.068.045c-.092.045-.16.091-.251.137l-.137.068a4.104 4.104 0 0 0-.638.455c-.045.046-.068.137-.068.205v.023l-.136.137c.364.569.638 1.207.797 1.867c.137.66.182 1.343.091 2.003l.182.046a.278.278 0 0 0 .16.159c.25.068.523.114.773.137h.023a.297.297 0 0 0 .137.022c.091 0 .182 0 .272.023c.046 0 .092 0 .092.023c0 .022.022.022.045.022a.537.537 0 0 1 .41.479a.49.49 0 0 1-.453.32z' fill='black'/%3E%3Cpath d='M12.085 14.718a.352.352 0 0 0-.455.091l-1.116 2.027c.456.136.957.228 1.435.228c.341 0 .66-.045.979-.114c.159-.045.296-.068.433-.091l-1.093-1.981c-.069-.069-.115-.115-.183-.16zm3.644-4.441l-1.708 1.548a.36.36 0 0 0-.091.16c-.046.205.068.41.273.455l2.163.615a4.375 4.375 0 0 0-.092-1.435a4.63 4.63 0 0 0-.545-1.343zm-2.073 3.484a.371.371 0 0 0-.205.433l.889 2.141a4.366 4.366 0 0 0 1.366-1.366c.182-.25.318-.547.433-.865l-2.277-.387a.634.634 0 0 0-.206.044z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-less { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.142 10.843c0-.64.098-1.018.098-1.707c0-1.067-.393-1.411-1.263-1.411h-.641v.755h.196c.444 0 .542.147.542.689c0 .509-.049 1.018-.049 1.608c0 .755.246 1.05.739 1.165v.049c-.493.116-.739.411-.739 1.166c0 .591.049 1.067.049 1.608c0 .558-.114.705-.542.705v.017h-.196v.788h.641c.87 0 1.263-.344 1.263-1.411c0-.706-.098-1.067-.098-1.707c0-.345.213-.706.854-.739v-.853c-.642-.016-.854-.377-.854-.722zm-3.299 1.001c-.493-.196-.952-.312-.952-.64c0-.246.197-.395.558-.395c.361 0 .689.148 1.05.411l.657-.87c-.409-.313-.968-.641-1.724-.641c-1.115 0-1.871.641-1.871 1.544c0 .804.706 1.214 1.298 1.443c.508.196 1.001.361 1.001.689c0 .246-.197.41-.641.41c-.41 0-.821-.164-1.263-.509l-.657.952c.492.41 1.247.689 1.871.689c1.313 0 2.019-.689 2.019-1.592c-.001-.9-.707-1.277-1.346-1.491zm-11.21 1.854c-.114 0-.262-.098-.262-.41V7.725H4.039c-.886 0-1.279.344-1.279 1.411c0 .706.099 1.101.099 1.707c0 .345-.213.706-.854.739v.853c.641.017.854.378.854.723c0 .606-.099.968-.099 1.674c0 1.067.394 1.411 1.264 1.411h.64v-.755h-.197c-.411 0-.542-.164-.542-.706c0-.541.049-1.001.049-1.607c0-.756-.245-1.05-.738-1.165v-.051c.493-.114.738-.409.738-1.165c0-.59-.049-1.066-.049-1.607c0-.542.114-.689.542-.689h.442v4.711c0 1.001.345 1.657 1.346 1.657c.313 0 .559-.05.739-.115l-.165-1.066c-.098.013-.146.013-.196.013zm7.238-1.854c-.509-.196-.969-.312-.969-.64c0-.246.197-.395.558-.395c.361 0 .689.148 1.051.411l.656-.87c-.41-.313-.968-.641-1.723-.641c-1.116 0-1.872.641-1.872 1.544c0 .804.707 1.214 1.297 1.443c.51.196 1.002.361 1.002.689c0 .246-.197.41-.641.41c-.41 0-.82-.164-1.264-.509l-.64.952c.492.41 1.247.689 1.871.689c1.313 0 2.019-.689 2.019-1.592c.001-.9-.705-1.277-1.345-1.491zm-4.842-2.15c-1.198 0-2.347 1.001-2.314 2.577c0 1.624 1.066 2.576 2.479 2.576c.591 0 1.247-.214 1.756-.558l-.492-.87c-.36.213-.706.312-1.066.312c-.657 0-1.165-.312-1.297-1.066h2.971c.017-.115.049-.345.049-.607c.016-1.33-.707-2.364-2.086-2.364zm-.935 2.068c.099-.655.492-.969.951-.969c.592 0 .821.411.821.969H8.094z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-linkedin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='4.983' cy='5.009' r='2.188' fill='black'/%3E%3Cpath d='M9.237 8.855v12.139h3.769v-6.003c0-1.584.298-3.118 2.262-3.118c1.937 0 1.961 1.811 1.961 3.218v5.904H21v-6.657c0-3.27-.704-5.783-4.526-5.783c-1.835 0-3.065 1.007-3.568 1.96h-.051v-1.66H9.237zm-6.142 0H6.87v12.139H3.095z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-linkedin-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM8.339 18.337H5.667v-8.59h2.672v8.59zM7.003 8.574a1.548 1.548 0 1 1 0-3.096a1.548 1.548 0 0 1 0 3.096zm11.335 9.763h-2.669V14.16c0-.996-.018-2.277-1.388-2.277c-1.39 0-1.601 1.086-1.601 2.207v4.248h-2.667v-8.59h2.56v1.174h.037c.355-.675 1.227-1.387 2.524-1.387c2.704 0 3.203 1.778 3.203 4.092v4.71z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-magento { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22.019l-3.717-2.146V9.863l2.479-1.43v10.01l1.238.753l1.238-.753V8.434l2.479 1.43v10.01L12 22.019zm8.666-15.014v10.009l-2.475 1.43V8.434L12 4.861L5.807 8.434v10.01l-2.473-1.43V7.005L12 2l8.666 5.005z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-mailchimp { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.279 11.506c.132-.016.257-.018.373 0c.066-.154.078-.419.019-.708c-.09-.429-.211-.688-.461-.646c-.251.04-.261.35-.17.779c.05.24.14.446.239.575zm-2.149.339c.18.078.29.129.331.086c.029-.028.021-.084-.022-.154a1.05 1.05 0 0 0-.464-.371a1.26 1.26 0 0 0-1.228.146c-.119.088-.232.209-.218.283c.007.023.023.042.065.05c.099.011.444-.164.843-.188c.282-.02.513.068.693.148zm-.361.205c-.232.037-.361.113-.443.187c-.071.062-.113.128-.113.177l.018.042l.037.014c.053 0 .171-.046.171-.046c.324-.115.539-.102.752-.078c.117.014.172.02.198-.02c.007-.012.018-.035-.007-.074c-.056-.091-.291-.24-.613-.202zm1.784.756c.159.078.333.046.39-.069c.059-.115-.024-.272-.183-.349c-.158-.079-.333-.049-.39.066c-.057.115.026.274.183.352zm1.018-.891c-.128-.002-.234.138-.238.316c-.003.177.1.321.229.322c.129.002.235-.139.238-.315s-.099-.32-.229-.323zm-8.644 3.183c-.032-.04-.085-.029-.136-.015c-.036.007-.076.017-.119.016a.265.265 0 0 1-.221-.111c-.059-.09-.056-.225.01-.378l.03-.069c.104-.231.275-.619.082-.988a.88.88 0 0 0-.671-.488a.861.861 0 0 0-.739.267c-.284.313-.327.741-.273.893c.021.056.053.071.075.074c.048.007.119-.029.164-.15l.014-.038c.02-.064.057-.184.118-.278a.518.518 0 0 1 .717-.15c.2.131.275.375.19.608c-.044.121-.115.351-.1.54c.032.383.27.537.48.556c.206.007.35-.108.387-.193c.021-.053.003-.084-.008-.096z' fill='black'/%3E%3Cpath d='M19.821 14.397c-.009-.029-.061-.216-.13-.44l-.144-.384c.281-.423.286-.799.249-1.013a1.284 1.284 0 0 0-.372-.724c-.222-.232-.677-.472-1.315-.651l-.335-.093c-.002-.015-.018-.79-.031-1.123c-.011-.24-.031-.616-.148-.986c-.14-.502-.381-.938-.684-1.221c.835-.864 1.355-1.817 1.354-2.634c-.003-1.571-1.933-2.049-4.312-1.063l-.503.214c-.002-.002-.911-.894-.924-.905c-2.714-2.366-11.192 7.06-8.48 9.349l.593.501a2.916 2.916 0 0 0-.166 1.345c.065.631.389 1.234.915 1.701c.5.442 1.159.724 1.796.723c1.055 2.432 3.465 3.922 6.291 4.007c3.032.09 5.576-1.333 6.644-3.889c.069-.179.365-.987.365-1.7c-.001-.718-.406-1.015-.663-1.014zM7.416 16.309a1.38 1.38 0 0 1-.28.021c-.916-.026-1.905-.85-2.003-1.827c-.109-1.08.443-1.912 1.421-2.108c.116-.025.258-.038.41-.031c.548.032 1.354.452 1.539 1.645c.164 1.055-.096 2.132-1.087 2.3zm-1.021-4.562a2.325 2.325 0 0 0-1.473.94c-.197-.164-.562-.48-.626-.604c-.524-.994.571-2.928 1.337-4.02c1.889-2.698 4.851-4.739 6.223-4.371c.222.064.96.921.96.921s-1.37.759-2.642 1.819c-1.711 1.32-3.006 3.236-3.779 5.315zm9.611 4.158a.05.05 0 0 0 .03-.054a.05.05 0 0 0-.056-.045s-1.434.212-2.789-.283c.147-.479.541-.308 1.134-.259a8.287 8.287 0 0 0 2.735-.296c.613-.177 1.419-.524 2.045-1.018c.212.465.286.975.286.975s.163-.029.3.055c.13.08.224.245.16.671c-.133.798-.471 1.445-1.042 2.041a4.259 4.259 0 0 1-1.249.934a5.337 5.337 0 0 1-.814.346c-2.149.701-4.349-.07-5.058-1.727a2.761 2.761 0 0 1-.142-.392c-.302-1.092-.046-2.4.755-3.226v-.001c.051-.052.102-.113.102-.191c0-.064-.042-.133-.077-.183c-.28-.406-1.253-1.099-1.057-2.44c.139-.964.982-1.642 1.768-1.602l.2.012c.34.02.637.063.917.076c.47.019.891-.049 1.391-.465c.169-.142.304-.263.532-.301c.024-.006.084-.025.203-.021a.681.681 0 0 1 .343.109c.4.266.457.912.479 1.385c.012.269.045.922.055 1.108c.026.428.139.489.365.563c.129.044.248.074.423.125c.529.147.845.3 1.043.493a.637.637 0 0 1 .188.372c.065.457-.353 1.021-1.455 1.533c-1.206.559-2.669.701-3.679.588l-.354-.04c-.81-.108-1.269.936-.784 1.651c.313.461 1.164.761 2.017.761c1.953.002 3.455-.832 4.015-1.554l.044-.063c.026-.042.005-.063-.03-.041c-.455.312-2.483 1.552-4.651 1.18c0 0-.264-.044-.504-.138c-.19-.072-.591-.258-.639-.668c1.747.543 2.85.031 2.85.03zm-2.773-.327zM9.886 8.053c.672-.776 1.499-1.452 2.241-1.83c.025-.014.052.015.038.038a2.125 2.125 0 0 0-.208.508c-.006.027.023.049.046.032c.462-.314 1.264-.651 1.968-.693a.03.03 0 0 1 .021.055a1.66 1.66 0 0 0-.31.311c-.014.02-.001.049.024.049c.494.003 1.191.175 1.644.43c.03.018.008.077-.025.069c-.688-.157-1.811-.277-2.979.008c-1.044.254-1.84.646-2.419 1.069c-.03.02-.065-.019-.041-.046z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-markdown { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.553 18.15H3.447a1.443 1.443 0 0 1-1.442-1.441V7.291c0-.795.647-1.441 1.442-1.441h17.105c.795 0 1.442.646 1.442 1.441v9.418a1.441 1.441 0 0 1-1.441 1.441zM6.811 15.268V11.52l1.922 2.402l1.922-2.402v3.748h1.922V8.732h-1.922l-1.922 2.403l-1.922-2.403H4.889v6.535h1.922zM19.688 12h-1.922V8.732h-1.923V12h-1.922l2.884 3.364L19.688 12z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-mastercard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.454 17.021c.048.041.1.082.151.122a6.173 6.173 0 0 1-3.42 1.03A6.17 6.17 0 0 1 2.01 12a6.175 6.175 0 0 1 9.592-5.144c-.05.043-.1.082-.138.126A6.633 6.633 0 0 0 9.166 12c0 1.925.833 3.755 2.288 5.021zm4.361-11.195a6.14 6.14 0 0 0-3.416 1.03c.049.043.099.082.137.126c1.462 1.263 2.299 3.094 2.299 5.018s-.835 3.753-2.288 5.021c-.049.041-.101.082-.151.122a6.162 6.162 0 0 0 3.418 1.03a6.174 6.174 0 1 0 .001-12.347zM12 7.15A6.152 6.152 0 0 0 9.644 12A6.15 6.15 0 0 0 12 16.853A6.157 6.157 0 0 0 14.357 12A6.15 6.15 0 0 0 12 7.15z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-mastodon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 17.24c2.5-.3 4.69-1.84 5-3.25a33.59 33.59 0 0 0 .4-5.42C21.33 4.23 18.48 3 18.48 3A17.64 17.64 0 0 0 12 2a17.64 17.64 0 0 0-6.48 1S2.68 4.23 2.68 8.57v3.44c.1 4.24.78 8.42 4.7 9.46A14.73 14.73 0 0 0 12 22a9.21 9.21 0 0 0 3.54-.81l-.07-1.64A11.41 11.41 0 0 1 12 20c-1.8-.06-3.71-.19-4-2.4a4.26 4.26 0 0 1 0-.63a22.68 22.68 0 0 0 4 .54a23.6 23.6 0 0 0 4-.27zm-6.54-9.8q-1.35 0-1.35 1.62v5.1H6V8.9a3.78 3.78 0 0 1 .82-2.56a2.85 2.85 0 0 1 2.23-1a2.68 2.68 0 0 1 2.4 1.23l.52.87l.52-.87a2.68 2.68 0 0 1 2.4-1.23a2.85 2.85 0 0 1 2.23 1A3.78 3.78 0 0 1 18 8.9v5.26h-2.11v-5.1q0-1.62-1.35-1.62c-1 0-1.51.64-1.51 1.92v2.79H11V9.36c0-1.28-.54-1.92-1.54-1.92z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-medium { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.285 7.269a.733.733 0 0 0-.24-.619l-1.77-2.133v-.32h5.498l4.25 9.32l3.736-9.32H21v.319l-1.515 1.451a.45.45 0 0 0-.168.425v10.666a.448.448 0 0 0 .168.425l1.479 1.451v.319h-7.436v-.319l1.529-1.487c.152-.15.152-.195.152-.424V8.401L10.95 19.218h-.575L5.417 8.401v7.249c-.041.305.06.612.275.833L7.684 18.9v.319H2.036V18.9l1.992-2.417a.971.971 0 0 0 .257-.833V7.269z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-medium-old { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.957 6.73a.073.073 0 0 0-.019-.097c-.004-.004-.008-.008-.012-.01l-.006-.002l-6.033-3.018a.729.729 0 0 0-.292-.067a.692.692 0 0 0-.586.317l-3.474 5.646l4.359 7.083l6.063-9.852zm-1.064 13.543c.611.306 1.107.092 1.107-.478V8.483l-5.809 9.439l4.702 2.351zM9.622 8.213v6.426l5.711 2.855zm-7.068 9.558l5.19 2.595a.845.845 0 0 0 .374.098c.323 0 .549-.25.549-.669V6.701a.067.067 0 0 0-.035-.059L2.739 3.697a.669.669 0 0 0-.3-.079c-.258 0-.439.199-.439.534v12.723c0 .341.25.744.554.896z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-medium-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-2.046 4.265l-.966.925a.28.28 0 0 0-.106.271v6.801a.28.28 0 0 0 .106.271l.942.926v.204h-4.741v-.204l.977-.948c.097-.096.097-.125.097-.271V9.742l-2.716 6.896h-.368L8.018 9.742v4.622a.644.644 0 0 0 .176.531l1.271 1.541v.203H5.861v-.203l1.271-1.541a.618.618 0 0 0 .164-.531V9.02a.468.468 0 0 0-.152-.395l-1.13-1.36v-.203H9.52l2.71 5.943l2.382-5.943h3.343v.203z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-messenger { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 3c-4.92 0-8.91 3.729-8.91 8.332c0 2.616 1.291 4.952 3.311 6.479V21l3.041-1.687c.811.228 1.668.35 2.559.35c4.92 0 8.91-3.73 8.91-8.331C20.91 6.729 16.92 3 12 3zm.938 11.172l-2.305-2.394l-4.438 2.454l4.865-5.163l2.305 2.395l4.439-2.455l-4.866 5.163z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-meta { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.26 7.8a4.82 4.82 0 0 0-3.93-2.44a3.91 3.91 0 0 0-2.54 1.09a10.58 10.58 0 0 0-1.52 1.71a11 11 0 0 0-1.63-1.72a4.39 4.39 0 0 0-2.88-1.08A5 5 0 0 0 3.7 8A11.49 11.49 0 0 0 2 14a7 7 0 0 0 .18 1.64A4.44 4.44 0 0 0 2.71 17a3.23 3.23 0 0 0 3 1.6c1.25 0 2.19-.56 3.3-2a26.4 26.4 0 0 0 2.21-3.6l.63-1.12c.06-.09.11-.18.16-.27l.15.25l1.79 3A14.77 14.77 0 0 0 16 17.63a3.38 3.38 0 0 0 2.55 1a3 3 0 0 0 2.54-1.23a2.2 2.2 0 0 0 .18-.28a4.1 4.1 0 0 0 .31-.63l.12-.35A6.53 6.53 0 0 0 22 15a9 9 0 0 0 0-1a11.15 11.15 0 0 0-1.74-6.2zm-10.12 3.56c-.64 1-1.57 2.51-2.37 3.61c-1 1.37-1.51 1.51-2.07 1.51a1.29 1.29 0 0 1-1.15-.66a3.3 3.3 0 0 1-.39-1.7A9.74 9.74 0 0 1 5.54 9a2.8 2.8 0 0 1 2.19-1.47A3 3 0 0 1 10 8.74a14.07 14.07 0 0 1 1 1.31zm8.42 5.12c-.48 0-.85-.19-1.38-.83A34.87 34.87 0 0 1 14.82 12l-.52-.86c-.36-.61-.71-1.16-1-1.65a2.46 2.46 0 0 1 .17-.27c.94-1.39 1.77-2.17 2.8-2.17a3.12 3.12 0 0 1 2.49 1.66a10.17 10.17 0 0 1 1.37 5.34c-.04 1.31-.34 2.43-1.57 2.43z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-microsoft { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.55 21H3v-8.55h8.55V21zM21 21h-8.55v-8.55H21V21zm-9.45-9.45H3V3h8.55v8.55zm9.45 0h-8.55V3H21v8.55z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-microsoft-teams { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='20.288' cy='8.344' r='1.707' fill='black'/%3E%3Cpath d='M18.581 11.513h3.413v3.656c0 .942-.765 1.706-1.707 1.706h-1.706v-5.362zM2.006 4.2v15.6l11.213 1.979V2.221L2.006 4.2zm8.288 5.411l-1.95.049v5.752H6.881V9.757l-1.949.098V8.539l5.362-.292v1.364zm3.899.439v8.288h1.95c.808 0 1.463-.655 1.463-1.462V10.05h-3.413zm1.463-4.875c-.586 0-1.105.264-1.463.673v2.555c.357.409.877.673 1.463.673a1.95 1.95 0 0 0 0-3.901z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-netlify { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.13 9.68L22 11.8v-.11c-.07-.24-.28-.45-.7-.87l-2-2l-2.07.87z' fill='black'/%3E%3Cpath d='M12.2 7.24a1.31 1.31 0 0 1 .16.47l3 1.29a1.11 1.11 0 0 1 .29-.14l.48-3l-2-2l-1.95 3.3s0 .05.02.08z' fill='black'/%3E%3Cpath d='M10.61 7a1.1 1.1 0 0 1 1-.2h.05l2.16-3.34l-.66-.66c-.42-.42-.63-.63-.87-.7a1 1 0 0 0-.63 0c-.24.07-.45.28-.87.7l-3 3c.31.14 2.5 1.06 2.78 1.19z' fill='black'/%3E%3Cpath d='M7.49 12.29h.27a1.45 1.45 0 0 1 .29 0l2.38-3.68v-.06a1 1 0 0 1-.27-.95L9 7l-1.7-.73L5 8.61l2.51 3.66z' fill='black'/%3E%3Cpath d='M15.11 9.85v-.08a.59.59 0 0 1 0-.14l-2.86-1.27h-.05a1.05 1.05 0 0 1-.88.47h-.17s-.05 0-.06.05L8.73 12.5v.05l6.33-2.7s.05.02.05 0z' fill='black'/%3E%3Cpath d='M16.47 8.94a.83.83 0 0 1 .26.19l2-.84l-1.89-1.87l-.4 2.47z' fill='black'/%3E%3Cpath d='M14.18 14.48A.91.91 0 0 1 15 14v-.05l.54-3.37l-.09-.08L9 13.15a2.76 2.76 0 0 1 .08.27z' fill='black'/%3E%3Cpath d='M2 11.95z' fill='black'/%3E%3Cpath d='M14.14 15.13L8.92 14v.06L13.47 21l.42-.43c.15-.92.71-4.33.78-4.72a.9.9 0 0 1-.53-.72z' fill='black'/%3E%3Cpath d='M15.79 15.45a.88.88 0 0 1-.36.27l-.64 3.94L18.43 16z' fill='black'/%3E%3Cpath d='M16.86 10.32a.07.07 0 0 0-.06 0a.92.92 0 0 1-.61.34v.06l-.55 3.4a.88.88 0 0 1 .34.62h.06l2.95.61l2.28-2.28a4.22 4.22 0 0 0 .65-.74z' fill='black'/%3E%3Cpath d='M8.3 14.59a1.27 1.27 0 0 1-.86 0l-1.22 1.9l4.69 4.68a2.68 2.68 0 0 0 .87.71a1 1 0 0 0 .63 0a1.86 1.86 0 0 0 .7-.54l-4.69-6.8z' fill='black'/%3E%3Cpath d='M13.01 21.41z' fill='black'/%3E%3Cpath d='M6.39 13.59s.06 0 .06-.05s0 0-.06 0l-4.14-.86a7.07 7.07 0 0 0 .51.54l1.36 1.36l2.27-1z' fill='black'/%3E%3Cpath d='M6.67 12.93a1.05 1.05 0 0 1 .2-.27v-.06C6.1 11.4 5.3 10.24 4.5 9.07l-1.75 1.75c-.42.42-.63.63-.7.87A.75.75 0 0 0 2 12l4.67 1z' fill='black'/%3E%3Cpath d='M6.84 14.26a.61.61 0 0 1-.07-.1L4.59 15l1.08 1.1l1.17-1.82s.01-.02 0-.02z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-nodejs { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 21.985c-.275 0-.532-.074-.772-.202l-2.439-1.448c-.365-.203-.182-.277-.072-.314c.496-.165.588-.201 1.101-.493c.056-.037.129-.02.185.017l1.87 1.12c.074.036.166.036.221 0l7.319-4.237c.074-.036.11-.11.11-.202V7.768c0-.091-.036-.165-.11-.201l-7.319-4.219c-.073-.037-.165-.037-.221 0L4.552 7.566c-.073.036-.11.129-.11.201v8.457c0 .073.037.166.11.202l2 1.157c1.082.548 1.762-.095 1.762-.735V8.502c0-.11.091-.221.22-.221h.936c.108 0 .22.092.22.221v8.347c0 1.449-.788 2.294-2.164 2.294c-.422 0-.752 0-1.688-.46l-1.925-1.099a1.55 1.55 0 0 1-.771-1.34V7.786c0-.55.293-1.064.771-1.339l7.316-4.237a1.637 1.637 0 0 1 1.544 0l7.317 4.237c.479.274.771.789.771 1.339v8.458c0 .549-.293 1.063-.771 1.34l-7.317 4.236c-.241.11-.516.165-.773.165zm2.256-5.816c-3.21 0-3.87-1.468-3.87-2.714c0-.11.092-.221.22-.221h.954c.11 0 .201.073.201.184c.147.971.568 1.449 2.514 1.449c1.54 0 2.202-.35 2.202-1.175c0-.477-.185-.825-2.587-1.063c-1.999-.2-3.246-.643-3.246-2.238c0-1.485 1.247-2.366 3.339-2.366c2.347 0 3.503.809 3.649 2.568a.297.297 0 0 1-.056.165c-.037.036-.091.073-.146.073h-.953a.212.212 0 0 1-.202-.164c-.221-1.012-.789-1.34-2.292-1.34c-1.689 0-1.891.587-1.891 1.027c0 .531.237.696 2.514.99c2.256.293 3.32.715 3.32 2.294c-.02 1.615-1.339 2.531-3.67 2.531z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-ok-ru { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.986 12.341c-2.825 0-5.173-2.346-5.173-5.122C6.813 4.347 9.161 2 11.987 2c2.922 0 5.173 2.346 5.173 5.219a5.142 5.142 0 0 1-5.157 5.123l-.017-.001zm0-7.324c-1.196 0-2.106 1.005-2.106 2.203c0 1.196.91 2.106 2.107 2.106c1.245 0 2.107-.91 2.107-2.106c.001-1.199-.862-2.203-2.108-2.203zm2.06 11.586l2.923 2.825c.575.621.575 1.531 0 2.106c-.622.621-1.581.621-2.06 0l-2.922-2.873l-2.826 2.873c-.287.287-.671.43-1.103.43c-.335 0-.718-.144-1.054-.43c-.575-.575-.575-1.485 0-2.107l2.97-2.825a13.49 13.49 0 0 1-3.063-1.339c-.719-.383-.862-1.34-.479-2.059c.479-.718 1.341-.909 2.108-.43a6.62 6.62 0 0 0 6.897 0c.767-.479 1.676-.288 2.107.43c.432.719.239 1.675-.432 2.059c-.909.575-1.963 1.006-3.065 1.341l-.001-.001z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-opera { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.71 6.366C7.604 7.67 6.888 9.602 6.838 11.765v.471c.05 2.165.766 4.094 1.872 5.397c1.434 1.865 3.564 3.046 5.948 3.046a7.218 7.218 0 0 0 4.006-1.225a9.943 9.943 0 0 1-7.139 2.533A9.995 9.995 0 0 1 2 12C2 6.477 6.478 2 12 2h.038a9.971 9.971 0 0 1 6.627 2.545c-1.173-.773-2.543-1.225-4.009-1.225c-2.382 0-4.514 1.184-5.95 3.046h.004zM22 12a9.971 9.971 0 0 1-3.335 7.455c-2.564 1.25-4.954.375-5.747-.172c2.52-.553 4.422-3.6 4.422-7.283c0-3.686-1.901-6.73-4.422-7.283c.792-.545 3.183-1.42 5.747-.172A9.971 9.971 0 0 1 22 12z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-patreon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='14.508' cy='9.831' r='6.496' fill='black'/%3E%3Cpath d='M2.996 3.335H6.17v17.33H2.996z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-paypal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.554 9.488c.121.563.106 1.246-.04 2.051c-.582 2.978-2.477 4.466-5.683 4.466h-.442a.666.666 0 0 0-.444.166a.72.72 0 0 0-.239.427l-.041.189l-.553 3.479l-.021.151a.706.706 0 0 1-.247.426a.666.666 0 0 1-.447.166H8.874a.395.395 0 0 1-.331-.15a.457.457 0 0 1-.09-.363c.061-.373.148-.938.267-1.689c.117-.75.206-1.314.267-1.689s.15-.938.272-1.685c.121-.748.212-1.31.271-1.685c.033-.248.179-.371.433-.371h1.316c.893.013 1.682-.057 2.375-.211c1.172-.262 2.134-.744 2.886-1.449c.685-.637 1.203-1.462 1.56-2.473c.162-.47.277-.917.352-1.338c.006-.041.014-.066.025-.074c.008-.011.022-.014.035-.011a.378.378 0 0 1 .062.035c.524.398.854.941.98 1.632zm-1.728-2.836c0 .717-.154 1.508-.465 2.374c-.537 1.562-1.547 2.618-3.037 3.168c-.758.269-1.602.408-2.535.425c0 .006-.301.007-.904.007l-.903-.007c-.672 0-1.067.32-1.187.964c-.013.053-.298 1.83-.855 5.329c-.008.066-.048.102-.121.102H4.854a.473.473 0 0 1-.369-.165a.469.469 0 0 1-.115-.39L6.702 3.664a.784.784 0 0 1 .276-.483a.785.785 0 0 1 .519-.19h6.014c.228 0 .555.044.979.131c.428.084.801.194 1.123.321c.718.274 1.266.688 1.645 1.237c.379.552.568 1.207.568 1.972z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-periscope { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.102 21c1.406 0 6.985-6.329 6.985-10.571C19.087 6.368 15.915 3 12.102 3c-4.017 0-7.188 3.366-7.188 7.429C4.913 14.67 10.492 21 12.102 21zM10.979 5.885a4.696 4.696 0 0 1 1.143-.139c2.25 0 4.186 1.913 4.186 4.398c0 2.238-1.936 4.151-4.196 4.151c-2.509 0-4.444-1.913-4.444-4.151c0-1.047.338-1.98.922-2.723v.022c0 .934.755 1.676 1.688 1.676c.933.002 1.722-.764 1.722-1.697a1.68 1.68 0 0 0-1.02-1.54l-.001.003z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-php { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.15 16.78h1.57a.14.14 0 0 0 .14-.12l.35-1.82h1.22a4.88 4.88 0 0 0 1.51-.2A2.79 2.79 0 0 0 8 14a3.18 3.18 0 0 0 .67-.85a3.43 3.43 0 0 0 .36-1a2.43 2.43 0 0 0-.41-2.16a2.64 2.64 0 0 0-2.09-.78h-3a.16.16 0 0 0-.15.13L2 16.6a.19.19 0 0 0 0 .13a.17.17 0 0 0 .15.05zM5 10.62h1a1.45 1.45 0 0 1 1.08.29c.17.18.2.52.11 1a1.81 1.81 0 0 1-.57 1.12a2.17 2.17 0 0 1-1.33.33h-.8zm9.8-.95a2.7 2.7 0 0 0-1.88-.51h-1.19l.33-1.76a.15.15 0 0 0 0-.13a.16.16 0 0 0-.11 0h-1.57a.14.14 0 0 0-.14.12l-1.38 7.27a.13.13 0 0 0 0 .12a.13.13 0 0 0 .11.06h1.54a.14.14 0 0 0 .14-.13l.77-4.07h1.11c.45 0 .61.1.66.16a.81.81 0 0 1 0 .62l-.61 3.24a.13.13 0 0 0 0 .12a.14.14 0 0 0 .11.06h1.56a.16.16 0 0 0 .15-.13l.64-3.4a1.7 1.7 0 0 0-.24-1.64zm4.52-.51h-3.13a.14.14 0 0 0-.15.13l-1.46 7.31a.16.16 0 0 0 0 .13a.14.14 0 0 0 .11.05h1.63a.14.14 0 0 0 .15-.12l.37-1.82h1.27a5.28 5.28 0 0 0 1.56-.2a3 3 0 0 0 1.18-.64a3.31 3.31 0 0 0 .7-.85a3.45 3.45 0 0 0 .37-1a2.38 2.38 0 0 0-.42-2.16a2.81 2.81 0 0 0-2.18-.83zm.62 2.77a1.83 1.83 0 0 1-.6 1.12a2.28 2.28 0 0 1-1.37.33h-.8l.54-2.76h1a1.6 1.6 0 0 1 1.13.29c.16.18.16.52.1 1.02z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-pinterest { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.99 2C6.472 2 2 6.473 2 11.99c0 4.232 2.633 7.85 6.35 9.306c-.088-.79-.166-2.006.034-2.868c.182-.78 1.172-4.966 1.172-4.966s-.299-.599-.299-1.484c0-1.388.805-2.425 1.808-2.425c.853 0 1.264.64 1.264 1.407c0 .858-.546 2.139-.827 3.327c-.235.994.499 1.805 1.479 1.805c1.775 0 3.141-1.872 3.141-4.575c0-2.392-1.719-4.064-4.173-4.064c-2.843 0-4.512 2.132-4.512 4.335c0 .858.331 1.779.744 2.28a.3.3 0 0 1 .069.286c-.076.315-.245.994-.277 1.133c-.044.183-.145.222-.335.134c-1.247-.581-2.027-2.405-2.027-3.871c0-3.151 2.289-6.045 6.601-6.045c3.466 0 6.159 2.469 6.159 5.77c0 3.444-2.171 6.213-5.184 6.213c-1.013 0-1.964-.525-2.29-1.146l-.623 2.374c-.225.868-.834 1.956-1.241 2.62a10 10 0 0 0 2.958.445c5.517 0 9.99-4.473 9.99-9.99S17.507 2 11.99 2' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-pinterest-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5.077 9.457c0-.778.136-1.513.404-2.199a5.63 5.63 0 0 1 1.121-1.802a7.614 7.614 0 0 1 1.644-1.329a7.513 7.513 0 0 1 2.002-.844a8.57 8.57 0 0 1 2.185-.281c1.139 0 2.199.241 3.182.721a6.021 6.021 0 0 1 2.391 2.094c.614.915.919 1.95.919 3.104c0 .692-.068 1.369-.207 2.031a8.28 8.28 0 0 1-.646 1.913a6.605 6.605 0 0 1-1.082 1.617a4.723 4.723 0 0 1-1.568 1.114a4.962 4.962 0 0 1-2.045.417c-.489 0-.977-.115-1.459-.346c-.482-.23-.828-.546-1.036-.951c-.073.281-.173.687-.306 1.218c-.128.53-.214.872-.252 1.027c-.04.154-.114.411-.222.767a5.183 5.183 0 0 1-.281.769l-.344.674a7.98 7.98 0 0 1-.498.838c-.181.262-.405.575-.672.935l-.149.053l-.099-.108c-.107-1.133-.162-1.811-.162-2.035c0-.663.079-1.407.235-2.233c.153-.825.395-1.862.72-3.109c.325-1.246.511-1.979.561-2.196c-.229-.467-.345-1.077-.345-1.827c0-.599.187-1.16.562-1.688c.376-.526.851-.789 1.427-.789c.441 0 .783.146 1.028.439c.246.292.366.66.366 1.109c0 .476-.158 1.165-.476 2.066c-.318.902-.476 1.575-.476 2.022c0 .453.162.832.486 1.129a1.68 1.68 0 0 0 1.179.449c.396 0 .763-.09 1.104-.271a2.46 2.46 0 0 0 .849-.733a6.123 6.123 0 0 0 1.017-2.225c.096-.422.17-.823.216-1.2c.049-.379.07-.737.07-1.077c0-1.247-.396-2.219-1.183-2.915c-.791-.696-1.821-1.042-3.088-1.042c-1.441 0-2.646.466-3.611 1.401c-.966.932-1.452 2.117-1.452 3.554c0 .317.048.623.139.919c.089.295.186.53.291.704c.104.171.202.338.291.492c.09.154.137.264.137.33c0 .202-.053.465-.16.79c-.111.325-.242.487-.4.487c-.015 0-.077-.011-.185-.034a2.21 2.21 0 0 1-.979-.605a3.17 3.17 0 0 1-.659-1.022a6.986 6.986 0 0 1-.352-1.169a4.884 4.884 0 0 1-.132-1.153z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-play-store { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.954 11.616l2.957-2.957L6.36 3.291c-.633-.342-1.226-.39-1.746-.016l8.34 8.341zm3.461 3.462l3.074-1.729c.6-.336.929-.812.929-1.34c0-.527-.329-1.004-.928-1.34l-2.783-1.563l-3.133 3.132l2.841 2.84zM4.1 4.002c-.064.197-.1.417-.1.658v14.705c0 .381.084.709.236.97l8.097-8.098L4.1 4.002zm8.854 8.855L4.902 20.91c.154.059.32.09.495.09c.312 0 .637-.092.968-.276l9.255-5.197l-2.666-2.67z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-pocket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.327 3.983H4.746c-.947 0-1.736.726-1.736 1.673v5.396c0 4.892 4.04 8.964 9.026 8.964c4.955 0 8.964-4.072 8.964-8.964V5.656c0-.947-.758-1.673-1.673-1.673zm-2.178 6.691l-4.293 4.04c-.221.253-.567.348-.82.348c-.315 0-.631-.095-.884-.348l-4.229-4.04c-.441-.473-.504-1.262 0-1.768c.475-.441 1.263-.504 1.736 0l3.377 3.251l3.44-3.251c.441-.504 1.23-.441 1.673 0c.442.506.442 1.295 0 1.768z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-product-hunt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.337 9h-2.838v3h2.838a1.501 1.501 0 1 0 0-3z' fill='black'/%3E%3Cpath d='M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10s10-4.477 10-10S17.523 2 12 2zm1.337 12h-2.838v3H8.501V7h4.837a3.498 3.498 0 0 1 3.499 3.499a3.499 3.499 0 0 1-3.5 3.501z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-python { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9.585 11.692h4.328s2.432.039 2.432-2.35V5.391S16.714 3 11.936 3C7.362 3 7.647 4.983 7.647 4.983l.006 2.055h4.363v.617H5.92s-2.927-.332-2.927 4.282s2.555 4.45 2.555 4.45h1.524v-2.141s-.083-2.554 2.513-2.554zm-.056-5.74a.784.784 0 1 1 0-1.57a.784.784 0 1 1 0 1.57z' fill='black'/%3E%3Cpath d='M18.452 7.532h-1.524v2.141s.083 2.554-2.513 2.554h-4.328s-2.432-.04-2.432 2.35v3.951s-.369 2.391 4.409 2.391c4.573 0 4.288-1.983 4.288-1.983l-.006-2.054h-4.363v-.617h6.097s2.927.332 2.927-4.282s-2.555-4.451-2.555-4.451zm-3.981 10.436a.784.784 0 1 1 0 1.57a.784.784 0 1 1 0-1.57z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-quora { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.555 17.025c-.624-1.227-1.354-2.465-2.781-2.465c-.271 0-.546.046-.795.157l-.484-.967c.59-.509 1.544-.911 2.77-.911c1.908 0 2.889.922 3.667 2.094c.459-1.001.678-2.354.678-4.03c0-4.188-1.308-6.336-4.366-6.336c-3.014 0-4.318 2.148-4.318 6.336c0 4.164 1.305 6.291 4.318 6.291c.478 0 .913-.051 1.311-.169zm.747 1.461a7.977 7.977 0 0 1-2.059.274c-4.014 0-7.941-3.202-7.941-7.858C3.303 6.203 7.229 3 11.243 3c4.081 0 7.972 3.179 7.972 7.903c0 2.628-1.226 4.763-3.007 6.143c.572.861 1.157 1.436 1.988 1.436c.899 0 1.261-.687 1.328-1.236h1.167c.07.73-.301 3.754-3.574 3.754c-1.989 0-3.035-1.146-3.822-2.496l.007-.018z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-react { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='11.245' r='1.785' fill='black'/%3E%3Cpath d='M7.002 14.794l-.395-.101c-2.934-.741-4.617-2.001-4.617-3.452c0-1.452 1.684-2.711 4.617-3.452l.395-.1l.111.391a19.507 19.507 0 0 0 1.136 2.983l.085.178l-.085.178c-.46.963-.841 1.961-1.136 2.985l-.111.39zm-.577-6.095c-2.229.628-3.598 1.586-3.598 2.542c0 .954 1.368 1.913 3.598 2.54c.273-.868.603-1.717.985-2.54a20.356 20.356 0 0 1-.985-2.542zm10.572 6.095l-.11-.392a19.628 19.628 0 0 0-1.137-2.984l-.085-.177l.085-.179c.46-.961.839-1.96 1.137-2.984l.11-.39l.395.1c2.935.741 4.617 2 4.617 3.453c0 1.452-1.683 2.711-4.617 3.452l-.395.101zm-.41-3.553c.4.866.733 1.718.987 2.54c2.23-.627 3.599-1.586 3.599-2.54c0-.956-1.368-1.913-3.599-2.542a20.683 20.683 0 0 1-.987 2.542z' fill='black'/%3E%3Cpath d='M6.419 8.695l-.11-.39c-.826-2.908-.576-4.991.687-5.717c1.235-.715 3.222.13 5.303 2.265l.284.292l-.284.291a19.718 19.718 0 0 0-2.02 2.474l-.113.162l-.196.016a19.646 19.646 0 0 0-3.157.509l-.394.098zm1.582-5.529c-.224 0-.422.049-.589.145c-.828.477-.974 2.138-.404 4.38c.891-.197 1.79-.338 2.696-.417a21.058 21.058 0 0 1 1.713-2.123c-1.303-1.267-2.533-1.985-3.416-1.985zm7.997 16.984c-1.188 0-2.714-.896-4.298-2.522l-.283-.291l.283-.29a19.827 19.827 0 0 0 2.021-2.477l.112-.16l.194-.019a19.473 19.473 0 0 0 3.158-.507l.395-.1l.111.391c.822 2.906.573 4.992-.688 5.718a1.978 1.978 0 0 1-1.005.257zm-3.415-2.82c1.302 1.267 2.533 1.986 3.415 1.986c.225 0 .423-.05.589-.145c.829-.478.976-2.142.404-4.384c-.89.198-1.79.34-2.698.419a20.526 20.526 0 0 1-1.71 2.124z' fill='black'/%3E%3Cpath d='M17.58 8.695l-.395-.099a19.477 19.477 0 0 0-3.158-.509l-.194-.017l-.112-.162A19.551 19.551 0 0 0 11.7 5.434l-.283-.291l.283-.29c2.08-2.134 4.066-2.979 5.303-2.265c1.262.727 1.513 2.81.688 5.717l-.111.39zm-3.287-1.421c.954.085 1.858.228 2.698.417c.571-2.242.425-3.903-.404-4.381c-.824-.477-2.375.253-4.004 1.841c.616.67 1.188 1.378 1.71 2.123zM8.001 20.15a1.983 1.983 0 0 1-1.005-.257c-1.263-.726-1.513-2.811-.688-5.718l.108-.391l.395.1c.964.243 2.026.414 3.158.507l.194.019l.113.16c.604.878 1.28 1.707 2.02 2.477l.284.29l-.284.291c-1.583 1.627-3.109 2.522-4.295 2.522zm-.993-5.362c-.57 2.242-.424 3.906.404 4.384c.825.47 2.371-.255 4.005-1.842a21.17 21.17 0 0 1-1.713-2.123a20.692 20.692 0 0 1-2.696-.419z' fill='black'/%3E%3Cpath d='M12 15.313c-.687 0-1.392-.029-2.1-.088l-.196-.017l-.113-.162a25.697 25.697 0 0 1-1.126-1.769a26.028 26.028 0 0 1-.971-1.859l-.084-.177l.084-.179c.299-.632.622-1.252.971-1.858c.347-.596.726-1.192 1.126-1.77l.113-.16l.196-.018a25.148 25.148 0 0 1 4.198 0l.194.019l.113.16a25.136 25.136 0 0 1 2.1 3.628l.083.179l-.083.177a24.742 24.742 0 0 1-2.1 3.628l-.113.162l-.194.017c-.706.057-1.412.087-2.098.087zm-1.834-.904c1.235.093 2.433.093 3.667 0a24.469 24.469 0 0 0 1.832-3.168a23.916 23.916 0 0 0-1.832-3.168a23.877 23.877 0 0 0-3.667 0a23.743 23.743 0 0 0-1.832 3.168a24.82 24.82 0 0 0 1.832 3.168z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-redbubble { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.002 2.005L12 2.004c-5.52 0-9.996 4.475-9.996 9.995c0 5.521 4.477 9.998 9.996 9.998c5.521 0 9.996-4.475 9.996-9.997c0-5.52-4.475-9.995-9.994-9.995zm.162 13.53a.267.267 0 0 1-.174.066v.001H6.455a.268.268 0 0 1-.266-.268V8.646c0-.148.119-.268.266-.268h2.589c1.612 0 2.576.87 2.576 2.327c0 .969-.486 1.729-1.272 2.039l1.842 2.413a.269.269 0 0 1-.026.378zm3.695.068h-2.665a.268.268 0 0 1-.266-.269V8.646c0-.148.119-.267.266-.267h2.472c1.853 0 2.242 1.091 2.242 2.007c0 .529-.141.949-.421 1.258c.681.28 1.047.913 1.047 1.827c0 1.335-1.001 2.132-2.675 2.132z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-reddit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='9.67' cy='13' r='1.001' fill='black'/%3E%3Cpath d='M14.09 15.391A3.28 3.28 0 0 1 12 16a3.271 3.271 0 0 1-2.081-.63a.27.27 0 0 0-.379.38c.71.535 1.582.809 2.471.77a3.811 3.811 0 0 0 2.469-.77v.04a.284.284 0 0 0 .006-.396a.28.28 0 0 0-.396-.003zm.209-3.351a1 1 0 0 0 0 2l-.008.039c.016.002.033 0 .051 0a1 1 0 0 0 .958-1.038a1 1 0 0 0-1.001-1.001z' fill='black'/%3E%3Cpath d='M12 2C6.479 2 2 6.477 2 12c0 5.521 4.479 10 10 10s10-4.479 10-10c0-5.523-4.479-10-10-10zm5.859 11.33c.012.146.012.293 0 .439c0 2.24-2.609 4.062-5.83 4.062s-5.83-1.82-5.83-4.062a2.681 2.681 0 0 1 0-.439a1.46 1.46 0 0 1-.455-2.327a1.458 1.458 0 0 1 2.063-.063a7.145 7.145 0 0 1 3.899-1.23l.743-3.47v-.004A.313.313 0 0 1 12.82 6l2.449.49a1.001 1.001 0 1 1-.131.61L13 6.65l-.649 3.12a7.123 7.123 0 0 1 3.85 1.23a1.46 1.46 0 0 1 2.469 1c.01.563-.307 1.08-.811 1.33z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-redux { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.661 15.549a1.315 1.315 0 0 0 1.185-1.386a1.363 1.363 0 0 0-1.35-1.302h-.048a1.352 1.352 0 0 0-1.303 1.397c.024.379.179.687.391.911c-.827 1.609-2.07 2.794-3.954 3.788c-1.266.663-2.604.912-3.905.734c-1.089-.153-1.94-.64-2.463-1.421c-.78-1.185-.852-2.462-.201-3.74a5.597 5.597 0 0 1 1.658-1.931a7.88 7.88 0 0 1-.331-1.218c-3.506 2.51-3.148 5.942-2.084 7.564c.794 1.184 2.415 1.941 4.19 1.941c.474 0 .972-.035 1.457-.154c3.077-.592 5.409-2.438 6.747-5.16l.011-.023z' fill='black'/%3E%3Cpath d='M19.887 12.589c-1.834-2.154-4.533-3.337-7.611-3.337h-.403c-.2-.438-.661-.711-1.183-.711h-.036c-.744 0-1.325.64-1.301 1.385c.023.71.627 1.302 1.35 1.302h.059a1.332 1.332 0 0 0 1.183-.828h.439c1.824 0 3.551.532 5.126 1.574c1.206.792 2.072 1.834 2.557 3.077c.425 1.019.402 2.013-.035 2.843c-.675 1.302-1.812 1.988-3.314 1.988c-.947 0-1.871-.296-2.345-.509c-.283.235-.758.626-1.102.863c1.042.473 2.096.746 3.113.746c2.309 0 4.023-1.302 4.676-2.557c.709-1.422.651-3.813-1.161-5.859l-.012.023z' fill='black'/%3E%3Cpath d='M7.647 15.975c.023.71.626 1.302 1.35 1.302h.048a1.334 1.334 0 0 0 1.302-1.397c0-.71-.616-1.301-1.338-1.301h-.048c-.048 0-.118 0-.178.022c-.982-1.657-1.397-3.434-1.242-5.349c.094-1.445.567-2.7 1.42-3.742c.71-.888 2.048-1.326 2.96-1.35c2.556-.048 3.622 3.138 3.704 4.404l1.184.354C16.536 5.036 14.122 3 11.813 3C9.647 3 7.647 4.574 6.842 6.884c-1.102 3.077-.379 6.036.971 8.404c-.118.154-.189.426-.166.687z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-sass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2c5.522 0 10 4.478 10 10s-4.478 10-10 10S2 17.522 2 12S6.478 2 12 2zm-1.987 13.332c.146.537.13 1.039-.021 1.493l-.054.15a2.803 2.803 0 0 1-.527.821c-.582.633-1.394.872-1.742.671c-.375-.219-.188-1.112.487-1.825c.726-.765 1.766-1.258 1.766-1.258v-.002l.091-.05zm8.258-9.051c-.452-1.777-3.397-2.362-6.185-1.371c-1.656.589-3.453 1.515-4.743 2.723c-1.536 1.434-1.78 2.684-1.68 3.206c.355 1.843 2.881 3.048 3.92 3.942v.005c-.307.149-2.548 1.274-3.072 2.438c-.563 1.225.088 2.101.513 2.212c1.313.363 2.662-.3 3.388-1.374c.699-1.051.638-2.4.337-3.063c.413-.112.899-.162 1.524-.086c1.751.199 2.101 1.3 2.024 1.75c-.074.449-.436.711-.561.786c-.126.076-.163.101-.151.151c.013.074.076.074.175.063c.138-.025.914-.375.951-1.227c.037-1.074-.988-2.273-2.813-2.25c-.75.014-1.226.076-1.563.214a.295.295 0 0 0-.088-.088c-1.125-1.213-3.213-2.063-3.125-3.675c.025-.588.237-2.137 4-4.012c3.088-1.538 5.551-1.112 5.977-.175c.61 1.336-1.314 3.825-4.526 4.187c-1.225.138-1.862-.337-2.026-.513c-.174-.188-.198-.2-.261-.161c-.101.05-.038.212 0 .313c.1.249.487.688 1.163.912c.587.188 2.024.299 3.75-.375c1.937-.749 3.449-2.838 3.012-4.588l.06.056z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-shopify { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14.49 20.937l5.381-1.166S17.93 6.633 17.914 6.546c-.016-.086-.086-.144-.158-.144s-1.439-.101-1.439-.101s-.949-.949-1.064-1.05c-.027-.029-.057-.043-.086-.058l-.677 15.744zm.446-15.772c-.016 0-.043.014-.057.014c-.016 0-.217.059-.533.158c-.318-.919-.879-1.768-1.871-1.768h-.086c-.289-.361-.633-.519-.936-.519c-2.316 0-3.426 2.892-3.77 4.359c-.892.275-1.538.476-1.613.505c-.504.158-.517.172-.574.648c-.057.344-1.367 10.489-1.367 10.489l10.117 1.899l.69-15.785zm-2.635.704v.102c-.559.173-1.178.36-1.783.547c.346-1.323.992-1.972 1.553-2.217c.146.375.23.878.23 1.568zm-.92-2.2c.1 0 .201.028.303.102c-.732.344-1.539 1.222-1.871 2.978a59.11 59.11 0 0 1-1.411.432c.389-1.339 1.325-3.512 2.979-3.512zm.402 7.812s-.604-.315-1.322-.315c-1.08 0-1.123.676-1.123.849c0 .921 2.418 1.28 2.418 3.453c0 1.712-1.08 2.806-2.547 2.806c-1.756 0-2.648-1.094-2.648-1.094l.475-1.554s.922.792 1.697.792a.693.693 0 0 0 .721-.69c0-1.209-1.986-1.268-1.986-3.252c0-1.669 1.195-3.295 3.627-3.295c.936 0 1.395.272 1.395.272l-.707 2.028zm.922-7.281c.518.06.85.648 1.064 1.311c-.258.087-.547.173-.863.273v-.187c0-.561-.072-1.022-.201-1.397z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-sketch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.42 9.87L12 20.78l5.58-10.91H6.42zM5.9 4.01L2 9.24h3.62l.28-5.23zm6.1-.59L6.63 9.24h10.74L12 3.42zM2.04 9.87l9.09 10.58L5.72 9.87H2.04zM11.53 3h-.15l-4.84.51a.09.09 0 0 1 0 .05l-.27 5.15zm1.34 17.45l9.09-10.58h-3.68l-5.41 10.58zm4.58-16.87a.09.09 0 0 1 0-.05l-4-.42l-1-.11l5.26 5.71zm.65.43l.28 5.23H22l-2.22-2.98l-1.68-2.25z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-skype { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.857 17.417c-2.947 0-4.294-1.524-4.294-2.641c0-.266.108-.521.298-.705a.946.946 0 0 1 .71-.264c1.261 0 .931 1.92 3.286 1.92c1.203 0 1.91-.736 1.91-1.425c0-.415-.234-.889-1.028-1.079l-2.629-.673c-2.111-.545-2.479-1.737-2.479-2.842c0-2.293 2.068-3.124 4.036-3.124c1.814 0 3.97 1.016 3.97 2.391c0 .592-.488.91-1.055.91c-1.078 0-.897-1.536-3.063-1.536c-1.077 0-1.645.513-1.645 1.23s.839.96 1.574 1.123l1.941.445c2.126.486 2.691 1.751 2.691 2.963c0 1.865-1.423 3.305-4.226 3.305m8.139-3.942c.086-.49.128-.986.128-1.482a8.472 8.472 0 0 0-2.952-6.474a8.211 8.211 0 0 0-6.788-1.856A4.818 4.818 0 0 0 7.935 3a4.954 4.954 0 0 0-4.27 2.519a5.103 5.103 0 0 0-.015 5.011a8.51 8.51 0 0 0 2.282 7.453a8.23 8.23 0 0 0 7.333 2.355a4.823 4.823 0 0 0 2.443.662a4.954 4.954 0 0 0 4.269-2.518a5.095 5.095 0 0 0 .016-5.009' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-slack { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.194 14.644c0 1.16-.943 2.107-2.103 2.107a2.11 2.11 0 0 1-2.104-2.107a2.11 2.11 0 0 1 2.104-2.106h2.103v2.106zm1.061 0c0-1.16.944-2.106 2.104-2.106a2.11 2.11 0 0 1 2.103 2.106v5.274a2.11 2.11 0 0 1-2.103 2.106a2.108 2.108 0 0 1-2.104-2.106v-5.274zm2.104-8.455c-1.16 0-2.104-.948-2.104-2.107s.944-2.106 2.104-2.106a2.11 2.11 0 0 1 2.103 2.106v2.107H9.359zm0 1.06a2.11 2.11 0 0 1 2.103 2.107a2.11 2.11 0 0 1-2.103 2.106H4.092a2.11 2.11 0 0 1-2.104-2.106a2.11 2.11 0 0 1 2.104-2.107h5.267zm8.447 2.107c0-1.16.943-2.107 2.103-2.107a2.11 2.11 0 0 1 2.104 2.107a2.11 2.11 0 0 1-2.104 2.106h-2.103V9.356zm-1.061 0c0 1.16-.944 2.106-2.104 2.106a2.11 2.11 0 0 1-2.103-2.106V4.082a2.11 2.11 0 0 1 2.103-2.106c1.16 0 2.104.946 2.104 2.106v5.274zm-2.104 8.455c1.16 0 2.104.948 2.104 2.107s-.944 2.106-2.104 2.106a2.11 2.11 0 0 1-2.103-2.106v-2.107h2.103zm0-1.06a2.11 2.11 0 0 1-2.103-2.107a2.11 2.11 0 0 1 2.103-2.106h5.268a2.11 2.11 0 0 1 2.104 2.106a2.11 2.11 0 0 1-2.104 2.107h-5.268z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-slack-old { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.935 12.646a1.617 1.617 0 0 0-2.022-1.034l-1.632.532c-.355-1.099-.735-2.268-1.092-3.365l.006-.002l-.004-.008l1.613-.523a1.62 1.62 0 0 0 1.035-2.023a1.62 1.62 0 0 0-2.025-1.034l-1.621.527l-.519-1.604a1.619 1.619 0 0 0-2.024-1.034a1.618 1.618 0 0 0-1.033 2.024l.522 1.609l-3.368 1.092l-.524-1.611a1.618 1.618 0 0 0-2.022-1.034a1.617 1.617 0 0 0-1.034 2.023l.524 1.616l-1.662.541a1.602 1.602 0 0 0-.988 1.95c.25.856 1.152 1.373 1.979 1.092c.006 0 .658-.209 1.665-.536l1.099 3.386h-.002v.002l-1.67.545a1.599 1.599 0 0 0-.987 1.949c.25.857 1.15 1.374 1.979 1.093c.007 0 .659-.211 1.665-.538l.003.005a.024.024 0 0 0 .008-.002l.539 1.657a1.6 1.6 0 0 0 1.949.989c.857-.25 1.373-1.151 1.094-1.979c0-.006-.209-.654-.533-1.654l-.003-.009c1.104-.358 2.276-.739 3.376-1.098l.543 1.668a1.602 1.602 0 0 0 1.949.989c.856-.251 1.374-1.152 1.092-1.979c0-.007-.209-.659-.535-1.663l.019-.006l-.003-.007l1.609-.522a1.62 1.62 0 0 0 1.035-2.024zM10.86 14.238l-1.097-3.377a.02.02 0 0 0 .005-.001v-.006c1.098-.356 2.268-.735 3.363-1.092l1.098 3.377l-3.369 1.099z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-snapchat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.166 3c.796 0 3.495.223 4.769 3.073c.426.959.324 2.589.24 3.898l-.002.047c-.011.146-.018.278-.024.41a.62.62 0 0 0 .322.072c.241-.013.53-.096.831-.241a.81.81 0 0 1 .373-.084c.146 0 .289.023.409.072c.361.12.59.385.59.674c.013.361-.313.675-.975.939c-.071.023-.169.061-.276.096c-.363.109-.917.289-1.073.651c-.072.181-.049.421.098.697l.012.013c.048.109 1.228 2.795 3.854 3.229a.401.401 0 0 1 .337.409c0 .06-.013.119-.036.181c-.193.457-1.023.795-2.53 1.021c-.047.073-.096.302-.132.459c-.022.144-.06.289-.107.444c-.061.218-.217.325-.446.325h-.024a2.45 2.45 0 0 1-.433-.059a4.799 4.799 0 0 0-1.024-.108c-.24 0-.48.012-.732.06c-.483.084-.904.373-1.386.71c-.687.481-1.469 1.036-2.649 1.036c-.048 0-.096-.012-.146-.012h-.119c-1.181 0-1.951-.543-2.637-1.036c-.481-.338-.89-.626-1.373-.711a5.507 5.507 0 0 0-.745-.06c-.435 0-.771.072-1.023.12c-.17.035-.314.059-.435.059a.45.45 0 0 1-.47-.337c-.048-.154-.071-.313-.107-.456c-.038-.146-.085-.396-.133-.458c-1.543-.179-2.373-.517-2.565-.986a.473.473 0 0 1-.044-.181a.398.398 0 0 1 .337-.409c2.625-.434 3.805-3.119 3.854-3.232l.013-.023c.145-.277.18-.52.096-.699c-.156-.349-.711-.529-1.07-.65a1.759 1.759 0 0 1-.279-.096c-.89-.35-1.011-.748-.962-1.024c.072-.384.541-.637.939-.637c.117 0 .217.023.308.06c.337.155.635.241.888.241a.742.742 0 0 0 .373-.085l-.041-.458c-.08-1.307-.182-2.935.247-3.889c1.236-2.836 3.929-3.054 4.724-3.054L12.117 3h.049z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-soundcloud { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.971 12.188c-.041 0-.078.038-.083.082l-.194 1.797l.194 1.756c.005.049.042.082.083.082s.075-.033.084-.082l.211-1.756l-.225-1.797c0-.046-.037-.082-.074-.082m-.75.691c-.051 0-.076.03-.088.079l-.138 1.109l.138 1.092c0 .046.037.078.075.078c.039 0 .073-.038.087-.087l.176-1.1l-.176-1.112c0-.051-.037-.076-.075-.076m1.526-1.025c-.052 0-.1.039-.1.087l-.176 2.139l.188 2.051c0 .049.037.1.099.1c.052 0 .089-.051.102-.1l.211-2.064l-.211-2.126c-.013-.049-.052-.1-.102-.1m.79-.075c-.063 0-.114.051-.126.113l-.161 2.201l.177 2.123c.012.063.061.114.122.114c.064 0 .113-.051.125-.124l.201-2.113l-.201-2.187a.11.11 0 0 0-.111-.112l-.026-.015zm.962.301a.128.128 0 0 0-.133-.125a.134.134 0 0 0-.137.125l-.182 2.026l.169 2.138a.13.13 0 0 0 .132.131c.062 0 .123-.055.123-.132l.189-2.139l-.189-2.036l.028.012zm.674-1.426a.154.154 0 0 0-.148.15l-.176 3.3l.156 2.139c0 .077.066.137.15.137c.078 0 .145-.074.15-.15l.174-2.137l-.173-3.313c-.007-.088-.074-.152-.15-.152m.8-.762a.178.178 0 0 0-.17.163l-.15 4.063l.138 2.125c0 .1.075.174.163.174c.086 0 .161-.074.174-.174l.162-2.125l-.161-4.052c-.013-.1-.088-.175-.175-.175m.826-.372c-.102 0-.176.073-.188.173l-.139 4.4l.139 2.102c.012.1.086.188.188.188a.193.193 0 0 0 .187-.188l.163-2.102l-.164-4.4c0-.1-.087-.188-.188-.188m1.038.038a.196.196 0 0 0-.199-.199a.205.205 0 0 0-.201.199l-.125 4.538l.124 2.089c.015.111.101.199.214.199s.201-.088.201-.199l.136-2.089l-.136-4.55l-.014.012zm.625-.111c-.113 0-.213.1-.213.211l-.125 4.439l.125 2.063c0 .125.1.213.213.213a.221.221 0 0 0 .214-.224l.125-2.064l-.14-4.428c0-.122-.1-.225-.225-.225m.838.139a.236.236 0 0 0-.237.237l-.086 4.29l.113 2.063c0 .124.1.231.236.231c.125 0 .227-.1.237-.237l.101-2.038l-.112-4.265c-.01-.137-.113-.238-.237-.238m.988-.786a.27.27 0 0 0-.139-.037c-.05 0-.1.013-.137.037a.25.25 0 0 0-.125.214v.05l-.086 5.044l.096 2.043v.007c.006.05.024.112.06.15c.05.051.12.086.196.086a.28.28 0 0 0 .175-.074a.262.262 0 0 0 .076-.188l.013-.201l.097-1.838l-.113-5.075a.24.24 0 0 0-.111-.199l-.002-.019zm.837-.457a.155.155 0 0 0-.124-.052a.283.283 0 0 0-.174.052a.265.265 0 0 0-.1.201v.023l-.114 5.513l.063 1.014l.052.988a.274.274 0 0 0 .548-.012l.125-2.013l-.125-5.536a.273.273 0 0 0-.138-.231m7.452 3.15c-.336 0-.663.072-.949.193a4.34 4.34 0 0 0-5.902-3.651c-.188.075-.227.151-.238.301v7.812a.31.31 0 0 0 .275.29h6.827a2.428 2.428 0 0 0 2.45-2.438a2.457 2.457 0 0 0-2.45-2.463' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-spotify { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.01 2.019c-5.495 0-9.991 4.496-9.991 9.991c0 5.494 4.496 9.99 9.991 9.99c5.494 0 9.99-4.496 9.99-9.99c0-5.495-4.446-9.991-9.99-9.991zm4.595 14.436c-.199.299-.549.4-.85.201c-2.349-1.45-5.296-1.75-8.793-.951c-.348.102-.648-.148-.748-.449c-.101-.35.149-.648.45-.749c3.795-.85 7.093-.499 9.69 1.1c.35.149.4.548.251.848zm1.2-2.747c-.251.349-.7.499-1.051.249c-2.697-1.646-6.792-2.148-9.939-1.148c-.398.101-.85-.1-.949-.498c-.101-.402.1-.852.499-.952c3.646-1.098 8.143-.548 11.239 1.351c.3.149.45.648.201.998zm.099-2.799c-3.197-1.897-8.542-2.097-11.59-1.146a.938.938 0 0 1-1.148-.6a.937.937 0 0 1 .599-1.151c3.547-1.049 9.392-.85 13.089 1.351c.449.249.599.849.349 1.298c-.25.35-.849.498-1.299.248z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-spring-boot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.205 16.392c-2.469 3.289-7.741 2.179-11.122 2.338c0 0-.599.034-1.201.133c0 0 .228-.097.519-.198c2.374-.821 3.496-.986 4.939-1.727c2.71-1.388 5.408-4.413 5.957-7.555c-1.032 3.022-4.17 5.623-7.027 6.679c-1.955.722-5.492 1.424-5.493 1.424a5.28 5.28 0 0 1-.143-.076c-2.405-1.17-2.475-6.38 1.894-8.059c1.916-.736 3.747-.332 5.818-.825c2.208-.525 4.766-2.18 5.805-4.344c1.165 3.458 2.565 8.866.054 12.21zm.042-13.28a9.212 9.212 0 0 1-1.065 1.89a9.982 9.982 0 0 0-7.167-3.031C6.492 1.971 2 6.463 2 11.985a9.983 9.983 0 0 0 3.205 7.334l.22.194a.856.856 0 1 1 .001.001l.149.132A9.96 9.96 0 0 0 12.015 22c5.278 0 9.613-4.108 9.984-9.292c.274-2.539-.476-5.763-1.752-9.596' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-squarespace { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.886 9.264c-1.502-1.5-3.941-1.5-5.475 0l-6.13 6.131a.981.981 0 0 0 0 1.377a.982.982 0 0 0 1.376 0l6.13-6.131a1.925 1.925 0 0 1 2.722 2.723l-6.037 6.035c.751.75 1.971.75 2.723 0l4.66-4.66c1.531-1.534 1.531-3.973.031-5.475zm-2.064 2.033a.982.982 0 0 0-1.376 0l-6.134 6.162c-.751.75-1.97.75-2.72 0c-.376-.375-1.002-.375-1.377 0s-.375 1.002 0 1.375c1.502 1.502 3.942 1.502 5.475 0l6.131-6.129c.375-.406.375-1.033.001-1.408zm-2.035-6.129c-1.501-1.502-3.941-1.502-5.475 0l-6.131 6.129a.98.98 0 0 0 0 1.375a.98.98 0 0 0 1.377 0l6.168-6.129a1.934 1.934 0 0 1 2.727 0a.982.982 0 0 0 1.376 0c.352-.406.352-1-.024-1.375h-.018zm-2.063 2.031a.978.978 0 0 0-1.376 0l-6.131 6.164a1.933 1.933 0 0 1-2.723 0a1.927 1.927 0 0 1 0-2.723l6.037-6.039a1.928 1.928 0 0 0-2.722 0L3.118 9.264c-1.501 1.502-1.501 3.941 0 5.475c1.501 1.502 3.94 1.502 5.475 0l6.129-6.131c.377-.408.377-1.033 0-1.408h.002z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-stack-overflow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.24 19.399v-4.804h1.6V21H4.381v-6.405h1.598v4.804H17.24zM7.582 17.8h8.055v-1.604H7.582V17.8zm.195-3.64l7.859 1.641l.34-1.552l-7.861-1.642l-.338 1.553zm1.018-3.794l7.281 3.398l.678-1.463l-7.281-3.399l-.678 1.454v.01zm2.037-3.589l6.166 5.142l1.018-1.216l-6.162-5.14l-1.016 1.213l-.006.001zm3.982-3.778l-1.311.969l4.803 6.454l1.313-.971l-4.807-6.452h.002z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-steam { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.21 17.32L7 16.8a2.13 2.13 0 1 0 1.17-2.93l1.28.53a1.58 1.58 0 0 1-1.22 2.92z' fill='black'/%3E%3Cpath d='M12 2a10 10 0 0 0-10 9.34l5.38 2.21a2.31 2.31 0 0 1 .47-.24A2.62 2.62 0 0 1 9 13.1l2.44-3.56a3.8 3.8 0 1 1 3.8 3.8h-.08l-3.51 2.5a2.77 2.77 0 0 1-5.47.68l-3.77-1.6A10 10 0 1 0 12 2z' fill='black'/%3E%3Cpath d='M17.79 9.5a2.53 2.53 0 1 0-2.53 2.5a2.54 2.54 0 0 0 2.53-2.5zm-4.42 0a1.9 1.9 0 1 1 1.9 1.91a1.9 1.9 0 0 1-1.9-1.92z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-stripe { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.479 9.883c-1.626-.604-2.512-1.067-2.512-1.803c0-.622.511-.977 1.423-.977c1.667 0 3.379.642 4.558 1.22l.666-4.111c-.935-.446-2.847-1.177-5.49-1.177c-1.87 0-3.425.489-4.536 1.401c-1.155.954-1.757 2.334-1.757 4c0 3.023 1.847 4.312 4.847 5.403c1.936.688 2.579 1.178 2.579 1.934c0 .732-.629 1.155-1.762 1.155c-1.403 0-3.716-.689-5.231-1.578l-.674 4.157c1.304.732 3.705 1.488 6.197 1.488c1.976 0 3.624-.467 4.735-1.356c1.245-.977 1.89-2.422 1.89-4.289c0-3.091-1.889-4.38-4.935-5.468h.002z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-tailwind-css { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.5 9.51a4.22 4.22 0 0 1-1.91-1.34A5.77 5.77 0 0 0 12 6a4.72 4.72 0 0 0-5 4a3.23 3.23 0 0 1 3.5-1.49a4.32 4.32 0 0 1 1.91 1.35A5.77 5.77 0 0 0 17 12a4.72 4.72 0 0 0 5-4a3.2 3.2 0 0 1-3.5 1.51zm-13 4.98a4.22 4.22 0 0 1 1.91 1.34A5.77 5.77 0 0 0 12 18a4.72 4.72 0 0 0 5-4a3.23 3.23 0 0 1-3.5 1.49a4.32 4.32 0 0 1-1.91-1.35A5.8 5.8 0 0 0 7 12a4.72 4.72 0 0 0-5 4a3.2 3.2 0 0 1 3.5-1.51z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-telegram { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.665 3.717l-17.73 6.837c-1.21.486-1.203 1.161-.222 1.462l4.552 1.42l10.532-6.645c.498-.303.953-.14.579.192l-8.533 7.701h-.002l.002.001l-.314 4.692c.46 0 .663-.211.921-.46l2.211-2.15l4.599 3.397c.848.467 1.457.227 1.668-.785l3.019-14.228c.309-1.239-.473-1.8-1.282-1.434z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-tiktok { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74a2.89 2.89 0 0 1 2.31-4.64a2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1-.1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-trello { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.75 3H5.25A2.25 2.25 0 0 0 3 5.25v13.5A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V5.25A2.25 2.25 0 0 0 18.75 3zm-7.92 13.635a1.08 1.08 0 0 1-1.08 1.08H6.42a1.08 1.08 0 0 1-1.08-1.08V6.42c0-.597.483-1.08 1.08-1.08h3.33c.596 0 1.08.483 1.08 1.08v10.215zm7.83-4.5a1.08 1.08 0 0 1-1.08 1.08h-3.33a1.08 1.08 0 0 1-1.08-1.08V6.42c0-.597.484-1.08 1.08-1.08h3.33c.597 0 1.08.483 1.08 1.08v5.715z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-trip-advisor { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.31 10.28a2.5 2.5 0 1 0 2.5 2.49a2.5 2.5 0 0 0-2.5-2.49zm0 3.8a1.31 1.31 0 1 1 0-2.61a1.31 1.31 0 1 1 0 2.61zm7.38-3.8a2.5 2.5 0 1 0 2.5 2.49a2.5 2.5 0 0 0-2.5-2.49zM17 12.77a1.31 1.31 0 1 1-1.31-1.3a1.31 1.31 0 0 1 1.31 1.3z' fill='black'/%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm7.38 10.77a3.69 3.69 0 0 1-6.2 2.71L12 16.77l-1.18-1.29a3.69 3.69 0 1 1-5-5.44l-1.2-1.3H7.3a8.33 8.33 0 0 1 9.41 0h2.67l-1.2 1.31a3.71 3.71 0 0 1 1.2 2.72z' fill='black'/%3E%3Cpath d='M14.77 9.05a7.19 7.19 0 0 0-5.54 0A4.06 4.06 0 0 1 12 12.7a4.08 4.08 0 0 1 2.77-3.65z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-tumblr { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14.078 20.953c-2.692 0-4.699-1.385-4.699-4.7v-5.308H6.931V8.07c2.694-.699 3.821-3.017 3.95-5.023h2.796v4.558h3.263v3.34h-3.263v4.622c0 1.386.699 1.864 1.813 1.864h1.58v3.522h-2.992z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-tux { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.642 8.084c-.364.189-.79.42-1.242.42s-.81-.209-1.066-.413c-.13-.101-.234-.202-.313-.276c-.137-.108-.12-.259-.064-.254c.094.012.108.136.168.191c.08.075.18.172.302.269c.243.192.567.38.973.38s.878-.238 1.167-.4c.163-.092.371-.256.541-.381c.13-.095.125-.21.232-.198c.107.013.028.127-.122.258a3.404 3.404 0 0 1-.576.404z' fill='black'/%3E%3Cpath d='M19.649 17.77c-.142-.16-.209-.456-.281-.771s-.153-.654-.411-.874l-.002-.001a1.054 1.054 0 0 0-.317-.192c.359-1.065.219-2.126-.145-3.084c-.444-1.177-1.222-2.202-1.815-2.903c-.664-.838-1.313-1.633-1.301-2.808c.021-1.793.197-5.118-2.958-5.122a4.66 4.66 0 0 0-.401.017c-3.526.283-2.59 4.008-2.643 5.255c-.064.912-.249 1.631-.877 2.523c-.736.876-1.774 2.295-2.266 3.771c-.232.697-.342 1.407-.241 2.08a1.9 1.9 0 0 0-.091.089c-.216.231-.376.511-.555.699c-.166.167-.403.229-.664.323s-.547.231-.721.565l-.001.002a1 1 0 0 0-.108.484c0 .154.023.311.046.461c.048.313.097.609.032.81c-.206.564-.232.954-.087 1.237c.146.284.444.409.783.479c.676.141 1.592.106 2.314.489l.062-.117l-.061.118c.773.404 1.557.547 2.182.405c.454-.104.821-.374 1.011-.789c.489-.002 1.025-.209 1.885-.256c.583-.047 1.312.207 2.149.16a1.119 1.119 0 0 0 .099.264c.324.649.928.946 1.571.896s1.329-.43 1.883-1.089l-.102-.085l.102.084c.527-.64 1.403-.905 1.984-1.255c.29-.175.525-.395.544-.713c.018-.318-.169-.675-.599-1.152zm-7.79-11.708c-.003-.234.036-.435.126-.639s.201-.351.358-.47s.312-.174.494-.176h.009c.179 0 .332.053.489.167c.159.116.274.261.366.463a1.493 1.493 0 0 1 .141.636c.002.235-.038.435-.127.639a1.23 1.23 0 0 1-.18.299l-.074-.033c-.089-.038-.167-.069-.237-.096s-.124-.044-.181-.064c.041-.049.122-.108.151-.181a.943.943 0 0 0 .072-.347l.002-.016a.953.953 0 0 0-.05-.337c-.038-.113-.086-.195-.155-.263s-.139-.099-.223-.101h-.011a.324.324 0 0 0-.217.086a.618.618 0 0 0-.174.25a.944.944 0 0 0-.072.348l-.001.015a.992.992 0 0 0 .014.2a2.463 2.463 0 0 0-.507-.171a1.681 1.681 0 0 1-.014-.19v-.019zm-2.144.052c-.012-.202.009-.376.064-.556s.13-.311.238-.418a.516.516 0 0 1 .349-.168h.03c.118 0 .225.04.335.127a.968.968 0 0 1 .284.389c.076.171.116.343.127.545v.002a1.51 1.51 0 0 1-.002.243c-.023.006-.046.014-.068.021c-.128.044-.23.093-.328.158a.845.845 0 0 0 .003-.214v-.012a.95.95 0 0 0-.068-.274a.523.523 0 0 0-.138-.203c-.052-.044-.1-.065-.153-.064l-.017.001c-.061.005-.11.034-.157.092a.536.536 0 0 0-.101.223a.912.912 0 0 0-.019.293l.001.012c.01.103.031.189.067.275a.528.528 0 0 0 .166.224c-.059.045-.098.078-.146.113l-.11.081a.995.995 0 0 1-.229-.342a1.528 1.528 0 0 1-.128-.546v-.002zm.155 1.228c.187-.14.315-.234.402-.298c.086-.063.121-.086.148-.112h.001c.14-.132.362-.374.699-.49c.115-.04.245-.065.39-.066c.275-.001.608.089 1.01.348c.247.16.439.174.882.363h.001c.213.087.338.202.399.321c.061.12.063.25.012.387c-.103.273-.429.562-.887.705h-.001c-.224.072-.418.233-.647.364a1.449 1.449 0 0 1-.842.217a1.105 1.105 0 0 1-.374-.083a1.202 1.202 0 0 1-.27-.167c-.161-.131-.303-.295-.51-.416h-.002c-.333-.19-.515-.408-.573-.598c-.057-.189-.003-.351.162-.475zm.131 13.018v.001c-.047.623-.398.961-.938 1.085c-.539.123-1.27 0-1.999-.381h-.001c-.808-.427-1.768-.385-2.384-.514c-.308-.064-.509-.161-.602-.341c-.092-.18-.094-.494.102-1.028l.001-.002l.001-.002c.097-.299.025-.626-.021-.934c-.047-.307-.07-.586.034-.781l.001-.002c.135-.259.332-.352.576-.439c.245-.088.534-.157.764-.386l.001-.001l.001-.001c.212-.223.371-.503.557-.702c.157-.167.314-.279.551-.28h.009c.041 0 .085.003.132.011c.314.047.588.268.853.625l.762 1.389h.001c.202.423.631.89.994 1.365c.362.475.644.952.607 1.317l-.002.001zm-.063-1.01a6.721 6.721 0 0 0-.333-.469a13.467 13.467 0 0 0-.229-.293c.151 0 .28-.024.384-.072a.486.486 0 0 0 .266-.274c.09-.242 0-.583-.288-.973c-.29-.39-.778-.83-1.494-1.269c-.527-.328-.821-.729-.959-1.165s-.119-.907-.013-1.373c.204-.894.729-1.762 1.063-2.308c.09-.066.032.123-.339.811c-.332.629-.953 2.081-.103 3.214a6.722 6.722 0 0 1 .538-2.398c.472-1.067 1.456-2.919 1.534-4.395c.041.029.18.123.241.158c.182.106.316.262.492.403c.177.142.396.264.729.283l.093.003c.343 0 .61-.112.833-.239c.242-.138.436-.292.618-.351h.001c.387-.122.694-.335.869-.585c.302 1.186 1.001 2.897 1.45 3.733c.239.443.715 1.385.92 2.52c.13-.004.273.015.427.054c.537-1.393-.455-2.892-.909-3.31c-.184-.178-.192-.258-.102-.254c.492.436 1.139 1.311 1.374 2.3c.107.451.13.925.016 1.393c.056.023.113.048.171.076c.862.42 1.181.785 1.027 1.283c-.05-.002-.1-.001-.148 0h-.014c.125-.395-.151-.687-.889-1.02c-.764-.336-1.373-.303-1.476.379a1.302 1.302 0 0 0-.017.109c-.057.02-.114.045-.172.076c-.358.197-.555.553-.664.99c-.108.437-.14.964-.17 1.558c-.019.298-.141.702-.266 1.129c-1.249.897-2.986 1.283-4.461.276zm9.628.057c-.524.317-1.456.593-2.05 1.313c-.517.615-1.146.952-1.7.996c-.555.044-1.033-.186-1.315-.752v-.001l-.001-.003c-.175-.333-.102-.858.045-1.412c.147-.554.359-1.123.388-1.585v-.001c.03-.592.063-1.11.163-1.509c.1-.399.256-.669.533-.821l.039-.02c.031.513.285 1.036.734 1.149c.491.129 1.199-.292 1.498-.636c.06-.002.118-.006.175-.007c.262-.006.481.009.707.205v.001h.001c.173.146.255.423.326.733c.071.31.128.647.342.888h.001c.41.456.542.764.531.96c-.011.198-.153.344-.417.502z' fill='black'/%3E%3Cpath d='M11.738 6.762c.015.048.093.04.138.063c.04.02.071.065.116.066c.042.001.107-.015.113-.057c.008-.056-.073-.091-.126-.111c-.067-.026-.153-.039-.216-.004c-.014.008-.03.027-.025.043zm-.46 0c-.016.048-.094.04-.139.063c-.039.02-.071.065-.115.066c-.042.001-.108-.015-.114-.057c-.007-.056.074-.091.126-.111c.067-.026.153-.039.217-.004c.015.008.03.027.025.043z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-twitch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.265 3L3 6.236v13.223h4.502V21l2.531.85l2.392-2.391h3.658l4.923-4.924V3H4.265zm15.052 10.691l-2.813 2.814h-4.502l-2.391 2.391v-2.391H5.813V4.688h13.504v9.003zm-2.812-5.767v4.923h-1.688V7.924h1.688zm-4.502 0v4.923h-1.688V7.924h1.688z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-twitter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.633 7.997c.013.175.013.349.013.523c0 5.325-4.053 11.461-11.46 11.461c-2.282 0-4.402-.661-6.186-1.809c.324.037.636.05.973.05a8.07 8.07 0 0 0 5.001-1.721a4.036 4.036 0 0 1-3.767-2.793c.249.037.499.062.761.062c.361 0 .724-.05 1.061-.137a4.027 4.027 0 0 1-3.23-3.953v-.05c.537.299 1.16.486 1.82.511a4.022 4.022 0 0 1-1.796-3.354c0-.748.199-1.434.548-2.032a11.457 11.457 0 0 0 8.306 4.215c-.062-.3-.1-.611-.1-.923a4.026 4.026 0 0 1 4.028-4.028c1.16 0 2.207.486 2.943 1.272a7.957 7.957 0 0 0 2.556-.973a4.02 4.02 0 0 1-1.771 2.22a8.073 8.073 0 0 0 2.319-.624a8.645 8.645 0 0 1-2.019 2.083z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-unity { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10.4 17.8l1.21 2.07L19.77 22L22 14.08L20.72 12L22 10l-2.23-8l-8.16 2.13L10.4 6.2H8L2 12l6 5.81zm9.92-5.8l-1.73 6L15 12l3.59-6zM10.6 6.54L16.84 5l-3.59 6H6.08zM13.27 13l3.59 6l-6.26-1.55L6.1 13z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-unsplash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.625 8.063V3h6.75v5.063h-6.75zm6.75 2.812H21V21H3V10.875h5.625v5.063h6.75v-5.063z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-upwork { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.47 6.07a4.54 4.54 0 0 0-4.38 3.69a19.9 19.9 0 0 1-2.28-4.9H8.55v6a2.14 2.14 0 1 1-4.28 0v-6L2 4.91v6a4.4 4.4 0 1 0 8.8-.05v-1a20.55 20.55 0 0 0 1.65 2.7l-1.38 6.61h2.32l1-4.81a5.61 5.61 0 0 0 3.11.89a4.57 4.57 0 0 0 0-9.14zm0 6.83a4.09 4.09 0 0 1-2.55-1l.23-.91v-.05c.16-1 .66-2.6 2.35-2.6a2.25 2.25 0 0 1 2.27 2.24a2.41 2.41 0 0 1-2.27 2.32z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-venmo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 3.27a7.49 7.49 0 0 1 .66 3.35c0 2.72-1.93 6.72-3.49 9.27L9.53 2.44l-6.91.65L5.79 22h7.88c3.45-4.54 7.71-11 7.71-16a7.3 7.3 0 0 0-1.06-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-vimeo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.062 10.414c-2.036 4.349-6.949 10.267-10.054 10.267c-3.06 0-3.501-6.527-5.173-10.869c-.823-2.138-1.354-1.646-2.896-.567L2 8.031c2.248-1.976 4.499-4.272 5.88-4.399c1.559-.148 2.517.916 2.873 3.193c.475 2.994 1.137 7.641 2.291 7.641c.9 0 3.117-3.686 3.232-5.004c.203-1.93-1.421-1.989-2.828-1.387c2.228-7.295 11.494-5.95 7.614 2.339z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-visa { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.539 9.186a4.155 4.155 0 0 0-1.451-.251c-1.6 0-2.73.806-2.738 1.963c-.01.85.803 1.329 1.418 1.613c.631.292.842.476.84.737c-.004.397-.504.577-.969.577c-.639 0-.988-.089-1.525-.312l-.199-.093l-.227 1.332c.389.162 1.09.301 1.814.313c1.701 0 2.813-.801 2.826-2.032c.014-.679-.426-1.192-1.352-1.616c-.563-.275-.912-.459-.912-.738c0-.247.299-.511.924-.511a2.95 2.95 0 0 1 1.213.229l.15.067l.227-1.287l-.039.009zm4.152-.143h-1.25c-.389 0-.682.107-.852.493l-2.404 5.446h1.701l.34-.893l2.076.002c.049.209.199.891.199.891h1.5l-1.31-5.939zm-10.642-.05h1.621l-1.014 5.942H9.037l1.012-5.944v.002zm-4.115 3.275l.168.825l1.584-4.05h1.717l-2.551 5.931H5.139l-1.4-5.022a.339.339 0 0 0-.149-.199a6.948 6.948 0 0 0-1.592-.589l.022-.125h2.609c.354.014.639.125.734.503l.57 2.729v-.003zm12.757.606l.646-1.662c-.008.018.133-.343.215-.566l.111.513l.375 1.714H18.69v.001h.001z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-visual-studio { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.29 4.1l-4.12-2a1.36 1.36 0 0 0-.48-.1h-.08a1.18 1.18 0 0 0-.72.24l-.14.12l-7.88 7.19L4.44 7a.83.83 0 0 0-.54-.17a.88.88 0 0 0-.53.17l-1.1 1a.8.8 0 0 0-.27.61a.84.84 0 0 0 .27.62l3 2.71l-3 2.72a.84.84 0 0 0 0 1.23l1.1 1a.89.89 0 0 0 .6.22a.93.93 0 0 0 .47-.17l3.43-2.61l7.88 7.19a1.2 1.2 0 0 0 .76.36h.17a1 1 0 0 0 .49-.12l4.12-2a1.25 1.25 0 0 0 .71-1.1V5.23a1.26 1.26 0 0 0-.71-1.13zM17 16.47l-6-4.53l6-4.53z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-vk { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.579 6.855c.14-.465 0-.806-.662-.806h-2.193c-.558 0-.813.295-.953.619c0 0-1.115 2.719-2.695 4.482c-.51.513-.743.675-1.021.675c-.139 0-.341-.162-.341-.627V6.855c0-.558-.161-.806-.626-.806H9.642c-.348 0-.558.258-.558.504c0 .528.79.65.871 2.138v3.228c0 .707-.127.836-.407.836c-.743 0-2.551-2.729-3.624-5.853c-.209-.607-.42-.852-.98-.852H2.752c-.627 0-.752.295-.752.619c0 .582.743 3.462 3.461 7.271c1.812 2.601 4.363 4.011 6.687 4.011c1.393 0 1.565-.313 1.565-.853v-1.966c0-.626.133-.752.574-.752c.324 0 .882.164 2.183 1.417c1.486 1.486 1.732 2.153 2.567 2.153h2.192c.626 0 .939-.313.759-.931c-.197-.615-.907-1.51-1.849-2.569c-.512-.604-1.277-1.254-1.51-1.579c-.325-.419-.231-.604 0-.976c.001.001 2.672-3.761 2.95-5.04z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-vuejs { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 12.765l5.592-9.437h-3.276L12 7.33v.002L9.688 3.328h-3.28z' fill='black'/%3E%3Cpath d='M18.461 3.332L12 14.235L5.539 3.332H1.992L12 20.672l10.008-17.34z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-whatsapp { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.403 5.633A8.919 8.919 0 0 0 12.053 3c-4.948 0-8.976 4.027-8.978 8.977c0 1.582.413 3.126 1.198 4.488L3 21.116l4.759-1.249a8.981 8.981 0 0 0 4.29 1.093h.004c4.947 0 8.975-4.027 8.977-8.977a8.926 8.926 0 0 0-2.627-6.35m-6.35 13.812h-.003a7.446 7.446 0 0 1-3.798-1.041l-.272-.162l-2.824.741l.753-2.753l-.177-.282a7.448 7.448 0 0 1-1.141-3.971c.002-4.114 3.349-7.461 7.465-7.461a7.413 7.413 0 0 1 5.275 2.188a7.42 7.42 0 0 1 2.183 5.279c-.002 4.114-3.349 7.462-7.461 7.462m4.093-5.589c-.225-.113-1.327-.655-1.533-.73c-.205-.075-.354-.112-.504.112s-.58.729-.711.879s-.262.168-.486.056s-.947-.349-1.804-1.113c-.667-.595-1.117-1.329-1.248-1.554s-.014-.346.099-.458c.101-.1.224-.262.336-.393c.112-.131.149-.224.224-.374s.038-.281-.019-.393c-.056-.113-.505-1.217-.692-1.666c-.181-.435-.366-.377-.504-.383a9.65 9.65 0 0 0-.429-.008a.826.826 0 0 0-.599.28c-.206.225-.785.767-.785 1.871s.804 2.171.916 2.321c.112.15 1.582 2.415 3.832 3.387c.536.231.954.369 1.279.473c.537.171 1.026.146 1.413.089c.431-.064 1.327-.542 1.514-1.066c.187-.524.187-.973.131-1.067c-.056-.094-.207-.151-.43-.263' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-whatsapp-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.043 6.925a4.985 4.985 0 0 0-4.98 4.979c-.001.94.263 1.856.761 2.649l.118.188l-.503 1.837l1.885-.494l.181.108a4.97 4.97 0 0 0 2.535.693h.001a4.986 4.986 0 0 0 4.979-4.978a4.946 4.946 0 0 0-1.456-3.522a4.946 4.946 0 0 0-3.521-1.46zm2.928 7.118c-.125.35-.723.668-1.01.711a2.044 2.044 0 0 1-.943-.059a8.51 8.51 0 0 1-.853-.315c-1.502-.648-2.482-2.159-2.558-2.26c-.074-.1-.61-.812-.61-1.548c0-.737.386-1.099.523-1.249a.552.552 0 0 1 .4-.186c.1 0 .199.001.287.005c.092.004.215-.035.336.257c.125.3.425 1.036.462 1.111c.037.074.062.162.013.262c-.05.101-.074.162-.15.25c-.074.088-.157.195-.224.263c-.075.074-.153.155-.066.305c.088.149.388.64.832 1.037c.572.51 1.055.667 1.204.743c.15.074.237.063.325-.038c.087-.101.374-.437.474-.586c.1-.15.199-.125.337-.076c.137.051.873.412 1.022.487c.148.074.249.112.287.175c.036.062.036.361-.088.711z' fill='black'/%3E%3Cpath d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-7.96 14.896h-.002a5.98 5.98 0 0 1-2.862-.729L6 18l.85-3.104a5.991 5.991 0 0 1 5.19-8.983a5.95 5.95 0 0 1 4.238 1.757a5.95 5.95 0 0 1 1.751 4.237a5.998 5.998 0 0 1-5.989 5.989z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-wikipedia { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.081 12.932c-.78 1.611-1.849 3.792-2.379 4.776c-.513.896-.94.776-1.278.024c-1.172-2.77-3.58-7.625-4.712-10.347c-.209-.502-.367-.823-.516-.95c-.151-.125-.462-.2-.936-.227c-.174-.019-.26-.061-.26-.131v-.379l.043-.038c.771-.004 4.503 0 4.503 0l.042.038v.362c0 .1-.063.147-.188.147l-.47.024c-.403.026-.605.137-.605.365c0 .112.044.275.139.501c.902 2.206 4.017 8.772 4.017 8.772l.114.039l2.01-4.012l-.402-.89L9.82 8.285s-.265-.545-.357-.727c-.607-1.203-.593-1.265-1.206-1.347c-.173-.02-.261-.042-.261-.125v-.39l.05-.037h3.578l.095.03v.376c0 .088-.063.125-.189.125l-.257.039c-.66.051-.551.318-.113 1.186l1.319 2.712l1.465-2.922c.244-.533.194-.668.093-.789c-.058-.07-.255-.185-.677-.2l-.168-.018a.191.191 0 0 1-.121-.043a.125.125 0 0 1-.056-.107v-.357l.051-.037c1.04-.007 3.371 0 3.371 0l.05.037v.364c0 .101-.05.148-.161.148c-.539.024-.652.079-.854.366c-.1.154-.313.49-.538.865l-1.919 3.563l-.054.112l2.328 4.763l.142.041l3.665-8.704c.129-.352.107-.602-.053-.746c-.165-.144-.289-.228-.716-.246l-.35-.014a.211.211 0 0 1-.127-.037a.128.128 0 0 1-.06-.1v-.361l.049-.038h4.137l.034.038v.364c0 .1-.062.15-.174.15c-.541.024-.94.15-1.203.351c-.263.213-.465.514-.614.89c0 0-3.371 7.72-4.524 10.289c-.438.84-.878.765-1.253-.026c-.477-.977-1.478-3.156-2.206-4.761l.045-.03z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-windows { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 5.557l7.357-1.002l.004 7.097l-7.354.042L3 5.557zm7.354 6.913l.006 7.103l-7.354-1.011v-6.14l7.348.048zm.892-8.046L21.001 3v8.562l-9.755.077V4.424zm9.758 8.113l-.003 8.523l-9.755-1.378l-.014-7.161l9.772.016z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-wix { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.444 8.256c-.4.212-.544.562-.544 1.53c0 0 .202-.194.499-.303a2.01 2.01 0 0 0 .512-.275c.338-.247.385-.562.385-1.096c0 0-.553-.016-.852.144zm-2.349.229c-.32.286-.418.739-.418.739l-1.078 4.141L8.71 9.97c-.087-.355-.246-.808-.495-1.107c-.31-.378-.944-.401-1.015-.401c-.068 0-.709.023-1.026.407c-.246.303-.406.751-.493 1.108l-.889 3.395l-1.066-4.147s-.092-.459-.418-.739c-.529-.465-1.314-.367-1.314-.367l2.048 7.764s.677.052 1.015-.126c.441-.224.659-.401.929-1.463c.241-.94.912-3.704.974-3.905c.029-.098.07-.332.241-.332c.179 0 .214.229.241.332c.064.195.729 2.965.976 3.905c.268 1.055.481 1.227.929 1.463c.338.178 1.015.126 1.015.126l2.048-7.759c-.002 0-.789-.099-1.315.361zm3.201.9s-.129.195-.42.367c-.188.104-.367.178-.562.271c-.323.154-.414.332-.414.595v5.266s.522.063.854-.104c.436-.222.533-.435.541-1.404V9.385zm5.112 2.632l2.599-3.875s-1.096-.189-1.641.309c-.35.315-.738.885-.738.885l-.952 1.386c-.053.069-.104.15-.2.15c-.099 0-.161-.075-.202-.15l-.962-1.382s-.385-.568-.74-.884c-.54-.499-1.641-.31-1.641-.31l2.603 3.865l-2.603 3.858s1.146.149 1.688-.35c.35-.315.688-.837.688-.837l.95-1.383c.053-.068.104-.147.2-.147c.1 0 .161.075.202.147l.952 1.383s.355.51.7.837c.538.499 1.667.35 1.667.35l-2.57-3.852z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-wordpress { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.891 7.788a8.966 8.966 0 0 1 1.099 4.313a8.986 8.986 0 0 1-4.47 7.771l2.746-7.939c.513-1.282.684-2.309.684-3.219a7.165 7.165 0 0 0-.059-.926m-6.651.087a14.14 14.14 0 0 0 1.026-.088c.485-.063.428-.775-.056-.749c0 0-1.463.112-2.4.112c-.887 0-2.375-.125-2.375-.125c-.487-.024-.55.713-.061.738c0 0 .449.052.938.075l1.399 3.838l-1.975 5.899l-3.274-9.724a17.006 17.006 0 0 0 1.028-.083c.487-.063.43-.775-.055-.747c0 0-1.455.115-2.395.115c-.167 0-.365-.007-.575-.013C6.093 4.726 8.862 3.113 12 3.113c2.341 0 4.471.894 6.071 2.36c-.038-.002-.076-.008-.117-.008c-.883 0-1.51.77-1.51 1.596c0 .741.427 1.369.883 2.108c.343.601.742 1.37.742 2.481c0 .763-.295 1.662-.685 2.899l-.896 2.987l-3.25-9.675l.002.014zM12 21.087a8.983 8.983 0 0 1-2.54-.364l2.697-7.838l2.763 7.572c.021.044.042.085.065.124a9.016 9.016 0 0 1-2.985.508m-8.99-8.988a8.94 8.94 0 0 1 .778-3.658l4.287 11.749a8.993 8.993 0 0 1-5.065-8.091m8.99-10c-5.513 0-10 4.487-10 10s4.487 10 10 10s10-4.487 10-10s-4.487-10-10-10' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-yahoo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.131 21s-.63-.114-1.138-.114c-.457 0-1.142.114-1.142.114l.143-7.646C9.933 11.52 6.814 5.933 4.868 3c.979.223 1.391.209 2.374 0l.015.025c1.239 2.194 3.135 5.254 4.736 7.905C13.575 8.325 16.064 4.258 16.74 3c.765.201 1.536.193 2.392 0c-.9 1.213-4.175 6.88-6.153 10.354L13.125 21h.006z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-yelp { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.824 16.675c-.105.726-1.587 2.609-2.269 2.882c-.232.093-.457.07-.637-.068c-.116-.09-.235-.272-1.833-2.866l-.475-.773c-.183-.277-.148-.642.078-.92c.223-.27.549-.37.832-.262c.016.008 1.195.397 1.195.397c2.688.883 2.775.917 2.891 1.002c.17.139.249.356.214.608h.004zm-5.386-3.946c-.19-.289-.187-.63.01-.865l.746-1.019c1.642-2.235 1.732-2.353 1.843-2.431a.636.636 0 0 1 .652-.024c.651.316 1.966 2.269 2.045 3.019v.025a.623.623 0 0 1-.259.587c-.123.079-.235.125-3.291.866c-.483.123-.752.19-.91.247l.021-.023c-.302.091-.64-.055-.831-.357l-.026-.025zm-1.875-1.159c-.146.046-.591.185-1.139-.702c0 0-3.694-5.813-3.78-5.992c-.053-.201.011-.429.19-.613c.55-.569 3.534-1.405 4.315-1.215c.255.066.43.227.491.453c.045.25.408 5.646.46 6.854c.051 1.034-.392 1.171-.537 1.215zm.487 5.913c-.008 2.827-.015 2.922-.061 3.056c-.079.211-.26.352-.51.398c-.72.122-2.972-.71-3.441-1.267a.739.739 0 0 1-.157-.37c-.013-.09 0-.18.033-.259c.057-.146.135-.259 2.158-2.63l.594-.706c.203-.26.563-.338.899-.204c.325.124.528.405.506.708v1.259l-.021.015zm-6.13-1.808c-.222-.006-.42-.14-.535-.358c-.083-.162-.142-.428-.18-.752c-.102-.974.023-2.444.314-2.911c.138-.214.338-.327.559-.319c.146 0 .276.046 3.167 1.236l.848.337c.302.111.489.427.472.787c-.022.348-.224.616-.521.696l-1.202.382c-2.689.864-2.778.888-2.919.877l-.003.025zm11.22 5.322h-.004l-.003.003l.007-.003z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-youtube { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.593 7.203a2.506 2.506 0 0 0-1.762-1.766C18.265 5.007 12 5 12 5s-6.264-.007-7.831.404a2.56 2.56 0 0 0-1.766 1.778c-.413 1.566-.417 4.814-.417 4.814s-.004 3.264.406 4.814c.23.857.905 1.534 1.763 1.765c1.582.43 7.83.437 7.83.437s6.265.007 7.831-.403a2.515 2.515 0 0 0 1.767-1.763c.414-1.565.417-4.812.417-4.812s.02-3.265-.407-4.831zM9.996 15.005l.005-6l5.207 3.005l-5.212 2.995z' fill='black'/%3E%3C/svg%3E"); } .bx-bxl-zoom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M1.984 7.506v6.74c.006 1.524 1.361 2.75 3.014 2.745h10.693c.303 0 .549-.225.549-.498v-6.74c-.008-1.523-1.363-2.75-3.014-2.744H2.531c-.302 0-.547.224-.547.497zm14.936 2.63l4.416-2.963c.383-.292.68-.219.68.309v9.036c0 .601-.363.528-.68.309L16.92 13.87v-3.734z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-add-to-queue { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 22h12v-2H4V8H2v12c0 1.103.897 2 2 2z' fill='black'/%3E%3Cpath d='M20 2H8c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm-2 9h-3v3h-2v-3h-3V9h3V6h2v3h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-adjust { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.579 2 2 6.58 2 12s4.579 10 10 10s10-4.58 10-10S17.421 2 12 2zm0 17V5c3.829 0 7 3.169 7 7c0 3.828-3.171 7-7 7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-adjust-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.071 19.071c3.833-3.833 3.833-10.31 0-14.143s-10.31-3.833-14.143 0s-3.833 10.31 0 14.143s10.31 3.833 14.143 0zM7.051 7.051c2.706-2.707 7.191-2.708 9.898 0l-9.898 9.898c-2.708-2.707-2.71-7.19 0-9.898z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-alarm { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 4c-4.878 0-9 4.122-9 9s4.122 9 9 9c4.879 0 9-4.122 9-9s-4.121-9-9-9zm5 10h-6V8h2v4h4v2zm3.292-7.292l-3.01-3l1.412-1.417l3.01 3zM5.282 2.294L6.7 3.706l-2.99 3l-1.417-1.413z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-alarm-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9zm4 10h-3v3h-2v-3H8v-2h3V9h2v3h3v2zm1.284-10.293l1.412-1.416l3.01 3l-1.413 1.417zM5.282 2.294L6.7 3.706l-2.99 3l-1.417-1.413z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-alarm-exclamation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.284 3.707l1.412-1.416l3.01 3l-1.413 1.417zm-10.586 0l-2.99 2.999L2.29 5.294l2.99-3zM12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9zm1 14h-2v-2h2v2zm0-4h-2V8h2v6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-alarm-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.292 6.708l-3.01-3l1.412-1.417l3.01 3zm1.415 13.585l-2.287-2.288C20.409 16.563 21 14.837 21 13c0-4.878-4.121-9-9-9c-1.838 0-3.563.59-5.006 1.581L5.91 4.496l.788-.79l-1.416-1.412l-.786.788l-.789-.789l-1.414 1.414l18 18l1.414-1.414zM17 14h-1.586l-2-2H17v2zm-6-6h2v3.586l-2-2V8zm1 14c1.658 0 3.224-.485 4.574-1.305L4.305 8.426A8.794 8.794 0 0 0 3 13c0 4.878 4.122 9 9 9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-alarm-snooze { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.284 3.707l1.412-1.416l3.01 3l-1.413 1.417zm-10.586 0l-2.99 2.999L2.29 5.294l2.99-3zM12 4c-4.878 0-9 4.121-9 9s4.122 9 9 9c4.879 0 9-4.121 9-9s-4.121-9-9-9zm4 13H8.131l4-6H8V9h7.868l-1.035 1.554l-.001.001L11.869 15H16v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-album { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-4.607 8.055A4.956 4.956 0 0 0 7 12H5a6.978 6.978 0 0 1 2.051-4.95a6.978 6.978 0 0 1 2.225-1.5l.779 1.842c-.596.252-1.13.612-1.59 1.072s-.82.995-1.072 1.591zm4.6 3.945a2.007 2.007 0 1 1 0-4.014a2.007 2.007 0 0 1 0 4.014z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-ambulance { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.86 12.48L19.15 8a2 2 0 0 0-1.72-1H15V5a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v10a2 2 0 0 0 1 1.73a3.49 3.49 0 0 0 7 .27h3.1a3.48 3.48 0 0 0 6.9 0a2 2 0 0 0 2-2v-3a1.07 1.07 0 0 0-.14-.52zM6.5 19A1.5 1.5 0 1 1 8 17.5A1.5 1.5 0 0 1 6.5 19zm5.5-8h-2v2H8v-2H6V9h2V7h2v2h2zm4.5 8a1.5 1.5 0 1 1 1.5-1.5a1.5 1.5 0 0 1-1.5 1.5zM15 12V9h2.43l1.8 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-analyse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.626 8.878a7.937 7.937 0 0 1 1.71-2.541a7.92 7.92 0 0 1 2.542-1.71a8.12 8.12 0 0 1 6.13-.041A2.49 2.49 0 0 0 17.5 7C18.886 7 20 5.886 20 4.5S18.886 2 17.5 2c-.689 0-1.312.276-1.763.725c-2.431-.973-5.223-.958-7.635.059c-1.19.5-2.26 1.22-3.18 2.139A9.98 9.98 0 0 0 2 12h2c0-1.086.211-2.136.626-3.122zm14.747 6.244c-.401.952-.977 1.808-1.71 2.541s-1.589 1.309-2.542 1.71a8.12 8.12 0 0 1-6.13.041A2.488 2.488 0 0 0 6.5 17C5.114 17 4 18.114 4 19.5S5.114 22 6.5 22c.689 0 1.312-.276 1.763-.725A9.973 9.973 0 0 0 12 22a9.983 9.983 0 0 0 9.217-6.102A9.992 9.992 0 0 0 22 12h-2a7.993 7.993 0 0 1-.627 3.122z' fill='black'/%3E%3Cpath d='M12 7.462c-2.502 0-4.538 2.036-4.538 4.538S9.498 16.538 12 16.538c2.502 0 4.538-2.036 4.538-4.538S14.502 7.462 12 7.462z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-angry { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-5 8.5l.002-.022l-1.373-.549l.742-1.857l5 2l-.742 1.857l-1.031-.413c-.014.014-.023.031-.037.044A1.499 1.499 0 0 1 7 10.5zM8 17s1-3 4-3s4 3 4 3H8zm8.986-6.507c0 .412-.167.785-.438 1.056a1.488 1.488 0 0 1-2.112 0c-.011-.011-.019-.024-.029-.035l-1.037.415l-.742-1.857l5-2l.742 1.857l-1.386.554a.036.036 0 0 1 .002.01z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 8V6H3v14H2v2h6v-7c0-.163.046-4 4-4c3.821 0 3.993 3.602 4 4v7h6v-2h-1V8zM2 2h20v2H2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-archive { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.704 5.29l-2.997-2.997A.996.996 0 0 0 18 2H6a.996.996 0 0 0-.707.293L2.296 5.29A.994.994 0 0 0 2 5.999V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5.999a.994.994 0 0 0-.296-.709zM6.414 4h11.172l1 1H5.414l1-1zM17 13v1H7v-4h2v2h6v-2h2v3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-archive-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.706 5.292l-2.999-2.999A.996.996 0 0 0 18 2H6a.997.997 0 0 0-.707.293L2.294 5.292A.996.996 0 0 0 2 6v13c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6a.994.994 0 0 0-.294-.708zM6.414 4h11.172l1 1H5.414l1-1zM12 18l-5-5h3v-3h4v3h3l-5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-archive-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.706 5.292l-2.999-2.999A.996.996 0 0 0 18 2H6a.996.996 0 0 0-.707.293L2.294 5.292A.994.994 0 0 0 2 6v13c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6a.994.994 0 0 0-.294-.708zM6.414 4h11.172l1 1H5.414l1-1zM14 14v3h-4v-3H7l5-5l5 5h-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-area { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14zm9-13h6v6h-2V8h-4V6zm-6 6h2v4h4v2H6v-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arrow-from-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 18h12v2H6zm6-14l-6 6h5v6h2v-6h5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arrow-from-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 6h2v12H4zm10 5H8v2h6v5l6-6l-6-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arrow-from-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 6h2v12h-2zm-8 12v-5h6v-2h-6V6l-6 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arrow-from-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 4h12v2H6zm5 4v6H6l6 6l6-6h-5V8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arrow-to-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 18h12v2H6zm5-14v6H6l6 6l6-6h-5V4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arrow-to-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 6h2v12H4zm10 7h6v-2h-6V6l-6 6l6 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arrow-to-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 6h2v12h-2zm-8 5H4v2h6v5l6-6l-6-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-arrow-to-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 4h12v2H6zm5 10v6h2v-6h5l-6-6l-6 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-award { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 8.999a6.99 6.99 0 0 0 2.879 5.646l.001.001a6.972 6.972 0 0 0 1.881.979l.051.019a6.906 6.906 0 0 0 1.163.271a6.79 6.79 0 0 0 1.024.085H12c.35 0 .69-.034 1.027-.084l.182-.028c.336-.059.664-.139.981-.243l.042-.016C17 14.693 19 12.078 19 8.999C19 5.14 15.86 2 12 2S5 5.14 5 8.999zM12 4c2.756 0 5 2.242 5 4.999h-2A3.003 3.003 0 0 0 12 6V4zM7.521 16.795V22L12 20.5l4.479 1.5l.001-5.205a8.932 8.932 0 0 1-8.959 0z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-baby-carriage { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.666 12.277a7.72 7.72 0 0 0 .171-.665c.003-.017.004-.033.008-.05c.02-.098.029-.199.045-.298c.025-.157.055-.313.07-.471a7.979 7.979 0 0 0-2.303-6.45A7.979 7.979 0 0 0 14 2v8H6.517l-.858-2H2v2h2.341l1.828 4.266A3.504 3.504 0 0 0 4 17.5C4 19.43 5.57 21 7.5 21c1.759 0 3.204-1.309 3.449-3h2.102c.245 1.691 1.69 3 3.449 3c1.93 0 3.5-1.57 3.5-3.5c0-.63-.181-1.213-.473-1.725c.042-.041.089-.077.131-.119c.36-.361.688-.759.977-1.184c.288-.43.536-.886.736-1.359c.016-.037.026-.076.041-.113h.001l.015-.042c.088-.22.168-.441.235-.668l.003-.013zM7.5 19c-.827 0-1.5-.673-1.5-1.5S6.673 16 7.5 16s1.5.673 1.5 1.5S8.327 19 7.5 19zm9 0c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5s1.5.673 1.5 1.5s-.673 1.5-1.5 1.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-backpack { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 15a1 1 0 0 0-1-1H9c-.551 0-1 .448-1 1v2h8v-2zm-8 4h8v3H8z' fill='black'/%3E%3Cpath d='M21 12c0-2.967-2.167-5.432-5-5.91V5c0-1.654-1.346-3-3-3h-2C9.346 2 8 3.346 8 5v1.09C5.167 6.568 3 9.033 3 12v8c0 1.103.897 2 2 2h1v-7c0-1.654 1.346-3 3-3h6c1.654 0 3 1.346 3 3v7h1c1.103 0 2-.897 2-2v-8zM10 5c0-.552.449-1 1-1h2a1 1 0 0 1 1 1v1h-4V5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-badge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.965 8.521C19.988 8.347 20 8.173 20 8c0-2.379-2.143-4.288-4.521-3.965C14.786 2.802 13.466 2 12 2s-2.786.802-3.479 2.035C6.138 3.712 4 5.621 4 8c0 .173.012.347.035.521C2.802 9.215 2 10.535 2 12s.802 2.785 2.035 3.479A3.976 3.976 0 0 0 4 16c0 2.379 2.138 4.283 4.521 3.965C9.214 21.198 10.534 22 12 22s2.786-.802 3.479-2.035C17.857 20.283 20 18.379 20 16c0-.173-.012-.347-.035-.521C21.198 14.785 22 13.465 22 12s-.802-2.785-2.035-3.479z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-badge-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.965 8.521C19.988 8.347 20 8.173 20 8c0-2.379-2.143-4.288-4.521-3.965C14.786 2.802 13.466 2 12 2s-2.786.802-3.479 2.035C6.138 3.712 4 5.621 4 8c0 .173.012.347.035.521C2.802 9.215 2 10.535 2 12s.802 2.785 2.035 3.479A3.976 3.976 0 0 0 4 16c0 2.379 2.138 4.283 4.521 3.965C9.214 21.198 10.534 22 12 22s2.786-.802 3.479-2.035C17.857 20.283 20 18.379 20 16c0-.173-.012-.347-.035-.521C21.198 14.785 22 13.465 22 12s-.802-2.785-2.035-3.479zm-9.01 7.895l-3.667-3.714l1.424-1.404l2.257 2.286l4.327-4.294l1.408 1.42l-5.749 5.706z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-badge-dollar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.047 14.668a.994.994 0 0 0 .465.607l1.91 1.104v2.199a1 1 0 0 0 1 1h2.199l1.104 1.91a1.01 1.01 0 0 0 .866.5c.174 0 .347-.046.501-.135L12 20.75l1.91 1.104a1.001 1.001 0 0 0 1.366-.365l1.103-1.91h2.199a1 1 0 0 0 1-1V16.38l1.91-1.104a1 1 0 0 0 .365-1.367L20.75 12l1.104-1.908a1 1 0 0 0-.365-1.366l-1.91-1.104v-2.2a1 1 0 0 0-1-1H16.38l-1.103-1.909a1.008 1.008 0 0 0-.607-.466a.993.993 0 0 0-.759.1L12 3.25l-1.909-1.104a1 1 0 0 0-1.366.365l-1.104 1.91H5.422a1 1 0 0 0-1 1V7.62l-1.91 1.104a1.003 1.003 0 0 0-.365 1.368L3.251 12l-1.104 1.908a1.009 1.009 0 0 0-.1.76zM12 13c-3.48 0-4-1.879-4-3c0-1.287 1.029-2.583 3-2.915V6.012h2v1.109c1.734.41 2.4 1.853 2.4 2.879h-1l-1 .018C13.386 9.638 13.185 9 12 9c-1.299 0-2 .515-2 1c0 .374 0 1 2 1c3.48 0 4 1.879 4 3c0 1.287-1.029 2.583-3 2.915V18h-2v-1.08c-2.339-.367-3-2.003-3-2.92h2c.011.143.159 1 2 1c1.38 0 2-.585 2-1c0-.325 0-1-2-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-baguette { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.13 4.41l4.23 4.23L14.3 9.7l-4.24-4.24l-1.77 1.77l4.24 4.24l-1.06 1.06l-4.24-4.24l-1.77 1.77L9.7 14.3l-1.06 1.06l-4.23-4.23C1.86 14 1.55 18 3.79 20.21a5.38 5.38 0 0 0 3.85 1.5a8 8 0 0 0 5.6-2.47l6-6c2.87-2.87 3.31-7.11 1-9.45s-6.24-1.93-9.11.62z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.247 3.034c-.069-.018-1.742-.433-4.052-.433c-2.842 0-6.868.64-9.91 3.687c-5.34 5.349-3.34 13.61-3.252 13.96a1 1 0 0 0 .728.726c.069.018 1.726.426 4.018.426c2.849 0 6.884-.641 9.932-3.688c5.335-5.335 3.351-13.6 3.264-13.949a1.005 1.005 0 0 0-.728-.729zm-3.537 9.262l-1.414 1.414l-1.793-1.792l-1.586 1.586l1.792 1.793l-1.414 1.414l-1.792-1.793l-1.793 1.793l-1.414-1.414l1.793-1.793l-1.793-1.794l1.414-1.414l1.793 1.794l1.586-1.586l-1.794-1.793l1.414-1.414l1.794 1.793l1.793-1.793l1.414 1.414l-1.793 1.793l1.793 1.792z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-band-aid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.646 3.868l-7.778 7.778a6.007 6.007 0 0 0 0 8.485a5.984 5.984 0 0 0 4.242 1.754a5.984 5.984 0 0 0 4.243-1.754l7.778-7.778a6.007 6.007 0 0 0 0-8.485a6.008 6.008 0 0 0-8.485 0zM9 13a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm0-6a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bank { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2 8v4.001h1V18H2v3h16l3 .001V21h1v-3h-1v-5.999h1V8L12 2L2 8zm4 10v-5.999h2V18H6zm5 0v-5.999h2V18h-2zm7 0h-2v-5.999h2V18zM14 8a2 2 0 1 1-4.001-.001A2 2 0 0 1 14 8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bar-chart-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 21H3a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1zm7 0h-3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v17a1 1 0 0 1-1 1zm7 0h-3a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bar-chart-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 19V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2zM9 18H7v-6h2v6zm4 0h-2V7h2v11zm4 0h-2v-8h2v8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-barcode { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM8 17H5V7h3zm2 0H9V7h1zm2 0h-1V7h1zm4 0h-3V7h3zm3 0h-2V7h2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-baseball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.984 12.236a9.966 9.966 0 0 0-2.913-7.308a9.966 9.966 0 0 0-7.308-2.913a9.04 9.04 0 0 1-.673 4.313l-1.84-.78a7.044 7.044 0 0 0 .526-3.284a9.927 9.927 0 0 0-4.847 2.665a9.924 9.924 0 0 0-2.666 4.852a7.082 7.082 0 0 0 2.576-.276l.575 1.916c-1.1.33-2.257.443-3.398.344a9.964 9.964 0 0 0 2.913 7.307a9.965 9.965 0 0 0 7.307 2.913a9.079 9.079 0 0 1 .344-3.398l1.916.575a7.06 7.06 0 0 0-.276 2.576a9.927 9.927 0 0 0 4.853-2.666a9.926 9.926 0 0 0 2.665-4.848a7.056 7.056 0 0 0-3.284.526l-.78-1.841a9.025 9.025 0 0 1 4.31-.673zM9.17 9.173a9.017 9.017 0 0 1-2.192 1.612l-.927-1.772a7.01 7.01 0 0 0 2.576-2.314l1.663 1.113c-.328.49-.705.948-1.12 1.361zm7.074 7.068a6.991 6.991 0 0 0-1.257 1.708l-1.772-.927a9.025 9.025 0 0 1 2.972-3.312l1.113 1.663a6.987 6.987 0 0 0-1.056.868z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-basket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.132 2.504L4.42 9H3a1.001 1.001 0 0 0-.965 1.263l2.799 10.263A2.004 2.004 0 0 0 6.764 22h10.473c.898 0 1.692-.605 1.93-1.475l2.799-10.263A.998.998 0 0 0 21 9h-1.42l-3.712-6.496l-1.736.992L17.277 9H6.723l3.145-5.504l-1.736-.992zM14 13h2v5h-2v-5zm-6 0h2v5H8v-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-basketball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.328 4.258a9.953 9.953 0 0 0-5.949-2.235a8.99 8.99 0 0 1-1.835 7.107L12 10.586l6.328-6.328zM7.701 9.115L4.258 5.672a9.938 9.938 0 0 0-2.112 4.704a7.007 7.007 0 0 0 5.555-1.261zm12.041-3.443L13.414 12l1.456 1.456a8.993 8.993 0 0 1 7.107-1.835a9.953 9.953 0 0 0-2.235-5.949zm2.112 7.952a7.007 7.007 0 0 0-5.555 1.261l3.443 3.443a9.924 9.924 0 0 0 2.112-4.704zM9.115 7.701a7.007 7.007 0 0 0 1.261-5.555a9.928 9.928 0 0 0-4.704 2.112l3.443 3.443zm4.509 14.153a9.936 9.936 0 0 0 4.704-2.111L14.885 16.3a7.003 7.003 0 0 0-1.261 5.554zM12 13.414l-6.328 6.328a9.953 9.953 0 0 0 5.949 2.235a8.99 8.99 0 0 1 1.835-7.107L12 13.414zm-7.742 4.914L10.586 12L9.13 10.544a8.993 8.993 0 0 1-7.107 1.835a9.953 9.953 0 0 0 2.235 5.949z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bath { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 10H7V7.113c0-.997.678-1.923 1.661-2.085A2.003 2.003 0 0 1 11 7h2a4.003 4.003 0 0 0-4.398-3.98C6.523 3.222 5 5.089 5 7.178V10H3a1 1 0 0 0-1 1v2c0 2.606 1.674 4.823 4 5.65V22h2v-3h8v3h2v-3.35c2.326-.827 4-3.044 4-5.65v-2a1 1 0 0 0-1-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-battery { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4h-2V8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-battery-charging { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 10V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4h-2zM9 17l2-3.89L7 12l6-5l-1 3.89L16 12l-7 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-battery-full { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 18h14a2 2 0 0 0 2-2v-2h2v-4h-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2zm1-9h12v6H5V9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-battery-low { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4h-2V8zM5 15V9h3l4 6H5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bed { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 9.556V3h-2v2H6V3H4v6.557C2.81 10.25 2 11.526 2 13v4a1 1 0 0 0 1 1h1v4h2v-4h12v4h2v-4h1a1 1 0 0 0 1-1v-4c0-1.474-.811-2.75-2-3.444zM11 9H6V7h5v2zm7 0h-5V7h5v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-been-here { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8zm-1 13.414l-3.707-3.707l1.414-1.414L11 12.586l5.293-5.293l1.414 1.414L11 15.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-beer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6h-2V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v15c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-1h2c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2zM8 17H6V7h2v10zm6 0h-2V7h2v10zm6-1h-2V8h2v8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bell { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22zm7-7.414V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A.996.996 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a.996.996 0 0 0-.293-.707L19 14.586z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bell-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22zm8.707-5.707L19 14.586V10c0-3.217-2.185-5.926-5.145-6.743C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A.997.997 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a.997.997 0 0 0-.293-.707zM16 12H8v-2h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bell-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.345 18.931A.993.993 0 0 0 21 18v-1a.996.996 0 0 0-.293-.707L19 14.586V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258c-1.323.364-2.463 1.128-3.346 2.127L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-1.362-1.362zM12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22zM5 10v4.586l-1.707 1.707A.996.996 0 0 0 3 17v1a1 1 0 0 0 1 1h10.879L5.068 9.189C5.037 9.457 5 9.724 5 10z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bell-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22zm8.707-5.707L19 14.586V10c0-3.217-2.185-5.926-5.145-6.743C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A.997.997 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a.997.997 0 0 0-.293-.707zM16 12h-3v3h-2v-3H8v-2h3V7h2v3h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bell-ring { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5.705 3.71l-1.41-1.42C1 5.563 1 7.935 1 11h1l1-.063C3 8.009 3 6.396 5.705 3.71zm13.999-1.42l-1.408 1.42C21 6.396 21 8.009 21 11l2-.063c0-3.002 0-5.374-3.296-8.647zM12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22zm7-7.414V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.184 4.073 5 6.783 5 10v4.586l-1.707 1.707A.996.996 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a.996.996 0 0 0-.293-.707L19 14.586z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bible { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 22h15v-2H6.012C5.55 19.988 5 19.805 5 19s.55-.988 1.012-1H21V4a2 2 0 0 0-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3zM8 7h3V5h2v2h3v2h-3v6h-2V9H8V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-binoculars { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.447 5.345A3.27 3.27 0 0 0 16.29 3a3.293 3.293 0 0 0-3.277 3h-2.025a3.297 3.297 0 0 0-3.284-3a3.268 3.268 0 0 0-3.151 2.345l-2.511 8.368A1.027 1.027 0 0 0 2 14v1a5.006 5.006 0 0 0 5.001 5a5.003 5.003 0 0 0 4.576-3h.846a5.003 5.003 0 0 0 4.576 3A5.006 5.006 0 0 0 22 14.999V14c0-.098-.015-.194-.042-.287l-2.511-8.368zM7.001 18A3.005 3.005 0 0 1 4 15c0-.076.017-.147.022-.222A2.995 2.995 0 0 1 7 12a3 3 0 0 1 3 3v.009A3.004 3.004 0 0 1 7.001 18zm9.998 0A3.004 3.004 0 0 1 14 15.009V15a3 3 0 0 1 6-.001A3.005 3.005 0 0 1 16.999 18z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-blanket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H7C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h12c1.654 0 3-1.346 3-3s-1.346-3-3-3H6v2h13a1 1 0 0 1 0 2H7c-1.654 0-3-1.346-3-3s1.346-3 3-3h13c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zM4 13h.003L4 13.002V13z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bolt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.168 8H13l.806-4.835A1 1 0 0 0 12.819 2H7.667a1 1 0 0 0-.986.835l-1.667 10A1 1 0 0 0 6 14h4v8l8.01-12.459A1 1 0 0 0 17.168 8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bolt-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-1 16v-5H7l6-7v5h4l-6 7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bomb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.293 4.293l-1.086 1.086l-1.086-1.086a.999.999 0 0 0-1.414 0l-1.249 1.249A8.427 8.427 0 0 0 10.499 5C5.813 5 2 8.813 2 13.5S5.813 22 10.499 22s8.5-3.813 8.5-8.5a8.42 8.42 0 0 0-.431-2.654L19.914 9.5a.999.999 0 0 0 0-1.414l-1.293-1.293l1.09-1.09C19.94 5.474 20.556 5 21 5h1V3h-1c-1.4 0-2.584 1.167-2.707 1.293zM10.499 10c-.935 0-1.813.364-2.475 1.025A3.48 3.48 0 0 0 7 13.5H5c0-1.468.571-2.849 1.609-3.888A5.464 5.464 0 0 1 10.499 8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.852 5.148a3.317 3.317 0 0 0-.96-2.183a3.333 3.333 0 1 0-4.713 4.714l-5.499 5.5a3.333 3.333 0 1 0-4.714 4.713c.606.606 1.39.918 2.183.96c.042.793.354 1.576.96 2.183a3.333 3.333 0 1 0 4.713-4.714l5.499-5.499a3.333 3.333 0 1 0 4.714-4.713a3.313 3.313 0 0 0-2.183-.961z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bong { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.293 8.293l-2.069 2.069A7.017 7.017 0 0 0 15 8.681V4h1V2H8v2h1v4.681A7.01 7.01 0 0 0 5 15c0 3.859 3.141 7 7 7s7-3.141 7-7a6.958 6.958 0 0 0-.652-2.934l2.359-2.359l-1.414-1.414zm-8.959 1.998l.666-.235V4h2v6.056l.666.235A5.006 5.006 0 0 1 16.886 14H7.114a5.006 5.006 0 0 1 3.22-3.709z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-book { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.012 18H21V4a2 2 0 0 0-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.805 5 19s.55-.988 1.012-1zM8 6h9v2H8V6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-book-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.012 18H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1zM8 9h3V6h2v3h3v2h-3v3h-2v-3H8V9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-book-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 5v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-book-bookmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19c0-.101.009-.191.024-.273c.112-.576.584-.717.988-.727H21V4a2 2 0 0 0-2-2zm0 9l-2-1l-2 1V4h4v7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-book-content { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm-1 4v2h-5V7h5zm-5 4h5v2h-5v-2zM4 19V5h7v14H4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-book-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.012 18H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19c0-.101.009-.191.024-.273c.112-.576.584-.717.988-.727zM8.648 7.642a2.224 2.224 0 0 1 3.125 0l.224.219l.223-.219a2.225 2.225 0 0 1 3.126 0a2.129 2.129 0 0 1 0 3.069L11.998 14l-3.349-3.289a2.128 2.128 0 0 1-.001-3.069z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-book-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 3h-7a2.98 2.98 0 0 0-2 .78A2.98 2.98 0 0 0 10 3H3a1 1 0 0 0-1 1v15a1 1 0 0 0 1 1h5.758a2.01 2.01 0 0 1 1.414.586l1.121 1.121c.009.009.021.012.03.021c.086.08.182.15.294.196h.002a.996.996 0 0 0 .762 0h.002c.112-.046.208-.117.294-.196c.009-.009.021-.012.03-.021l1.121-1.121A2.01 2.01 0 0 1 15.242 20H21a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-1 15h-4.758a4.03 4.03 0 0 0-2.242.689V6c0-.551.448-1 1-1h6v13z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-book-reader { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2 8v11.529S6.621 19.357 12 22c5.379-2.643 10-2.471 10-2.471V8s-5.454 0-10 2.471C7.454 8 2 8 2 8z' fill='black'/%3E%3Ccircle cx='12' cy='5' r='3' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 10.132v-6c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2V22l7-4.666L19 22V10.132z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmark-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2zm1.5 9h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5V11z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmark-alt-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2zM13 11H7V9h6v2zm7 0h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5V11z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmark-alt-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2zM13 11h-2v2H9v-2H7V9h2V7h2v2h2v2zm7 0h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5V11z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmark-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 22V4c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2v18l7-4.666L19 22zM8.006 8.056c0-.568.224-1.083.585-1.456c.361-.372.86-.603 1.412-.603c0 0 .996-.003 1.997 1.029c1.001-1.032 1.997-1.029 1.997-1.029c.552 0 1.051.23 1.412.603s.585.888.585 1.456s-.224 1.084-.585 1.456L12 13.203L8.591 9.512a2.083 2.083 0 0 1-.585-1.456z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmark-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 2H7a2 2 0 0 0-2 2v18l7-4.848L19 22V4a2 2 0 0 0-2-2zm-1 9H8V9h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmark-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 2H7a2 2 0 0 0-2 2v18l7-4.848L19 22V4a2 2 0 0 0-2-2zm-1 9h-3v3h-2v-3H8V9h3V6h2v3h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmark-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 11.222L14.667 13l-.89-3.111L16 8l-2.667-.333L12 5l-1.333 2.667L8 8l2.223 1.889L9.333 13z' fill='black'/%3E%3Cpath d='M19 21.723V4a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v17.723l7-4.571l7 4.571zM8 8l2.667-.333L12 5l1.333 2.667L16 8l-2.223 1.889l.89 3.111L12 11.222L9.333 13l.89-3.111L8 8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bookmarks { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.999 23V7c0-1.103-.897-2-2-2h-8c-1.103 0-2 .897-2 2v16l6-3.601l6 3.601z' fill='black'/%3E%3Cpath d='M15.585 3h1.414c1.103 0 2 .897 2 2v10.443l2 2.489V3c0-1.103-.897-2-2-2h-8c-1.103 0-2 .897-2 2h6.586z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 10.975V8a2 2 0 0 0-2-2h-6V4.688c.305-.274.5-.668.5-1.11a1.5 1.5 0 0 0-3 0c0 .442.195.836.5 1.11V6H5a2 2 0 0 0-2 2v2.998l-.072.005A.999.999 0 0 0 2 12v2a1 1 0 0 0 1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a1 1 0 0 0 1-1v-1.938a1.004 1.004 0 0 0-.072-.455c-.202-.488-.635-.605-.928-.632zM7 12c0-1.104.672-2 1.5-2s1.5.896 1.5 2s-.672 2-1.5 2S7 13.104 7 12zm8.998 6c-1.001-.003-7.997 0-7.998 0v-2s7.001-.002 8.002 0l-.004 2zm-.498-4c-.828 0-1.5-.896-1.5-2s.672-2 1.5-2s1.5.896 1.5 2s-.672 2-1.5 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bowl-hot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 10H3a1 1 0 0 0-1 1a10 10 0 0 0 5 8.66V21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.34A10 10 0 0 0 22 11a1 1 0 0 0-1-1z' fill='black'/%3E%3Cpath d='M9 9V7.93a4.51 4.51 0 0 0-1.28-3.15A2.49 2.49 0 0 1 7 3V2H5v1a4.51 4.51 0 0 0 1.28 3.17A2.49 2.49 0 0 1 7 7.93V9z' fill='black'/%3E%3Cpath d='M13 9V7.93a4.51 4.51 0 0 0-1.28-3.15A2.49 2.49 0 0 1 11 3V2H9v1a4.51 4.51 0 0 0 1.28 3.15A2.49 2.49 0 0 1 11 7.93V9z' fill='black'/%3E%3Cpath d='M17 9V7.93a4.51 4.51 0 0 0-1.28-3.15A2.49 2.49 0 0 1 15 3V2h-2v1a4.51 4.51 0 0 0 1.28 3.15A2.49 2.49 0 0 1 15 7.93V9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bowl-rice { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 10a3.58 3.58 0 0 0-1.8-3a3.66 3.66 0 0 0-3.63-3.13a3.86 3.86 0 0 0-1 .13a3.7 3.7 0 0 0-5.11 0a3.86 3.86 0 0 0-1-.13A3.66 3.66 0 0 0 4.81 7A3.58 3.58 0 0 0 3 10a1 1 0 0 0-1 1a10 10 0 0 0 5 8.66V21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.34A10 10 0 0 0 22 11a1 1 0 0 0-1-1zM5 10a1.59 1.59 0 0 1 1.11-1.39l.83-.26l-.16-.85a1.64 1.64 0 0 1 1.66-1.62a1.78 1.78 0 0 1 .83.2l.81.45l.5-.77a1.71 1.71 0 0 1 2.84 0l.5.77l.81-.45a1.78 1.78 0 0 1 .83-.2a1.65 1.65 0 0 1 1.67 1.6l-.16.85l.82.28A1.59 1.59 0 0 1 19 10z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bowling-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zM6.5 12a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 12zM9 6.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 9 6.5zm2.5 6.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 11.5 13z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-box { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2 3h20v4H2zm17 5H3v11a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8h-2zm-3 6H8v-2h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-brain { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3.299 17.596c.432 1.332 1.745 2.182 3.146 2.182H6.5A2.78 2.78 0 0 0 9.223 22c.457 0 .884-.115 1.262-.313a.992.992 0 0 0 .515-.882V3.027a.997.997 0 0 0-.785-.983a2.324 2.324 0 0 0-1.479.201c-.744.356-1.18 1.151-1.18 1.978v.055a2.778 2.778 0 0 0-2.744 4.433A3.327 3.327 0 0 0 2 12c0 1.178.611 2.211 1.533 2.812c-.43.771-.571 1.746-.234 2.784zm15.889-8.885a2.778 2.778 0 0 0-2.744-4.433v-.055c0-.826-.437-1.622-1.181-1.978a2.32 2.32 0 0 0-1.478-.201a.998.998 0 0 0-.785.983v17.777c0 .365.192.712.516.882c.378.199.804.314 1.261.314a2.78 2.78 0 0 0 2.723-2.223h.056c1.4 0 2.714-.85 3.146-2.182c.337-1.038.196-2.013-.234-2.784A3.35 3.35 0 0 0 22 12a3.327 3.327 0 0 0-2.812-3.289z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-briefcase { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v3h20V8c0-1.103-.897-2-2-2zM9 4h6v2H9V4zm5 10h-4v-2H2v7c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-7h-8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-briefcase-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2zM6 8h2v11H6V8zm12 11h-2V8h2v11zM15 4v2H9V4h6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-briefcase-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v4h5v-2h2v2h6v-2h2v2h5V8c0-1.103-.897-2-2-2zM9 4h6v2H9V4zm8 11h-2v-2H9v2H7v-2H2v6c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-6h-5v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-brightness { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.546 11.646L19 9.101V5.5a.5.5 0 0 0-.5-.5h-3.601l-2.546-2.546a.5.5 0 0 0-.707 0L9.101 5H5.5a.5.5 0 0 0-.5.5v3.601l-2.546 2.546a.5.5 0 0 0 0 .707L5 14.899V18.5a.5.5 0 0 0 .5.5h3.601l2.546 2.546a.5.5 0 0 0 .707 0L14.899 19H18.5a.5.5 0 0 0 .5-.5v-3.601l2.546-2.546a.5.5 0 0 0 0-.707zM12 16a4 4 0 1 1 0-8a4 4 0 0 1 0 8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-brightness-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.546 11.646L19 9.101V5.5a.5.5 0 0 0-.5-.5h-3.601l-2.546-2.546a.5.5 0 0 0-.707 0L9.101 5H5.5a.5.5 0 0 0-.5.5v3.601l-2.546 2.546a.5.5 0 0 0 0 .707L5 14.899V18.5a.5.5 0 0 0 .5.5h3.601l2.546 2.546a.5.5 0 0 0 .707 0L14.899 19H18.5a.5.5 0 0 0 .5-.5v-3.601l2.546-2.546a.5.5 0 0 0 0-.707zM12 8a4 4 0 0 1 0 8' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-brush { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.207 11.278l-2.035-2.035l-1.415-1.415l-5.035-5.035a.999.999 0 0 0-1.414 0L6.151 7.949L4.736 9.363a2.985 2.985 0 0 0-.878 2.122c0 .802.313 1.556.879 2.121l.707.707l-2.122 2.122a2.925 2.925 0 0 0-.873 2.108a2.968 2.968 0 0 0 1.063 2.308a2.92 2.92 0 0 0 1.886.681c.834 0 1.654-.341 2.25-.937l2.039-2.039l.707.706c1.133 1.133 3.107 1.134 4.242.001l.708-.707l.569-.569l.138-.138l5.156-5.157a.999.999 0 0 0 0-1.414zm-7.277 5.865l-.708.706a1.021 1.021 0 0 1-1.414 0l-1.414-1.413a.999.999 0 0 0-1.414 0l-2.746 2.745a1.192 1.192 0 0 1-.836.352a.914.914 0 0 1-.595-.208a.981.981 0 0 1-.354-.782a.955.955 0 0 1 .287-.692l2.829-2.829a.999.999 0 0 0 0-1.414l-1.414-1.415c-.189-.188-.293-.438-.293-.706s.104-.519.293-.708l.707-.707l3.536 3.536l3.536 3.535z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-brush-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 8.001h-2V8h-1V4.999a2.92 2.92 0 0 0-.874-2.108a2.943 2.943 0 0 0-2.39-.879C10.202 2.144 9 3.508 9 5.117V8H6c-1.103 0-2 .897-2 2v11a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V10.001c0-1.103-.897-2-2-2zM6 12v-2h5V5.117c0-.57.407-1.07 1.002-1.117c.266 0 .512.103.712.307a.956.956 0 0 1 .286.692V10h.995l.005.001h4V12H6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bug { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.787 7h10.426c-.108-.158-.201-.331-.318-.481l2.813-2.812l-1.414-1.414l-2.846 2.846a6.575 6.575 0 0 0-.723-.454a5.778 5.778 0 0 0-5.45 0c-.25.132-.488.287-.722.453L5.707 2.293L4.293 3.707l2.813 2.812c-.118.151-.21.323-.319.481zM5.756 9H2v2h2.307c-.065.495-.107.997-.107 1.5c0 .507.042 1.013.107 1.511H2v2h2.753c.013.039.021.08.034.118c.188.555.421 1.093.695 1.6c.044.081.095.155.141.234l-2.33 2.33l1.414 1.414l2.11-2.111a7.477 7.477 0 0 0 2.068 1.619c.479.253.982.449 1.496.58c.204.052.411.085.618.118V16h2v5.914a6.23 6.23 0 0 0 .618-.118a6.812 6.812 0 0 0 1.496-.58c.465-.246.914-.55 1.333-.904c.258-.218.5-.462.734-.716l2.111 2.111l1.414-1.414l-2.33-2.33c.047-.08.098-.155.142-.236c.273-.505.507-1.043.694-1.599c.013-.039.021-.079.034-.118H22v-2h-2.308c.065-.499.107-1.004.107-1.511c0-.503-.042-1.005-.106-1.5H22V9H5.756z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bug-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 5.414l1.707-1.707l-1.414-1.414l-1.563 1.562C15.483 2.708 13.824 2 12 2s-3.483.708-4.73 1.855L5.707 2.293L4.293 3.707L6 5.414A6.937 6.937 0 0 0 5 9H3v2h2v2H3v2h2c0 3.86 3.141 7 7 7s7-3.14 7-7h2v-2h-2v-2h2V9h-2a6.937 6.937 0 0 0-1-3.586zM15 15H9v-2h6v2zm0-4H9V9h6v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-building { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 2H7a2 2 0 0 0-2 2v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4a2 2 0 0 0-2-2zm-6 14H8v-2h3v2zm0-4H8v-2h3v2zm0-4H8V6h3v2zm5 8h-3v-2h3v2zm0-4h-3v-2h3v2zm0-4h-3V6h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-building-house { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.991 2H9.01C7.899 2 7 2.899 7 4.01v5.637l-4.702 4.642A1 1 0 0 0 3 16v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4.009C21 2.899 20.102 2 18.991 2zm-8.069 13.111V20H5v-5.568l2.987-2.949l2.935 3.003v.625zM13 9h-2V7h2v2zm4 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z' fill='black'/%3E%3Cpath d='M7 15h2v2H7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-buildings { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7 14.001h2v2H7z' fill='black'/%3E%3Cpath d='M19 2h-8a2 2 0 0 0-2 2v6H5c-1.103 0-2 .897-2 2v9a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a2 2 0 0 0-2-2zM5 20v-8h6v8H5zm9-12h-2V6h2v2zm4 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V6h2v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bulb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9 20h6v2H9zm7.906-6.288C17.936 12.506 19 11.259 19 9c0-3.859-3.141-7-7-7S5 5.141 5 9c0 2.285 1.067 3.528 2.101 4.73c.358.418.729.851 1.084 1.349c.144.206.38.996.591 1.921h-.792v2h8.032v-2h-.79c.213-.927.45-1.719.593-1.925c.352-.503.726-.94 1.087-1.363z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bullseye { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm0 17c-3.859 0-7-3.14-7-7s3.141-7 7-7s7 3.14 7 7s-3.141 7-7 7z' fill='black'/%3E%3Cpath d='M12 7c-2.757 0-5 2.243-5 5s2.243 5 5 5s5-2.243 5-5s-2.243-5-5-5zm0 7c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-buoy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm7.736 8h-3.16A5.02 5.02 0 0 0 14 7.424V4.263A8.015 8.015 0 0 1 19.736 10zM12 15c-1.654 0-3-1.346-3-3s1.346-3 3-3s3 1.346 3 3s-1.346 3-3 3zM10 4.263v3.161A5.02 5.02 0 0 0 7.424 10h-3.16A8.015 8.015 0 0 1 10 4.263zM4.264 14h3.16A5.02 5.02 0 0 0 10 16.576v3.161A8.015 8.015 0 0 1 4.264 14zM14 19.737v-3.161A5.02 5.02 0 0 0 16.576 14h3.16A8.015 8.015 0 0 1 14 19.737z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 6.021c.003-.146-.007-1.465-1.3-2.735C18.427 2.036 17.143 2 17 2H6.996c-.239 0-1.493.063-2.708 1.302C3.036 4.578 3 5.859 3 6v3H2v3h1v6c0 .734.406 1.373 1 1.721V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h10v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 21 18v-6h1V9h-1V6.021zM9 4h6v2H9V4zM6.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 18zm4.5-5H5V8h6v5zm6.5 5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 17.5 18zm1.5-5h-6V8h6v5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-bus-school { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 11.597V11h1V8h-1V6c0-2.206-1.794-4-4-4H7C4.794 2 3 3.794 3 6v2H2v3h1v.597a3.97 3.97 0 0 0-.999 2.648l.004 3.758c.001.733.404 1.369.995 1.716V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.274a2.02 2.02 0 0 0 .421-.313c.377-.378.585-.881.584-1.415l-.004-3.759A3.965 3.965 0 0 0 21 11.597zM8 4h8v2H8V4zM6.5 17a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 17zm4.5-5H5V8h6v4zm6.5 5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 17.5 17zm1.5-5h-6V8h6v4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-business { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 7h-6a1 1 0 0 0-1 1v3h-2V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1zM8 6h2v2H8V6zM6 16H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V6h2v2zm4 8H8v-2h2v2zm0-4H8v-2h2v2zm9 4h-2v-2h2v2zm0-4h-2v-2h2v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cabinet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v7h18V4zm-5 4H8V5h2v1h4V5h2v3zM5 22h14c1.103 0 2-.897 2-2v-7H3v7c0 1.103.897 2 2 2zm3-6h2v1h4v-1h2v3H8v-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cable-car { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2 9.76l9-2.45V10H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-4V6.76l9-2.45V2.24L2 7.69zM11 12v3H7v-3zm6 0v3h-4v-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cake { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.997 15c-1.601 0-2.446-.676-3.125-1.219c-.567-.453-.977-.781-1.878-.781c-.898 0-1.287.311-1.874.78c-.679.544-1.524 1.22-3.125 1.22s-2.444-.676-3.123-1.22C3.285 13.311 2.897 13 2 13v5c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-5c-.899 0-1.288.311-1.876.781c-.68.543-1.525 1.219-3.127 1.219zM19 5h-6V2h-2v3H5C3.346 5 2 6.346 2 8v3c1.6 0 2.443.676 3.122 1.22c.587.469.975.78 1.873.78c.899 0 1.287-.311 1.875-.781c.679-.543 1.524-1.219 3.124-1.219c1.602 0 2.447.676 3.127 1.219c.588.47.977.781 1.876.781c.9 0 1.311-.328 1.878-.781C19.554 11.676 20.399 11 22 11V8c0-1.654-1.346-3-3-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calculator { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 22h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zm3-3H7v-2h2v2zm0-4H7v-2h2v2zm0-4H7V9h2v2zm4 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm4 8h-2v-6h2v6zm0-8h-2V9h2v2zM6 4h12v3H6V4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 20V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2zM9 18H7v-2h2v2zm0-4H7v-2h2v2zm4 4h-2v-2h2v2zm0-4h-2v-2h2v2zm4 4h-2v-2h2v2zm0-4h-2v-2h2v2zm2-5H5V7h14v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zM5 7h14v2H5V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm6-3.586l-3.707-3.707l1.414-1.414L11 15.586l4.293-4.293l1.414 1.414L11 18.414zM5 7h14v2H5V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm4.799-2.013H8v-1.799l4.977-4.97l1.799 1.799l-4.977 4.97zm5.824-5.817l-1.799-1.799L15.196 11l1.799 1.799l-1.372 1.371zM5 7h14v2H5V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-event { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-1 15h-6v-6h6v6zm1-10H5V7h14v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-exclamation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-6 16h-2v-2h2v2zm0-4h-2v-5h2v5zm6-7H5V7h14v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-3.648 11.711L12.002 19l-3.349-3.289a2.129 2.129 0 0 1 0-3.069a2.224 2.224 0 0 1 3.125 0l.224.219l.224-.219a2.225 2.225 0 0 1 3.126 0a2.129 2.129 0 0 1 0 3.069zM19 9H5V7h14v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm11-6H8v-2h8v2zM5 7h14v2H5V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm11-6h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zM5 7h14v2H5V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-4.588 15l-2.449-1.288L9.514 19l.468-2.728L8 14.342l2.738-.398l1.225-2.48l1.225 2.48l2.738.398l-1.981 1.931l.467 2.727zM19 9H5V7h14v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-week { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-2 8v2H7v-3h10v1zm2-3H5V7h14v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-calendar-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm10.707-4.707l-1.414 1.414L12 16.414l-2.293 2.293l-1.414-1.414L10.586 15l-2.293-2.293l1.414-1.414L12 13.586l2.293-2.293l1.414 1.414L13.414 15l2.293 2.293zM5 7h14v2H5V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-camera { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 9c-1.626 0-3 1.374-3 3s1.374 3 3 3s3-1.374 3-3s-1.374-3-3-3z' fill='black'/%3E%3Cpath d='M20 5h-2.586l-2.707-2.707A.996.996 0 0 0 14 2h-4a.996.996 0 0 0-.707.293L6.586 5H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2zm-8 12c-2.71 0-5-2.29-5-5s2.29-5 5-5s5 2.29 5 5s-2.29 5-5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-camera-home { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='10' r='3' fill='black'/%3E%3Cpath d='M18.125 2H5.875A1.877 1.877 0 0 0 4 3.875v12.25C4 17.159 4.841 18 5.875 18H11v2H7v2h10v-2h-4v-2h5.125A1.877 1.877 0 0 0 20 16.125V3.875A1.877 1.877 0 0 0 18.125 2zM12 15c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5s-2.243 5-5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-camera-movie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 11c0-.959-.68-1.761-1.581-1.954C16.779 8.445 17 7.75 17 7c0-2.206-1.794-4-4-4c-1.516 0-2.822.857-3.5 2.104C8.822 3.857 7.516 3 6 3C3.794 3 2 4.794 2 7c0 .902.312 1.726.817 2.396A1.993 1.993 0 0 0 2 11v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-2.637l4 2v-7l-4 2V11zm-5-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2zM6 5c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-camera-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 20h11.879l-3.083-3.083A4.774 4.774 0 0 1 12 17c-2.71 0-5-2.29-5-5c0-.271.039-.535.083-.796L2.144 6.265C2.054 6.493 2 6.74 2 7v11c0 1.103.897 2 2 2zM20 5h-2.586l-2.707-2.707A.996.996 0 0 0 14 2h-4a.996.996 0 0 0-.707.293L6.586 5h-.172L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-.626-.626A1.98 1.98 0 0 0 22 18V7c0-1.103-.897-2-2-2zm-5.312 8.274A2.86 2.86 0 0 0 15 12c0-1.626-1.374-3-3-3c-.456 0-.884.12-1.274.312l-1.46-1.46A4.88 4.88 0 0 1 12 7c2.71 0 5 2.29 5 5a4.88 4.88 0 0 1-.852 2.734l-1.46-1.46z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-camera-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 5h-2.586l-2.707-2.707A.996.996 0 0 0 14 2h-4a.996.996 0 0 0-.707.293L6.586 5H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2zm-8 12c-2.71 0-5-2.29-5-5c0-2.711 2.29-5 5-5s5 2.289 5 5c0 2.71-2.29 5-5 5z' fill='black'/%3E%3Cpath d='M13 9h-2v2H9v2h2v2h2v-2h2v-2h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-capsule { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.434 20.566c1.335 0 2.591-.52 3.535-1.464l7.134-7.133a5.008 5.008 0 0 0-.001-7.072a4.969 4.969 0 0 0-3.536-1.463c-1.335 0-2.59.52-3.534 1.464l-7.134 7.133a5.01 5.01 0 0 0-.001 7.072a4.971 4.971 0 0 0 3.537 1.463zm5.011-14.254a2.979 2.979 0 0 1 2.12-.878c.802 0 1.556.312 2.122.878a3.004 3.004 0 0 1 .001 4.243l-2.893 2.892l-4.242-4.244l2.892-2.891z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-captions { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-9 6H8v4h3v2H8c-1.103 0-2-.897-2-2v-4c0-1.103.897-2 2-2h3v2zm7 0h-3v4h3v2h-3c-1.103 0-2-.897-2-2v-4c0-1.103.897-2 2-2h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-car { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.772 10.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 4H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 12v5c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2h12v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2.277A1.99 1.99 0 0 0 22 17v-5a2 2 0 0 0-1.228-1.845zM7.441 6h9.117c.431 0 .813.274.949.684L18.613 10H5.387l1.105-3.316A1 1 0 0 1 7.441 6zM5.5 16a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 16zm13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 16z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-car-battery { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2zM9 14H4v-2h5v2zm11 0h-2v2h-2v-2h-2v-2h2v-2h2v2h2v2zM4 3h4v2H4zm12 0h4v2h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-car-crash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.634 17.918a1.765 1.765 0 0 0 1.201 1.291l.18.791H4v2h16v-2H6.683a.84.84 0 0 0-.007-.278l-.196-.863l10.357-2.356l.196.863a.886.886 0 0 0 1.06.667l.863-.197a.885.885 0 0 0 .667-1.06l-.251-1.103c.446-.416.67-1.046.525-1.683l-.59-2.59a1.76 1.76 0 0 0-1.262-1.307l-2.049-3.378a2.774 2.774 0 0 0-2.982-1.263l-7.868 1.79a2.769 2.769 0 0 0-2.144 2.43l-.387 3.932a1.76 1.76 0 0 0-.57 1.724l.589 2.59zm3.02-.688a1.327 1.327 0 1 1-.59-2.589a1.327 1.327 0 0 1 .59 2.589zm11.222-2.552a1.328 1.328 0 1 1-.59-2.587a1.328 1.328 0 0 1 .59 2.587zM5.589 9.192l7.869-1.791a.773.773 0 0 1 .83.351l1.585 2.613l-.566.129l-10.046 2.287l-.568.129l.299-3.042a.772.772 0 0 1 .597-.676zM18.405 4L17 2l-.5 3L19 9l3 1l-2-2.539l2-.933l-2-.933L22 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-car-garage { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 19.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2.001 2.001 0 0 0 2 15v3c0 .738.404 1.376 1 1.723zM5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18zm13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18zM7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684z' fill='black'/%3E%3Cpath d='M22 7.388V5.279l-9.684-3.228a.996.996 0 0 0-.658.009L2 5.572V7.7l10.015-3.642L22 7.388z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-car-mechanic { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.772 13.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2.001 2.001 0 0 0 2 15v3c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845zM7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684zM5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18zm13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18zM5.277 5c.347.595.985 1 1.723 1s1.376-.405 1.723-1h6.555c.346.595.984 1 1.722 1s1.376-.405 1.723-1H17V3h1.723c-.347-.595-.985-1-1.723-1s-1.376.405-1.723 1H8.723C8.376 2.405 7.738 2 7 2s-1.376.405-1.723 1H7v2H5.277z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-car-wash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.772 13.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2.001 2.001 0 0 0 2 15v3c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845zM7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684zM5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18zm13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18zM9 4.378c.005-1.088-1.037-2.051-1.387-2.344a.176.176 0 0 0-.228 0C7.033 2.325 5.995 3.271 6 4.377C6 5.272 6.673 6 7.5 6S9 5.272 9 4.378zm4.5 0c.005-1.088-1.037-2.052-1.387-2.344a.176.176 0 0 0-.228 0c-.353.291-1.391 1.238-1.386 2.344C10.5 5.272 11.173 6 12 6s1.5-.728 1.5-1.622zm4.5 0c.005-1.088-1.037-2.052-1.387-2.344a.176.176 0 0 0-.228 0c-.352.291-1.39 1.237-1.385 2.343C15 5.272 15.673 6 16.5 6S18 5.272 18 4.378z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 17c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H6c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h12zM4 19h16v2H4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-caret-down-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10c5.515 0 10-4.486 10-10S17.515 2 12 2zm0 14l-5-6h10l-5 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-caret-down-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm12-11l-5 6l-5-6h10z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-caret-left-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm2 15l-6-5l6-5v10z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-caret-left-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm9-14v10l-6-5l6-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-caret-right-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10zM10 7l6 5l-6 5V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-caret-right-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm5-14l6 5l-6 5V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-caret-up-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.485 2 2 6.486 2 12s4.485 10 10 10c5.514 0 10-4.486 10-10S17.514 2 12 2zM7 14l5-6l5 6H7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-caret-up-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm7-13l5 6H7l5-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-carousel { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 3H8c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h8c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM2 7v10c0 1.103.897 2 2 2V5c-1.103 0-2 .897-2 2zm18-2v14c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.822 7.431A1 1 0 0 0 21 7H7.333L6.179 4.23A1.994 1.994 0 0 0 4.333 3H2v2h2.333l4.744 11.385A1 1 0 0 0 10 17h8c.417 0 .79-.259.937-.648l3-8a1 1 0 0 0-.115-.921z' fill='black'/%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cart-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3Cpath d='M21 7H7.334L6.18 4.23A1.995 1.995 0 0 0 4.333 3H2v2h2.334l4.743 11.385c.155.372.52.615.923.615h8c.417 0 .79-.259.937-.648l3-8A1.003 1.003 0 0 0 21 7zm-4 6h-2v2h-2v-2h-2v-2h2V9h2v2h2v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cart-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 4H2v2h2.3l3.521 9.683A2.004 2.004 0 0 0 9.7 17H18v-2H9.7l-.728-2H18c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 4z' fill='black'/%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='16.5' cy='19.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cart-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3Cpath d='M21 7H7.334L6.18 4.23A1.995 1.995 0 0 0 4.333 3H2v2h2.334l4.743 11.385c.155.372.52.615.923.615h8c.417 0 .79-.259.937-.648l3-8A1.003 1.003 0 0 0 21 7zm-7 8l-3-3h2V9h2v3h2l-3 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 14a5 5 0 0 0 2.71-.81L20 13a3.16 3.16 0 0 0 .45-.37l.21-.2a4.48 4.48 0 0 0 .48-.58l.06-.08a4.28 4.28 0 0 0 .41-.76a1.57 1.57 0 0 0 .09-.23a4.21 4.21 0 0 0 .2-.63l.06-.25A5.5 5.5 0 0 0 22 9V2l-3 3h-4l-3-3v7a5 5 0 0 0 5 5zm2-7a1 1 0 1 1-1 1a1 1 0 0 1 1-1zm-4 0a1 1 0 1 1-1 1a1 1 0 0 1 1-1z' fill='black'/%3E%3Cpath d='M11 22v-5H8v5H5V11.9a3.49 3.49 0 0 1-2.48-1.64A3.59 3.59 0 0 1 2 8.5A3.65 3.65 0 0 1 6 5a1.89 1.89 0 0 0 2-2a1 1 0 0 1 1-1a1 1 0 0 1 1 1a3.89 3.89 0 0 1-4 4C4.19 7 4 8.16 4 8.51S4.18 10 6 10h5.09A6 6 0 0 0 19 14.65V22h-3v-5h-2v5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-category { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 11h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zm10 0h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zM4 21h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zm13 0c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-category-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm10 10h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1zM17 3c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4zM7 13c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cctv { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.618 7.462L6.403 2.085a1.007 1.007 0 0 0-.77-.016a1.002 1.002 0 0 0-.552.537l-3 7a1 1 0 0 0 .525 1.313L9.563 13.9L8.323 17H4v-3H2v8h2v-3h4.323c.823 0 1.552-.494 1.856-1.258l1.222-3.054l3.419 1.465a1 1 0 0 0 1.311-.518l3-6.857a1 1 0 0 0-.513-1.316zm1.312 8.91l-1.858-.742l1.998-5l1.858.741z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-certification { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.047 14.667a.992.992 0 0 0 .466.607l1.909 1.104v2.199a1 1 0 0 0 1 1h2.199l1.104 1.91a1.002 1.002 0 0 0 1.366.366L12 20.75l1.91 1.104a1.002 1.002 0 0 0 1.366-.366l1.103-1.909h2.199a1 1 0 0 0 1-1V16.38l1.909-1.104a.999.999 0 0 0 .366-1.366L20.75 12l1.104-1.909a1 1 0 0 0-.366-1.366l-1.909-1.104V5.422a1 1 0 0 0-1-1H16.38l-1.103-1.909a1.004 1.004 0 0 0-.607-.466a.994.994 0 0 0-.759.1L12 3.25l-1.909-1.104a.998.998 0 0 0-1.366.365l-1.104 1.91H5.422a1 1 0 0 0-1 1V7.62L2.513 8.725a1.001 1.001 0 0 0-.365 1.366L3.251 12l-1.104 1.909a1.003 1.003 0 0 0-.1.758z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chalkboard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h4l-1.8 2.4l1.6 1.2l2.7-3.6h3l2.7 3.6l1.6-1.2L16 18h4c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zM5 13h4v2H5v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 21c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14zM9.553 9.658l4 2l1.553-3.105l1.789.895l-2.447 4.895l-4-2l-1.553 3.105l-1.789-.895l2.447-4.895z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 18h2v4.081L11.101 18H16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2z' fill='black'/%3E%3Cpath d='M20 2H8c-1.103 0-2 .897-2 2h12c1.103 0 2 .897 2 2v8c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-check-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-1.999 14.413l-3.713-3.705L7.7 11.292l2.299 2.295l5.294-5.294l1.414 1.414l-6.706 6.706z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-check-shield { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.488 21.754c.294.157.663.156.957-.001c8.012-4.304 8.581-12.713 8.574-15.104a.988.988 0 0 0-.596-.903l-8.05-3.566a1.005 1.005 0 0 0-.813.001L3.566 5.747a.99.99 0 0 0-.592.892c-.034 2.379.445 10.806 8.514 15.115zM8.674 10.293l2.293 2.293l4.293-4.293l1.414 1.414l-5.707 5.707l-3.707-3.707l1.414-1.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-check-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm-7.933 13.481l-3.774-3.774l1.414-1.414l2.226 2.226l4.299-5.159l1.537 1.28l-5.702 6.841z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-checkbox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-checkbox-checked { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7zm4 10.414l-2.707-2.707l1.414-1.414L11 12.586l3.793-3.793l1.414 1.414L11 15.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-checkbox-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 5H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm-1 8H8v-2h8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chess { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 2H3a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zm-1 6h-4v4h4v4h-4v4h-4v-4H8v4H4v-4h4v-4H4V8h4V4h4v4h4V4h4v4z' fill='black'/%3E%3Cpath d='M8 8h4v4H8zm4 4h4v4h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.939 7.939L12 12.879l-4.939-4.94l-2.122 2.122L12 17.121l7.061-7.06z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-down-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm0 14.414l-5.707-5.707l1.414-1.414L12 13.586l4.293-4.293l1.414 1.414L12 16.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-down-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zM7.707 9.293L12 13.586l4.293-4.293l1.414 1.414L12 16.414l-5.707-5.707l1.414-1.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.939 4.939L6.879 12l7.06 7.061l2.122-2.122L11.121 12l4.94-4.939z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-left-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm2.707 14.293l-1.414 1.414L7.586 12l5.707-5.707l1.414 1.414L10.414 12l4.293 4.293z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-left-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 3c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5zm9.707 13.293l-1.414 1.414L7.586 12l5.707-5.707l1.414 1.414L10.414 12l4.293 4.293z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10.061 19.061L17.121 12l-7.06-7.061l-2.122 2.122L12.879 12l-4.94 4.939z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-right-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-1.293 15.707l-1.414-1.414L13.586 12L9.293 7.707l1.414-1.414L16.414 12l-5.707 5.707z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-right-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 5v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2zm6.293 2.707l1.414-1.414L16.414 12l-5.707 5.707l-1.414-1.414L13.586 12L9.293 7.707z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 6.879l-7.061 7.06l2.122 2.122L12 11.121l4.939 4.94l2.122-2.122z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-up-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm4.293 12.707L12 10.414l-4.293 4.293l-1.414-1.414L12 7.586l5.707 5.707l-1.414 1.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevron-up-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zm7-13.414l5.707 5.707l-1.414 1.414L12 10.414l-4.293 4.293l-1.414-1.414L12 7.586z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevrons-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.939 10.939L12 15.879l-4.939-4.94l-2.122 2.122L12 20.121l7.061-7.06z' fill='black'/%3E%3Cpath d='M16.939 3.939L12 8.879l-4.939-4.94l-2.122 2.122L12 13.121l7.061-7.06z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevrons-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.121 12l4.94-4.939l-2.122-2.122L3.879 12l7.06 7.061l2.122-2.122z' fill='black'/%3E%3Cpath d='M17.939 4.939L10.879 12l7.06 7.061l2.122-2.122L15.121 12l4.94-4.939z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevrons-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.061 4.939l-2.122 2.122L15.879 12l-4.94 4.939l2.122 2.122L20.121 12z' fill='black'/%3E%3Cpath d='M6.061 19.061L13.121 12l-7.06-7.061l-2.122 2.122L8.879 12l-4.94 4.939z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chevrons-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 3.879l-7.061 7.06l2.122 2.122L12 8.121l4.939 4.94l2.122-2.122z' fill='black'/%3E%3Cpath d='M4.939 17.939l2.122 2.122L12 15.121l4.939 4.94l2.122-2.122L12 10.879z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-chip { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 7a2 2 0 0 0-2-2h-1V2h-2v3h-4V2H8v3H7a2 2 0 0 0-2 2v1H2v2h3v4H2v2h3v1a2 2 0 0 0 2 2h1v3h2v-3h4v3h2v-3h1a2 2 0 0 0 2-2v-1h3v-2h-3v-4h3V8h-3V7zm-4 8H9V9h6v6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-church { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10 22v-4a2 2 0 0 1 4 0v4h4V12a1 1 0 0 0-.485-.857L13 8.434V6h2V4h-2V2h-2v2H9v2h2v2.434l-4.515 2.709A1 1 0 0 0 6 12v10h4zm-7 0h2v-8.118l-2.447 1.224A.998.998 0 0 0 2 16v5a1 1 0 0 0 1 1zm18.447-6.895L19 13.882V22h2a1 1 0 0 0 1-1v-5c0-.379-.214-.725-.553-.895z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-circle-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2h-1v20h1a10 10 0 0 0 0-20z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-circle-quarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2h-1v11h11v-1A10 10 0 0 0 12 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-circle-three-quarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2h-1v9H2v1a10 10 0 0 0 17.07 7.07A10 10 0 0 0 12 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-city { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 6h-4V3a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1zM6 18H4v-2h2v2zm0-4H4v-2h2v2zm5 4H9v-2h2v2zm0-4H9v-2h2v2zm0-4H9V8h2v2zm0-4H9V4h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V8h2v2zm0-4h-2V4h2v2zm5 12h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V8h2v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-clinic { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.743 12.331l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10a.998.998 0 0 0-.17 1.076c.16.361.518.593.913.593h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .743-1.669zM16 15h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cloud { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.611 5.757 9.15C3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5h11c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cloud-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.61 5.757 9.149C3.609 9.792 2 11.82 2 14c0 2.657 2.089 4.815 4.708 4.971V19H17.99v-.003L18 19c2.206 0 4-1.794 4-4a4.008 4.008 0 0 0-3.056-3.888zM8 12h3V9h2v3h3l-4 5l-4-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cloud-lightning { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.82 2 13c0 2.757 2.243 5 5 5h1.333L10 13h4l-2 3h2.975l-1.325 2H18c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888zM11 18H8.333L8 19h3v3l2.649-4H11.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cloud-rain { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.82 2 13c0 2.757 2.243 5 5 5h1v3h2v-3h4v3h2v-3h2c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888z' fill='black'/%3E%3Cpath d='M11 19h2v3h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cloud-upload { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.611 5.757 9.15C3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5h11c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888zM13 14v3h-2v-3H8l4-5l4 5h-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-coffee { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 2h2v3H5zm4 0h2v3H9zm4 0h2v3h-2zm6 7h-2V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3h2c1.103 0 2-.897 2-2v-5c0-1.103-.897-2-2-2zm-2 7v-5h2l.002 5H17z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-coffee-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 5h-1V4a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v9a4 4 0 0 0 4 4h6c1.858 0 3.411-1.279 3.858-3H19a3 3 0 0 0 3-3V8a3 3 0 0 0-3-3zm1 6a1 1 0 0 1-1 1h-1V7h1a1 1 0 0 1 1 1v3zm-2 8H3c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-coffee-togo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.5 5l-1.224-2.447A1 1 0 0 0 16.382 2H7.618a1 1 0 0 0-.894.553L5.5 5H3v2h18V5h-2.5zM6.734 21.142c.071.492.493.858.991.858h8.551a1 1 0 0 0 .99-.858L19 9H5l1.734 12.142zM16 12l-.714 5H8.714L8 12h8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cog { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.344 15.271l2 3.46a1 1 0 0 0 1.366.365l1.396-.806c.58.457 1.221.832 1.895 1.112V21a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1.598a8.094 8.094 0 0 0 1.895-1.112l1.396.806c.477.275 1.091.11 1.366-.365l2-3.46a1.004 1.004 0 0 0-.365-1.366l-1.372-.793a7.683 7.683 0 0 0-.002-2.224l1.372-.793c.476-.275.641-.89.365-1.366l-2-3.46a1 1 0 0 0-1.366-.365l-1.396.806A8.034 8.034 0 0 0 15 4.598V3a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v1.598A8.094 8.094 0 0 0 7.105 5.71L5.71 4.904a.999.999 0 0 0-1.366.365l-2 3.46a1.004 1.004 0 0 0 .365 1.366l1.372.793a7.683 7.683 0 0 0 0 2.224l-1.372.793c-.476.275-.641.89-.365 1.366zM12 8c2.206 0 4 1.794 4 4s-1.794 4-4 4s-4-1.794-4-4s1.794-4 4-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-coin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 5C7.031 5 2 6.546 2 9.5S7.031 14 12 14c4.97 0 10-1.546 10-4.5S16.97 5 12 5zm-5 9.938v3c1.237.299 2.605.482 4 .541v-3a21.166 21.166 0 0 1-4-.541zm6 .54v3a20.994 20.994 0 0 0 4-.541v-3a20.994 20.994 0 0 1-4 .541zm6-1.181v3c1.801-.755 3-1.857 3-3.297v-3c0 1.44-1.199 2.542-3 3.297zm-14 3v-3C3.2 13.542 2 12.439 2 11v3c0 1.439 1.2 2.542 3 3.297z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-coin-stack { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 10c3.976 0 8-1.374 8-4s-4.024-4-8-4s-8 1.374-8 4s4.024 4 8 4z' fill='black'/%3E%3Cpath d='M4 10c0 2.626 4.024 4 8 4s8-1.374 8-4V8c0 2.626-4.024 4-8 4s-8-1.374-8-4v2z' fill='black'/%3E%3Cpath d='M4 14c0 2.626 4.024 4 8 4s8-1.374 8-4v-2c0 2.626-4.024 4-8 4s-8-1.374-8-4v2z' fill='black'/%3E%3Cpath d='M4 18c0 2.626 4.024 4 8 4s8-1.374 8-4v-2c0 2.626-4.024 4-8 4s-8-1.374-8-4v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-collection { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 10H5c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2zM5 6h14v2H5zm2-4h10v2H7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-color-fill { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 14c-.092.064-2 2.083-2 3.5c0 1.494.949 2.448 2 2.5c.906.044 2-.891 2-2.5c0-1.5-1.908-3.436-2-3.5zM9.586 20c.378.378.88.586 1.414.586s1.036-.208 1.414-.586l7-7l-.707-.707L11 4.586L8.707 2.293L7.293 3.707L9.586 6L4 11.586c-.378.378-.586.88-.586 1.414s.208 1.036.586 1.414L9.586 20zM11 7.414L16.586 13H5.414L11 7.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm-3 9h-4v4h-2v-4H7V9h4V5h2v4h4v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm-9 11.914l-3.707-3.707l1.414-1.414L11 11.086l4.793-4.793l1.414 1.414L11 13.914z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 1.999H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2v-12c0-1.103-.897-2-2-2zm-6 11H7v-2h7v2zm3-4H7v-2h10v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zM9 12a2 2 0 1 1 .001-4.001A2 2 0 0 1 9 12zm6 0a2 2 0 1 1 .001-4.001A2 2 0 0 1 15 12z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zM8.999 14.987H7v-1.999l5.53-5.522l1.998 1.999l-5.529 5.522zm6.472-6.464l-1.999-1.999l1.524-1.523L16.995 7l-1.524 1.523z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm-7 13h-2v-2h2v2zm0-4h-2V5h2v6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm-4 9H8V9h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-comment-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm-3.294 11.543l-1.414 1.414l-3.293-3.292l-3.292 3.292l-1.414-1.414l3.292-3.292l-3.292-3.293l1.414-1.414l3.292 3.292l3.293-3.292l1.414 1.414l-3.292 3.293l3.292 3.292z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-compass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm3 13l-8 2l2-8l8-2l-2 8z' fill='black'/%3E%3Ccircle cx='12' cy='12' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-component { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3.553 18.895l4 2a1.001 1.001 0 0 0 .894 0L12 19.118l3.553 1.776a.99.99 0 0 0 .894.001l4-2c.339-.17.553-.516.553-.895v-5c0-.379-.214-.725-.553-.895L17 10.382V6c0-.379-.214-.725-.553-.895l-4-2a1 1 0 0 0-.895 0l-4 2C7.214 5.275 7 5.621 7 6v4.382l-3.447 1.724A.998.998 0 0 0 3 13v5c0 .379.214.725.553.895zM8 12.118l2.264 1.132l-2.913 1.457l-2.264-1.132L8 12.118zm4-2.5l3-1.5v2.264l-3 1.5V9.618zm6.264 3.632l-2.882 1.441l-2.264-1.132L16 12.118l2.264 1.132zM8 18.882l-.062-.031V16.65L11 15.118v2.264l-3 1.5zm8 0v-2.264l3-1.5v2.264l-3 1.5zM12 5.118l2.264 1.132l-2.882 1.441l-2.264-1.132L12 5.118z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-confused { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5zm1.124 6.492l-.248-1.984l8-1l.248 1.984l-8 1zm7.369-5.006a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-contact { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 2H6a2 2 0 0 0-2 2v3H2v2h2v2H2v2h2v2H2v2h2v3a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zm-8 2.999c1.648 0 3 1.351 3 3A3.012 3.012 0 0 1 13 11c-1.647 0-3-1.353-3-3.001c0-1.649 1.353-3 3-3zM19 18H7v-.75c0-2.219 2.705-4.5 6-4.5s6 2.281 6 4.5V18z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-conversation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 14h3.5c.827 0 1.5-.673 1.5-1.5v-9c0-.827-.673-1.5-1.5-1.5h-13C2.673 2 2 2.673 2 3.5V18l5.333-4H13zm-9-.1l.154-.016L4 14v-.1z' fill='black'/%3E%3Cpath d='M20.5 8H20v6.001c0 1.1-.893 1.993-1.99 1.999H8v.5c0 .827.673 1.5 1.5 1.5h7.167L22 22V9.5c0-.827-.673-1.5-1.5-1.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cookie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.598 11.064a1.006 1.006 0 0 0-.854-.172A2.938 2.938 0 0 1 20 11c-1.654 0-3-1.346-3.003-2.938c.005-.034.016-.134.017-.168a.998.998 0 0 0-1.254-1.006A3.002 3.002 0 0 1 15 7c-1.654 0-3-1.346-3-3c0-.217.031-.444.099-.716a1 1 0 0 0-1.067-1.236A9.956 9.956 0 0 0 2 12c0 5.514 4.486 10 10 10s10-4.486 10-10c0-.049-.003-.097-.007-.16a1.004 1.004 0 0 0-.395-.776zM8.5 6a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3zm-2 8a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3zm3 4a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3zm2.5-6.5a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0zm3.5 6.5a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cool { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm4.095 14.244a5.982 5.982 0 0 1-3.034 1.634a6.05 6.05 0 0 1-2.414 0a5.919 5.919 0 0 1-2.148-.903a6.078 6.078 0 0 1-1.621-1.622l1.658-1.117c.143.211.307.41.488.59a3.988 3.988 0 0 0 1.273.86c.243.102.495.181.749.232a4.108 4.108 0 0 0 1.616 0c.253-.052.505-.131.75-.233c.234-.1.464-.224.679-.368c.208-.142.407-.306.591-.489c.183-.182.347-.381.489-.592l1.658 1.117c-.215.32-.462.62-.734.891zM19 10a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2h-2a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V8h14v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-copy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 8H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2V10c0-1.103-.897-2-2-2z' fill='black'/%3E%3Cpath d='M20 2H10a2 2 0 0 0-2 2v2h8a2 2 0 0 1 2 2v8h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-copy-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H10a2 2 0 0 0-2 2v2h8a2 2 0 0 1 2 2v8h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2z' fill='black'/%3E%3Cpath d='M4 22h10c1.103 0 2-.897 2-2V10c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2zm2-10h6v2H6v-2zm0 4h6v2H6v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-copyright { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.579 2 2 6.58 2 12s4.579 10 10 10s10-4.58 10-10S17.421 2 12 2zm0 13c.992 0 1.85-.265 2.293-.708l1.414 1.415C14.581 16.832 12.901 17 12 17c-2.757 0-5-2.243-5-5s2.243-5 5-5c.901 0 2.582.168 3.707 1.293l-1.414 1.414C13.851 9.264 12.993 9 12 9c-1.626 0-3 1.374-3 3s1.374 3 3 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-coupon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 5H3a1 1 0 0 0-1 1v4h.893c.996 0 1.92.681 2.08 1.664A2.001 2.001 0 0 1 3 14H2v4a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-4h-1a2.001 2.001 0 0 1-1.973-2.336c.16-.983 1.084-1.664 2.08-1.664H22V6a1 1 0 0 0-1-1zM11 17H9v-2h2v2zm0-4H9v-2h2v2zm0-4H9V7h2v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-credit-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4c-1.103 0-2 .897-2 2v2h20V6c0-1.103-.897-2-2-2zM2 18c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-6H2v6zm3-3h6v2H5v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-credit-card-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-7.5 12a2.5 2.5 0 1 1 0-5a2.47 2.47 0 0 1 1.5.512c-.604.456-1 1.173-1 1.988s.396 1.532 1 1.988a2.47 2.47 0 0 1-1.5.512zm4 0a2.5 2.5 0 1 1 0-5a2.5 2.5 0 0 1 0 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-credit-card-front { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zM5 8.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-2zm6 7.5H5v-2h6v2zm8 0h-6v-2h6v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cricket-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3.67 16.26l.54.53l-.62.61a9 9 0 0 0 .84 1.11L18.51 4.42a10.93 10.93 0 0 0-1.1-.83l-.62.61l-.53-.53l.48-.48A10 10 0 0 0 3.2 16.74zM14.86 5.07l.53.53L14 7l-.53-.53zm-2.79 2.8l.52.53l-1.39 1.4l-.53-.53zm-2.8 2.8l.53.53l-1.4 1.39l-.53-.53zm-2.8 2.79L7 14l-1.4 1.4l-.53-.53z' fill='black'/%3E%3Cpath d='M6.59 20.41l.62-.61l.53.53l-.48.48A10 10 0 0 0 20.8 7.26l-.47.48l-.54-.53l.62-.61a9 9 0 0 0-.84-1.11L5.49 19.58a10.93 10.93 0 0 0 1.1.83zM18.4 8.61l.53.53l-1.4 1.4L17 10zm-2.8 2.8l.53.53l-1.4 1.39l-.53-.53zm-2.8 2.79l.53.53l-1.39 1.4l-.54-.53zM10 17l.53.53l-1.4 1.4l-.53-.53z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-crop { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 7.5C19 6.121 17.879 5 16.5 5H8V2H5v3H2v3h14v14h3v-3h3v-3h-3V7.5z' fill='black'/%3E%3Cpath d='M8 10H5v6.5C5 17.879 6.121 19 7.5 19H14v-3H8v-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-crown { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 2l-5 5l-4-5l-4 5l-5-5v13h18zM5 21h14a2 2 0 0 0 2-2v-2H3v2a2 2 0 0 0 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cube { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.406 6.086l-9-4a1.001 1.001 0 0 0-.813 0l-9 4c-.02.009-.034.024-.054.035c-.028.014-.058.023-.084.04c-.022.015-.039.034-.06.05a.87.87 0 0 0-.19.194c-.02.028-.041.053-.059.081a1.119 1.119 0 0 0-.076.165c-.009.027-.023.052-.031.079A1.013 1.013 0 0 0 2 7v10c0 .396.232.753.594.914l9 4c.13.058.268.086.406.086a.997.997 0 0 0 .402-.096l.004.01l9-4A.999.999 0 0 0 22 17V7a.999.999 0 0 0-.594-.914zM12 4.095L18.538 7L12 9.905l-1.308-.581L5.463 7L12 4.095zm1 15.366V11.65l7-3.111v7.812l-7 3.11z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cube-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.895 3.553A1.001 1.001 0 0 0 17 3H7c-.379 0-.725.214-.895.553l-4 8a1 1 0 0 0 0 .895l4 8c.17.338.516.552.895.552h10c.379 0 .725-.214.895-.553l4-8a1 1 0 0 0 0-.895l-4-7.999zM19.382 11h-7.764l-3-6h7.764l3 6zm-3 8H8.618l3-6h7.764l-3 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cuboid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.707 2.293A.996.996 0 0 0 16 2H8c-.414 0-.785.255-.934.641l-5 13a.999.999 0 0 0 .227 1.066l5 5A.996.996 0 0 0 8 22h8c.414 0 .785-.255.934-.641l5-13a.999.999 0 0 0-.227-1.066l-5-5zM18.585 7h-5.171l-3-3h5.172l2.999 3zm-3.272 13h-6.23l4.583-11h5.878l-4.231 11z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-customize { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm10 0h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM10 13H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1zm8 1h-2v2h-2v2h2v2h2v-2h2v-2h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-cylinder { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22c5.131 0 9-1.935 9-4.5V7c0-.051-.024-.097-.033-.146c.016-.117.033-.234.033-.354C21 3.935 17.131 2 12 2S3 3.935 3 6.5v11c0 2.565 3.869 4.5 9 4.5zm0-18c4.273 0 7 1.48 7 2.5a.683.683 0 0 1-.025.158c-.004.01-.012.018-.015.027c-.274.848-2.29 1.98-5.496 2.253l-.05.003C12.965 8.979 12.494 9 12 9C7.727 9 5 7.52 5 6.5S7.727 4 12 4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dashboard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 13h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1zm-1 7a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v4zm10 0a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v7zm1-10h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-data { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6c0-2.168-3.663-4-8-4S4 3.832 4 6v2c0 2.168 3.663 4 8 4s8-1.832 8-4V6zm-8 13c-4.337 0-8-1.832-8-4v3c0 2.168 3.663 4 8 4s8-1.832 8-4v-3c0 2.168-3.663 4-8 4z' fill='black'/%3E%3Cpath d='M20 10c0 2.168-3.663 4-8 4s-8-1.832-8-4v3c0 2.168 3.663 4 8 4s8-1.832 8-4v-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm-9 14H5v-2h6v2zm8-4H5v-2h14v2zm0-4H5V7h14v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-devices { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H7c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h6c1.103 0 2-.897 2-2h8c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM6 9h4l-.003 9H4V9h2zm6 8V9c0-1.103-.897-2-2-2H7V5h11v12h-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-diamond { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.445 3h-8.89c-.345 0-.666.178-.849.47L3.25 9h17.5l-3.456-5.53a1.003 1.003 0 0 0-.849-.47zM11.26 21.186a1 1 0 0 0 1.48 0L22 11H2l9.26 10.186z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dice-1 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm-7 10.5a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dice-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM9.5 13.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 9.5 13.5zm5 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 14.5 13.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dice-3 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM8 9.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5zm4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 12 13.5zm4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dice-4 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5zm0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5zm8 8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5zm0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dice-5 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5zm0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5zm4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 12 13.5zm4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5zm0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dice-6 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5zm0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 13.5zm0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5zm8 8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5zm0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 13.5zm0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-direction-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.707 11.294l-8.978-9a1.001 1.001 0 0 0-1.415-.002l-9.021 9a1 1 0 0 0 0 1.416l9.021 9c.39.389 1.026.388 1.415-.002l8.978-9a.998.998 0 0 0 0-1.412zM15 16h-2v-4h-3v2l-3-3l3-3v2h5v6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-direction-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.295 12.707l8.978 9c.389.39 1.025.391 1.414.002l9.021-9a1 1 0 0 0 0-1.416l-9.021-9a.999.999 0 0 0-1.414.002l-8.978 9a.998.998 0 0 0 0 1.412zm6.707-2.706h5v-2l3 3l-3 3v-2h-3v4h-2v-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-directions { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 11h-6V8h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H5L2 5l3 3h6v3H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h6v5h2v-5h6l3-3l-3-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-disc { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm0 14c-2.206 0-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4s-1.794 4-4 4z' fill='black'/%3E%3Ccircle cx='11.998' cy='11.998' r='2.002' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-discount { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 5H3a1 1 0 0 0-1 1v4h.893c.996 0 1.92.681 2.08 1.664A2.001 2.001 0 0 1 3 14H2v4a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-4h-1a2.001 2.001 0 0 1-1.973-2.336c.16-.983 1.084-1.664 2.08-1.664H22V6a1 1 0 0 0-1-1zM9 9a1 1 0 1 1 0 2a1 1 0 1 1 0-2zm-.8 6.4l6-8l1.6 1.2l-6 8l-1.6-1.2zM15 15a1 1 0 1 1 0-2a1 1 0 1 1 0 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dish { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 15c0-4.625-3.507-8.441-8-8.941V4h-2v2.059c-4.493.5-8 4.316-8 8.941v2h18v-2zM2 18h20v2H2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dislike { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3h-1v13h1a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zM4 16h7l-1.122 3.368A2 2 0 0 0 11.775 22H12l5-5.438V3H6l-3.937 8.649l-.063.293V14a2 2 0 0 0 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dizzy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zM8 12.414l-1.293 1.293l-1.414-1.414L6.586 11L5.293 9.707l1.414-1.414L8 9.586l1.293-1.293l1.414 1.414L9.414 11l1.293 1.293l-1.414 1.414L8 12.414zM14 18h-4v-2h4v2zm4.707-5.707l-1.414 1.414L16 12.414l-1.293 1.293l-1.414-1.414L14.586 11l-1.293-1.293l1.414-1.414L16 9.586l1.293-1.293l1.414 1.414L17.414 11l1.293 1.293z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dock-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zM19 5l.001 9H5V5h14z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dock-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 19V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2zm-11 0V5h9l.002 14H10z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dock-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5zM5 5h9v14H5V5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dock-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 5v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2zm2 14v-9h14.001l.001 9H5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dog { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 6h-2l-1.27-1.27A2.49 2.49 0 0 0 16 4h-2.5A2.64 2.64 0 0 0 11 2v6.36a4.38 4.38 0 0 0 1.13 2.72a6.57 6.57 0 0 0 4.13 1.82l3.45-1.38a3 3 0 0 0 1.73-1.84L22 8.15a1.06 1.06 0 0 0 0-.31V7a1 1 0 0 0-1-1zm-5 2a1 1 0 1 1 1-1a1 1 0 0 1-1 1z' fill='black'/%3E%3Cpath d='M11.38 11.74A5.24 5.24 0 0 1 10.07 9H6a1.88 1.88 0 0 1-2-2a1 1 0 0 0-2 0a4.69 4.69 0 0 0 .48 2A3.58 3.58 0 0 0 4 10.53V22h3v-5h6v5h3v-8.13a7.35 7.35 0 0 1-4.62-2.13z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dollar-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm1 14.915V18h-2v-1.08c-2.339-.367-3-2.002-3-2.92h2c.011.143.159 1 2 1c1.38 0 2-.585 2-1c0-.324 0-1-2-1c-3.48 0-4-1.88-4-3c0-1.288 1.029-2.584 3-2.915V6.012h2v1.109c1.734.41 2.4 1.853 2.4 2.879h-1l-1 .018C13.386 9.638 13.185 9 12 9c-1.299 0-2 .516-2 1c0 .374 0 1 2 1c3.48 0 4 1.88 4 3c0 1.288-1.029 2.584-3 2.915z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-donate-blood { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.726 13.02L14 16H9v-1h4.065a.5.5 0 0 0 .416-.777l-.888-1.332A1.995 1.995 0 0 0 10.93 12H3a1 1 0 0 0-1 1v6a2 2 0 0 0 2 2h9.639a3 3 0 0 0 2.258-1.024L22 13l-1.452-.484a2.998 2.998 0 0 0-2.822.504zM15.403 12a3 3 0 0 0 3-3c0-2.708-3-6-3-6s-3 3.271-3 6a3 3 0 0 0 3 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-donate-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.726 13.02L14 16H9v-1h4.065a.5.5 0 0 0 .416-.777l-.888-1.332A1.995 1.995 0 0 0 10.93 12H3a1 1 0 0 0-1 1v6a2 2 0 0 0 2 2h9.639a3 3 0 0 0 2.258-1.024L22 13l-1.452-.484a2.998 2.998 0 0 0-2.822.504zm1.532-5.63c.451-.465.73-1.108.73-1.818s-.279-1.353-.73-1.818A2.447 2.447 0 0 0 17.494 3S16.25 2.997 15 4.286C13.75 2.997 12.506 3 12.506 3a2.45 2.45 0 0 0-1.764.753c-.451.466-.73 1.108-.73 1.818s.279 1.354.73 1.818L15 12l4.258-4.61z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-door-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 5v14a1 1 0 0 0 1 1h3v-2H7V6h2V4H6a1 1 0 0 0-1 1zm14.242-.97l-8-2A1 1 0 0 0 10 3v18a.998.998 0 0 0 1.242.97l8-2A1 1 0 0 0 20 19V5a1 1 0 0 0-.758-.97zM15 12.188a1.001 1.001 0 0 1-2 0v-.377a1 1 0 1 1 2 .001v.376z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-doughnut-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 6c2.507.423 4.577 2.493 5 5h4c-.471-4.717-4.283-8.529-9-9v4z' fill='black'/%3E%3Cpath d='M18 13c-.478 2.833-2.982 4.949-5.949 4.949c-3.309 0-6-2.691-6-6C6.051 8.982 8.167 6.478 11 6V2c-5.046.504-8.949 4.773-8.949 9.949c0 5.514 4.486 10 10 10c5.176 0 9.445-3.903 9.949-8.949h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-down-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.178 19.569a.998.998 0 0 0 1.644 0l9-13A.999.999 0 0 0 21 5H3a1.002 1.002 0 0 0-.822 1.569l9 13z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-down-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 12h-5V6h-2v6H6l6 7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm0 15l-5-5h4V7h2v5h4l-5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-down-arrow-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 21a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14zm-8-9V7h2v5h4l-5 5l-5-5h4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 8zM4 19h16v2H4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-downvote { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.901 10.566A1.001 1.001 0 0 0 20 10h-4V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v7H4a1.001 1.001 0 0 0-.781 1.625l8 10a1 1 0 0 0 1.562 0l8-10c.24-.301.286-.712.12-1.059z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-drink { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.832 4.555A1 1 0 0 0 20 3H4a1 1 0 0 0-.832 1.554L11 16.303V20H8v2h8v-2h-3v-3.697l7.832-11.748zm-2.7.445l-2 3H7.868l-2-3h12.264z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-droplet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.6 2.4c-.4-.3-.9-.3-1.2 0C9.5 3.9 4 8.5 4 14c0 4.4 3.6 8 8 8s8-3.6 8-8c0-5.4-5.5-10.1-7.4-11.6' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-droplet-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.578 2.184a1.004 1.004 0 0 0-1.156 0C11.119 2.398 4 7.513 4 13.75C4 18.53 7.364 22 12 22s8-3.468 8-8.246c0-6.241-7.119-11.356-7.422-11.57zM6 13.75c0-4.283 4.395-8.201 6-9.49V20c-3.533 0-6-2.57-6-6.25z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-dryer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 22h16a1 1 0 0 0 1-1V5c0-1.654-1.346-3-3-3H6C4.346 2 3 3.346 3 5v16a1 1 0 0 0 1 1zM18 3.924a1 1 0 1 1 0 2a1 1 0 0 1 0-2zm-3 0a1 1 0 1 1 0 2a1 1 0 0 1 0-2zm-3 3.117c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6z' fill='black'/%3E%3Cpath d='M9.32 12.265c-.415.384-1.041.964-1.041 2.067c0 1.104.626 1.684 1.041 2.068c.352.325.4.398.4.6h2c0-1.104-.626-1.684-1.041-2.068c-.352-.325-.4-.398-.4-.6s.048-.275.4-.6c.414-.384 1.041-.964 1.041-2.068c0-1.103-.626-1.683-1.041-2.066c-.351-.325-.399-.397-.399-.598h-2c0 1.104.627 1.683 1.042 2.066c.351.324.399.396.399.597c-.001.203-.05.276-.401.602zm4 0c-.414.384-1.04.964-1.04 2.067s.626 1.684 1.04 2.067c.351.325.399.398.399.601h2c0-1.104-.626-1.684-1.04-2.067c-.351-.325-.399-.398-.399-.601s.049-.275.399-.601c.414-.384 1.04-.964 1.04-2.068c0-1.103-.626-1.682-1.04-2.065c-.35-.324-.399-.397-.399-.598h-2c0 1.103.626 1.683 1.041 2.066c.35.324.398.397.398.598c.001.202-.048.275-.399.601z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-duplicate { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 22h12a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2zm2-9h3v-3h2v3h3v2h-3v3H9v-3H6v-2z' fill='black'/%3E%3Cpath d='M20 2H8v2h12v12h2V4c0-1.103-.897-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.988 2.012l3 3L19.701 7.3l-3-3zM8 16h3l7.287-7.287l-3-3L8 13z' fill='black'/%3E%3Cpath d='M19 19H8.158c-.026 0-.053.01-.079.01c-.033 0-.066-.009-.1-.01H5V5h6.847l2-2H5c-1.103 0-2 .896-2 2v14c0 1.104.897 2 2 2h14a2 2 0 0 0 2-2v-8.668l-2 2V19z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-edit-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2.012l3 3L16.713 7.3l-3-3zM4 14v3h3l8.299-8.287l-3-3zm0 6h16v2H4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-edit-location { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8zM9.799 14.987H8v-1.799l4.977-4.97l1.799 1.799l-4.977 4.97zm5.824-5.817l-1.799-1.799L15.196 6l1.799 1.799l-1.372 1.371z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-eject { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 6l-6 8h12zM6 16h12v2H6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-envelope { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4.7l-8 5.334L4 8.7V6.297l8 5.333l8-5.333V8.7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-envelope-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.555 8.168l-9-6a1 1 0 0 0-1.109 0l-9 6A.995.995 0 0 0 2.004 9H2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9h-.004a.997.997 0 0 0-.441-.832zM20 12.7L12 17l-8-4.3v-2.403l8 4.299l8-4.299V12.7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-eraser { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.48 3L7.73 7.75L3 12.59a2 2 0 0 0 0 2.82l4.3 4.3A1 1 0 0 0 8 20h12v-2h-7l7.22-7.22a2 2 0 0 0 0-2.83L15.31 3a2 2 0 0 0-2.83 0zM8.41 18l-4-4l4.75-4.84l.74-.75l4.95 4.95l-4.56 4.56l-.07.08z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.884 2.532c-.346-.654-1.422-.654-1.768 0l-9 17A.999.999 0 0 0 3 21h18a.998.998 0 0 0 .883-1.467L12.884 2.532zM13 18h-2v-2h2v2zm-2-4V9h2l.001 5H11z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-error-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.707 2.293A.996.996 0 0 0 16 2H8a.996.996 0 0 0-.707.293l-5 5A.996.996 0 0 0 2 8v8c0 .266.105.52.293.707l5 5A.996.996 0 0 0 8 22h8c.266 0 .52-.105.707-.293l5-5A.996.996 0 0 0 22 16V8a.996.996 0 0 0-.293-.707l-5-5zM13 17h-2v-2h2v2zm0-4h-2V7h2v6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-error-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.953 2C6.465 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.493 2 11.953 2zM13 17h-2v-2h2v2zm0-4h-2V7h2v6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-ev-station { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.616 6.48l.014-.017l-4-3.24l-1.26 1.554l2.067 1.674a2.99 2.99 0 0 0-1.394 3.062c.15.899.769 1.676 1.57 2.111c.895.487 1.68.442 2.378.194L18.976 18a.996.996 0 0 1-1.39.922a.995.995 0 0 1-.318-.217a.996.996 0 0 1-.291-.705L17 16a2.98 2.98 0 0 0-.877-2.119A3 3 0 0 0 14 13h-1V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-4h1c.136 0 .267.027.391.078a1.028 1.028 0 0 1 .531.533A.994.994 0 0 1 15 16l-.024 2c0 .406.079.799.236 1.168c.151.359.368.68.641.951a2.97 2.97 0 0 0 2.123.881c.406 0 .798-.078 1.168-.236c.358-.15.68-.367.951-.641A2.983 2.983 0 0 0 20.976 18L21 9a2.997 2.997 0 0 0-1.384-2.52zM6 18l1-5H4l5-7l-1 5h3l-5 7zm12-8a1 1 0 1 1 0-2a1 1 0 0 1 0 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-exit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5.002 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2h-14c-1.103 0-2 .897-2 2v6.001H10V7l6 5l-6 5v-3.999H3.002V19c0 1.103.897 2 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-extension { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 10V7c0-1.103-.897-2-2-2h-3c0-1.654-1.346-3-3-3S8 3.346 8 5H5c-1.103 0-2 .897-2 2v4h1a2 2 0 0 1 0 4H3v4c0 1.103.897 2 2 2h4v-1a2 2 0 0 1 4 0v1h4c1.103 0 2-.897 2-2v-3c1.654 0 3-1.346 3-3s-1.346-3-3-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-eyedropper { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 15.76l-1 4A1 1 0 0 0 3.75 21a1 1 0 0 0 .49 0l4-1a1 1 0 0 0 .47-.26L17 11.41l1.29 1.3l1.42-1.42l-1.3-1.29L21 7.41a2 2 0 0 0 0-2.82L19.41 3a2 2 0 0 0-2.82 0L14 5.59l-1.3-1.3l-1.42 1.42L12.58 7l-8.29 8.29a1 1 0 0 0-.29.47zm1.87.75L14 8.42L15.58 10l-8.09 8.1l-2.12.53z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-face { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8c0-1.168.258-2.275.709-3.276c.154.09.308.182.456.276c.396.25.791.5 1.286.688c.494.187 1.088.312 1.879.312c.792 0 1.386-.125 1.881-.313s.891-.437 1.287-.687s.792-.5 1.287-.688c.494-.187 1.088-.312 1.88-.312s1.386.125 1.88.313c.495.187.891.437 1.287.687s.792.5 1.287.688c.178.067.374.122.581.171c.191.682.3 1.398.3 2.141c0 4.411-3.589 8-8 8z' fill='black'/%3E%3Ccircle cx='8.5' cy='12.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.5' cy='12.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-face-mask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12c0 2.521.945 4.82 2.49 6.582c1.24 1.52 3.266 3.066 6.439 3.358a9.731 9.731 0 0 0 2.141 0c3.174-.292 5.199-1.839 6.439-3.358A9.948 9.948 0 0 0 22 12c0-5.514-4.486-10-10-10zM4.709 8.724c.154.09.308.182.456.276c.396.25.791.5 1.286.688c.494.187 1.088.312 1.879.312c.792 0 1.386-.125 1.881-.313s.891-.437 1.287-.687s.792-.5 1.287-.688c.494-.187 1.088-.312 1.88-.312s1.386.125 1.88.313c.495.187.891.437 1.287.687s.792.5 1.287.688c.178.067.374.122.581.171c.191.682.3 1.398.3 2.141c0 .843-.133 1.654-.375 2.417c-.261.195-.733.474-1.577.756c-.769.256-1.672.458-2.685.602a25.337 25.337 0 0 1-6.727 0c-1.013-.144-1.916-.346-2.685-.602c-.844-.282-1.316-.561-1.577-.756a7.953 7.953 0 0 1 .335-5.693z' fill='black'/%3E%3Ccircle cx='8.5' cy='12.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.5' cy='12.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-factory { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 10V6l-5 4V6l-5 4V4H2v16h20V6l-5 4zm-8 7H7v-3h2v3zm5 0h-2v-3h2v3zm5 0h-2v-3h2v3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-fast-forward-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.485 2 2 6.485 2 12s4.485 10 10 10c5.514 0 10-4.485 10-10S17.514 2 12 2zm1 14v-4l-6 4V8l6 4V8l6 4l-6 4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 22a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12zM13 4l5 5h-5V4zM7 8h3v2H7V8zm0 4h10v2H7v-2zm0 4h10v2H7v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-archive { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6h-3v2H9v2h2v2H9v2h2v8H7v-6h2v-2H7V8h2V6H7V4h2V2H6zm7 2l5 5h-5V4z' fill='black'/%3E%3Cpath d='M8 15h2v2H8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-blank { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6H6zm8 7h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-css { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zM9.446 17.412c.275 0 .581-.061.762-.132l.138.713c-.168.084-.546.174-1.037.174c-1.397 0-2.117-.869-2.117-2.021C7.191 14.768 8.175 14 9.398 14c.474 0 .833.096.995.18l-.186.726a1.98 1.98 0 0 0-.768-.149c-.726 0-1.29.438-1.29 1.337c.001.808.482 1.318 1.297 1.318zm2.491.755c-.461 0-.917-.119-1.145-.245l.186-.756c.246.126.624.252 1.014.252c.42 0 .642-.174.642-.438c0-.252-.192-.396-.678-.57c-.672-.234-1.109-.605-1.109-1.193c0-.689.575-1.217 1.529-1.217c.455 0 .791.096 1.031.203l-.204.738a1.919 1.919 0 0 0-.846-.192c-.396 0-.587.181-.587.39c0 .258.228.372.749.57c.714.264 1.05.636 1.05 1.205c-.001.678-.523 1.253-1.632 1.253zm3.24 0c-.461 0-.917-.119-1.145-.245l.186-.756c.246.126.624.252 1.014.252c.42 0 .642-.174.642-.438c0-.252-.192-.396-.678-.57c-.672-.234-1.109-.605-1.109-1.193c0-.689.575-1.217 1.529-1.217c.455 0 .791.096 1.031.203l-.204.738a1.919 1.919 0 0 0-.846-.192c-.396 0-.587.181-.587.39c0 .258.228.372.749.57c.714.264 1.05.636 1.05 1.205c0 .678-.523 1.253-1.632 1.253zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-doc { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.186 14.552c-.617 0-.977.587-.977 1.373c0 .791.371 1.35.983 1.35c.617 0 .971-.588.971-1.374c0-.726-.348-1.349-.977-1.349z' fill='black'/%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zM9.155 17.454c-.426.354-1.073.521-1.864.521c-.475 0-.81-.03-1.038-.06v-3.971a8.16 8.16 0 0 1 1.235-.083c.768 0 1.266.138 1.655.432c.42.312.684.81.684 1.522c0 .775-.282 1.309-.672 1.639zm2.99.546c-1.2 0-1.901-.906-1.901-2.058c0-1.211.773-2.116 1.967-2.116c1.241 0 1.919.929 1.919 2.045c-.001 1.325-.805 2.129-1.985 2.129zm4.655-.762c.275 0 .581-.061.762-.132l.138.713c-.168.084-.546.174-1.037.174c-1.397 0-2.117-.869-2.117-2.021c0-1.379.983-2.146 2.207-2.146c.474 0 .833.096.995.18l-.186.726a1.979 1.979 0 0 0-.768-.15c-.726 0-1.29.438-1.29 1.338c0 .809.48 1.318 1.296 1.318zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3Cpath d='M7.584 14.563c-.203 0-.335.018-.413.036v2.645c.078.018.204.018.317.018c.828.006 1.367-.449 1.367-1.415c.006-.84-.485-1.284-1.271-1.284z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-export { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 22a2 2 0 0 0 2-2v-5l-5 4v-3H8v-2h7v-3l5 4V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12zM13 4l5 5h-5V4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-find { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 22h12c.178 0 .348-.03.512-.074l-3.759-3.759A4.966 4.966 0 0 1 12 19c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5a4.964 4.964 0 0 1-.833 2.753l3.759 3.759c.044-.164.074-.334.074-.512V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2z' fill='black'/%3E%3Ccircle cx='12' cy='14' r='3' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-gif { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-2.667 15.772A4.512 4.512 0 0 1 9.984 18c-.737 0-1.271-.186-1.644-.546c-.371-.348-.575-.875-.569-1.469c.006-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.498-.174-.941-.174c-.762 0-1.338.432-1.338 1.308c0 .833.522 1.325 1.271 1.325c.21 0 .378-.024.45-.061v-.846h-.624v-.713h1.505v2.13zm1.634.186h-.918v-4.042h.918v4.042zm3.262-3.292h-1.553v.923h1.451v.744h-1.451v1.625h-.918v-4.042h2.471v.75zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-html { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 2l5 5h-5V4zM8.531 18h-.76v-1.411H6.515V18h-.767v-3.373h.767v1.296h1.257v-1.296h.76V18zm3-2.732h-.921V18h-.766v-2.732h-.905v-.641h2.592v.641zM14.818 18l-.05-1.291c-.017-.405-.03-.896-.03-1.387h-.016c-.104.431-.245.911-.375 1.307l-.41 1.316h-.597l-.359-1.307a15.154 15.154 0 0 1-.306-1.316h-.011c-.021.456-.034.976-.059 1.396L12.545 18h-.705l.216-3.373h1.015l.331 1.126c.104.391.21.811.284 1.206h.017c.095-.391.209-.836.32-1.211l.359-1.121h.996L15.563 18h-.745zm3.434 0h-2.108v-3.373h.767v2.732h1.342V18z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-image { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 22h12a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zm7-18l5 5h-5V4zm-4.5 7a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 11zm.5 5l1.597 1.363L13 13l4 6H7l2-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-import { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 14V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4h-7v3l-5-4l5-4v3h7zM13 4l5 5h-5V4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-jpg { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zM9.239 16.446c0 1.152-.551 1.554-1.438 1.554c-.21 0-.486-.036-.665-.097l.101-.737c.127.042.289.072.469.072c.384 0 .623-.174.623-.804v-2.543h.911v2.555zm3.294-.365c-.313.293-.773.426-1.313.426c-.12 0-.228-.007-.312-.019v1.445h-.906v-3.988a7.528 7.528 0 0 1 1.236-.083c.563 0 .965.107 1.234.323c.259.204.433.54.433.936s-.133.732-.372.96zm4.331 1.667c-.28.096-.815.228-1.349.228c-.737 0-1.271-.186-1.643-.546c-.371-.348-.575-.875-.57-1.469c.007-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.497-.174-.941-.174c-.761 0-1.338.432-1.338 1.308c0 .833.523 1.325 1.271 1.325c.211 0 .378-.024.451-.061v-.846h-.624v-.713h1.504v2.13zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3Cpath d='M11.285 14.552c-.186 0-.312.018-.377.036v1.193c.077.018.174.023.307.023c.484 0 .784-.246.784-.659c0-.372-.257-.593-.714-.593z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-js { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-2.745 14.186c0 1.345-.644 1.814-1.681 1.814c-.245 0-.567-.042-.777-.112l.119-.861c.147.049.336.084.546.084c.448 0 .729-.203.729-.938v-2.97h1.064v2.983zm2.043 1.807c-.539 0-1.071-.141-1.337-.287l.217-.883c.287.147.729.294 1.184.294c.491 0 .749-.203.749-.511c0-.295-.224-.463-.791-.666c-.784-.272-1.295-.707-1.295-1.394c0-.806.672-1.422 1.786-1.422c.533 0 .925.112 1.205.238l-.238.861c-.189-.091-.525-.224-.987-.224s-.687.21-.687.455c0 .301.267.435.875.665c.834.309 1.226.742 1.226 1.408c-.002.793-.61 1.466-1.907 1.466zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-json { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.823 15.122c-.517 0-.816.491-.816 1.146c0 .661.311 1.126.82 1.126c.517 0 .812-.49.812-1.146c0-.604-.291-1.126-.816-1.126z' fill='black'/%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zM8.022 16.704c0 .961-.461 1.296-1.2 1.296c-.176 0-.406-.029-.557-.08l.086-.615c.104.035.239.06.391.06c.319 0 .52-.145.52-.67v-2.122h.761v2.131zm1.459 1.291c-.385 0-.766-.1-.955-.205l.155-.631c.204.105.521.211.846.211c.35 0 .534-.146.534-.365c0-.211-.159-.331-.564-.476c-.562-.195-.927-.506-.927-.996c0-.576.481-1.017 1.277-1.017c.38 0 .659.08.861.171l-.172.615c-.135-.065-.375-.16-.705-.16s-.491.15-.491.325c0 .215.19.311.627.476c.596.22.876.53.876 1.006c.001.566-.436 1.046-1.362 1.046zm3.306.005c-1.001 0-1.586-.755-1.586-1.716c0-1.012.646-1.768 1.642-1.768c1.035 0 1.601.776 1.601 1.707C14.443 17.33 13.773 18 12.787 18zm4.947-.055h-.802l-.721-1.302a12.64 12.64 0 0 1-.585-1.19l-.016.005c.021.445.031.921.031 1.472v1.016h-.701v-3.373h.891l.701 1.236c.2.354.4.775.552 1.155h.014c-.05-.445-.065-.9-.065-1.406v-.985h.702v3.372zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-md { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14.481 14.015c-.238 0-.393.021-.483.042v3.089c.091.021.237.021.371.021c.966.007 1.597-.525 1.597-1.653c.007-.981-.568-1.499-1.485-1.499z' fill='black'/%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-2.934 15.951l-.07-1.807a53.142 53.142 0 0 1-.042-1.94h-.021a26.098 26.098 0 0 1-.525 1.828l-.574 1.842H9l-.504-1.828a21.996 21.996 0 0 1-.428-1.842h-.013c-.028.638-.049 1.366-.084 1.954l-.084 1.793h-.988L7.2 13.23h1.422l.462 1.576c.147.546.295 1.135.399 1.688h.021a39.87 39.87 0 0 1 .448-1.694l.504-1.569h1.394l.26 4.721h-1.044zm5.25-.56c-.498.413-1.253.609-2.178.609a9.27 9.27 0 0 1-1.212-.07v-4.636a9.535 9.535 0 0 1 1.443-.099c.896 0 1.478.161 1.933.505c.49.364.799.945.799 1.778c0 .904-.33 1.528-.785 1.913zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-pdf { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.267 14.68c-.184 0-.308.018-.372.036v1.178c.076.018.171.023.302.023c.479 0 .774-.242.774-.651c0-.366-.254-.586-.704-.586zm3.487.012c-.2 0-.33.018-.407.036v2.61c.077.018.201.018.313.018c.817.006 1.349-.444 1.349-1.396c.006-.83-.479-1.268-1.255-1.268z' fill='black'/%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zM9.498 16.19c-.309.29-.765.42-1.296.42a2.23 2.23 0 0 1-.308-.018v1.426H7v-3.936A7.558 7.558 0 0 1 8.219 14c.557 0 .953.106 1.22.319c.254.202.426.533.426.923c-.001.392-.131.723-.367.948zm3.807 1.355c-.42.349-1.059.515-1.84.515c-.468 0-.799-.03-1.024-.06v-3.917A7.947 7.947 0 0 1 11.66 14c.757 0 1.249.136 1.633.426c.415.308.675.799.675 1.504c0 .763-.279 1.29-.663 1.615zM17 14.77h-1.532v.911H16.9v.734h-1.432v1.604h-.906V14.03H17v.74zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 22h12a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zm7-18l5 5h-5V4zM8 14h3v-3h2v3h3v2h-3v3h-2v-3H8v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-png { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.782 14.576c-.186 0-.312.018-.377.036v1.193c.077.018.174.023.306.023c.485 0 .785-.246.785-.659c0-.371-.258-.593-.714-.593z' fill='black'/%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zM9.03 16.105c-.313.293-.774.426-1.313.426c-.12 0-.229-.007-.312-.019v1.445h-.906V13.97a7.504 7.504 0 0 1 1.235-.083c.563 0 .966.107 1.235.323c.258.204.432.54.432.936s-.131.731-.371.959zm4.302 1.853h-.96l-.863-1.56c-.24-.432-.504-.953-.701-1.427l-.019.006c.024.534.036 1.104.036 1.763v1.218h-.84v-4.042h1.067l.84 1.481c.24.426.479.93.659 1.385h.019a14.746 14.746 0 0 1-.078-1.685v-1.182h.84v4.043zm4.169-.186a4.512 4.512 0 0 1-1.349.228c-.737 0-1.271-.186-1.644-.546c-.371-.348-.575-.875-.569-1.469c.006-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.498-.174-.941-.174c-.762 0-1.338.432-1.338 1.308c0 .833.522 1.325 1.271 1.325c.21 0 .378-.024.45-.061v-.846h-.624v-.713h1.505v2.13zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-file-txt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zM9.998 14.768H8.895v3.274h-.917v-3.274H6.893V14h3.105v.768zm2.725 3.274l-.365-.731c-.15-.282-.246-.492-.359-.726h-.013c-.083.233-.185.443-.312.726l-.335.731h-1.045l1.171-2.045L10.336 14h1.05l.354.738c.121.245.21.443.306.671h.013c.096-.258.174-.438.276-.671l.341-.738h1.043l-1.139 1.973l1.198 2.069h-1.055zm4.384-3.274h-1.104v3.274h-.917v-3.274h-1.085V14h3.105v.768zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-film { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 4v1h-2V3H7v2H5V3H3v18h2v-2h2v2h10v-2h2v2h2V3h-2v1zM5 7h2v2H5V7zm0 4h2v2H5v-2zm0 6v-2h2v2H5zm12 0v-2h2v2h-2zm2-4h-2v-2h2v2zm-2-4V7h2v2h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-filter-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 20v-4.586L20.414 8c.375-.375.586-.884.586-1.415V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v2.585c0 .531.211 1.04.586 1.415L11 15.414V22l2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-first-aid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6h-3V4a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2zM9 4h6v2H9zm7 10h-3v3h-2v-3H8v-2h3V9h2v3h3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-flag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 4H6V2H4v18H3v2h4v-2H6v-5h13a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-flag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14.303 6l-3-2H6V2H4v20h2v-8h4.697l3 2H20V6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-flag-checkered { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 2v18H3v2h4v-2H6v-5h13a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H6V2H4zm4 3v2h2V5h2v2h2V5h2v2h2v2h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H8v-2H6V9h2V7H6V5h2z' fill='black'/%3E%3Cpath d='M8 9h2v2H8zm4 0h2v2h-2zm-2-2h2v2h-2zm4 0h2v2h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-flame { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.579 2.393a.982.982 0 0 0-1.153.006C9.592 3.728 4 8.252 4 14c0 3.247 1.948 6.043 4.734 7.296A3.971 3.971 0 0 1 8 19c-.017-3.221 3.558-6.893 3.71-7a.497.497 0 0 1 .579 0c.152.107 3.711 2.974 3.711 7.002c0 .854-.275 1.643-.733 2.294C18.052 20.043 20 17.248 20 14.005c0-5.861-5.582-10.307-7.421-11.612z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-flask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15 9.783V4h1V2H8v2h1v5.783l-4.268 9.389a1.992 1.992 0 0 0 .14 1.911A1.99 1.99 0 0 0 6.553 22h10.895a1.99 1.99 0 0 0 1.681-.917c.37-.574.423-1.289.14-1.911L15 9.783zm-4.09.631c.06-.13.09-.271.09-.414V4h2v6c0 .143.03.284.09.414L15.177 15H8.825l2.085-4.586z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-florist { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10.84 21.871L12 22a10.221 10.221 0 0 0-9.013-8.891L2 13l.021.173a10.001 10.001 0 0 0 8.819 8.698zm11.139-8.698L22 13l-.987.109c-4.7.523-8.427 4.2-9.013 8.891l1.16-.129a10.001 10.001 0 0 0 8.819-8.698zM18.063 5.5a2.5 2.5 0 0 0-3.415-.915c-.062.035-.111.081-.168.121c.005-.069.02-.136.02-.206a2.5 2.5 0 1 0-5 0c0 .07.015.137.021.206c-.057-.04-.107-.086-.168-.121a2.5 2.5 0 0 0-2.5 4.33c.061.035.126.056.188.085c-.062.029-.127.05-.188.085a2.5 2.5 0 0 0 2.5 4.33c.062-.035.111-.081.168-.121c-.006.069-.021.136-.021.206a2.5 2.5 0 1 0 5 0c0-.07-.015-.137-.021-.206c.057.04.106.086.168.121a2.5 2.5 0 0 0 2.5-4.33c-.061-.035-.126-.056-.188-.085c.063-.029.127-.05.188-.085a2.5 2.5 0 0 0 .916-3.415zM12 12a3 3 0 1 1 0-6a3 3 0 0 1 0 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-folder { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 5h-9.586L8.707 3.293A.997.997 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-folder-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 5h-9.586L8.707 3.293A.997.997 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2zm-4 9H8v-2h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-folder-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.165 19.551c.186.28.499.449.835.449h15c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 11h-1V8c0-1.103-.897-2-2-2h-6.655L8.789 4H4c-1.103 0-2 .897-2 2v13h.007a1 1 0 0 0 .158.551zM18 8v3H6c-.4 0-.762.238-.919.606L4 14.129V8h14z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-folder-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 5h-9.586L8.707 3.293A.997.997 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2zm-4 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-food-menu { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 2h2v20H3zm16 0H6v20h13c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm-1 10H9v-2h9v2zm0-4H9V6h9v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-fridge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 2H6c-1.103 0-2 .897-2 2v5h4V6h2v3h10V4c0-1.103-.897-2-2-2zm-8 13H8v-5H4v10c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V10H10v5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-game { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22c3.719 0 7.063-2.035 8.809-5.314L13 12l7.809-4.686C19.063 4.035 15.719 2 12 2C6.486 2 2 6.486 2 12s4.486 10 10 10zm-.5-16a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 11.5 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-gas-pump { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.616 6.48l.014-.017l-4-3.24l-1.26 1.554l2.067 1.674a2.99 2.99 0 0 0-1.394 3.062c.15.899.769 1.676 1.57 2.111c.895.487 1.68.442 2.378.194L18.976 18a.996.996 0 0 1-1.39.922a.995.995 0 0 1-.318-.217a.996.996 0 0 1-.291-.705L17 16a2.98 2.98 0 0 0-.877-2.119A3 3 0 0 0 14 13h-1V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-4h1c.136 0 .267.027.391.078a1.028 1.028 0 0 1 .531.533A.994.994 0 0 1 15 16l-.024 2c0 .406.079.799.236 1.168c.151.359.368.68.641.951a2.97 2.97 0 0 0 2.123.881c.406 0 .798-.078 1.168-.236c.358-.15.68-.367.951-.641A2.983 2.983 0 0 0 20.976 18L21 9a2.997 2.997 0 0 0-1.384-2.52zM11 8H4V5h7v3zm7 2a1 1 0 1 1 0-2a1 1 0 0 1 0 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-ghost { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 11v8h.051c.245 1.692 1.69 3 3.449 3c1.174 0 2.074-.417 2.672-1.174a3.99 3.99 0 0 0 5.668-.014c.601.762 1.504 1.188 2.66 1.188c1.93 0 3.5-1.57 3.5-3.5V11c0-4.962-4.037-9-9-9s-9 4.038-9 9zm6 1c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2zm6-4c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-gift { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 12H4v8a2 2 0 0 0 2 2h5V12H5zm13 0h-5v10h5a2 2 0 0 0 2-2v-8h-2zm.791-5A4.92 4.92 0 0 0 19 5.5C19 3.57 17.43 2 15.5 2c-1.622 0-2.705 1.482-3.404 3.085C11.407 3.57 10.269 2 8.5 2C6.57 2 5 3.57 5 5.5c0 .596.079 1.089.209 1.5H2v4h9V9h2v2h9V7h-3.209zM7 5.5C7 4.673 7.673 4 8.5 4c.888 0 1.714 1.525 2.198 3H8c-.374 0-1 0-1-1.5zM15.5 4c.827 0 1.5.673 1.5 1.5C17 7 16.374 7 16 7h-2.477c.51-1.576 1.251-3 1.977-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-graduation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2 7v1l11 4l9-4V7L11 4z' fill='black'/%3E%3Cpath d='M4 11v4.267c0 1.621 4.001 3.893 9 3.734c4-.126 6.586-1.972 7-3.467c.024-.089.037-.178.037-.268V11L13 14l-5-1.667v3.213l-1-.364V12l-3-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-grid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 4h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4zM4 10h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4zM4 16h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-grid-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 11h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zm10 0h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zM4 21h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zm10 0h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-group { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9.5 12c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4zm1.5 1H8c-3.309 0-6 2.691-6 6v1h15v-1c0-3.309-2.691-6-6-6z' fill='black'/%3E%3Cpath d='M16.604 11.048a5.67 5.67 0 0 0 .751-3.44c-.179-1.784-1.175-3.361-2.803-4.44l-1.105 1.666c1.119.742 1.8 1.799 1.918 2.974a3.693 3.693 0 0 1-1.072 2.986l-1.192 1.192l1.618.475C18.951 13.701 19 17.957 19 18h2c0-1.789-.956-5.285-4.396-6.952z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-guitar-amp { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6h-2V4c0-1.103-.897-2-2-2H8c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2zM8 4h8v2H8V4zM6 19a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm2-4H4V8h16v4z' fill='black'/%3E%3Cpath d='M14 9h2v2h-2zm3 0h2v2h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hand { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.5 5A1.5 1.5 0 0 0 19 6.5V11h-1V4.5a1.5 1.5 0 0 0-3 0V11h-1V3.5a1.5 1.5 0 0 0-3 0V11h-1V5.5a1.5 1.5 0 0 0-3 0v10.81l-2.22-3.6a1.5 1.5 0 0 0-2.56 1.58l3.31 5.34A5 5 0 0 0 9.78 22H17a5 5 0 0 0 5-5V6.5A1.5 1.5 0 0 0 20.5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hand-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.278 2.231a1.001 1.001 0 0 0-.64-.231H5a2 2 0 0 0-2 2v7.21a2 2 0 0 0 1.779 1.987L12 14v6a2 2 0 0 0 4 0V8l3.03 1.212a2.001 2.001 0 0 0 2.641-1.225l.113-.34a.998.998 0 0 0-.309-1.084l-5.197-4.332z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hand-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3h-7.21a2 2 0 0 0-1.987 1.779L10 12H4a2 2 0 0 0 0 4h12l-1.212 3.03a2.001 2.001 0 0 0 1.225 2.641l.34.113a.998.998 0 0 0 1.084-.309l4.332-5.197c.149-.179.231-.406.231-.64V5a2 2 0 0 0-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hand-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 8H8l1.212-3.03a2 2 0 0 0-1.225-2.641l-.34-.113a.998.998 0 0 0-1.084.309L2.231 7.722a1.001 1.001 0 0 0-.231.64V19a2 2 0 0 0 2 2h7.21a2 2 0 0 0 1.987-1.779L14 12h6a2 2 0 0 0 0-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hand-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.221 10.803L12 10V4a2 2 0 0 0-4 0v12l-3.031-1.212a2 2 0 0 0-2.64 1.225l-.113.34a.998.998 0 0 0 .309 1.084l5.197 4.332c.179.149.406.231.64.231H19a2 2 0 0 0 2-2v-7.21a2 2 0 0 0-1.779-1.987z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-happy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm3.493 7a1.494 1.494 0 1 1-.001 2.987A1.494 1.494 0 0 1 15.493 9zM8.5 9a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 9zm3.5 9c-4 0-5-4-5-4h10s-1 4-5 4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-happy-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm3.493 6a1.494 1.494 0 1 1-.001 2.987A1.494 1.494 0 0 1 15.493 8zM8.5 8a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 8zM12 18c-5 0-6-5-6-5h12s-1 5-6 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-happy-beaming { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zM8 9c2.201 0 3 1.794 3 3H9c-.012-.45-.194-1-1-1s-.988.55-1 1.012L5 12c0-1.206.799-3 3-3zm4 9c-4 0-5-4-5-4h10s-1 4-5 4zm5-6c-.012-.45-.194-1-1-1s-.988.55-1 1.012L13 12c0-1.206.799-3 3-3s3 1.794 3 3h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-happy-heart-eyes { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zM6.435 8.467A1.49 1.49 0 0 1 8.502 8.4a1.49 1.49 0 0 1 2.065.033c.597.592.604 1.521.018 2.118l-2.05 2.083l-2.082-2.05a1.484 1.484 0 0 1-.018-2.117zM12 18c-4 0-5-4-5-4h10s-1 4-5 4zm5.585-7.449l-2.05 2.083l-2.082-2.05a1.485 1.485 0 0 1-.019-2.117a1.49 1.49 0 0 1 2.068-.067a1.49 1.49 0 0 1 2.065.033c.597.591.605 1.521.018 2.118z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hdd { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 13H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2zm-4 5h-2v-2h2v2zm4 0h-2v-2h2v2zm.775-7H21l-1.652-7.434A2 2 0 0 0 17.396 2H6.604a2 2 0 0 0-1.952 1.566L3 11h17.775z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.205 4.791a5.938 5.938 0 0 0-4.209-1.754A5.906 5.906 0 0 0 12 4.595a5.904 5.904 0 0 0-3.996-1.558a5.942 5.942 0 0 0-4.213 1.758c-2.353 2.363-2.352 6.059.002 8.412L12 21.414l8.207-8.207c2.354-2.353 2.355-6.049-.002-8.416z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-heart-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm4.186 10.74L12 16.926L7.814 12.74a2.745 2.745 0 0 1 0-3.907a2.745 2.745 0 0 1 3.906 0l.28.279l.279-.279a2.745 2.745 0 0 1 3.906 0a2.745 2.745 0 0 1 .001 3.907z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-heart-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 21h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1zM7.812 8.907a2.746 2.746 0 0 1 3.907 0l.279.279l.278-.279a2.746 2.746 0 0 1 3.907 0a2.745 2.745 0 0 1 0 3.907L11.998 17l-4.187-4.186a2.747 2.747 0 0 1 .001-3.907z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-help-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm1 16h-2v-2h2v2zm.976-4.885c-.196.158-.385.309-.535.459c-.408.407-.44.777-.441.793v.133h-2v-.167c0-.118.029-1.177 1.026-2.174c.195-.195.437-.393.691-.599c.734-.595 1.216-1.029 1.216-1.627a1.934 1.934 0 0 0-3.867.001h-2C8.066 7.765 9.831 6 12 6s3.934 1.765 3.934 3.934c0 1.597-1.179 2.55-1.958 3.181z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hide { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.073 12.194L4.212 8.333c-1.52 1.657-2.096 3.317-2.106 3.351L2 12l.105.316C2.127 12.383 4.421 19 12.054 19c.929 0 1.775-.102 2.552-.273l-2.746-2.746a3.987 3.987 0 0 1-3.787-3.787zM12.054 5c-1.855 0-3.375.404-4.642.998L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-3.298-3.298c2.638-1.953 3.579-4.637 3.593-4.679l.105-.316l-.105-.316C21.98 11.617 19.687 5 12.054 5zm1.906 7.546c.187-.677.028-1.439-.492-1.96s-1.283-.679-1.96-.492L10 8.586A3.955 3.955 0 0 1 12.054 8c2.206 0 4 1.794 4 4a3.94 3.94 0 0 1-.587 2.053l-1.507-1.507z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-home { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.743 12.331l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10a.998.998 0 0 0-.17 1.076c.16.361.518.593.913.593h2v7a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-4h4v4a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .743-1.669z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-home-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.743 12.331l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10A1 1 0 0 0 3 14h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .743-1.669zM12 16a3 3 0 1 1 0-6a3 3 0 0 1 0 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-home-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 14h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .913-.593a.998.998 0 0 0-.17-1.076l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10A1 1 0 0 0 3 14zm5.653-2.359a2.224 2.224 0 0 1 3.125 0l.224.22l.223-.22a2.225 2.225 0 0 1 3.126 0a2.13 2.13 0 0 1 0 3.07L12.002 18l-3.349-3.289a2.13 2.13 0 0 1 0-3.07z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-home-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 14h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .913-.593a.998.998 0 0 0-.17-1.076l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10A1 1 0 0 0 3 14zm5.949-.316C8.98 13.779 9.762 16 12 16c2.269 0 3.042-2.287 3.05-2.311l1.9.621C16.901 14.461 15.703 18 12 18s-4.901-3.539-4.95-3.689l1.899-.627z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.5 8c0 1.5-.5 3.5-2.9 4.3c.7-1.7.8-3.4.3-5c-.7-2.1-3-3.7-4.6-4.6c-.4-.3-1.1.1-1 .7c0 1.1-.3 2.7-2 4.4C4.1 10 3 12.3 3 14.5C3 17.4 5 21 9 21c-4-4-1-7.5-1-7.5c.8 5.9 5 7.5 7 7.5c1.7 0 5-1.2 5-6.4c0-3.1-1.3-5.5-2.4-6.9c-.3-.5-1-.2-1.1.3' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hotel { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='8' cy='11' r='3' fill='black'/%3E%3Cpath d='M18.205 7H12v8H4V6H2v14h2v-3h16v3h2v-4c0-.009-.005-.016-.005-.024H22V11c0-2.096-1.698-4-3.795-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hourglass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 22h1v-2h-1v-1a7.014 7.014 0 0 0-3.433-6.02c-.355-.21-.567-.547-.567-.901v-.158c0-.354.212-.691.566-.9A7.016 7.016 0 0 0 19 5V4h1V2H4v2h1v1a7.016 7.016 0 0 0 3.434 6.021c.354.209.566.545.566.9v.158c0 .354-.212.691-.566.9A7.016 7.016 0 0 0 5 19v1H4v2h15zM17 4v1a5.005 5.005 0 0 1-1.004 3H8.004A5.005 5.005 0 0 1 7 5V4h10zM9.45 14.702c.971-.574 1.55-1.554 1.55-2.623V12h2v.079c0 1.068.579 2.049 1.551 2.623A4.98 4.98 0 0 1 16.573 17H7.427a4.977 4.977 0 0 1 2.023-2.298z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hourglass-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 2H4v2h1v1a7.014 7.014 0 0 0 3.433 6.02c.355.21.567.547.567.901v.158c0 .354-.212.691-.566.9A7.016 7.016 0 0 0 5 19v1H4v2h16v-2h-1v-1a7.016 7.016 0 0 0-3.434-6.021c-.354-.208-.566-.545-.566-.9v-.158c0-.354.212-.69.566-.9A7.016 7.016 0 0 0 19 5V4h1V2H5zm12 3a5.01 5.01 0 0 1-2.45 4.299A3.107 3.107 0 0 0 13.166 11h-2.332a3.114 3.114 0 0 0-1.385-1.702A5.008 5.008 0 0 1 7 5V4h10v1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-hourglass-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.566 11.021A7.016 7.016 0 0 0 19 5V4h1V2H4v2h1v1a7.016 7.016 0 0 0 3.434 6.021c.354.208.566.545.566.9v.158c0 .354-.212.69-.566.9A7.016 7.016 0 0 0 5 19v1H4v2h16v-2h-1v-1a7.014 7.014 0 0 0-3.433-6.02c-.355-.21-.567-.547-.567-.901v-.158c0-.355.212-.692.566-.9zM17 19v1H7v-1a5.01 5.01 0 0 1 2.45-4.299A3.111 3.111 0 0 0 10.834 13h2.332c.23.691.704 1.3 1.385 1.702A5.008 5.008 0 0 1 17 19z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-id-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zM8.715 8c1.151 0 2 .849 2 2s-.849 2-2 2s-2-.849-2-2s.848-2 2-2zm3.715 8H5v-.465c0-1.373 1.676-2.785 3.715-2.785s3.715 1.412 3.715 2.785V16zM19 15h-4v-2h4v2zm0-4h-5V9h5v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-image { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.999 4h-16c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-13.5 3a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3zm5.5 10h-7l4-5l1.5 2l3-4l5.5 7h-7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-image-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9 13l3-4l3 4.5V12h4V5c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h8v-4H5l3-4l1 2z' fill='black'/%3E%3Cpath d='M19 14h-2v3h-3v2h3v3h2v-3h3v-2h-3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-image-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2zm3-7l2.363 2.363L14 11l5 7H5l3-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-inbox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4c-1.103 0-2 .897-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5c0-1.103-.897-2-2-2zm-1 9h-3.142c-.446 1.722-1.997 3-3.858 3s-3.412-1.278-3.858-3H4V5h16v7h-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-info-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-info-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 4v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1zm8 3h2v2h-2V7zm0 4h2v6h-2v-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-injection { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 5.61L9.24 8.35l3.31 3.31l-1.06 1.06l-3.31-3.31l-1.77 1.77l3.31 3.31l-1.06 1.06l-3.31-3.31l-2 2A2 2 0 0 0 3 16.66l1 1.89l-2.25 2.29l1.41 1.41L5.45 20l1.89 1a2 2 0 0 0 1 .26a2 2 0 0 0 1.42-.59L18.39 12z' fill='black'/%3E%3Cpath d='M19.8 9.2l-1.79-1.8l1.42-1.41l1.41 1.41l1.41-1.41l-4.24-4.24l-1.41 1.41l1.41 1.42l-1.41 1.41l-1.8-1.79l-1.74-1.75l-1.41 1.42l1.03 1.03v.01l6.41 6.41h.01l1.03 1.03l1.42-1.41l-1.74-1.74h-.01z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-institution { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.857 8.485l-3-5A.997.997 0 0 0 18 3h-4.586l-.707-.707a.999.999 0 0 0-1.414 0L10.586 3H6a.997.997 0 0 0-.857.485l-3 5A1.001 1.001 0 0 0 2.002 9H2v10a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9h-.002c0-.178-.046-.356-.141-.515zM20 18h-6v-4h-4v4H4v-8h2.414l.293-.293l2-2L12 4.414l4.293 4.293l1 1l.293.293H20v8z' fill='black'/%3E%3Ccircle cx='11.895' cy='9.895' r='2.105' fill='black'/%3E%3Cpath d='M6 12h2v3H6zm10 0h2v3h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-invader { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 3h2v2H6z' fill='black'/%3E%3Cpath d='M8 19h3v2H8z' fill='black'/%3E%3Cpath d='M16 3h2v2h-2z' fill='black'/%3E%3Cpath d='M13 19h3v2h-3z' fill='black'/%3E%3Cpath d='M20 11V9h-2V7h-2V5h-2v2h-4V5H8v2H6v2H4v2H2v8h2v-4h2v4h2v-3h8v3h2v-4h2v4h2v-8zm-10 1H8V9h2zm6 0h-2V9h2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-joystick { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.986 9.74a3.193 3.193 0 0 0-.008-.088A5.003 5.003 0 0 0 17 5H7a4.97 4.97 0 0 0-4.987 4.737c-.01.079-.013.161-.013.253v6.51c0 .925.373 1.828 1.022 2.476A3.524 3.524 0 0 0 5.5 20c1.8 0 2.504-1 3.5-3c.146-.292.992-2 3-2c1.996 0 2.853 1.707 3 2c1.004 2 1.7 3 3.5 3c.925 0 1.828-.373 2.476-1.022A3.524 3.524 0 0 0 22 16.5V10c0-.095-.004-.18-.014-.26zM7 12.031a2 2 0 1 1-.001-3.999A2 2 0 0 1 7 12.031zm10-5a1 1 0 1 1 0 2a1 1 0 1 1 0-2zm-2 4a1 1 0 1 1 0-2a1 1 0 1 1 0 2zm2 2a1 1 0 1 1 0-2a1 1 0 1 1 0 2zm2-2a1 1 0 1 1 0-2a1 1 0 1 1 0 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-joystick-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 6H8a6 6 0 0 0 0 12h8a6 6 0 0 0 0-12zm-5 7H9v2H7v-2H5v-2h2V9h2v2h2v2zm3.5 2a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3zm3-3a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-joystick-button { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 8h-4V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v4H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2zM7 14l-3-2l3-2v4zm5 6l-2-3h4l-2 3zm0-6a2 2 0 1 1 .001-4.001A2 2 0 0 1 12 14zm-2-7l2-3l2 3h-4zm7 7v-4l3 2l-3 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-key { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3.433 17.325L3.079 19.8a1 1 0 0 0 1.131 1.131l2.475-.354C7.06 20.524 8 18 8 18s.472.405.665.466c.412.13.813-.274.948-.684L10 16.01s.577.292.786.335c.266.055.524-.109.707-.293a.988.988 0 0 0 .241-.391L12 14.01s.675.187.906.214c.263.03.519-.104.707-.293l1.138-1.137a5.502 5.502 0 0 0 5.581-1.338a5.507 5.507 0 0 0 0-7.778a5.507 5.507 0 0 0-7.778 0a5.5 5.5 0 0 0-1.338 5.581l-7.501 7.5a.994.994 0 0 0-.282.566zM18.504 5.506a2.919 2.919 0 0 1 0 4.122l-4.122-4.122a2.919 2.919 0 0 1 4.122 0z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-keyboard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 5H3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm-8 2h2v2h-2V7zm0 4h2v2h-2v-2zM9 7h2v2H9V7zm0 4h2v2H9v-2zM5 7h2v2H5V7zm0 4h2v2H5v-2zm12 6H7v-2h10v2zm2-4h-2v-2h2v2zm0-4h-2V7h2v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-label { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.813 4.419A.997.997 0 0 0 16 4H3a1 1 0 0 0-.813 1.581L6.771 12l-4.585 6.419A1 1 0 0 0 3 20h13a.997.997 0 0 0 .813-.419l5-7a.997.997 0 0 0 0-1.162l-5-7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-landmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 17h-2V9h2V7a.998.998 0 0 0-.594-.914l-9.432-4.191l-8.421 4.21A1 1 0 0 0 2 7v2h2v8H2v4h19v-4zm-5-8v8h-3V9h3zM7 9h3v8H7V9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-landscape { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='6.5' cy='6.5' r='2.5' fill='black'/%3E%3Cpath d='M14 7l-5.223 8.487L7 13l-5 7h20z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-laugh { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-6.447 9.105l2.459-1.229l-1.567-1.044l1.109-1.664l3 2a1 1 0 0 1-.108 1.727l-4 2l-.893-1.79zM12 18c-4 0-5-4-5-4h10s-1 4-5 4zm5.553-5.105l-4-2a1 1 0 0 1-.108-1.727l3-2l1.109 1.664l-1.566 1.044l2.459 1.229l-.894 1.79z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-layer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.484 7.125l-9.022-5a1.003 1.003 0 0 0-.968 0l-8.978 4.96a1 1 0 0 0-.003 1.748l9.022 5.04a.995.995 0 0 0 .973.001l8.978-5a1 1 0 0 0-.002-1.749z' fill='black'/%3E%3Cpath d='M12 15.856l-8.515-4.73l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5l-.971-1.748L12 15.856z' fill='black'/%3E%3Cpath d='M12 19.856l-8.515-4.73l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5l-.971-1.748L12 19.856z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-layer-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.484 11.125l-9.022-5a1 1 0 0 0-.968-.001l-8.978 4.96a1 1 0 0 0-.003 1.749l9.022 5.04a.995.995 0 0 0 .973.001l8.978-5a1 1 0 0 0-.002-1.749z' fill='black'/%3E%3Cpath d='M20.515 15.126L12 19.856l-8.515-4.73l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5l-.97-1.748zM16 4h6v2h-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-layer-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.513 12.833l9.022 5.04a.995.995 0 0 0 .973.001l8.978-5a1 1 0 0 0-.002-1.749l-9.022-5a1 1 0 0 0-.968-.001l-8.978 4.96a1 1 0 0 0-.003 1.749z' fill='black'/%3E%3Cpath d='M3.485 15.126l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5l-.971-1.748L12 19.856l-8.515-4.73zM20 8V6h2V4h-2V2h-2v2h-2v2h2v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-layout { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5c-1.103 0-2 .897-2 2v4h18V5c0-1.103-.897-2-2-2zM3 19c0 1.103.897 2 2 2h8V11H3v8zm12 2h4c1.103 0 2-.897 2-2v-8h-6v10z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-leaf { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M22 3.41l-.12-1.26l-1.2.4a13.84 13.84 0 0 1-6.41.64a11.87 11.87 0 0 0-6.68.9A7.23 7.23 0 0 0 3.3 9.5a9 9 0 0 0 .39 4.58a16.6 16.6 0 0 1 1.18-2.2a9.85 9.85 0 0 1 4.07-3.43a11.16 11.16 0 0 1 5.06-1A12.08 12.08 0 0 0 9.34 9.2a9.48 9.48 0 0 0-1.86 1.53a11.38 11.38 0 0 0-1.39 1.91a16.39 16.39 0 0 0-1.57 4.54A26.42 26.42 0 0 0 4 22h2a30.69 30.69 0 0 1 .59-4.32a9.25 9.25 0 0 0 4.52 1.11a11 11 0 0 0 4.28-.87C23 14.67 22 3.86 22 3.41z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-left-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.431 12.822l13 9A1 1 0 0 0 19 21V3a1 1 0 0 0-1.569-.823l-13 9a1.003 1.003 0 0 0 0 1.645z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-left-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 12l7 6v-5h6v-2h-6V6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-left-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm5 11h-5v4l-5-5l5-5v4h5v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-left-arrow-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 21a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14zM12 7v4h5v2h-5v4l-5-5l5-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-left-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.071 19.071c3.898-3.899 3.898-10.244 0-14.143c-3.899-3.899-10.244-3.898-14.143 0c-3.898 3.899-3.899 10.243 0 14.143c3.9 3.899 10.244 3.899 14.143 0zM8.464 8.464l2.829 2.829l3.535-3.536l1.414 1.414l-3.535 3.536l2.828 2.829H8.464V8.464z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-left-top-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.071 19.071c3.898-3.899 3.898-10.244 0-14.143c-3.899-3.898-10.243-3.898-14.143 0c-3.898 3.899-3.898 10.244 0 14.143c3.9 3.899 10.244 3.899 14.143 0zM8.465 8.464h7.07l-2.828 2.829l3.535 3.536l-1.414 1.414l-3.535-3.536l-2.828 2.829V8.464z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-lemon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.45 8.74A2.23 2.23 0 0 1 21.64 7a3.51 3.51 0 0 0 .24-2.47a3.55 3.55 0 0 0-2.45-2.45a3.51 3.51 0 0 0-2.43.28a2.23 2.23 0 0 1-1.7.19a10.07 10.07 0 0 0-6.53 0a9.87 9.87 0 0 0-6.23 6.18a10.07 10.07 0 0 0 0 6.53A2.23 2.23 0 0 1 2.36 17a3.51 3.51 0 0 0-.24 2.47a3.55 3.55 0 0 0 2.45 2.45A3.51 3.51 0 0 0 7 21.64a2.23 2.23 0 0 1 1.7-.19A9.83 9.83 0 0 0 12 22a10.33 10.33 0 0 0 3.27-.54a9.87 9.87 0 0 0 6.19-6.19a10.07 10.07 0 0 0-.01-6.53zM12 7a5 5 0 0 0-5 5H5a7 7 0 0 1 7-7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-like { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 21h1V8H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2zM20 8h-7l1.122-3.368A2 2 0 0 0 12.225 2H12L7 7.438V21h11l3.912-8.596L22 12v-2a2 2 0 0 0-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-location-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22s8.029-5.56 8-12c0-4.411-3.589-8-8-8S4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22zM8 9h3V6h2v3h3v2h-3v3h-2v-3H8V9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-lock { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C9.243 2 7 4.243 7 7v3H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-1V7c0-2.757-2.243-5-5-5zM9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v3H9V7zm4 10.723V20h-2v-2.277a1.993 1.993 0 0 1 .567-3.677A2.001 2.001 0 0 1 14 16a1.99 1.99 0 0 1-1 1.723z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-lock-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 12c0-1.103-.897-2-2-2h-1V7c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-8zM9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v3H9V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-lock-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 10H9V7c0-1.654 1.346-3 3-3s3 1.346 3 3h2c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2zm-7.939 5.499A2.002 2.002 0 0 1 14 16a1.99 1.99 0 0 1-1 1.723V20h-2v-2.277a1.992 1.992 0 0 1-.939-2.224z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-lock-open-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 8V7c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2H9V7c0-1.654 1.346-3 3-3s3 1.346 3 3v1h2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-log-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.5 2h-13a.5.5 0 0 0-.5.5V11h6V8l5 4l-5 4v-3H5v8.5a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-19a.5.5 0 0 0-.5-.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-log-in-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 3c-4.625 0-8.442 3.507-8.941 8.001H10v-3l5 4l-5 4v-3H3.06C3.56 17.494 7.376 21 12 21c4.963 0 9-4.037 9-9s-4.037-9-9-9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-log-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 2H6a1 1 0 0 0-1 1v9l5-4v3h6v2h-6v3l-5-4v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-log-out-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 3c-4.963 0-9 4.037-9 9v.001l5-4v3h7v2H8v3l-5-4C3.001 16.964 7.037 21 12 21s9-4.037 9-9s-4.037-9-9-9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-low-vision { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 4.998c-1.836 0-3.356.389-4.617.971L3.707 2.293L2.293 3.707l3.315 3.315c-2.613 1.952-3.543 4.618-3.557 4.66l-.105.316l.105.316C2.073 12.382 4.367 19 12 19c1.835 0 3.354-.389 4.615-.971l3.678 3.678l1.414-1.414l-3.317-3.317c2.614-1.952 3.545-4.618 3.559-4.66l.105-.316l-.105-.316c-.022-.068-2.316-6.686-9.949-6.686zM12.043 7H12a5 5 0 0 1 5 5a4.894 4.894 0 0 1-.852 2.734l-.721-.721A3.919 3.919 0 0 0 16 11.999c0-.474-.099-.925-.255-1.349A.985.985 0 0 1 15 11a1 1 0 0 1-1-1c0-.439.288-.802.682-.936A3.965 3.965 0 0 0 12 7.999c-.735 0-1.419.218-2.015.572l-.72-.72C10.053 7.326 10.982 7 12 7h-.043L12 6.998l.043.002zm-7.969 4.999c.103-.235.274-.586.521-.989l5.867 5.867c-4.213-.647-5.939-3.842-6.388-4.878zm9.247 4.908l-7.48-7.48a8.146 8.146 0 0 1 1.188-.984l8.055 8.055a8.835 8.835 0 0 1-1.763.409z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-magic-wand { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11 4l-.5-1l-.5 1l-1 .125l.834.708L9.5 6l1-.666l1 .666l-.334-1.167l.834-.708zm8.334 10.666L18.5 13l-.834 1.666l-1.666.209l1.389 1.181L16.834 18l1.666-1.111L20.166 18l-.555-1.944L21 14.875zM6.667 6.333L6 5l-.667 1.333L4 6.5l1.111.944L4.667 9L6 8.111L7.333 9l-.444-1.556L8 6.5zM3.414 17c0 .534.208 1.036.586 1.414L5.586 20c.378.378.88.586 1.414.586s1.036-.208 1.414-.586L20 8.414c.378-.378.586-.88.586-1.414S20.378 5.964 20 5.586L18.414 4c-.756-.756-2.072-.756-2.828 0L4 15.586c-.378.378-.586.88-.586 1.414zM17 5.414L18.586 7L15 10.586L13.414 9L17 5.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-magnet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8 3H5a1 1 0 0 0-1 1v3h5V4a1 1 0 0 0-1-1zm7 1v3h5V4a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1zm0 10a3 3 0 0 1-6 0V9H4v5a8 8 0 0 0 16 0V9h-5v5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-map { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8zm0 12c-2.21 0-4-1.79-4-4s1.79-4 4-4s4 1.79 4 4s-1.79 4-4 4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-map-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9 6.882l-7-3.5v13.236l7 3.5l6-3l7 3.5V7.382l-7-3.5l-6 3zM15 15l-6 3V9l6-3v9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-map-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 17l1-2V9.858c1.721-.447 3-2 3-3.858c0-2.206-1.794-4-4-4S8 3.794 8 6c0 1.858 1.279 3.411 3 3.858V15l1 2z' fill='black'/%3E%3Cpath d='M16.267 10.563l-.533 1.928C18.325 13.207 20 14.584 20 16c0 1.892-3.285 4-8 4s-8-2.108-8-4c0-1.416 1.675-2.793 4.267-3.51l-.533-1.928C4.197 11.54 2 13.623 2 16c0 3.364 4.393 6 10 6s10-2.636 10-6c0-2.377-2.197-4.46-5.733-5.437z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-mask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 6H5C3.346 6 2 7.346 2 9v5c0 2.206 1.794 4 4 4h1.637c1.166 0 2.28-.557 2.981-1.491c.66-.879 2.104-.88 2.764.001A3.744 3.744 0 0 0 16.363 18H18c2.206 0 4-1.794 4-4V9c0-1.654-1.346-3-3-3zM7.5 13C6.119 13 5 12.328 5 11.5S6.119 10 7.5 10s2.5.672 2.5 1.5S8.881 13 7.5 13zm9 0c-1.381 0-2.5-.672-2.5-1.5s1.119-1.5 2.5-1.5s2.5.672 2.5 1.5s-1.119 1.5-2.5 1.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-medal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 2h-4v4.059a8.946 8.946 0 0 1 4 1.459V2zm-6 0H7v5.518a8.946 8.946 0 0 1 4-1.459V2zm1 20a7 7 0 1 0 0-14a7 7 0 0 0 0 14zm-1.225-8.519L12 11l1.225 2.481l2.738.397l-1.981 1.932l.468 2.727L12 17.25l-2.449 1.287l.468-2.727l-1.981-1.932l2.737-.397z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-megaphone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.664 3.478L8 8v7l.748.267l-1.127 2.254a1.999 1.999 0 0 0 1.156 2.792l4.084 1.361a2.015 2.015 0 0 0 2.421-1.003l1.303-2.606l4.079 1.457A1 1 0 0 0 22 18.581V4.419a1 1 0 0 0-1.336-.941zm-7.171 16.299L9.41 18.416l1.235-2.471l4.042 1.444l-1.194 2.388zM4 15h2V8H4c-1.103 0-2 .897-2 2v3c0 1.103.897 2 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-meh { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5zm9 6.5H7.974v-2H16v2zm-.507-5.014a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-meh-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-6 8h4v2H6v-2zm10 7H7.974v-2H16v2zm2-5h-4v-2h4v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-meh-blank { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zM8.5 12a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8.5 12zm6.993-.014a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-memory-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15 2H6c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V7l-5-5zm-6 8H7V6h2v4zm3 0h-2V6h2v4zm3 0h-2V6h2v4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2zm-3 9h-4v4h-2v-4H7V9h4V5h2v4h4v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.999 2h-14c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4h3.5c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.5 18l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5zM7 9h4V5h2v4h4v2h-4v4h-2v-4H7V9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 4v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2zm5.707 4.293L11 10.586l4.793-4.793l1.414 1.414L11 13.414L7.293 9.707l1.414-1.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.5 18l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5zM7 7h10v2H7V7zm0 4h7v2H7v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zM9 12a2 2 0 1 1 .001-4.001A2 2 0 0 1 9 12zm6 0a2 2 0 1 1 .001-4.001A2 2 0 0 1 15 12z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 2c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5zm4.302 11.987h-1.8v-1.799l4.978-4.97l1.798 1.799l-4.976 4.97zm5.823-5.817l-1.798-1.799L14.698 5l1.8 1.799l-1.373 1.371z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 4v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2zm8 1h2v6h-2V5zm0 8h2v2h-2v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 2c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5zm11 9H8V9h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-alt-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.5 18l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5zM7.293 6.707l1.414-1.414L12 8.586l3.293-3.293l1.414 1.414L13.414 10l3.293 3.293l-1.414 1.414L12 11.414l-3.293 3.293l-1.414-1.414L10.586 10L7.293 6.707z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2zm-9 11.914l-3.707-3.707l1.414-1.414L11 11.086l4.793-4.793l1.414 1.414L11 13.914z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2zm-6 11H7v-2h7v2zm3-4H7V7h10v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.017C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2zm-9 8a2 2 0 1 1-2-2c.086 0 .167.015.25.025c.082-.014.164-.025.25-.025A1.5 1.5 0 0 1 11 9.5c0 .086-.012.168-.025.25c.01.083.025.165.025.25zm4 2a2 2 0 0 1-2-2c0-.086.015-.167.025-.25A1.592 1.592 0 0 1 13 9.5A1.5 1.5 0 0 1 14.5 8c.086 0 .168.011.25.025c.083-.01.164-.025.25-.025a2 2 0 0 1 0 4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2zM8.999 14.999H7V13l5.53-5.522l1.998 1.999l-5.529 5.522zm6.472-6.464l-1.999-1.999l1.524-1.523l1.999 1.999l-1.524 1.523z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2zm-7 13h-2v-2h2v2zm0-4h-2V5h2v6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2zm-4 9H8V9h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8zm4 9h-3v3h-2v-3H8V9h3V6h2v3h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8zm-1 12.414l-3.707-3.707l1.414-1.414L11 11.586l4.793-4.793l1.414 1.414L11 14.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8zm2 11H7v-2h7v2zm3-4H7V7h10v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.897 5.516 5 6.934V22l5.34-4.004C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8zm-2.5 9a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.516 5 6.934V22l5.34-4.005C17.697 17.854 22 14.32 22 10c0-4.411-4.486-8-10-8zM9.302 13.986H7.503v-1.798l4.976-4.97l1.798 1.799l-4.975 4.969zm5.823-5.816l-1.799-1.798l1.372-1.371l1.799 1.798l-1.372 1.371z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.516 5 6.934V22l5.34-4.005C17.697 17.854 22 14.32 22 10c0-4.411-4.486-8-10-8zm1 12h-2v-2h2v2zm0-4h-2V5h2v5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8zm4 9H8V9h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-rounded-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8zm3.707 10.293l-1.414 1.414L12 11.414l-2.293 2.293l-1.414-1.414L10.586 10L8.293 7.707l1.414-1.414L12 8.586l2.293-2.293l1.414 1.414L13.414 10l2.293 2.293z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6zm1 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6zm-5 14.414l-3.707-3.707l1.414-1.414L11 13.586l4.793-4.793l1.414 1.414L11 16.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6zm-2 13H7v-2h7v2zm3-4H7V9h10v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6zm-5 10.5A1.5 1.5 0 0 1 9.5 14c-.086 0-.168-.011-.25-.025c-.083.01-.164.025-.25.025a2 2 0 1 1 2-2c0 .085-.015.167-.025.25c.013.082.025.164.025.25zm4 1.5c-.086 0-.167-.015-.25-.025a1.471 1.471 0 0 1-.25.025a1.5 1.5 0 0 1-1.5-1.5c0-.085.012-.168.025-.25c-.01-.083-.025-.164-.025-.25a2 2 0 1 1 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6zM8.999 17H7v-1.999l5.53-5.522l1.999 1.999L8.999 17zm6.473-6.465l-1.999-1.999l1.524-1.523l1.999 1.999l-1.524 1.523z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6zm-3 16h-2v-2h2v2zm0-4h-2V6h2v8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6zm0 11H8v-2h8v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-square-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6zm.706 13.293l-1.414 1.414L12 13.415l-3.292 3.292l-1.414-1.414l3.292-3.292l-3.292-3.292l1.414-1.414L12 10.587l3.292-3.292l1.414 1.414l-3.292 3.292l3.292 3.292z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-message-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A1.998 1.998 0 0 0 20 2zm-3.293 11.293l-1.414 1.414L12 11.414l-3.293 3.293l-1.414-1.414L10.586 10L7.293 6.707l1.414-1.414L12 8.586l3.293-3.293l1.414 1.414L13.414 10l3.293 3.293z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-meteor { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.507 2.138a1 1 0 0 0-1.155.102L4.196 9.197c-2.924 2.924-2.924 7.682 0 10.606a7.472 7.472 0 0 0 5.3 2.192c1.924 0 3.85-.734 5.317-2.202l6.903-7.096A1 1 0 0 0 21 11h-3.301l4.175-7.514a1.001 1.001 0 0 0-1.359-1.36l-7.11 3.95l.576-2.879a1.002 1.002 0 0 0-.474-1.059zM14 14.5a4.5 4.5 0 0 1-9 0c0-1.57.807-2.949 2.025-3.754c-.01.084-.025.167-.025.254a2 2 0 1 0 3.845-.772C12.669 10.802 14 12.486 14 14.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-microchip { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.999 22h8c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2h-8c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2zm-5-15h2V5h-2v.5h-1v1h1zm18-2h-2v2h2v-.5h1v-1h-1zm-18 6h2V9h-2v.5h-1v1h1zm18-2h-2v2h2v-.5h1v-1h-1zm-18 6h2v-2h-2v.5h-1v1h1zm18-2h-2v2h2v-.5h1v-1h-1zm-18 6h2v-2h-2v.5h-1v1h1zm18-2h-2v2h2v-.5h1v-1h-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-microphone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 16c2.206 0 4-1.794 4-4V6c0-2.217-1.785-4.021-3.979-4.021a.933.933 0 0 0-.209.025A4.006 4.006 0 0 0 8 6v6c0 2.206 1.794 4 4 4z' fill='black'/%3E%3Cpath d='M11 19.931V22h2v-2.069c3.939-.495 7-3.858 7-7.931h-2c0 3.309-2.691 6-6 6s-6-2.691-6-6H4c0 4.072 3.061 7.436 7 7.931z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-microphone-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 12H4c0 4.072 3.061 7.436 7 7.931V22h2v-2.069c3.939-.495 7-3.858 7-7.931h-2c0 3.309-2.691 6-6 6s-6-2.691-6-6z' fill='black'/%3E%3Cpath d='M8 12c0 2.206 1.794 4 4 4s4-1.794 4-4h-2v-2h2V8h-2V6h2c0-2.217-1.785-4.021-3.979-4.021a.933.933 0 0 0-.209.025A4.006 4.006 0 0 0 8 6h4v2H8v2h4v2H8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-microphone-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.707 20.293l-3.4-3.4A7.93 7.93 0 0 0 20 12h-2a5.945 5.945 0 0 1-1.119 3.467l-1.449-1.45A3.926 3.926 0 0 0 16 12V6c0-2.217-1.785-4.021-3.979-4.021c-.07 0-.14.009-.209.025A4.006 4.006 0 0 0 8 6v.586L3.707 2.293L2.293 3.707l18 18l1.414-1.414zM6 12H4c0 4.072 3.06 7.436 7 7.931V22h2v-2.069a7.935 7.935 0 0 0 2.241-.63l-1.549-1.548A5.983 5.983 0 0 1 12 18c-3.309 0-6-2.691-6-6z' fill='black'/%3E%3Cpath d='M8.007 12.067a3.996 3.996 0 0 0 3.926 3.926l-3.926-3.926z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-minus-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm5 11H7v-2h10v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-minus-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5zm12 10H7v-2h10v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-mobile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 22c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H8c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h10zm-5-5a1 1 0 1 1 0 2a1 1 0 1 1 0-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-mobile-vibration { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.535 2.808a2.003 2.003 0 0 0-2.828 0l-9.899 9.899a2.001 2.001 0 0 0 0 2.828l5.657 5.657c.39.39.902.585 1.414.585s1.024-.195 1.414-.585l9.899-9.899c.78-.779.78-2.049 0-2.828l-5.657-5.657zM8.707 16.707a.999.999 0 1 1-1.414-1.414a.999.999 0 1 1 1.414 1.414zm7 5l-1.414-1.414l6-6l1.414 1.415zM8.293 2.293l1.414 1.414l-6 6l-1.414-1.415z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-moon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 11.807A9.002 9.002 0 0 1 10.049 2a9.942 9.942 0 0 0-5.12 2.735c-3.905 3.905-3.905 10.237 0 14.142c3.906 3.906 10.237 3.905 14.143 0a9.946 9.946 0 0 0 2.735-5.119A9.003 9.003 0 0 1 12 11.807z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-mouse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.975 22H12c3.859 0 7-3.14 7-7V9c0-3.841-3.127-6.974-6.981-7h-.06C8.119 2.022 5 5.157 5 9v6c0 3.86 3.129 7 6.975 7zM11 6h2v6h-2V6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-mouse-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 2v8h6V8c0-3.309-2.691-6-6-6zM5 16c0 3.309 2.691 6 6 6h2c3.309 0 6-2.691 6-6v-4H5v4zm0-8v2h6V2C7.691 2 5 4.691 5 8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-movie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm.001 6c-.001 0-.001 0 0 0h-.466l-2.667-4H20l.001 4zm-5.466 0l-2.667-4h2.596l2.667 4h-2.596zm-2.404 0H9.535L6.869 5h2.596l2.666 4zM4 5h.465l2.667 4H4V5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-movie-play { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm.001 6c-.001 0-.001 0 0 0h-.465l-2.667-4H20l.001 4zM15.5 15L10 18v-6l5.5 3zm-.964-6l-2.667-4h2.596l2.667 4h-2.596zm-2.404 0H9.536L6.869 5h2.596l2.667 4zM4 5h.465l2.667 4H4V5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-music { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 18.573c2.206 0 4-1.794 4-4V4.428L19 7.7v7.43a3.953 3.953 0 0 0-2-.557c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4V7a.998.998 0 0 0-.658-.939l-11-4A.999.999 0 0 0 8 3v8.13a3.953 3.953 0 0 0-2-.557c-2.206 0-4 1.794-4 4s1.794 4 4 4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-navigation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.002 9.538c-.023.411.207.794.581.966l7.504 3.442l3.442 7.503c.164.356.52.583.909.583l.057-.002a1 1 0 0 0 .894-.686l5.595-17.032c.117-.358.023-.753-.243-1.02s-.66-.358-1.02-.243L2.688 8.645a.997.997 0 0 0-.686.893z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-network-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.5 3A2.502 2.502 0 0 0 17 5.5c0 .357.078.696.214 1.005l-1.955 2.199A3.977 3.977 0 0 0 13 8c-.74 0-1.424.216-2.019.566L8.707 6.293l-.023.023C8.88 5.918 9 5.475 9 5a3 3 0 1 0-3 3c.475 0 .917-.12 1.316-.316l-.023.023L9.567 9.98A3.956 3.956 0 0 0 9 12c0 .997.38 1.899.985 2.601l-2.577 2.576A2.472 2.472 0 0 0 6.5 17C5.122 17 4 18.121 4 19.5S5.122 22 6.5 22S9 20.879 9 19.5c0-.321-.066-.626-.177-.909l2.838-2.838c.421.15.867.247 1.339.247c2.206 0 4-1.794 4-4c0-.636-.163-1.229-.428-1.764l2.117-2.383c.256.088.526.147.811.147C20.879 8 22 6.879 22 5.5S20.879 3 19.5 3zM13 14c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-news { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 17a1 1 0 0 1-2 0V5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v13a2 2 0 0 0 2 2h15c1.654 0 3-1.346 3-3V7h-2v10zM12 7h3v2h-3V7zm0 4h3v2h-3v-2zM5 7h5v6H5V7zm0 10v-2h10v2H5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-no-entry { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm5 12H7v-4h10v4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-note { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8l8-8V5a2 2 0 0 0-2-2zm-7 16v-7h7l-7 7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-notepad { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 4h-3V2h-2v2h-4V2H8v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zm-7 10H7v-2h5v2zm5-4H7V8h10v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-notification { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='18' cy='6' r='3' fill='black'/%3E%3Cpath d='M13 6c0-.712.153-1.387.422-2H6c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7.422A4.962 4.962 0 0 1 18 11a5 5 0 0 1-5-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-notification-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='18' cy='6' r='3' fill='black'/%3E%3Cpath d='M20 18v-7.422A4.962 4.962 0 0 1 18 11a5 5 0 0 1-5-5c0-.712.153-1.387.422-2H6c-.178 0-.347.031-.51.076L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-1.783-1.783c.045-.163.076-.332.076-.51zM4 18c0 1.103.897 2 2 2h9.879L4 8.121V18z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-offer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.749 12l1.104-1.908a1 1 0 0 0-.365-1.366l-1.91-1.104v-2.2a1 1 0 0 0-1-1h-2.199l-1.103-1.909a1.008 1.008 0 0 0-.607-.466a.993.993 0 0 0-.759.1L12 3.251l-1.91-1.105a1 1 0 0 0-1.366.366L7.62 4.422H5.421a1 1 0 0 0-1 1v2.199l-1.91 1.104a.998.998 0 0 0-.365 1.367L3.25 12l-1.104 1.908a1.004 1.004 0 0 0 .364 1.367l1.91 1.104v2.199a1 1 0 0 0 1 1h2.2l1.104 1.91a1.01 1.01 0 0 0 .866.5c.174 0 .347-.046.501-.135l1.908-1.104l1.91 1.104a1.001 1.001 0 0 0 1.366-.365l1.103-1.91h2.199a1 1 0 0 0 1-1v-2.199l1.91-1.104a1 1 0 0 0 .365-1.367L20.749 12zM9.499 6.99a1.5 1.5 0 1 1-.001 3.001a1.5 1.5 0 0 1 .001-3.001zm.3 9.6l-1.6-1.199l6-8l1.6 1.199l-6 8zm4.7.4a1.5 1.5 0 1 1 .001-3.001a1.5 1.5 0 0 1-.001 3.001z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-package { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.993 7.95a.96.96 0 0 0-.029-.214c-.007-.025-.021-.049-.03-.074c-.021-.057-.04-.113-.07-.165c-.016-.027-.038-.049-.057-.075c-.032-.045-.063-.091-.102-.13c-.023-.022-.053-.04-.078-.061c-.039-.032-.075-.067-.12-.094c-.004-.003-.009-.003-.014-.006l-.008-.006l-8.979-4.99a1.002 1.002 0 0 0-.97-.001l-9.021 4.99c-.003.003-.006.007-.011.01l-.01.004c-.035.02-.061.049-.094.073c-.036.027-.074.051-.106.082c-.03.031-.053.067-.079.102c-.027.035-.057.066-.079.104c-.026.043-.04.092-.059.139c-.014.033-.032.064-.041.1a.975.975 0 0 0-.029.21c-.001.017-.007.032-.007.05V16c0 .363.197.698.515.874l8.978 4.987l.001.001l.002.001l.02.011c.043.024.09.037.135.054c.032.013.063.03.097.039a1.013 1.013 0 0 0 .506 0c.033-.009.064-.026.097-.039c.045-.017.092-.029.135-.054l.02-.011l.002-.001l.001-.001l8.978-4.987c.316-.176.513-.511.513-.874V7.998c0-.017-.006-.031-.007-.048zm-10.021 3.922L5.058 8.005L7.82 6.477l6.834 3.905l-2.682 1.49zm.048-7.719L18.941 8l-2.244 1.247l-6.83-3.903l2.153-1.191zM13 19.301l.002-5.679L16 11.944V15l2-1v-3.175l2-1.119v5.705l-7 3.89z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-paint { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.084 2.914c-1.178-1.179-3.234-1.179-4.412 0l-8.379 8.379a.999.999 0 0 0 0 1.414l3 3a.997.997 0 0 0 1.414 0l8.379-8.379a3.123 3.123 0 0 0-.002-4.414zm-1.412 3L12 13.586L10.414 12l7.672-7.672a1.146 1.146 0 0 1 1.586.002a1.123 1.123 0 0 1 0 1.584zM8 15c-1.265-.634-3.5 0-3.5 2c0 1.197.5 2-1.5 3c0 0 3.25 2.25 5.5 0c1.274-1.274 1.494-4-.5-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-paint-roll { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 2H7c-1.103 0-2 .897-2 2v3c0 1.103.897 2 2 2h11c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2z' fill='black'/%3E%3Cpath d='M13 15v-2c0-1.103-.897-2-2-2H4V5c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h7v2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-palette { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9.38 21.646A9.985 9.985 0 0 0 12 22l.141-.001a2.998 2.998 0 0 0 2.515-1.425c.542-.876.6-1.953.153-2.88l-.198-.415c-.453-.942-.097-1.796.388-2.281c.485-.485 1.341-.841 2.28-.388h.001l.413.199a2.99 2.99 0 0 0 2.881-.153A2.997 2.997 0 0 0 22 12.141a9.926 9.926 0 0 0-.353-2.76c-1.038-3.827-4.353-6.754-8.246-7.285c-3.149-.427-6.241.602-8.471 2.833S1.666 10.247 2.096 13.4c.53 3.894 3.458 7.208 7.284 8.246zM15.5 6a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3zm-5-1a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3zM9 15.506a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0zm-2.5-6.5a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 6.5 9.006z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-paper-plane { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.6 13.083l3.452 1.511L16 9.167l-6 7l8.6 3.916a1 1 0 0 0 1.399-.85l1-15a1.002 1.002 0 0 0-1.424-.972l-17 8a1.002 1.002 0 0 0 .025 1.822zM8 22.167l4.776-2.316L8 17.623z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-parking { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.5 3H5v18h4v-5h4.5c3.584 0 6.5-2.916 6.5-6.5S17.084 3 13.5 3zm0 9H9V7h4.5C14.879 7 16 8.121 16 9.5S14.879 12 13.5 12z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-party { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M23 7a8.44 8.44 0 0 0-5 1.31c-.36-.41-.73-.82-1.12-1.21l-.29-.27l.14-.12a3.15 3.15 0 0 0 .9-3.49A3.9 3.9 0 0 0 14 1v2a2 2 0 0 1 1.76 1c.17.4 0 .84-.47 1.31l-.23.21a16.71 16.71 0 0 0-3.41-2.2c-2.53-1.14-3.83-.61-4.47 0a2.18 2.18 0 0 0-.46.68l-.18.53L5.1 8.87C6.24 11.71 9 16.76 15 18.94l5-1.66a1 1 0 0 0 .43-.31l.21-.18c1.43-1.44.51-4.21-1.41-6.9A6.63 6.63 0 0 1 23 9zm-3.79 8.37h-.06c-.69.37-3.55-.57-6.79-3.81c-.34-.34-.66-.67-.95-1c-.1-.11-.19-.23-.29-.35l-.53-.64l-.28-.39c-.14-.19-.28-.38-.4-.56s-.16-.26-.24-.39s-.22-.34-.31-.51s-.13-.24-.19-.37s-.17-.28-.23-.42s-.09-.23-.14-.34s-.11-.27-.15-.4S8.6 6 8.58 5.9s-.06-.24-.08-.34a2 2 0 0 1 0-.24a1.15 1.15 0 0 1 0-.26l.11-.31c.17-.18.91-.23 2.23.37a13.83 13.83 0 0 1 2.49 1.54A4.17 4.17 0 0 1 12 7v2a6.43 6.43 0 0 0 3-.94l.49.46c.44.43.83.86 1.19 1.27A5.31 5.31 0 0 0 16 13.2l2-.39a3.23 3.23 0 0 1 0-1.14c1.29 1.97 1.53 3.39 1.21 3.7z' fill='black'/%3E%3Cpath d='M4.4 11l-2.23 6.7A3.28 3.28 0 0 0 5.28 22a3.21 3.21 0 0 0 1-.17l6.52-2.17A18.7 18.7 0 0 1 4.4 11z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-paste { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9 4h6v2H9zm11 7h-7a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-7a2 2 0 0 0-2-2z' fill='black'/%3E%3Cpath d='M21 9V6a2 2 0 0 0-2-2h-2a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v-9a2 2 0 0 1 2-2h10zM9 6V4h6v2H9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.587 6.999H7.702a2 2 0 0 0-1.88 1.316l-3.76 10.342c-.133.365-.042.774.232 1.049l.293.293l6.422-6.422c-.001-.026-.008-.052-.008-.078a1.5 1.5 0 1 1 1.5 1.5c-.026 0-.052-.007-.078-.008l-6.422 6.422l.293.293a.997.997 0 0 0 1.049.232l10.342-3.761a2 2 0 0 0 1.316-1.88v-3.885L19 10.414L13.586 5l-1.999 1.999zm8.353 2.062l-5-5l2.12-2.121l5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pencil { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.707 19.707L18 10.414L13.586 6l-9.293 9.293a1.003 1.003 0 0 0-.263.464L3 21l5.242-1.03c.176-.044.337-.135.465-.263zM21 7.414a2 2 0 0 0 0-2.828L19.414 3a2 2 0 0 0-2.828 0L15 4.586L19.414 9L21 7.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-phone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.487 17.14l-4.065-3.696a1.001 1.001 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66c-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1 1 0 0 0-.29.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.323 21 17.705 21c.202 0 .326-.006.359-.008a.992.992 0 0 0 .648-.291l1.86-2.171a.997.997 0 0 0-.085-1.39z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-phone-call { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 10.999h2C22 5.869 18.127 2 12.99 2v2C17.052 4 20 6.943 20 10.999z' fill='black'/%3E%3Cpath d='M13 8c2.103 0 3 .897 3 3h2c0-3.225-1.775-5-5-5v2zm3.422 5.443a1.001 1.001 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66c-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1 1 0 0 0-.29.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.323 21 17.705 21c.202 0 .326-.006.359-.008a.992.992 0 0 0 .648-.291l1.86-2.171a1 1 0 0 0-.086-1.391l-4.064-3.696z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-phone-incoming { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.793 6.793L13 4v7h7l-2.793-2.793l4.5-4.5l-1.414-1.414z' fill='black'/%3E%3Cpath d='M16.422 13.443a1.001 1.001 0 0 0-1.391.043l-2.392 2.461c-.576-.11-1.734-.471-2.926-1.66c-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.86 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1.001 1.001 0 0 0-.291.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.324 21 17.705 21c.203 0 .326-.006.359-.008a.99.99 0 0 0 .648-.291l1.861-2.171a1.001 1.001 0 0 0-.086-1.391l-4.065-3.696z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-phone-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9.17 13.42a5.24 5.24 0 0 1-.93-2.06L10.7 9a1 1 0 0 0 0-1.39l-3.65-4.1a1 1 0 0 0-1.4-.08L3.48 5.29a1 1 0 0 0-.29.65a15.25 15.25 0 0 0 3.54 9.92l-4.44 4.43l1.42 1.42l18-18l-1.42-1.42zm7.44.02a1 1 0 0 0-1.39.05L12.82 16a4.07 4.07 0 0 1-.51-.14l-2.66 2.61A15.46 15.46 0 0 0 17.89 21h.36a1 1 0 0 0 .65-.29l1.86-2.17a1 1 0 0 0-.09-1.39z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-phone-outgoing { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.793 5.793l-4.5 4.5l1.414 1.414l4.5-4.5L21 10V3h-7z' fill='black'/%3E%3Cpath d='M16.422 13.446a1.001 1.001 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66c-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.516a1 1 0 0 0-1.391-.087L3.299 5.29a.996.996 0 0 0-.291.648c-.015.25-.301 6.172 4.291 10.766c4.006 4.006 9.024 4.299 10.406 4.299c.202 0 .326-.006.359-.008a.992.992 0 0 0 .648-.291l1.86-2.171a1 1 0 0 0-.086-1.391l-4.064-3.696z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-photo-album { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V3a1 1 0 0 0-1-1zM9.503 5a1.503 1.503 0 1 1 0 3.006a1.503 1.503 0 0 1 0-3.006zM12 13H7l3-3l1.5 1.399L14.5 8l3.5 5h-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-piano { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 3H5C3.346 3 2 4.346 2 6v12c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3V6c0-1.654-1.346-3-3-3zm0 16H5a1 1 0 0 1-1-1v-6h2v4h2v-4h1v4h2v-4h1v4h2v-4h2v4h2v-4h2v6a1 1 0 0 1-1 1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pie-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm0 10V5c4 0 7 3 7 7h-7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pie-chart-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.071 4.929A9.97 9.97 0 0 0 12 2a9.936 9.936 0 0 0-7.071 2.929C3.04 6.818 2 9.33 2 12s1.04 5.182 2.929 7.071C6.818 20.96 9.33 22 12 22s5.182-1.04 7.071-2.929A9.936 9.936 0 0 0 22 12a9.97 9.97 0 0 0-2.929-7.071zm-1.414 12.728C16.146 19.168 14.137 20 12 20s-4.146-.832-5.657-2.343C4.832 16.146 4 14.137 4 12s.832-4.146 2.343-5.657A7.948 7.948 0 0 1 12 4v8h8a7.948 7.948 0 0 1-2.343 5.657z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pie-chart-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 2.051V11h8.949c-.47-4.717-4.232-8.479-8.949-8.949zm4.969 17.953c2.189-1.637 3.694-4.14 3.98-7.004h-8.183l4.203 7.004z' fill='black'/%3E%3Cpath d='M11 12V2.051C5.954 2.555 2 6.824 2 12c0 5.514 4.486 10 10 10a9.93 9.93 0 0 0 4.255-.964s-5.253-8.915-5.254-9.031A.02.02 0 0 0 11 12z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15 11.586V6h2V4a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v2h2v5.586l-2.707 1.707A.996.996 0 0 0 6 14v2a1 1 0 0 0 1 1h4v3l1 2l1-2v-3h4a1 1 0 0 0 1-1v-2a.996.996 0 0 0-.293-.707L15 11.586z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pizza { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9.76 2.021a.995.995 0 0 0-.989.703L3.579 19.166a1 1 0 0 0 1.255 1.255l16.442-5.192a.991.991 0 0 0 .702-.988C21.6 7.666 16.334 2.4 9.76 2.021zM10 16a2 2 0 1 1 .001-4.001A2 2 0 0 1 10 16zm6-2a2 2 0 1 1 .001-4.001A2 2 0 0 1 16 14z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-plane { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M22 16.21v-1.895L14 8V4a2 2 0 0 0-4 0v4.105L2 14.42v1.789l8-2.81V18l-3 2v2l5-2l5 2v-2l-3-2v-4.685l8 2.895z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-plane-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3.414 13.778L2 15.192l4.949 2.121l2.122 4.95l1.414-1.414l-.707-3.536L13.091 14l3.61 7.704l1.339-1.339l-1.19-10.123l2.828-2.829a2 2 0 1 0-2.828-2.828l-2.903 2.903L3.824 6.297L2.559 7.563l7.644 3.67l-3.253 3.253l-3.536-.708z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-plane-land { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.842 15.296a1.61 1.61 0 0 0 1.892-1.189v-.001a1.609 1.609 0 0 0-1.177-1.949l-4.576-1.133L9.825 4.21l-2.224-.225l2.931 6.589l-4.449-.449l-2.312-3.829l-1.38.31l1.24 5.52l15.211 3.17zM3 18h18v2H3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-plane-take-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 18h18v2H3zm18.509-9.473a1.61 1.61 0 0 0-2.036-1.019L15 9L7 6L5 7l6 4l-4 2l-4-2l-1 1l4 4l14.547-5.455a1.611 1.611 0 0 0 .962-2.018z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-planet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.165 15.582c4.587-4.073 8.141-9.424 6.057-11.771c-.661-.744-1.584-1.089-2.575-.983c-.832.091-1.687.502-2.549 1.192a8.922 8.922 0 0 0-8.712.282a8.917 8.917 0 0 0-4.109 5.515a8.892 8.892 0 0 0 .306 5.325c-1.065 1.203-2.054 3.677-.823 5.063c.517.581 1.257.841 2.147.841c2.707 0 6.808-2.399 10.258-5.464zm3.699-10.767c.358-.034.632.064.861.323c.231.261.169.946-.252 1.929a9.059 9.059 0 0 0-1.617-1.853c.431-.262.776-.373 1.008-.399zM4.633 17.118a8.979 8.979 0 0 0 1.568 1.737c-1.025.303-1.714.283-1.945.021c-.217-.243.002-1.069.377-1.758zm16.31-5.869c-1.215 1.797-2.906 3.671-4.778 5.333c-1.934 1.719-4.066 3.208-6.05 4.202a9.082 9.082 0 0 0 1.874.212a8.986 8.986 0 0 0 4.616-1.282a8.915 8.915 0 0 0 4.338-8.465z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-playlist { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 16.493C13 18.427 14.573 20 16.507 20s3.507-1.573 3.507-3.507c0-.177-.027-.347-.053-.517H20V6h2V4h-3a1 1 0 0 0-1 1v8.333a3.465 3.465 0 0 0-1.493-.346A3.51 3.51 0 0 0 13 16.493zM2 5h14v2H2z' fill='black'/%3E%3Cpath d='M2 9h14v2H2zm0 4h9v2H2zm0 4h9v2H2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-plug { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 8h2v5c0 2.206 1.794 4 4 4h2v5h2v-5h2c2.206 0 4-1.794 4-4V8h2V6H3v2zm4-6h2v3H7zm8 0h2v3h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-plus-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-plus-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2zm2-10h4V7h2v4h4v2h-4v4h-2v-4H7v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pointer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.978 13.21a1 1 0 0 0-.396-1.024l-14-10a.999.999 0 0 0-1.575.931l2 17a1 1 0 0 0 1.767.516l3.612-4.416l3.377 5.46l1.701-1.052l-3.357-5.428l6.089-1.218a.995.995 0 0 0 .782-.769z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-polygon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.707 7.293l-5-5A.996.996 0 0 0 16 2H8a.996.996 0 0 0-.707.293l-5 5A.996.996 0 0 0 2 8v8c0 .266.105.52.293.707l5 5A.996.996 0 0 0 8 22h8c.266 0 .52-.105.707-.293l5-5A.996.996 0 0 0 22 16V8a.996.996 0 0 0-.293-.707z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-popsicle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4a7 7 0 0 0-9.9 0l-7.82 7.82a1 1 0 0 0 0 1.41l3.54 3.54l-3.54 3.53l1.42 1.42l3.53-3.54l3.54 3.54a1 1 0 0 0 1.41 0L20 13.94A7 7 0 0 0 20 4zm-2.7 2.7a3.33 3.33 0 0 0-4.6 0l-1.06-1.06a4.76 4.76 0 0 1 6.72 0z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-printer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 7h-1V2H6v5H5a3 3 0 0 0-3 3v7a2 2 0 0 0 2 2h2v3h12v-3h2a2 2 0 0 0 2-2v-7a3 3 0 0 0-3-3zM8 4h8v3H8V4zm0 16v-4h8v4H8zm11-8h-4v-2h4v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-purchase-tag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8 8a2 2 0 0 0 2.828 0l7.172-7.172a2 2 0 0 0 0-2.828l-8-8zM7 9a2 2 0 1 1 .001-4.001A2 2 0 0 1 7 9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-purchase-tag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.707 2.293A.996.996 0 0 0 11 2H6a.996.996 0 0 0-.707.293l-3 3A.996.996 0 0 0 2 6v5c0 .266.105.52.293.707l10 10a.997.997 0 0 0 1.414 0l8-8a.999.999 0 0 0 0-1.414l-10-10zM8.353 10a1.647 1.647 0 1 1-.001-3.293A1.647 1.647 0 0 1 8.353 10z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-pyramid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.445 21.832a1 1 0 0 0 1.11 0l9-6A.998.998 0 0 0 21.8 14.4l-9-12c-.377-.504-1.223-.504-1.6 0l-9 12a1 1 0 0 0 .245 1.432l9 6zm8.12-7.078L12 19.798V4.667l7.565 10.087z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-quote-alt-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.5 10c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.318.142-.686.238-1.028.466c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.945c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 6.5 10zm11 0c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.317.143-.686.238-1.028.467c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.944c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 17.5 10z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-quote-alt-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.95 8.721l-.025-.168l-.026.006A4.5 4.5 0 1 0 17.5 14c.223 0 .437-.034.65-.065c-.069.232-.14.468-.254.68c-.114.308-.292.575-.469.844c-.148.291-.409.488-.601.737c-.201.242-.475.403-.692.604c-.213.21-.492.315-.714.463c-.232.133-.434.28-.65.35l-.539.222l-.474.197l.484 1.939l.597-.144c.191-.048.424-.104.689-.171c.271-.05.56-.187.882-.312c.317-.143.686-.238 1.028-.467c.344-.218.741-.4 1.091-.692c.339-.301.748-.562 1.05-.944c.33-.358.656-.734.909-1.162c.293-.408.492-.856.702-1.299c.19-.443.343-.896.468-1.336c.237-.882.343-1.72.384-2.437c.034-.718.014-1.315-.028-1.747a7.028 7.028 0 0 0-.063-.539zm-11 0l-.025-.168l-.026.006A4.5 4.5 0 1 0 6.5 14c.223 0 .437-.034.65-.065c-.069.232-.14.468-.254.68c-.114.308-.292.575-.469.844c-.148.291-.409.488-.601.737c-.201.242-.475.403-.692.604c-.213.21-.492.315-.714.463c-.232.133-.434.28-.65.35l-.539.222c-.301.123-.473.195-.473.195l.484 1.939l.597-.144c.191-.048.424-.104.689-.171c.271-.05.56-.187.882-.312c.317-.143.686-.238 1.028-.467c.344-.218.741-.4 1.091-.692c.339-.301.748-.562 1.05-.944c.33-.358.656-.734.909-1.162c.293-.408.492-.856.702-1.299c.19-.443.343-.896.468-1.336c.237-.882.343-1.72.384-2.437c.034-.718.014-1.315-.028-1.747a7.571 7.571 0 0 0-.064-.537z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-quote-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3.691 6.292C5.094 4.771 7.217 4 10 4h1v2.819l-.804.161c-1.37.274-2.323.813-2.833 1.604A2.902 2.902 0 0 0 6.925 10H10a1 1 0 0 1 1 1v7c0 1.103-.897 2-2 2H3a1 1 0 0 1-1-1v-5l.003-2.919c-.009-.111-.199-2.741 1.688-4.789zM20 20h-6a1 1 0 0 1-1-1v-5l.003-2.919c-.009-.111-.199-2.741 1.688-4.789C16.094 4.771 18.217 4 21 4h1v2.819l-.804.161c-1.37.274-2.323.813-2.833 1.604A2.902 2.902 0 0 0 17.925 10H21a1 1 0 0 1 1 1v7c0 1.103-.897 2-2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-quote-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.309 17.708C22.196 15.66 22.006 13.03 22 13V5a1 1 0 0 0-1-1h-6c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h3.078a2.89 2.89 0 0 1-.429 1.396c-.508.801-1.465 1.348-2.846 1.624l-.803.16V20h1c2.783 0 4.906-.771 6.309-2.292zm-11.007 0C11.19 15.66 10.999 13.03 10.993 13V5a1 1 0 0 0-1-1h-6c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h3.078a2.89 2.89 0 0 1-.429 1.396c-.508.801-1.465 1.348-2.846 1.624l-.803.16V20h1c2.783 0 4.906-.771 6.309-2.292z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-quote-single-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.203 6.98l.804-.161V4h-1c-2.784 0-4.906.771-6.309 2.292C6.81 8.34 7 10.97 7.006 11v8a1 1 0 0 0 1 1h7c1.103 0 2-.897 2-2v-7a1 1 0 0 0-1-1h-4.079c.022-.402.123-.912.429-1.396c.509-.801 1.466-1.347 2.847-1.624z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-quote-single-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8.804 17.02L8 17.18V20h1c2.783 0 4.906-.771 6.309-2.292C17.196 15.66 17.006 13.03 17 13V5a1 1 0 0 0-1-1H9c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h4.078a2.89 2.89 0 0 1-.429 1.396c-.507.801-1.464 1.347-2.845 1.624z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-radiation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9.912 8.531L7.121 3.877a.501.501 0 0 0-.704-.166a9.982 9.982 0 0 0-4.396 7.604a.505.505 0 0 0 .497.528l5.421.09a4.042 4.042 0 0 1 1.973-3.402zm8.109-4.51a.504.504 0 0 0-.729.151L14.499 8.83a4.03 4.03 0 0 1 1.546 3.112l5.419-.09a.507.507 0 0 0 .499-.53a9.986 9.986 0 0 0-3.942-7.301zm-4.067 11.511a4.015 4.015 0 0 1-1.962.526a4.016 4.016 0 0 1-1.963-.526l-2.642 4.755a.5.5 0 0 0 .207.692A9.948 9.948 0 0 0 11.992 22a9.94 9.94 0 0 0 4.396-1.021a.5.5 0 0 0 .207-.692l-2.641-4.755z' fill='black'/%3E%3Ccircle cx='12' cy='12' r='3' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-radio { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.249 5.025l-7.897-2.962l-.703 1.873L14.484 5H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7c0-1.02-.766-1.851-1.751-1.975zM10 17H6v-2h4v2zm6.5 1a2.5 2.5 0 1 1 0-5a2.5 2.5 0 0 1 0 5zm3.5-7H4V7h16v4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-receipt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 12v6a1 1 0 0 1-2 0V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v14c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3v-6h-2zm-6-1v2H6v-2h8zM6 9V7h8v2H6zm8 6v2h-3v-2h3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-rectangle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 20h18a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-registered { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 9h-3v2h3a1 1 0 0 0 0-2z' fill='black'/%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm2.13 15l-2.67-4H10v4H8V7h5a3 3 0 0 1 .79 5.88L16.54 17z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-rename { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 5.995h-1v12h1c1.103 0 2-.897 2-2v-8c0-1.102-.897-2-2-2z' fill='black'/%3E%3Cpath d='M17 17.995V4h2.995V2h-8v2H15v1.995H4c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h11V20h-3.005v2h8v-2H17v-2.005zm-11-4v-4h9v4H6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-report { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9 19H7v-9h2v9zm4 0h-2v-6h2v6zm4 0h-2v-3h2v3zM14 9h-1V4l5 5h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-rewind-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.485 2 12s4.486 10 10 10c5.515 0 10-4.485 10-10S17.515 2 12 2zm5 14l-6-4v4l-6-4l6-4v4l6-4v8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-right-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5.536 21.886a1.004 1.004 0 0 0 1.033-.064l13-9a1 1 0 0 0 0-1.644l-13-9A1 1 0 0 0 5 3v18a1 1 0 0 0 .536.886z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-right-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 12l-7-6v5H6v2h6v5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-right-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm0 15v-4H7v-2h5V7l5 5l-5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-right-arrow-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2zm4 6h5V7l5 5l-5 5v-4H7v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-right-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.929 4.929c-3.898 3.899-3.898 10.244 0 14.143c3.899 3.898 10.243 3.898 14.143 0c3.898-3.899 3.898-10.244 0-14.143c-3.9-3.899-10.244-3.899-14.143 0zm10.606 10.607h-7.07l2.828-2.829l-3.535-3.536l1.414-1.414l3.535 3.536l2.828-2.829v7.072z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-right-top-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.071 4.929c-3.899-3.898-10.243-3.898-14.143 0c-3.898 3.899-3.898 10.244 0 14.143c3.899 3.898 10.243 3.898 14.143 0c3.899-3.9 3.899-10.244 0-14.143zm-3.536 10.607l-2.828-2.829l-3.535 3.536l-1.414-1.414l3.535-3.536l-2.828-2.829h7.07v7.072z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-rocket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15.78 15.84S18.64 13 19.61 12c3.07-3 1.54-9.18 1.54-9.18S15 1.29 12 4.36C9.66 6.64 8.14 8.22 8.14 8.22S4.3 7.42 2 9.72L14.25 22c2.3-2.33 1.53-6.16 1.53-6.16zm-1.5-9a2 2 0 0 1 2.83 0a2 2 0 1 1-2.83 0zM3 21a7.81 7.81 0 0 0 5-2l-3-3c-2 1-2 5-2 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-ruler { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.875 7H3.125C1.953 7 1 7.897 1 9v6c0 1.103.953 2 2.125 2h17.75C22.047 17 23 16.103 23 15V9c0-1.103-.953-2-2.125-2zM7 12H5V9h2v3zm4 1H9V9h2v4zm4-1h-2V9h2v3zm4 1h-2V9h2v4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-sad { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5zM8 17s1-3 4-3s4 3 4 3H8zm7.493-5.014a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-save { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14a2 2 0 0 0 2-2V8l-5-5H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2zM7 5h4v2h2V5h2v4H7V5zm0 8h10v6H7v-6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-school { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 10h-2V4h1V2H4v2h1v6H3a1 1 0 0 0-1 1v9h20v-9a1 1 0 0 0-1-1zm-7 8v-4h-4v4H7V4h10v14h-3z' fill='black'/%3E%3Cpath d='M9 6h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-search { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10 2c-4.411 0-8 3.589-8 8s3.589 8 8 8a7.952 7.952 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.952 7.952 0 0 0 18 10c0-4.411-3.589-8-8-8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-search-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9 16c1.763 0 3.37-.66 4.603-1.739l1.337 2.8s.275.224.653.596c.387.363.896.854 1.384 1.367l1.358 1.392l.604.646l2.121-2.121l-.646-.604l-1.392-1.358a35.13 35.13 0 0 1-1.367-1.384c-.372-.378-.596-.653-.596-.653l-2.8-1.337A6.967 6.967 0 0 0 16 9c0-3.859-3.141-7-7-7S2 5.141 2 9s3.141 7 7 7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-select-multiple { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-6.933 12.481l-3.274-3.274l1.414-1.414l1.726 1.726l4.299-5.159l1.537 1.281l-5.702 6.84z' fill='black'/%3E%3Cpath d='M4 22h11v-2H4V8H2v12c0 1.103.897 2 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-send { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.426 11.095l-17-8A1 1 0 0 0 3.03 4.242l1.212 4.849L12 12l-7.758 2.909l-1.212 4.849a.998.998 0 0 0 1.396 1.147l17-8a1 1 0 0 0 0-1.81z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-server { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm-5 5h-2V6h2zm4 0h-2V6h2zm1 5H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2zm-5 5h-2v-2h2zm4 0h-2v-2h2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-shapes { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.867 2.504c-.355-.624-1.381-.623-1.736 0l-3.999 7A1 1 0 0 0 13 11h8a1.001 1.001 0 0 0 .868-1.496l-4.001-7zM3 22h7a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1zm14.5-9c-2.481 0-4.5 2.019-4.5 4.5s2.019 4.5 4.5 4.5s4.5-2.019 4.5-4.5s-2.019-4.5-4.5-4.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-share { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11 6.914V2.586L6.293 7.293l-3.774 3.774l3.841 3.201L11 18.135V13.9c8.146-.614 11 4.1 11 4.1c0-2.937-.242-5.985-2.551-8.293C16.765 7.022 12.878 6.832 11 6.914z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-share-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 12c0 1.654 1.346 3 3 3c.794 0 1.512-.315 2.049-.82l5.991 3.424c-.018.13-.04.26-.04.396c0 1.654 1.346 3 3 3s3-1.346 3-3s-1.346-3-3-3c-.794 0-1.512.315-2.049.82L8.96 12.397c.018-.131.04-.261.04-.397s-.022-.266-.04-.397l5.991-3.423c.537.505 1.255.82 2.049.82c1.654 0 3-1.346 3-3s-1.346-3-3-3s-3 1.346-3 3c0 .136.022.266.04.397L8.049 9.82A2.982 2.982 0 0 0 6 9c-1.654 0-3 1.346-3 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-shield { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.496 6.106l-7.973-4a.997.997 0 0 0-.895-.002l-8.027 4c-.297.15-.502.437-.544.767c-.013.097-1.145 9.741 8.541 15.008a.995.995 0 0 0 .969-.009c9.307-5.259 8.514-14.573 8.476-14.967a1 1 0 0 0-.547-.797z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-shield-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.881 5.223a.496.496 0 0 0-.747-.412c-.672.392-1.718.898-2.643.898c-.421 0-.849-.064-1.289-.198a5.712 5.712 0 0 1-.808-.309c-1.338-.639-2.567-1.767-3.696-2.889a1.008 1.008 0 0 0-.698-.29a1.008 1.008 0 0 0-.698.29c-1.129 1.122-2.358 2.25-3.696 2.889h-.001a5.655 5.655 0 0 1-.807.309c-.44.134-.869.198-1.289.198c-.925 0-1.971-.507-2.643-.898a.496.496 0 0 0-.747.412c-.061 1.538-.077 4.84.688 7.444c1.399 4.763 4.48 7.976 8.91 9.292l.14.041l.14-.014V22v-.014H12l.143.014l.14-.041c4.43-1.316 7.511-4.529 8.91-9.292c.765-2.604.748-5.906.688-7.444z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-shield-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11.492 21.771c.294.157.663.157.957-.001c8.012-4.304 8.581-12.713 8.574-15.104a.988.988 0 0 0-.596-.903l-8.051-3.565a1.005 1.005 0 0 0-.813.001L3.57 5.765a.988.988 0 0 0-.592.891c-.034 2.379.445 10.806 8.514 15.115zM8.293 9.707l1.414-1.414L12 10.586l2.293-2.293l1.414 1.414L13.414 12l2.293 2.293l-1.414 1.414L12 13.414l-2.293 2.293l-1.414-1.414L10.586 12L8.293 9.707z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-ship { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.997 20c-.899 0-1.288-.311-1.876-.781c-.68-.543-1.525-1.219-3.127-1.219c-1.601 0-2.446.676-3.125 1.22c-.587.469-.975.78-1.874.78c-.897 0-1.285-.311-1.872-.78C4.444 18.676 3.601 18 2 18v2c.898 0 1.286.311 1.873.78c.679.544 1.523 1.22 3.122 1.22c1.601 0 2.445-.676 3.124-1.219c.588-.47.976-.781 1.875-.781c.9 0 1.311.328 1.878.781c.679.543 1.524 1.219 3.125 1.219s2.446-.676 3.125-1.219C20.689 20.328 21.1 20 22 20v-2c-1.602 0-2.447.676-3.127 1.219c-.588.47-.977.781-1.876.781zM6 8.5L4 9l2 8h.995c1.601 0 2.445-.676 3.124-1.219c.588-.47.976-.781 1.875-.781c.9 0 1.311.328 1.878.781c.679.543 1.524 1.219 3.125 1.219H18l.027-.107l.313-1.252L20 9l-2-.5V5.001a1 1 0 0 0-.804-.981L13 3.181V2h-2v1.181l-4.196.839A1 1 0 0 0 6 5.001V8.5zm2-2.681l4-.8l4 .8V8l-4-1l-4 1V5.819z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-shocked { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5zm5 7.5c-1.657 0-3-1.119-3-2.5s1.343-2.5 3-2.5s3 1.119 3 2.5s-1.343 2.5-3 2.5zm3.493-6.014a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-shopping-bag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 22h14a2 2 0 0 0 2-2V9a1 1 0 0 0-1-1h-3v-.777c0-2.609-1.903-4.945-4.5-5.198A5.005 5.005 0 0 0 7 7v1H4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2zm12-12v2h-2v-2h2zM9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v1H9V7zm-2 3h2v2H7v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-shopping-bag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 4H3a1 1 0 0 0-1 1v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a1 1 0 0 0-1-1zm-9 9c-3.309 0-6-2.691-6-6h2c0 2.206 1.794 4 4 4s4-1.794 4-4h2c0 3.309-2.691 6-6 6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-shopping-bags { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 20h2V10a1 1 0 0 1 1-1h12V7a1 1 0 0 0-1-1h-3.051c-.252-2.244-2.139-4-4.449-4S6.303 3.756 6.051 6H3a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2zm6.5-16c1.207 0 2.218.86 2.45 2h-4.9c.232-1.14 1.243-2 2.45-2z' fill='black'/%3E%3Cpath d='M21 11H9a1 1 0 0 0-1 1v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a1 1 0 0 0-1-1zm-6 7c-2.757 0-5-2.243-5-5h2c0 1.654 1.346 3 3 3s3-1.346 3-3h2c0 2.757-2.243 5-5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-show { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 5c-7.633 0-9.927 6.617-9.948 6.684L1.946 12l.105.316C2.073 12.383 4.367 19 12 19s9.927-6.617 9.948-6.684l.106-.316l-.105-.316C21.927 11.617 19.633 5 12 5zm0 11c-2.206 0-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4s-1.794 4-4 4z' fill='black'/%3E%3Cpath d='M12 10c-1.084 0-2 .916-2 2s.916 2 2 2s2-.916 2-2s-.916-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-skip-next-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm4 14h-2v-4l-6 4V8l6 4V8h2v8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-skip-previous-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10c5.515 0 10-4.486 10-10S17.515 2 12 2zm4 14l-6-4v4H8V8h2v4l6-4v8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-skull { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C5.505 2 2 6.637 2 11c0 2.129 1.009 3.979 3 5.508V21h3v-3h2v3h4v-3h2v3h3v-4.493c1.991-1.528 3-3.379 3-5.507c0-4.363-3.505-9-10-9zM8 13c-1.121 0-2-1.098-2-2.5S6.879 8 8 8s2 1.098 2 2.5S9.121 13 8 13zm8 0c-1.121 0-2-1.098-2-2.5S14.879 8 16 8s2 1.098 2 2.5s-.879 2.5-2 2.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-sleepy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-4 9.01l-2-.02C6.017 9.386 7.095 7 10 7v2c-1.924 0-1.998 1.805-2 2.01zM12 18c-1.657 0-3-1.119-3-2.5s1.343-2.5 3-2.5s3 1.119 3 2.5s-1.343 2.5-3 2.5zm5-7l-1 .008C15.992 10.536 15.826 9 14 9V7c2.935 0 4 2.393 4 4h-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-slideshow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h7v3H8v2h8v-2h-3v-3h7c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zM10 13V7l5 3l-5 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10zm3.493-13a1.494 1.494 0 1 1-.001 2.987A1.494 1.494 0 0 1 15.493 9zm-4.301 6.919a4.108 4.108 0 0 0 1.616 0c.253-.052.505-.131.75-.233c.234-.1.464-.224.679-.368c.208-.142.407-.306.591-.489c.183-.182.347-.381.489-.592l1.658 1.117a6.027 6.027 0 0 1-1.619 1.621a6.003 6.003 0 0 1-2.149.904a6.116 6.116 0 0 1-2.414-.001a5.919 5.919 0 0 1-2.148-.903a6.078 6.078 0 0 1-1.621-1.622l1.658-1.117c.143.211.307.41.488.59a3.988 3.988 0 0 0 2.022 1.093zM8.5 9a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 9z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-sort-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.227 11h11.547c.862 0 1.32-1.02.747-1.665L12.748 2.84a.998.998 0 0 0-1.494 0L5.479 9.335C4.906 9.98 5.364 11 6.227 11zm5.026 10.159a.998.998 0 0 0 1.494 0l5.773-6.495c.574-.644.116-1.664-.747-1.664H6.227c-.862 0-1.32 1.02-.747 1.665l5.773 6.494z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-spa { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 16.114c-3.998-5.951-8.574-7.043-8.78-7.09L2 8.75V10c0 7.29 3.925 12 10 12c5.981 0 10-4.822 10-12V8.75l-1.22.274c-.206.047-4.782 1.139-8.78 7.09z' fill='black'/%3E%3Cpath d='M11.274 3.767c-1.799 1.898-2.84 3.775-3.443 5.295c1.329.784 2.781 1.943 4.159 3.685c1.364-1.76 2.826-2.925 4.17-3.709c-.605-1.515-1.646-3.383-3.435-5.271L12 3l-.726.767z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-speaker { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='15' r='3' fill='black'/%3E%3Cpath d='M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-6 2a2 2 0 1 1-2 2a2 2 0 0 1 2-2zm0 16a5 5 0 1 1 5-5a5 5 0 0 1-5 5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-spray-can { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13.003 3h2v2h-2zM16 3h2v2h-2zm0 3h2v2h-2zm3-3h2v2h-2zm0 3h2v2h-2zm0 3h2v2h-2zM4.012 12v9a1 1 0 0 0 1 1H13a1 1 0 0 0 1-1v-9a4 4 0 0 0-4-4H8.012a4 4 0 0 0-4 4zM7.003 2h4v4h-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-spreadsheet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2zm7 2h8v2h-8V7zm0 4h8v2h-8v-2zm0 4h8v2h-8v-2zM6 7h2v2H6V7zm0 4h2v2H6v-2zm0 4h2v2H6v-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-square-rounded { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17 2H7C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.947 9.179a1.001 1.001 0 0 0-.868-.676l-5.701-.453l-2.467-5.461a.998.998 0 0 0-1.822-.001L8.622 8.05l-5.701.453a1 1 0 0 0-.619 1.713l4.213 4.107l-1.49 6.452a1 1 0 0 0 1.53 1.057L12 18.202l5.445 3.63a1.001 1.001 0 0 0 1.517-1.106l-1.829-6.4l4.536-4.082c.297-.268.406-.686.278-1.065z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-star-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5.025 20.775A.998.998 0 0 0 6 22a1 1 0 0 0 .555-.168L12 18.202l5.445 3.63a1.001 1.001 0 0 0 1.517-1.106l-1.829-6.4l4.536-4.082a1 1 0 0 0-.59-1.74l-5.701-.454l-2.467-5.461a.998.998 0 0 0-1.822-.001L8.622 8.05l-5.701.453a1 1 0 0 0-.619 1.713l4.214 4.107l-1.491 6.452zM12 5.429l2.042 4.521l.588.047h.001l3.972.315l-3.271 2.944l-.001.002l-.463.416l.171.597v.003l1.253 4.385L12 15.798V5.429z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-sticker { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.5 11c-4.136 0-7.5 3.364-7.5 7.5c0 .871.157 1.704.432 2.482l9.551-9.551A7.462 7.462 0 0 0 18.5 11z' fill='black'/%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12c0 4.583 3.158 8.585 7.563 9.69A9.431 9.431 0 0 1 9 18.5C9 13.262 13.262 9 18.5 9c1.12 0 2.191.205 3.19.563C20.585 5.158 16.583 2 12 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-stopwatch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 5c-4.411 0-8 3.589-8 8s3.589 8 8 8s8-3.589 8-8s-3.589-8-8-8zm1 8h-2V8h2v5zM9 2h6v2H9zm9.707 2.293l2 2l-1.414 1.414l-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-store { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.999 8a.997.997 0 0 0-.143-.515L19.147 2.97A2.01 2.01 0 0 0 17.433 2H6.565c-.698 0-1.355.372-1.714.971L2.142 7.485A.997.997 0 0 0 1.999 8c0 1.005.386 1.914 1 2.618V20a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-5h4v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-9.382c.614-.704 1-1.613 1-2.618zm-2.016.251A2.002 2.002 0 0 1 17.999 10c-1.103 0-2-.897-2-2c0-.068-.025-.128-.039-.192l.02-.004L15.219 4h2.214l2.55 4.251zm-9.977-.186L10.818 4h2.361l.813 4.065C13.957 9.138 13.079 10 11.999 10s-1.958-.862-1.993-1.935zM6.565 4h2.214l-.76 3.804l.02.004c-.015.064-.04.124-.04.192c0 1.103-.897 2-2 2a2.002 2.002 0 0 1-1.984-1.749L6.565 4zm3.434 12h-4v-3h4v3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-store-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 2H5C3.346 2 2 3.346 2 5v2.831c0 1.053.382 2.01 1 2.746V20a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-5h4v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-9.424c.618-.735 1-1.692 1-2.746V5c0-1.654-1.346-3-3-3zm1 3v2.831c0 1.14-.849 2.112-1.891 2.167L18 10c-1.103 0-2-.897-2-2V4h3c.552 0 1 .449 1 1zM10 8V4h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zM4 5c0-.551.448-1 1-1h3v4c0 1.103-.897 2-2 2l-.109-.003C4.849 9.943 4 8.971 4 7.831V5zm6 11H6v-3h4v3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-sun { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6.995 12c0 2.761 2.246 5.007 5.007 5.007s5.007-2.246 5.007-5.007s-2.246-5.007-5.007-5.007S6.995 9.239 6.995 12zM11 19h2v3h-2zm0-17h2v3h-2zm-9 9h3v2H2zm17 0h3v2h-3zM5.637 19.778l-1.414-1.414l2.121-2.121l1.414 1.414zM16.242 6.344l2.122-2.122l1.414 1.414l-2.122 2.122zM6.344 7.759L4.223 5.637l1.415-1.414l2.12 2.122zm13.434 10.605l-1.414 1.414l-2.122-2.122l1.414-1.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-t-shirt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.316 4.055C19.556 3.478 15 1.985 15 2a3 3 0 1 1-6 0c0-.015-4.556 1.478-6.317 2.055A.992.992 0 0 0 2 5.003v3.716a1 1 0 0 0 1.242.97L6 9v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V9l2.758.689A1 1 0 0 0 22 8.719V5.003a.992.992 0 0 0-.684-.948z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tachometer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 4C6.486 4 2 8.486 2 14a9.89 9.89 0 0 0 1.051 4.445c.17.34.516.555.895.555h16.107c.379 0 .726-.215.896-.555A9.89 9.89 0 0 0 22 14c0-5.514-4.486-10-10-10zm5.022 5.022L13.06 15.06a1.53 1.53 0 0 1-2.121.44a1.53 1.53 0 0 1 0-2.561l6.038-3.962a.033.033 0 0 1 .045.01a.034.034 0 0 1 0 .035z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.842 6.218a1.977 1.977 0 0 0-.424-.628A1.99 1.99 0 0 0 20 5H8c-.297 0-.578.132-.769.359l-5 6c-.309.371-.309.91 0 1.281l5 6c.191.228.472.36.769.36h12a1.977 1.977 0 0 0 1.41-.582A1.99 1.99 0 0 0 22 17V7c0-.266-.052-.525-.158-.782z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.868 11.504l-4-7A1 1 0 0 0 17 4H3a1 1 0 0 0-.868 1.496L5.849 12l-3.717 6.504A1 1 0 0 0 3 20h14a1 1 0 0 0 .868-.504l4-7a.998.998 0 0 0 0-.992z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tag-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.842 6.218a1.977 1.977 0 0 0-.424-.628A1.99 1.99 0 0 0 20 5H8c-.297 0-.578.132-.769.359l-5 6c-.309.371-.309.91 0 1.281l5 6c.191.228.472.36.769.36h12a1.977 1.977 0 0 0 1.41-.582A1.99 1.99 0 0 0 22 17V7c0-.266-.052-.525-.158-.782zm-4.135 8.075l-1.414 1.414L14 13.414l-2.293 2.293l-1.414-1.414L12.586 12l-2.293-2.293l1.414-1.414L14 10.586l2.293-2.293l1.414 1.414L15.414 12l2.293 2.293z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-taxi { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.772 10.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 4H14V2h-4v2H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 12v5c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2h12v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2.277A1.99 1.99 0 0 0 22 17v-5a2 2 0 0 0-1.228-1.845zM7.441 6h9.117c.431 0 .813.274.949.684L18.613 10H5.387l1.105-3.316A1 1 0 0 1 7.441 6zM5.5 16a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 16zm13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 16z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tennis-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.929 19.071a9.953 9.953 0 0 0 6.692 2.906c-.463-2.773.365-5.721 2.5-7.856c2.136-2.135 5.083-2.963 7.856-2.5c-.092-2.433-1.053-4.839-2.906-6.692s-4.26-2.814-6.692-2.906c.463 2.773-.365 5.721-2.5 7.856c-2.136 2.135-5.083 2.963-7.856 2.5a9.944 9.944 0 0 0 2.906 6.692z' fill='black'/%3E%3Cpath d='M15.535 15.535a6.996 6.996 0 0 0-1.911 6.318a9.929 9.929 0 0 0 8.229-8.229a6.999 6.999 0 0 0-6.318 1.911zm-7.07-7.07a6.996 6.996 0 0 0 1.911-6.318a9.929 9.929 0 0 0-8.23 8.229a7 7 0 0 0 6.319-1.911z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-terminal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM6.414 15.707L5 14.293L7.293 12L5 9.707l1.414-1.414L10.121 12l-3.707 3.707zM19 16h-7v-2h7v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-thermometer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M9 16a3.001 3.001 0 0 0 6 0c0-.353-.072-.686-.184-1H9.184A2.962 2.962 0 0 0 9 16z' fill='black'/%3E%3Cpath d='M18 6V4h-3.185A2.995 2.995 0 0 0 12 2c-1.654 0-3 1.346-3 3v5.8A6.027 6.027 0 0 0 6 16c0 3.309 2.691 6 6 6s6-2.691 6-6a6.027 6.027 0 0 0-3-5.2V10h3V8h-3V6h3zm-4.405 6.324A4.033 4.033 0 0 1 16 16c0 2.206-1.794 4-4 4s-4-1.794-4-4c0-1.585.944-3.027 2.405-3.676l.595-.263V5a1 1 0 0 1 2 0v7.061l.595.263z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-time { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12.25 2c-5.514 0-10 4.486-10 10s4.486 10 10 10s10-4.486 10-10s-4.486-10-10-10zM18 13h-6.75V6h2v5H18v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-time-five { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm3.293 14.707L11 12.414V6h2v5.586l3.707 3.707l-1.414 1.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-timer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 3h4v2h-4zM3 8h4v2H3zm0 8h4v2H3zm-1-4h3.99v2H2zm19.707-5.293l-1.414-1.414L18.586 7A6.937 6.937 0 0 0 15 6c-3.859 0-7 3.141-7 7s3.141 7 7 7s7-3.141 7-7a6.968 6.968 0 0 0-1.855-4.73l1.562-1.563zM16 14h-2V8.958h2V14z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tired { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-6.447 9.105l2.459-1.229l-1.567-1.044l1.109-1.664l3 2a1 1 0 0 1-.108 1.727l-4 2l-.893-1.79zM8 17s1-3 4-3s4 3 4 3H8zm9.553-4.105l-4-2a1 1 0 0 1-.108-1.727l3-2l1.109 1.664l-1.566 1.044l2.459 1.229l-.894 1.79z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-to-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 15h4v6h6v-6h4l-7-8zM4 3h16v2H4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-toggle-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 6H8c-3.296 0-5.982 2.682-6 5.986v.042A6.01 6.01 0 0 0 8 18h8a6.01 6.01 0 0 0 6-5.994v-.018C21.985 8.685 19.297 6 16 6zm-8 9c-1.627 0-3-1.373-3-3s1.373-3 3-3s3 1.373 3 3s-1.373 3-3 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-toggle-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 6H8c-3.296 0-5.982 2.682-6 5.986v.042A6.01 6.01 0 0 0 8 18h8c3.309 0 6-2.691 6-6s-2.691-6-6-6zm0 9c-1.627 0-3-1.373-3-3s1.373-3 3-3s3 1.373 3 3s-1.373 3-3 3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm-1 9H4.069a7.965 7.965 0 0 1 .52-2H11v2zm0 4H4.589a7.965 7.965 0 0 1-.52-2H11v2zm0-10.931V7H5.765A7.996 7.996 0 0 1 11 4.069zM5.765 17H11v2.931A7.996 7.996 0 0 1 5.765 17z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-torch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8 11.648V20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-8.352c1.067-.552 3-1.928 3-4.648V5H5v2c0 2.72 1.933 4.096 3 4.648zM11 11h2v3h-2v-3zM5 2h14v2H5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-traffic { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M2.958 16l.043 1.042c.005.12.142 2.255 2.999 3.338v1.12a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-1.12c2.857-1.083 2.994-3.218 2.999-3.338L21.043 16H18v-1.62c2.857-1.083 2.994-3.218 2.999-3.338L21.043 10H18V8.38c2.857-1.083 2.994-3.218 2.999-3.338L21.043 4H18V2.5a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5V4H2.958l.043 1.042c.005.12.142 2.255 2.999 3.338V10H2.958l.043 1.042c.005.12.142 2.255 2.999 3.338V16H2.958zM12 4a2 2 0 1 1-.001 4.001A2 2 0 0 1 12 4zm0 6a2 2 0 1 1-.001 4.001A2 2 0 0 1 12 10zm0 6a2 2 0 1 1-.001 4.001A2 2 0 0 1 12 16z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-traffic-barrier { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 6h-2V3h-2v3H7V3H5v3H3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h2v6h2v-6h10v6h2v-6h2a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1zM4.42 13l2.857-5H9.58l-2.857 5H4.42zm7.857-5h2.303l-2.857 5H9.42l2.857-5zm5 0h2.303l-2.857 5H14.42l2.857-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-traffic-cone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.649 16H5.352l-1.06 3H2v2h20v-2h-2.292zM6.057 14h11.886l-1.412-4H7.469zM13 2h-2a1 1 0 0 0-.943.667L8.175 8h7.65l-1.882-5.333A1 1 0 0 0 13 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-train { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.375 2H7.621c-.224 0-1.399.065-2.503 1.351C4.031 4.616 4 5.862 4 6v11a2 2 0 0 0 2 2h1l-2 3h2.353l.667-1h8l.677 1H19l-2-3h1a2 2 0 0 0 2-2V6c.001-.188-.032-1.434-1.129-2.665C17.715 2.037 16.509 2 16.375 2zM10 4h4v2h-4V4zM7.5 17a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 7.5 17zm9 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16.5 17zm1.5-5H6V8h12v4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-trash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 7H5v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7H6zm4 12H8v-9h2v9zm6 0h-2v-9h2v9zm.618-15L15 2H9L7.382 4H3v2h18V4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-trash-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 7H5v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7H6zm10.618-3L15 2H9L7.382 4H3v2h18V4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tree { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 18l-4-5h3l-4-5h2l-5-6l-5 6h2l-4 5h3l-4 5h7v4h2v-4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tree-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 10l-6-8l-6 8h3l-5 8h7v4h2v-4h7l-5-8h3z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-trophy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 4h-3V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v1H3a1 1 0 0 0-1 1v3c0 4.31 1.8 6.91 4.82 7A6 6 0 0 0 11 17.91V20H9v2h6v-2h-2v-2.09A6 6 0 0 0 17.18 15c3-.1 4.82-2.7 4.82-7V5a1 1 0 0 0-1-1zM4 8V6h2v6.83C4.22 12.08 4 9.3 4 8zm14 4.83V6h2v2c0 1.3-.22 4.08-2 4.83z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-truck { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.15 8a2 2 0 0 0-1.72-1H15V5a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v10a2 2 0 0 0 1 1.73a3.49 3.49 0 0 0 7 .27h3.1a3.48 3.48 0 0 0 6.9 0a2 2 0 0 0 2-2v-3a1.07 1.07 0 0 0-.14-.52zM15 9h2.43l1.8 3H15zM6.5 19A1.5 1.5 0 1 1 8 17.5A1.5 1.5 0 0 1 6.5 19zm10 0a1.5 1.5 0 1 1 1.5-1.5a1.5 1.5 0 0 1-1.5 1.5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-tv { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 6h-5.586l2.293-2.293l-1.414-1.414L12 5.586L8.707 2.293L7.293 3.707L9.586 6H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-up-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M3 19h18a1.002 1.002 0 0 0 .823-1.569l-9-13c-.373-.539-1.271-.539-1.645 0l-9 13A.999.999 0 0 0 3 19z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-up-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 18v-6h5l-6-7l-6 7h5v6z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-up-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10zm0-15l5 5h-4v5h-2v-5H7l5-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-up-arrow-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M5 21h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2zm7-14l5 5h-4v5h-2v-5H7l5-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-upside-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zM8.507 15a1.494 1.494 0 1 1 .001-2.987A1.494 1.494 0 0 1 8.507 15zm4.301-6.919a4.108 4.108 0 0 0-1.616 0a4.12 4.12 0 0 0-.751.233c-.234.1-.463.224-.678.368a4.077 4.077 0 0 0-1.08 1.082L7.024 8.646a6.026 6.026 0 0 1 2.639-2.175a6.097 6.097 0 0 1 1.128-.35a6.061 6.061 0 0 1 2.415 0a5.919 5.919 0 0 1 2.148.903a6.078 6.078 0 0 1 1.621 1.622l-1.658 1.117a3.994 3.994 0 0 0-.488-.59a3.988 3.988 0 0 0-2.021-1.092zM15.5 15a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 15.5 15z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-upvote { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 14h4v7a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-7h4a1.001 1.001 0 0 0 .781-1.625l-8-10c-.381-.475-1.181-.475-1.562 0l-8 10A1.001 1.001 0 0 0 4 14z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.5 6.5C7.5 8.981 9.519 11 12 11s4.5-2.019 4.5-4.5S14.481 2 12 2S7.5 4.019 7.5 6.5zM20 21h1v-1c0-3.859-3.141-7-7-7h-4c-3.86 0-7 3.141-7 7v1h17z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-account { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-6 2.5a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5zM19 15H9v-.25C9 12.901 11.254 11 14 11s5 1.901 5 3.75V15z' fill='black'/%3E%3Cpath d='M4 8H2v12c0 1.103.897 2 2 2h12v-2H4V8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-badge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M17.988 22a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h11.988zM9 5h6v2H9V5zm5.25 6.25A2.26 2.26 0 0 1 12 13.501c-1.235 0-2.25-1.015-2.25-2.251S10.765 9 12 9a2.259 2.259 0 0 1 2.25 2.25zM7.5 18.188c0-1.664 2.028-3.375 4.5-3.375s4.5 1.711 4.5 3.375v.563h-9v-.563z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8 12.052c1.995 0 3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5s1.505 3.5 3.5 3.5zM9 13H7c-2.757 0-5 2.243-5 5v1h12v-1c0-2.757-2.243-5-5-5zm11.294-4.708l-4.3 4.292l-1.292-1.292l-1.414 1.414l2.706 2.704l5.712-5.702z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.579 2 2 6.579 2 12s4.579 10 10 10s10-4.579 10-10S17.421 2 12 2zm0 5c1.727 0 3 1.272 3 3s-1.273 3-3 3c-1.726 0-3-1.272-3-3s1.274-3 3-3zm-5.106 9.772c.897-1.32 2.393-2.2 4.106-2.2h2c1.714 0 3.209.88 4.106 2.2C15.828 18.14 14.015 19 12 19s-3.828-.86-5.106-2.228z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M15 11h7v2h-7zm1 4h6v2h-6zm-2-8h8v2h-8zM4 19h10v-1c0-2.757-2.243-5-5-5H7c-2.757 0-5 2.243-5 5v1h2zm4-7c1.995 0 3.5-1.505 3.5-3.5S9.995 5 8 5S4.5 6.505 4.5 8.5S6.005 12 8 12z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 11h8v2h-8zM4.5 8.552c0 1.995 1.505 3.5 3.5 3.5s3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5zM4 19h10v-1c0-2.757-2.243-5-5-5H7c-2.757 0-5 2.243-5 5v1h2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19 2H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h4l3 3l3-3h4a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-7 3c1.727 0 3 1.272 3 3s-1.273 3-3 3c-1.726 0-3-1.272-3-3s1.274-3 3-3zM7.177 16c.558-1.723 2.496-3 4.823-3s4.266 1.277 4.823 3H7.177z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4.5 8.552c0 1.995 1.505 3.5 3.5 3.5s3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5zM19 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM4 19h10v-1c0-2.757-2.243-5-5-5H7c-2.757 0-5 2.243-5 5v1h2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-rectangle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M6 22h13a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h1zm6-17.001c1.647 0 3 1.351 3 3C15 9.647 13.647 11 12 11S9 9.647 9 7.999c0-1.649 1.353-3 3-3zM6 17.25c0-2.219 2.705-4.5 6-4.5s6 2.281 6 4.5V18H6v-.75z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-voice { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8 12.052c1.995 0 3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5s1.505 3.5 3.5 3.5zM9 13H7c-2.757 0-5 2.243-5 5v1h12v-1c0-2.757-2.243-5-5-5zm9.364-10.364L16.95 4.05C18.271 5.373 19 7.131 19 9s-.729 3.627-2.05 4.95l1.414 1.414C20.064 13.663 21 11.403 21 9s-.936-4.663-2.636-6.364z' fill='black'/%3E%3Cpath d='M15.535 5.464L14.121 6.88C14.688 7.445 15 8.198 15 9s-.312 1.555-.879 2.12l1.414 1.416C16.479 11.592 17 10.337 17 9s-.521-2.592-1.465-3.536z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-user-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M8 12.052c1.995 0 3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5s1.505 3.5 3.5 3.5zM9 13H7c-2.757 0-5 2.243-5 5v1h12v-1c0-2.757-2.243-5-5-5zm11.293-4.707L18 10.586l-2.293-2.293l-1.414 1.414l2.292 2.292l-2.293 2.293l1.414 1.414l2.293-2.293l2.294 2.294l1.414-1.414L19.414 12l2.293-2.293z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-vector { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.277 8c.347.596.985 1 1.723 1a2 2 0 0 0 0-4c-.738 0-1.376.404-1.723 1H16V4a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v2H5.723C5.376 5.404 4.738 5 4 5a2 2 0 0 0 0 4c.738 0 1.376-.404 1.723-1H8v.368C5.134 9.839 4.319 12.534 4.092 14H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.877c.197-.959.718-2.406 2.085-3.418A.984.984 0 0 0 9 11h6a.98.98 0 0 0 .792-.419c1.373 1.013 1.895 2.458 2.089 3.419H17a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-1.092c-.227-1.466-1.042-4.161-3.908-5.632V8h2.277zM14 9h-4V5h4v4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-vial { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7 22a4.965 4.965 0 0 0 3.535-1.465l9.193-9.193l.707.708l1.414-1.414l-8.485-8.486l-1.414 1.414l.708.707l-9.193 9.193C2.521 14.408 2 15.664 2 17s.521 2.592 1.465 3.535A4.965 4.965 0 0 0 7 22zM18.314 9.928L15.242 13H6.758l7.314-7.314l4.242 4.242z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-video { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 7c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-3.333L22 17V7l-4 3.333V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-video-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 19h10.879L2.145 6.265A1.977 1.977 0 0 0 2 7v10c0 1.103.897 2 2 2zM18 7c0-1.103-.897-2-2-2H6.414L3.707 2.293L2.293 3.707l18 18l1.414-1.414L18 16.586v-2.919L22 17V7l-4 3.333V7z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-video-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3.333L22 17V7l-4 3.333V7zm-4 6h-3v3H9v-3H6v-2h3V8h2v3h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-video-recording { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 9c0-1.103-.897-2-2-2h-1.434l-2.418-4.029A2.008 2.008 0 0 0 10.434 2H5v2h5.434l1.8 3H4c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-3l4 2v-7l-4 2V9zm-7 8H5v-2h6v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-videos { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 8H2v12a2 2 0 0 0 2 2h12v-2H4z' fill='black'/%3E%3Cpath d='M20 2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-9 12V6l7 4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-virus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 11h-.17c-1.053 0-1.958-.669-2.357-1.644l-.021-.049c-.408-.977-.249-2.097.5-2.846l.119-.119a.999.999 0 1 0-1.414-1.414l-.119.119c-.749.749-1.869.908-2.846.5l-.049-.021C13.669 5.128 13 4.218 13 3.165v-.081C13 2.447 12.553 2 12 2s-1 .447-1 1v.036c0 1.096-.66 2.084-1.673 2.503l-.006.003a2.71 2.71 0 0 1-2.953-.588l-.025-.025a.999.999 0 1 0-1.414 1.414l.036.036a2.69 2.69 0 0 1 .583 2.929l-.027.064A2.638 2.638 0 0 1 3.085 11h-.001C2.447 11 2 11.447 2 12s.447 1 1 1h.068a2.66 2.66 0 0 1 2.459 1.644l.021.049a2.69 2.69 0 0 1-.583 2.929l-.036.036a.999.999 0 1 0 1.414 1.414l.036-.036a2.689 2.689 0 0 1 2.929-.583l.143.06A2.505 2.505 0 0 1 11 20.83v.085c0 .638.447 1.085 1 1.085s1-.448 1-1v-.17c0-1.015.611-1.93 1.55-2.318l.252-.104a2.508 2.508 0 0 1 2.736.545l.119.119a.999.999 0 1 0 1.414-1.414l-.119-.119c-.749-.749-.908-1.869-.5-2.846l.021-.049c.399-.975 1.309-1.644 2.362-1.644h.08c.638 0 1.085-.447 1.085-1s-.447-1-1-1zM8 13a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm5 3.5a1 1 0 1 1 0-2a1 1 0 0 1 0 2zm1-4.5a2 2 0 1 1 .001-4.001A2 2 0 0 1 14 12z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-virus-block { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18.952 17.538c-.749-.749-.908-1.869-.5-2.846l.021-.049c.399-.974 1.309-1.643 2.362-1.643h.08c.638 0 1.085-.447 1.085-1s-.447-1-1-1h-.17c-1.053 0-1.958-.669-2.357-1.644l-.021-.049c-.408-.977-.249-2.097.5-2.846l.119-.119a.999.999 0 1 0-1.414-1.414l-.119.119c-.749.749-1.869.908-2.846.5l-.049-.021C13.669 5.128 13 4.218 13 3.165v-.081C13 2.447 12.553 2 12 2s-1 .447-1 1v.036c0 1.096-.66 2.084-1.673 2.503l-.006.003a2.71 2.71 0 0 1-2.953-.588l-.025-.025l-2.636-2.636l-1.414 1.414l18 18l1.414-1.414l-2.636-2.636l-.119-.119zM12 10a2 2 0 1 1 2 2c-.257 0-.501-.053-.728-.142l-1.131-1.131A1.998 1.998 0 0 1 12 10zm-4 3a1 1 0 0 1-1-1a.99.99 0 0 1 .244-.635L5.431 9.552A2.634 2.634 0 0 1 3.085 11h-.001C2.447 11 2 11.447 2 12s.447 1 1 1h.068a2.66 2.66 0 0 1 2.459 1.644l.021.049a2.69 2.69 0 0 1-.583 2.929l-.036.036a.999.999 0 1 0 1.414 1.414l.036-.036a2.689 2.689 0 0 1 2.929-.583l.143.06A2.505 2.505 0 0 1 11 20.83v.085c0 .638.447 1.085 1 1.085s1-.448 1-1v-.17c0-.976.568-1.853 1.443-2.266l-5.809-5.809A.98.98 0 0 1 8 13z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-volume { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 17h2.697L14 21.868V2.132L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-volume-full { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16 21c3.527-1.547 5.999-4.909 5.999-9S19.527 4.547 16 3v2c2.387 1.386 3.999 4.047 3.999 7S18.387 17.614 16 19v2z' fill='black'/%3E%3Cpath d='M16 7v10c1.225-1.1 2-3.229 2-5s-.775-3.9-2-5zM4 17h2.697L14 21.868V2.132L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-volume-low { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 17h2.697L14 21.868V2.132L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2zM16 7v10c1.225-1.1 2-3.229 2-5s-.775-3.9-2-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-volume-mute { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M7.727 6.313l-4.02-4.02l-1.414 1.414l18 18l1.414-1.414l-2.02-2.02A9.578 9.578 0 0 0 21.999 12c0-4.091-2.472-7.453-5.999-9v2c2.387 1.386 3.999 4.047 3.999 7a8.13 8.13 0 0 1-1.671 4.914l-1.286-1.286C17.644 14.536 18 13.19 18 12c0-1.771-.775-3.9-2-5v7.586l-2-2V2.132L7.727 6.313zM4 17h2.697L14 21.868v-3.747L3.102 7.223A1.995 1.995 0 0 0 2 9v6c0 1.103.897 2 2 2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-wallet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 7V5c0-1.103-.897-2-2-2H5C3.346 3 2 4.346 2 6v12c0 2.201 1.794 3 3 3h15c1.103 0 2-.897 2-2V9c0-1.103-.897-2-2-2zm-2 9h-2v-4h2v4zM5 7a1.001 1.001 0 0 1 0-2h13v2H5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-wallet-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 9h8v6h-8z' fill='black'/%3E%3Cpath d='M20 3H5C3.346 3 2 4.346 2 6v12c0 1.654 1.346 3 3 3h15c1.103 0 2-.897 2-2v-2h-8c-1.103 0-2-.897-2-2V9c0-1.103.897-2 2-2h8V5c0-1.103-.897-2-2-2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-washer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 22h16a1 1 0 0 0 1-1V5c0-1.654-1.346-3-3-3H6C4.346 2 3 3.346 3 5v16a1 1 0 0 0 1 1zM18 3.924a1 1 0 1 1 0 2a1 1 0 0 1 0-2zm-3 0a1 1 0 1 1 0 2a1 1 0 0 1 0-2zM12 7c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6z' fill='black'/%3E%3Cpath d='M12.766 16.929c1.399-.261 2.571-1.315 3.023-2.665a3.853 3.853 0 0 0-.153-2.893a.482.482 0 0 0-.544-.266c-.604.149-1.019.448-1.5.801c-.786.577-1.765 1.294-3.592 1.294c-.813 0-1.45-.146-1.984-.354l-.013.009a4.006 4.006 0 0 0 4.763 4.074z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-watch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M13 8h-2v5h5v-2h-3z' fill='black'/%3E%3Cpath d='M19.999 12c0-2.953-1.612-5.53-3.999-6.916V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v2.083C5.613 6.469 4.001 9.047 4.001 12a8.003 8.003 0 0 0 4.136 7H8v2.041a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V19h-.139a8 8 0 0 0 4.138-7zm-8 5.999A6.005 6.005 0 0 1 6.001 12a6.005 6.005 0 0 1 5.998-5.999c3.31 0 6 2.691 6 5.999a6.005 6.005 0 0 1-6 5.999z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-watch-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M18 8c0-.909-.613-1.67-1.445-1.912l-1.31-3.443A1 1 0 0 0 14.311 2H8.689a1 1 0 0 0-.934.645l-1.31 3.443A1.996 1.996 0 0 0 5 8v8c0 .909.613 1.67 1.445 1.912l1.31 3.443a1 1 0 0 0 .934.645h5.621c.415 0 .787-.257.935-.645l1.31-3.443A1.996 1.996 0 0 0 18 16v-2h1v-4h-1V8zm-1.998 8H7V8h9l.002 8z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-webcam { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2c-4.963 0-9 4.037-9 9c0 3.328 1.82 6.232 4.513 7.79l-2.067 1.378A1 1 0 0 0 6 22h12a1 1 0 0 0 .555-1.832l-2.067-1.378C19.18 17.232 21 14.328 21 11c0-4.963-4.037-9-9-9zm0 16c-3.859 0-7-3.141-7-7s3.141-7 7-7s7 3.141 7 7s-3.141 7-7 7z' fill='black'/%3E%3Cpath d='M12 6c-2.757 0-5 2.243-5 5s2.243 5 5 5s5-2.243 5-5s-2.243-5-5-5zm-1.5 5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 10.5 11z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-widget { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M4 11h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zm0 10h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zm10 0h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zm7.293-14.707l-3.586-3.586a.999.999 0 0 0-1.414 0l-3.586 3.586a.999.999 0 0 0 0 1.414l3.586 3.586a.999.999 0 0 0 1.414 0l3.586-3.586a.999.999 0 0 0 0-1.414z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-window-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm-3 3h2v2h-2V6zm-3 0h2v2h-2V6zM4 19v-9h16.001l.001 9H4z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-wine { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M11 17.916V20H9v2h6v-2h-2v-2.084c3.162-.402 5.849-2.66 6.713-5.793c.264-.952.312-2.03.143-3.206l-.866-6.059A1 1 0 0 0 18 2H6a1 1 0 0 0-.99.858l-.865 6.058c-.169 1.177-.121 2.255.143 3.206c.863 3.134 3.55 5.392 6.712 5.794zM17.133 4l.57 4H6.296l.571-4h10.266z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-wink-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zM8.5 9a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 9zm7.741 7.244a5.982 5.982 0 0 1-3.034 1.634a6.042 6.042 0 0 1-3.541-.349a5.997 5.997 0 0 1-2.642-2.176l1.658-1.117c.143.211.307.41.488.59a3.988 3.988 0 0 0 1.273.86c.243.102.495.181.749.232a4.108 4.108 0 0 0 1.616 0c.253-.052.505-.131.75-.233c.234-.1.464-.224.679-.368c.208-.142.407-.306.591-.489c.183-.182.347-.381.489-.592l1.658 1.117c-.214.32-.461.62-.734.891zM13 12s.5-2 2.5-2c1.999 0 2.5 2 2.5 2h-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-wink-tongue { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M14 19v-4h-4v4c0 1.103.897 2 2 2s2-.897 2-2z' fill='black'/%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12c0 4.434 2.903 8.198 6.906 9.505A3.969 3.969 0 0 1 8 19v-2.499C6.412 15.027 6 13 6 13h12s-.411 2.027-2 3.501V19c0 .953-.349 1.816-.906 2.504C19.097 20.197 22 16.434 22 12c0-5.514-4.486-10-10-10zm-3.5 9a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8.5 11zm4.5 0s.5-2 2.5-2c1.999 0 2.5 2 2.5 2h-5z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-wrench { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21.512 6.112l-3.89 3.889l-3.535-3.536l3.889-3.889a6.501 6.501 0 0 0-8.484 8.486l-6.276 6.275a.999.999 0 0 0 0 1.414l2.122 2.122a.999.999 0 0 0 1.414 0l6.275-6.276a6.501 6.501 0 0 0 7.071-1.414a6.504 6.504 0 0 0 1.414-7.071z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-x-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2zm4.207 12.793l-1.414 1.414L12 13.414l-2.793 2.793l-1.414-1.414L10.586 12L7.793 9.207l1.414-1.414L12 10.586l2.793-2.793l1.414 1.414L13.414 12l2.793 2.793z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-x-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M21 5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5zm-4.793 9.793l-1.414 1.414L12 13.414l-2.793 2.793l-1.414-1.414L10.586 12L7.793 9.207l1.414-1.414L12 10.586l2.793-2.793l1.414 1.414L13.414 12l2.793 2.793z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-yin-yang { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M19.062 4.938A9.942 9.942 0 0 0 12.016 2h-.026a9.94 9.94 0 0 0-7.071 2.938c-3.898 3.898-3.898 10.243 0 14.143c1.895 1.895 4.405 2.938 7.071 2.938s5.177-1.043 7.071-2.938c3.9-3.899 3.9-10.243.001-14.143zM13.5 15a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 13.5 15zM6.333 6.353A7.953 7.953 0 0 1 11.99 4l.026.001c1.652.008 3.242 1.066 3.55 2.371c.366 1.552-1.098 3.278-4.018 4.737c-5.113 2.555-5.312 5.333-4.975 6.762l.008.021c-.082-.075-.169-.146-.249-.226c-3.118-3.119-3.118-8.194.001-11.313z' fill='black'/%3E%3Ccircle cx='10.5' cy='7.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-zap { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M20.98 11.802a.995.995 0 0 0-.738-.771l-6.86-1.716l2.537-5.921a.998.998 0 0 0-.317-1.192a.996.996 0 0 0-1.234.024l-11 9a1 1 0 0 0 .39 1.744l6.719 1.681l-3.345 5.854A1.001 1.001 0 0 0 8 22a.995.995 0 0 0 .6-.2l12-9a1 1 0 0 0 .38-.998z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-zoom-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10 2c-4.411 0-8 3.589-8 8s3.589 8 8 8a7.952 7.952 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.952 7.952 0 0 0 18 10c0-4.411-3.589-8-8-8zm4 9h-3v3H9v-3H6V9h3V6h2v3h3v2z' fill='black'/%3E%3C/svg%3E"); } .bx-bxs-zoom-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M10 18a7.952 7.952 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.952 7.952 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8s3.589 8 8 8zM6 9h8v2H6V9z' fill='black'/%3E%3C/svg%3E"); } .bx-cabinet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2zM5 4h14v7H5zm0 16v-7h14.001v7z'/%3E%3Cpath fill='black' d='M14 7h-4V6H8v3h8V6h-2zm0 8v1h-4v-1H8v3h8v-3z'/%3E%3C/svg%3E"); } .bx-cable-car { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2 9.76l9-2.45V10H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-4V6.76l9-2.45V2.24L2 7.69zM11 12v3H7v-3zm6 0v8H7v-3h10v-2h-4v-3z'/%3E%3C/svg%3E"); } .bx-cake { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 5h-6V2h-2v3H5C3.346 5 2 6.346 2 8v10c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.654-1.346-3-3-3M5 7h14a1 1 0 0 1 1 1l.001 3.12c-.896.228-1.469.734-1.916 1.132c-.507.45-.842.748-1.588.748c-.745 0-1.08-.298-1.587-.747c-.595-.529-1.409-1.253-2.915-1.253c-1.505 0-2.319.724-2.914 1.253c-.507.45-.841.747-1.586.747c-.743 0-1.077-.297-1.582-.747c-.447-.398-1.018-.905-1.913-1.133V8a1 1 0 0 1 1-1M4 18v-4.714c.191.123.374.274.583.461C5.178 14.276 5.991 15 7.495 15s2.319-.724 2.914-1.253c.507-.45.841-.747 1.586-.747s1.08.298 1.587.747c.595.529 1.409 1.253 2.915 1.253s2.321-.724 2.916-1.253c.211-.188.395-.34.588-.464L20.002 18z'/%3E%3C/svg%3E"); } .bx-calculator { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H5c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M5 20V4h14l.001 16z'/%3E%3Cpath fill='black' d='M7 12h2v2H7zm0 4h2v2H7zm4-4h2v2h-2zM7 6h10v4H7zm4 10h2v2h-2zm4-4h2v6h-2z'/%3E%3C/svg%3E"); } .bx-calendar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 11h2v2H7zm0 4h2v2H7zm4-4h2v2h-2zm0 4h2v2h-2zm4-4h2v2h-2zm0 4h2v2h-2z'/%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M19 8l.001 12H5V8z'/%3E%3C/svg%3E"); } .bx-calendar-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2H7v2H5a2 2 0 0 0-2 2m16 14H5V8h14z'/%3E%3C/svg%3E"); } .bx-calendar-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m.002 16H5V8h14z'/%3E%3Cpath fill='black' d='m11 17.414l5.707-5.707l-1.414-1.414L11 14.586l-2.293-2.293l-1.414 1.414z'/%3E%3C/svg%3E"); } .bx-calendar-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-3V2h-2v2h-4V2H8v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M5 20V7h14V6l.002 14z'/%3E%3Cpath fill='black' d='m15.628 12.183l-1.8-1.799l1.37-1.371l1.8 1.799zm-7.623 4.018V18h1.799l4.976-4.97l-1.799-1.799z'/%3E%3C/svg%3E"); } .bx-calendar-event { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 12h6v6h-6z'/%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m.001 16H5V8h14z'/%3E%3C/svg%3E"); } .bx-calendar-exclamation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m.002 16H5V8h14z'/%3E%3Cpath fill='black' d='M11 10h2v5h-2zm0 6h2v2h-2z'/%3E%3C/svg%3E"); } .bx-calendar-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.648 14.711L11.997 18l3.35-3.289a2.13 2.13 0 0 0 0-3.069a2.225 2.225 0 0 0-3.126 0l-.224.219l-.224-.219a2.224 2.224 0 0 0-3.125 0a2.13 2.13 0 0 0 0 3.069'/%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m.002 16H5V8h14z'/%3E%3C/svg%3E"); } .bx-calendar-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 13h8v2H8z'/%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m.002 16H5V8h14z'/%3E%3C/svg%3E"); } .bx-calendar-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 15h3v3h2v-3h3v-2h-3v-3h-2v3H8z'/%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m.002 16H5V8h14z'/%3E%3C/svg%3E"); } .bx-calendar-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m9.981 14.811l-.467 2.726l2.449-1.287l2.449 1.287l-.468-2.726l1.982-1.932l-2.738-.398L11.963 10l-1.225 2.481L8 12.879z'/%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m.002 16H5V8h14z'/%3E%3C/svg%3E"); } .bx-calendar-week { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-3V2h-2v2h-4V2H8v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M5 20V7h14V6l.002 14z'/%3E%3Cpath fill='black' d='M7 10v2h10V9H7z'/%3E%3C/svg%3E"); } .bx-calendar-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m8.293 16.293l1.414 1.414L12 15.414l2.293 2.293l1.414-1.414L13.414 14l2.293-2.293l-1.414-1.414L12 12.586l-2.293-2.293l-1.414 1.414L10.586 14z'/%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m.002 16H5V8h14z'/%3E%3C/svg%3E"); } .bx-camera { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 8c-2.168 0-4 1.832-4 4s1.832 4 4 4s4-1.832 4-4s-1.832-4-4-4m0 6c-1.065 0-2-.935-2-2s.935-2 2-2s2 .935 2 2s-.935 2-2 2'/%3E%3Cpath fill='black' d='M20 5h-2.586l-2.707-2.707A1 1 0 0 0 14 2h-4a1 1 0 0 0-.707.293L6.586 5H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2M4 18V7h3c.266 0 .52-.105.707-.293L10.414 4h3.172l2.707 2.707A1 1 0 0 0 17 7h3l.002 11z'/%3E%3C/svg%3E"); } .bx-camera-home { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.125 2H5.875A1.877 1.877 0 0 0 4 3.875v12.25C4 17.159 4.841 18 5.875 18H11v2H7v2h10v-2h-4v-2h5.125A1.877 1.877 0 0 0 20 16.125V3.875A1.877 1.877 0 0 0 18.125 2M18 16H6V4h12z'/%3E%3Cpath fill='black' d='M12 14c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4m0-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2'/%3E%3C/svg%3E"); } .bx-camera-movie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 11c0-.959-.68-1.761-1.581-1.954C16.779 8.445 17 7.75 17 7c0-2.206-1.794-4-4-4c-1.517 0-2.821.857-3.5 2.104C8.821 3.857 7.517 3 6 3C3.794 3 2 4.794 2 7c0 .902.312 1.727.817 2.396A2 2 0 0 0 2 11v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-2.638l4 2v-7l-4 2zm-5-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2M6 5c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2M4 19v-8h12l.002 8z'/%3E%3C/svg%3E"); } .bx-camera-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.014 12.135c.074 2.062 1.789 3.777 3.851 3.851z'/%3E%3Cpath fill='black' d='M4 20h11.879l-2-2H4V8.121L2.144 6.265A2 2 0 0 0 2 7v11c0 1.103.897 2 2 2M20 5h-2.586l-2.707-2.707A1 1 0 0 0 14 2h-4a1 1 0 0 0-.707.293L6.586 5h-.172L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-.626-.626A1.98 1.98 0 0 0 22 18V7c0-1.103-.897-2-2-2m-6.081 7.505l-2.424-2.425c.163-.046.331-.08.505-.08c1.065 0 2 .935 2 2c0 .174-.033.342-.081.505m1.502 1.501A3.9 3.9 0 0 0 16 12c0-2.168-1.832-4-4-4c-.729 0-1.412.22-2.007.579L7.914 6.5l2.5-2.5h3.172l2.707 2.707A1 1 0 0 0 17 7l3-.001V18h-.586z'/%3E%3C/svg%3E"); } .bx-candles { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 19h1v3h2v-3h1a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H9V2H7v3H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1M7 7h2v10H7zm7 10h1v3h2v-3h1a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-1V4h-2v3h-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1m1-8h2v6h-2z'/%3E%3C/svg%3E"); } .bx-capsule { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.999 20.133a4.97 4.97 0 0 0 3.536-1.465l7.134-7.133a5.007 5.007 0 0 0-.001-7.072C18.723 3.52 17.467 3 16.132 3s-2.591.52-3.534 1.464l-7.134 7.134a5.01 5.01 0 0 0 0 7.072a4.97 4.97 0 0 0 3.535 1.463m5.013-14.255A2.98 2.98 0 0 1 16.132 5c.802 0 1.556.313 2.122.878a3.004 3.004 0 0 1 .001 4.243l-2.893 2.892L11.12 8.77zm-7.134 7.134l2.828-2.828l4.242 4.243l-2.827 2.827c-1.133 1.133-3.11 1.132-4.243.001a3.005 3.005 0 0 1 0-4.243'/%3E%3C/svg%3E"); } .bx-captions { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 10v4c0 1.103.897 2 2 2h3v-2H8v-4h3V8H8c-1.103 0-2 .897-2 2m7 0v4c0 1.103.897 2 2 2h3v-2h-3v-4h3V8h-3c-1.103 0-2 .897-2 2'/%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M4 18V6h16l.002 12z'/%3E%3C/svg%3E"); } .bx-car { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.772 10.156l-1.368-4.105A2.995 2.995 0 0 0 16.559 4H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.105A2 2 0 0 0 2 12v5c0 .753.423 1.402 1.039 1.743c-.013.066-.039.126-.039.195V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2h12v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2.062c0-.069-.026-.13-.039-.195A1.99 1.99 0 0 0 22 17v-5c0-.829-.508-1.541-1.228-1.844M4 17v-5h16l.002 5zM7.441 6h9.117c.431 0 .813.274.949.684L18.613 10H5.387l1.105-3.316A1 1 0 0 1 7.441 6'/%3E%3Ccircle cx='6.5' cy='14.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='14.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.999 17c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2h-12c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2zm-12-12h12l.002 10H5.999zm-2 14h16v2h-16z'/%3E%3C/svg%3E"); } .bx-caret-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11.998 17l7-8h-14z'/%3E%3C/svg%3E"); } .bx-caret-down-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 16l5-6H7z'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-caret-down-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 16l5-6H7z'/%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3C/svg%3E"); } .bx-caret-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 19V5l-8 7z'/%3E%3C/svg%3E"); } .bx-caret-left-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 17V7l-6 5z'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-caret-left-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 17V7l-6 5z'/%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3C/svg%3E"); } .bx-caret-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m9 19l8-7l-8-7z'/%3E%3C/svg%3E"); } .bx-caret-right-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10 17l6-5l-6-5z'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-caret-right-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10 17l6-5l-6-5z'/%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3C/svg%3E"); } .bx-caret-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 15h14l-7-8z'/%3E%3C/svg%3E"); } .bx-caret-up-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 14h10l-5-6z'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-caret-up-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 14h10l-5-6z'/%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3C/svg%3E"); } .bx-carousel { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 19h2c0 1.103.897 2 2 2h8c1.103 0 2-.897 2-2h2c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2h-2c0-1.103-.897-2-2-2H8c-1.103 0-2 .897-2 2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2M20 7v10h-2V7zM8 5h8l.001 14H8zM4 7h2v10H4z'/%3E%3C/svg%3E"); } .bx-cart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.822 7.431A1 1 0 0 0 21 7H7.333L6.179 4.23A1.99 1.99 0 0 0 4.333 3H2v2h2.333l4.744 11.385A1 1 0 0 0 10 17h8c.417 0 .79-.259.937-.648l3-8a1 1 0 0 0-.115-.921M17.307 15h-6.64l-2.5-6h11.39z'/%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-cart-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='M13 13h2v-2.99h2.99v-2H15V5.03h-2v2.98h-2.99v2H13z'/%3E%3Cpath fill='black' d='M10 17h8a1 1 0 0 0 .93-.64L21.76 9h-2.14l-2.31 6h-6.64L6.18 4.23A2 2 0 0 0 4.33 3H2v2h2.33l4.75 11.38A1 1 0 0 0 10 17'/%3E%3C/svg%3E"); } .bx-cart-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 4H2v2h2.3l3.28 9a3 3 0 0 0 2.82 2H19v-2h-8.6a1 1 0 0 1-.94-.66L9 13h9.28a2 2 0 0 0 1.92-1.45L22 5.27A1 1 0 0 0 21.27 4A.8.8 0 0 0 21 4m-2.75 7h-10L6.43 6h13.24z'/%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='16.5' cy='19.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-cart-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='m14 13.99l4-5h-3v-4h-2v4h-3z'/%3E%3Cpath fill='black' d='M17.31 15h-6.64L6.18 4.23A2 2 0 0 0 4.33 3H2v2h2.33l4.75 11.38A1 1 0 0 0 10 17h8a1 1 0 0 0 .93-.64L21.76 9h-2.14z'/%3E%3C/svg%3E"); } .bx-cast { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 21.001h2C13 14.935 8.065 10 2 10v2c4.962 0 9 4.038 9 9.001'/%3E%3Cpath fill='black' d='M7 21.001h2C9 17.141 5.86 14 2 14v2c2.757 0 5 2.243 5 5.001'/%3E%3Ccircle cx='3.5' cy='19.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v2.052c.68.025 1.349.094 2 .217V6h16v13h-5.269c.123.651.191 1.32.217 2H20c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bx-category { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M9 9H5V5h4zm11-6h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-1 6h-4V5h4zm-9 4H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1m-1 6H5v-4h4zm8-6c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4m0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2'/%3E%3C/svg%3E"); } .bx-category-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M9 9H5V5h4zm11 4h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1m-1 6h-4v-4h4zM17 3c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4m0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2M7 13c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4m0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2'/%3E%3C/svg%3E"); } .bx-cctv { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.916 9.564a1 1 0 0 0-.513-1.316L7.328 2.492c-.995-.438-2.22.051-2.645 1.042l-2.21 5.154a2 2 0 0 0 1.052 2.624L9.563 13.9L8.323 17H4v-3H2v8h2v-3h4.323c.823 0 1.552-.494 1.856-1.258l1.222-3.054l5.205 2.23a1 1 0 0 0 1.31-.517l.312-.71l1.701.68l2-5l-1.536-.613zm-4.434 5.126L4.313 9.475l2.208-5.152l12.162 5.354z'/%3E%3C/svg%3E"); } .bx-certification { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.06 14.68a1 1 0 0 0 .46.6l1.91 1.11v2.2a1 1 0 0 0 1 1h2.2l1.11 1.91a1 1 0 0 0 .86.5a1 1 0 0 0 .51-.14l1.9-1.1l1.91 1.1a1 1 0 0 0 1.37-.36l1.1-1.91h2.2a1 1 0 0 0 1-1v-2.2l1.91-1.11a1 1 0 0 0 .37-1.36L20.76 12l1.11-1.91a1 1 0 0 0-.37-1.36l-1.91-1.1v-2.2a1 1 0 0 0-1-1h-2.2l-1.1-1.91a1 1 0 0 0-.61-.46a1 1 0 0 0-.76.1L12 3.26l-1.9-1.1a1 1 0 0 0-1.36.36L7.63 4.43h-2.2a1 1 0 0 0-1 1v2.2l-1.9 1.1a1 1 0 0 0-.37 1.37l1.1 1.9l-1.1 1.91a1 1 0 0 0-.1.77m3.22-3.17L4.39 10l1.55-.9a1 1 0 0 0 .49-.86V6.43h1.78a1 1 0 0 0 .87-.5L10 4.39l1.54.89a1 1 0 0 0 1 0l1.55-.89l.91 1.54a1 1 0 0 0 .87.5h1.77v1.78a1 1 0 0 0 .5.86l1.54.9l-.89 1.54a1 1 0 0 0 0 1l.89 1.54l-1.54.9a1 1 0 0 0-.5.86v1.78h-1.83a1 1 0 0 0-.86.5l-.89 1.54l-1.55-.89a1 1 0 0 0-1 0l-1.51.89l-.89-1.54a1 1 0 0 0-.87-.5H6.43v-1.78a1 1 0 0 0-.49-.81l-1.55-.9l.89-1.54a1 1 0 0 0 0-1.05'/%3E%3C/svg%3E"); } .bx-chair { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 13V4c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2v9a1 1 0 0 0-1 1v8h2v-5h12v5h2v-8a1 1 0 0 0-1-1m-2-9v9h-2V4zm-4 0v9h-2V4zM7 4h2v9H7z'/%3E%3C/svg%3E"); } .bx-chalkboard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h4l-1.8 2.4l1.6 1.2l2.7-3.6h3l2.7 3.6l1.6-1.2L16 18h4c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 16V5h16l.001 11z'/%3E%3Cpath fill='black' d='M6 12h4v2H6z'/%3E%3C/svg%3E"); } .bx-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M5 5h14l.001 14H5z'/%3E%3Cpath fill='black' d='m13.553 11.658l-4-2l-2.448 4.895l1.79.894l1.552-3.105l4 2l2.448-4.895l-1.79-.894z'/%3E%3C/svg%3E"); } .bx-chat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 18v3.766l1.515-.909L11.277 18H16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2zM4 8h12v8h-5.277L7 18.234V16H4z'/%3E%3Cpath fill='black' d='M20 2H8c-1.103 0-2 .897-2 2h12c1.103 0 2 .897 2 2v8c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bx-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10 15.586l-3.293-3.293l-1.414 1.414L10 18.414l9.707-9.707l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-check-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M9.999 13.587L7.7 11.292l-1.412 1.416l3.713 3.705l6.706-6.706l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-check-double { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2.394 13.742l4.743 3.62l7.616-8.704l-1.506-1.316l-6.384 7.296l-3.257-2.486zm19.359-5.084l-1.506-1.316l-6.369 7.279l-.753-.602l-1.25 1.562l2.247 1.798z'/%3E%3C/svg%3E"); } .bx-check-shield { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.995 6.9a1 1 0 0 0-.548-.795l-8-4a1 1 0 0 0-.895 0l-8 4a1 1 0 0 0-.547.795c-.011.107-.961 10.767 8.589 15.014a1 1 0 0 0 .812 0c9.55-4.247 8.6-14.906 8.589-15.014M12 19.897C5.231 16.625 4.911 9.642 4.966 7.635L12 4.118l7.029 3.515c.037 1.989-.328 9.018-7.029 12.264'/%3E%3Cpath fill='black' d='m11 12.586l-2.293-2.293l-1.414 1.414L11 15.414l5.707-5.707l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-check-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10.933 13.519l-2.226-2.226l-1.414 1.414l3.774 3.774l5.702-6.84l-1.538-1.282z'/%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3C/svg%3E"); } .bx-checkbox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 5c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2zm0 12V7h10l.002 10z'/%3E%3C/svg%3E"); } .bx-checkbox-checked { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 5c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2zm0 12V7h10l.002 10z'/%3E%3Cpath fill='black' d='M10.996 12.556L9.7 11.285l-1.4 1.43l2.704 2.647l4.699-4.651l-1.406-1.422z'/%3E%3C/svg%3E"); } .bx-checkbox-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.01 11h6v2h-6z'/%3E%3Cpath fill='black' d='M17 5H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2M7 17V7h10v10z'/%3E%3C/svg%3E"); } .bx-checkbox-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 9h6v6H9z'/%3E%3Cpath fill='black' d='M19 17V7c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2M7 7h10l.002 10H7z'/%3E%3C/svg%3E"); } .bx-cheese { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.16 2a1 1 0 0 0-.66.13l-12 7a.6.6 0 0 0-.13.1l-.1.08a1.2 1.2 0 0 0-.17.26a.84.84 0 0 0-.1.43v10a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V10a8.08 8.08 0 0 0-6.84-8m0 2.05A6.07 6.07 0 0 1 19.93 9H6.7zM20 19H4v-8h16z'/%3E%3Ccircle cx='6.5' cy='16.5' r='1.5' fill='black'/%3E%3Ccircle cx='11.5' cy='13.5' r='1.5' fill='black'/%3E%3Ccircle cx='17' cy='16' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-chevron-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.293 9.293L12 13.586L7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z'/%3E%3C/svg%3E"); } .bx-chevron-down-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M12 13.586L7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-chevron-down-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M5 5h14l.001 14H5z'/%3E%3Cpath fill='black' d='M12 13.586L7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-chevron-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.293 6.293L7.586 12l5.707 5.707l1.414-1.414L10.414 12l4.293-4.293z'/%3E%3C/svg%3E"); } .bx-chevron-left-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M13.293 6.293L7.586 12l5.707 5.707l1.414-1.414L10.414 12l4.293-4.293z'/%3E%3C/svg%3E"); } .bx-chevron-left-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M5 5h14l.001 14H5z'/%3E%3Cpath fill='black' d='M13.293 6.293L7.586 12l5.707 5.707l1.414-1.414L10.414 12l4.293-4.293z'/%3E%3C/svg%3E"); } .bx-chevron-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.707 17.707L16.414 12l-5.707-5.707l-1.414 1.414L13.586 12l-4.293 4.293z'/%3E%3C/svg%3E"); } .bx-chevron-right-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M9.293 7.707L13.586 12l-4.293 4.293l1.414 1.414L16.414 12l-5.707-5.707z'/%3E%3C/svg%3E"); } .bx-chevron-right-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M5 5h14l.001 14H5z'/%3E%3Cpath fill='black' d='M9.293 7.707L13.586 12l-4.293 4.293l1.414 1.414L16.414 12l-5.707-5.707z'/%3E%3C/svg%3E"); } .bx-chevron-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m6.293 13.293l1.414 1.414L12 10.414l4.293 4.293l1.414-1.414L12 7.586z'/%3E%3C/svg%3E"); } .bx-chevron-up-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='m6.293 13.293l1.414 1.414L12 10.414l4.293 4.293l1.414-1.414L12 7.586z'/%3E%3C/svg%3E"); } .bx-chevron-up-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M5 5h14l.001 14H5z'/%3E%3Cpath fill='black' d='m6.293 13.293l1.414 1.414L12 10.414l4.293 4.293l1.414-1.414L12 7.586z'/%3E%3C/svg%3E"); } .bx-chevrons-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 15.586l-4.293-4.293l-1.414 1.414L12 18.414l5.707-5.707l-1.414-1.414z'/%3E%3Cpath fill='black' d='m17.707 7.707l-1.414-1.414L12 10.586L7.707 6.293L6.293 7.707L12 13.414z'/%3E%3C/svg%3E"); } .bx-chevrons-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12.707 7.707l-1.414-1.414L5.586 12l5.707 5.707l1.414-1.414L8.414 12z'/%3E%3Cpath fill='black' d='M16.293 6.293L10.586 12l5.707 5.707l1.414-1.414L13.414 12l4.293-4.293z'/%3E%3C/svg%3E"); } .bx-chevrons-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.296 7.71L14.621 12l-4.325 4.29l1.408 1.42L17.461 12l-5.757-5.71z'/%3E%3Cpath fill='black' d='M6.704 6.29L5.296 7.71L9.621 12l-4.325 4.29l1.408 1.42L12.461 12z'/%3E%3C/svg%3E"); } .bx-chevrons-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m6.293 11.293l1.414 1.414L12 8.414l4.293 4.293l1.414-1.414L12 5.586z'/%3E%3Cpath fill='black' d='m6.293 16.293l1.414 1.414L12 13.414l4.293 4.293l1.414-1.414L12 10.586z'/%3E%3C/svg%3E"); } .bx-child { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='6' r='2' fill='black'/%3E%3Cpath fill='black' d='M14 9h-4a1 1 0 0 0-.8.4l-3 4l1.6 1.2L9 13v7h2v-4h2v4h2v-7l1.2 1.6l1.6-1.2l-3-4A1 1 0 0 0 14 9'/%3E%3C/svg%3E"); } .bx-chip { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 9h6v6H9z'/%3E%3Cpath fill='black' d='M20 6c0-1.103-.897-2-2-2h-2V2h-2v2h-4V2H8v2H6c-1.103 0-2 .897-2 2v2H2v2h2v4H2v2h2v2c0 1.103.897 2 2 2h2v2h2v-2h4v2h2v-2h2c1.103 0 2-.897 2-2v-2h2v-2h-2v-4h2V8h-2zM6 18V6h12l.002 12z'/%3E%3C/svg%3E"); } .bx-church { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.447 14.105L18 12.382V12a1 1 0 0 0-.485-.857L13 8.434V6h2V4h-2V2h-2v2H9v2h2v2.434l-4.515 2.709A1 1 0 0 0 6 12v.382l-3.447 1.724A1 1 0 0 0 2 15v6a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-6c0-.379-.214-.725-.553-.895M4 15.618l2-1V20H4zM12 15a2 2 0 0 0-2 2v3H8v-7.434l4-2.4l4 2.4V20h-2v-3a2 2 0 0 0-2-2m8 5h-2v-5.382l2 1z'/%3E%3C/svg%3E"); } .bx-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12c.001 5.515 4.487 10.001 10 10.001c5.514 0 10-4.486 10.001-10.001S17.515 2 12 2m0 18.001c-4.41 0-7.999-3.589-8-8.001c0-4.411 3.589-8 8-8c4.412 0 8.001 3.589 8.001 8c-.001 4.412-3.59 8.001-8.001 8.001'/%3E%3C/svg%3E"); } .bx-circle-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2h-1v20h1a10 10 0 0 0 0-20m1 17.94V4.06a8 8 0 0 1 0 15.88'/%3E%3C/svg%3E"); } .bx-circle-quarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2h-1v11h11v-1A10 10 0 0 0 12 2m1 9V4.06A8 8 0 0 1 19.94 11z'/%3E%3C/svg%3E"); } .bx-circle-three-quarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2h-1v9H2v1a10 10 0 0 0 17.07 7.07A10 10 0 0 0 12 2m5.66 15.66A8 8 0 0 1 4.06 13H13V4.06a8 8 0 0 1 4.66 13.6'/%3E%3C/svg%3E"); } .bx-clinic { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.707 2.293a1 1 0 0 0-1.414 0l-9 9A1 1 0 0 0 3 13h1v7c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7h1a.999.999 0 0 0 .707-1.707zM18.001 20H6v-9.586l6-6l6 6V15z'/%3E%3Cpath fill='black' d='M13 10h-2v3H8v2h3v3h2v-3h3v-2h-3z'/%3E%3C/svg%3E"); } .bx-clipboard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3h-2.25a1 1 0 0 0-1-1h-7.5a1 1 0 0 0-1 1H5c-1.103 0-2 .897-2 2v15c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m0 17H5V5h2v2h10V5h2z'/%3E%3C/svg%3E"); } .bx-closet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 10.551v-.678A4.005 4.005 0 0 0 16 6c0-2.206-1.794-4-4-4S8 3.794 8 6h2c0-1.103.897-2 2-2s2 .897 2 2s-.897 2-2 2a1 1 0 0 0-1 1v1.551l-8.665 7.702A1.001 1.001 0 0 0 3 20h18a1.001 1.001 0 0 0 .664-1.748zM5.63 18L12 12.338L18.37 18z'/%3E%3C/svg%3E"); } .bx-cloud { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.611 5.757 9.15C3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5h11c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888M18 17H7c-1.654 0-3-1.346-3-3c0-1.404 1.199-2.756 2.673-3.015l.581-.102l.192-.558C8.149 8.274 9.895 7 12 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2'/%3E%3C/svg%3E"); } .bx-cloud-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.948 11.112C18.511 7.67 15.563 5 12.004 5c-2.756 0-5.15 1.611-6.243 4.15c-2.148.642-3.757 2.67-3.757 4.85c0 2.757 2.243 5 5 5h1v-2h-1c-1.654 0-3-1.346-3-3c0-1.404 1.199-2.757 2.673-3.016l.581-.102l.192-.558C8.153 8.273 9.898 7 12.004 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-2v2h2c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888'/%3E%3Cpath fill='black' d='M13.004 14v-4h-2v4h-3l4 5l4-5z'/%3E%3C/svg%3E"); } .bx-cloud-drizzle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 13h2v3H8zm0 4h2v3H8zm3-2h2v3h-2zm0 4h2v3h-2zm3-6h2v3h-2zm0 4h2v3h-2z'/%3E%3Cpath fill='black' d='M18.944 10.112C18.507 6.67 15.56 4 12 4C9.245 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.819 2 13c0 2.757 2.243 5 5 5v-2c-1.654 0-3-1.346-3-3c0-1.403 1.199-2.756 2.673-3.015l.582-.103l.191-.559C8.149 7.273 9.895 6 12 6c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-1v2h1c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888'/%3E%3C/svg%3E"); } .bx-cloud-light-rain { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 13h2v4H8zm0 5h2v2H8zm3-3h2v4h-2zm0 5h2v2h-2zm3-7h2v4h-2zm0 5h2v2h-2z'/%3E%3Cpath fill='black' d='M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.819 2 13c0 2.757 2.243 5 5 5v-2c-1.654 0-3-1.346-3-3c0-1.403 1.199-2.756 2.673-3.015l.581-.103l.192-.559C8.149 7.273 9.895 6 12 6c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-1v2h1c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888'/%3E%3C/svg%3E"); } .bx-cloud-lightning { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10 13l-1 5h2v4l3.975-6H13l1-3z'/%3E%3Cpath fill='black' d='M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.819 2 13c0 2.757 2.243 5 5 5v-2c-1.654 0-3-1.346-3-3c0-1.403 1.199-2.756 2.673-3.015l.581-.103l.192-.559C8.149 7.273 9.895 6 12 6c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-1v2h1c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888'/%3E%3C/svg%3E"); } .bx-cloud-rain { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 13h2v7H8zm3 2h2v7h-2zm3-2h2v7h-2z'/%3E%3Cpath fill='black' d='M18.944 10.113C18.507 6.671 15.56 4.001 12 4.001c-2.756 0-5.15 1.611-6.243 4.15C3.609 8.793 2 10.82 2 13.001c0 2.757 2.243 5 5 5v-2c-1.654 0-3-1.346-3-3c0-1.403 1.199-2.756 2.673-3.015l.581-.103l.192-.559C8.149 7.274 9.895 6.001 12 6.001c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-1v2h1c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888'/%3E%3C/svg%3E"); } .bx-cloud-snow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.819 2 13c0 2.757 2.243 5 5 5v-2c-1.654 0-3-1.346-3-3c0-1.403 1.199-2.756 2.673-3.015l.581-.103l.192-.559C8.149 7.273 9.895 6 12 6c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-1v2h1c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888'/%3E%3Ccircle cx='15' cy='16' r='1' fill='black'/%3E%3Ccircle cx='15' cy='19' r='1' fill='black'/%3E%3Ccircle cx='12' cy='18' r='1' fill='black'/%3E%3Ccircle cx='12' cy='21' r='1' fill='black'/%3E%3Ccircle cx='9' cy='19' r='1' fill='black'/%3E%3Ccircle cx='9' cy='16' r='1' fill='black'/%3E%3C/svg%3E"); } .bx-cloud-upload { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 19v-4h3l-4-5l-4 5h3v4z'/%3E%3Cpath fill='black' d='M7 19h2v-2H7c-1.654 0-3-1.346-3-3c0-1.404 1.199-2.756 2.673-3.015l.581-.102l.192-.558C8.149 8.274 9.895 7 12 7c2.757 0 5 2.243 5 5v1h1c1.103 0 2 .897 2 2s-.897 2-2 2h-3v2h3c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.611 5.757 9.15C3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5'/%3E%3C/svg%3E"); } .bx-code { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.293 6.293L2.586 12l5.707 5.707l1.414-1.414L5.414 12l4.293-4.293zm7.414 11.414L21.414 12l-5.707-5.707l-1.414 1.414L18.586 12l-4.293 4.293z'/%3E%3C/svg%3E"); } .bx-code-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m7.375 16.781l1.25-1.562L4.601 12l4.024-3.219l-1.25-1.562l-5 4a1 1 0 0 0 0 1.562zm9.25-9.562l-1.25 1.562L19.399 12l-4.024 3.219l1.25 1.562l5-4a1 1 0 0 0 0-1.562zm-1.649-4.003l-4 18l-1.953-.434l4-18z'/%3E%3C/svg%3E"); } .bx-code-block { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 19V7h16l.002 12z'/%3E%3Cpath fill='black' d='M9.293 9.293L5.586 13l3.707 3.707l1.414-1.414L8.414 13l2.293-2.293zm5.414 0l-1.414 1.414L15.586 13l-2.293 2.293l1.414 1.414L18.414 13z'/%3E%3C/svg%3E"); } .bx-code-curly { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 22h1v-2h-.989C8.703 19.994 6 19.827 6 16c0-1.993-.665-3.246-1.502-4C5.335 11.246 6 9.993 6 8c0-3.827 2.703-3.994 3-4h1V2H8.998C7.269 2.004 4 3.264 4 8c0 2.8-1.678 2.99-2.014 3L2 13c.082 0 2 .034 2 3c0 4.736 3.269 5.996 5 6m13-11c-.082 0-2-.034-2-3c0-4.736-3.269-5.996-5-6h-1v2h.989c.308.006 3.011.173 3.011 4c0 1.993.665 3.246 1.502 4c-.837.754-1.502 2.007-1.502 4c0 3.827-2.703 3.994-3 4h-1v2h1.002C16.731 21.996 20 20.736 20 16c0-2.8 1.678-2.99 2.014-3z'/%3E%3C/svg%3E"); } .bx-coffee { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 2h2v3H5zm4 0h2v3H9zm4 0h2v3h-2zm6 7h-2V7H3v11c0 1.654 1.346 3 3 3h8c1.654 0 3-1.346 3-3h2c1.103 0 2-.897 2-2v-5c0-1.103-.897-2-2-2m-4 9a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V9h10zm2-2v-5h2l.002 5z'/%3E%3C/svg%3E"); } .bx-coffee-togo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 22h10a1 1 0 0 0 .99-.858L19.867 8H21V6h-1.382l-1.724-3.447A1 1 0 0 0 17 2H7c-.379 0-.725.214-.895.553L4.382 6H3v2h1.133L6.01 21.142A1 1 0 0 0 7 22m10.418-11H6.582l-.429-3h11.693zm-9.551 9l-.429-3h9.123l-.429 3zM7.618 4h8.764l1 2H6.618z'/%3E%3C/svg%3E"); } .bx-cog { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 16c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4m0-6c1.084 0 2 .916 2 2s-.916 2-2 2s-2-.916-2-2s.916-2 2-2'/%3E%3Cpath fill='black' d='m2.845 16.136l1 1.73c.531.917 1.809 1.261 2.73.73l.529-.306A8 8 0 0 0 9 19.402V20c0 1.103.897 2 2 2h2c1.103 0 2-.897 2-2v-.598a8 8 0 0 0 1.896-1.111l.529.306c.923.53 2.198.188 2.731-.731l.999-1.729a2 2 0 0 0-.731-2.732l-.505-.292a7.7 7.7 0 0 0 0-2.224l.505-.292a2 2 0 0 0 .731-2.732l-.999-1.729c-.531-.92-1.808-1.265-2.731-.732l-.529.306A8 8 0 0 0 15 4.598V4c0-1.103-.897-2-2-2h-2c-1.103 0-2 .897-2 2v.598a8 8 0 0 0-1.896 1.111l-.529-.306c-.924-.531-2.2-.187-2.731.732l-.999 1.729a2 2 0 0 0 .731 2.732l.505.292a7.7 7.7 0 0 0 0 2.223l-.505.292a2.003 2.003 0 0 0-.731 2.733m3.326-2.758A5.7 5.7 0 0 1 6 12c0-.462.058-.926.17-1.378a1 1 0 0 0-.47-1.108l-1.123-.65l.998-1.729l1.145.662a1 1 0 0 0 1.188-.142a6.1 6.1 0 0 1 2.384-1.399A1 1 0 0 0 11 5.3V4h2v1.3a1 1 0 0 0 .708.956a6.1 6.1 0 0 1 2.384 1.399a1 1 0 0 0 1.188.142l1.144-.661l1 1.729l-1.124.649a1 1 0 0 0-.47 1.108c.112.452.17.916.17 1.378s-.058.925-.171 1.378a1 1 0 0 0 .471 1.108l1.123.649l-.998 1.729l-1.145-.661a1 1 0 0 0-1.188.142a6.1 6.1 0 0 1-2.384 1.399A1 1 0 0 0 13 18.7l.002 1.3H11v-1.3a1 1 0 0 0-.708-.956a6.1 6.1 0 0 1-2.384-1.399a.99.99 0 0 0-1.188-.141l-1.144.662l-1-1.729l1.124-.651a1 1 0 0 0 .471-1.108'/%3E%3C/svg%3E"); } .bx-coin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 6C7.03 6 2 7.546 2 10.5v4C2 17.454 7.03 19 12 19s10-1.546 10-4.5v-4C22 7.546 16.97 6 12 6m-8 8.5v-1.197a10 10 0 0 0 2 .86v1.881c-1.312-.514-2-1.126-2-1.544m12 .148v1.971c-.867.179-1.867.31-3 .358v-2a22 22 0 0 0 3-.329m-5 2.33a19 19 0 0 1-3-.358v-1.971c.959.174 1.972.287 3 .33zm7-.934v-1.881a10 10 0 0 0 2-.86V14.5c0 .418-.687 1.03-2 1.544M12 13c-5.177 0-8-1.651-8-2.5S6.823 8 12 8s8 1.651 8 2.5s-2.823 2.5-8 2.5'/%3E%3C/svg%3E"); } .bx-coin-stack { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c3.976 0 8-1.374 8-4V6c0-2.626-4.024-4-8-4S4 3.374 4 6v12c0 2.626 4.024 4 8 4m0-2c-3.722 0-6-1.295-6-2v-1.268C7.541 17.57 9.777 18 12 18s4.459-.43 6-1.268V18c0 .705-2.278 2-6 2m0-16c3.722 0 6 1.295 6 2s-2.278 2-6 2s-6-1.295-6-2s2.278-2 6-2M6 8.732C7.541 9.57 9.777 10 12 10s4.459-.43 6-1.268V10c0 .705-2.278 2-6 2s-6-1.295-6-2zm0 4C7.541 13.57 9.777 14 12 14s4.459-.43 6-1.268V14c0 .705-2.278 2-6 2s-6-1.295-6-2z'/%3E%3C/svg%3E"); } .bx-collapse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.121 6.465L14 4.344V10h5.656l-2.121-2.121l3.172-3.172l-1.414-1.414zM4.707 3.293L3.293 4.707l3.172 3.172L4.344 10H10V4.344L7.879 6.465zM19.656 14H14v5.656l2.121-2.121l3.172 3.172l1.414-1.414l-3.172-3.172zM6.465 16.121l-3.172 3.172l1.414 1.414l3.172-3.172L10 19.656V14H4.344z'/%3E%3C/svg%3E"); } .bx-collapse-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 15h7v7h2v-9H2zM15 2h-2v9h9V9h-7z'/%3E%3C/svg%3E"); } .bx-collapse-horizontal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.95 5.64L13.59 12l6.36 6.36l1.41-1.41L16.41 12l4.95-4.95zM2.64 7.05L7.59 12l-4.95 4.95l1.41 1.41L10.41 12L4.05 5.64z'/%3E%3C/svg%3E"); } .bx-collapse-vertical { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 7.59L7.05 2.64L5.64 4.05L12 10.41l6.36-6.36l-1.41-1.41zM5.64 19.95l1.41 1.41L12 16.41l4.95 4.95l1.41-1.41L12 13.59z'/%3E%3C/svg%3E"); } .bx-collection { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 10H5c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2M5 20v-8h14l.002 8zM5 6h14v2H5zm2-4h10v2H7z'/%3E%3C/svg%3E"); } .bx-color { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m0 13a3 3 0 1 1 3-3a3 3 0 0 1-3 3m2.75-7.17A5 5 0 0 0 13 7.1v-3a7.94 7.94 0 0 1 3.9 1.62zM11 7.1a5 5 0 0 0-1.75.73L7.1 5.69A7.94 7.94 0 0 1 11 4.07zM7.83 9.25A5 5 0 0 0 7.1 11h-3a7.94 7.94 0 0 1 1.59-3.9zM7.1 13a5 5 0 0 0 .73 1.75L5.69 16.9A7.94 7.94 0 0 1 4.07 13zm2.15 3.17a5 5 0 0 0 1.75.73v3a7.94 7.94 0 0 1-3.9-1.62zm3.75.73a5 5 0 0 0 1.75-.73l2.15 2.14a7.94 7.94 0 0 1-3.9 1.62zm3.17-2.15A5 5 0 0 0 16.9 13h3a7.94 7.94 0 0 1-1.62 3.9zM16.9 11a5 5 0 0 0-.73-1.75l2.14-2.15a7.94 7.94 0 0 1 1.62 3.9z'/%3E%3C/svg%3E"); } .bx-color-fill { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 13.998c-.092.065-2 2.083-2 3.5c0 1.494.949 2.448 2 2.5c.906.044 2-.891 2-2.5c0-1.5-1.908-3.435-2-3.5m-16.586-1c0 .534.208 1.036.586 1.414l5.586 5.586c.378.378.88.586 1.414.586s1.036-.208 1.414-.586l7-7l-.707-.707L11 4.584L8.707 2.291L7.293 3.705l2.293 2.293L4 11.584c-.378.378-.586.88-.586 1.414M11 7.412l5.586 5.586L11 18.584h.001l-.001 1v-1l-5.586-5.586z'/%3E%3C/svg%3E"); } .bx-columns { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.893 3.001H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h15.893c1.103 0 2-.897 2-2V5a2.003 2.003 0 0 0-2-1.999M8 19.001H4V8h4zm6 0h-4V8h4zm2 0V8h3.893l.001 11.001z'/%3E%3C/svg%3E"); } .bx-command { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 14c-2.206 0-4 1.794-4 4s1.794 4 4 4a4.003 4.003 0 0 0 3.998-3.98H10V16h4v2.039h.004A4 4 0 0 0 18 22c2.206 0 4-1.794 4-4s-1.794-4-4-4h-2v-4h2c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4v2h-4V5.98h-.002A4.003 4.003 0 0 0 6 2C3.794 2 2 3.794 2 6s1.794 4 4 4h2v4zm2 4c0 1.122-.879 2-2 2s-2-.878-2-2s.879-2 2-2h2zm10-2c1.121 0 2 .878 2 2s-.879 2-2 2s-2-.878-2-2v-2zM16 6c0-1.122.879-2 2-2s2 .878 2 2s-.879 2-2 2h-2zM6 8c-1.121 0-2-.878-2-2s.879-2 2-2s2 .878 2 2v2zm4 2h4v4h-4z'/%3E%3C/svg%3E"); } .bx-comment { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3C/svg%3E"); } .bx-comment-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 14h2v-3h3V9h-3V6h-2v3H8v2h3z'/%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3C/svg%3E"); } .bx-comment-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m17.207 8.207l-1.414-1.414L11 11.586L8.707 9.293l-1.414 1.414L11 14.414z'/%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3C/svg%3E"); } .bx-comment-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 7h10v2H7zm0 4h7v2H7z'/%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3C/svg%3E"); } .bx-comment-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3Ccircle cx='15' cy='10' r='2' fill='black'/%3E%3Ccircle cx='9' cy='10' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-comment-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m13.771 9.123l-1.399-1.398l-3.869 3.864v1.398h1.398zM14.098 6l1.398 1.398l-1.067 1.067l-1.398-1.398z'/%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3C/svg%3E"); } .bx-comment-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 6h2v5h-2zm0 6h2v2h-2z'/%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3C/svg%3E"); } .bx-comment-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 9h8v2H8z'/%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3C/svg%3E"); } .bx-comment-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.707 13.707L12 11.414l2.293 2.293l1.414-1.414L13.414 10l2.293-2.293l-1.414-1.414L12 8.586L9.707 6.293L8.293 7.707L10.586 10l-2.293 2.293z'/%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l5.333-4H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14H6.667L4 18V4h16z'/%3E%3C/svg%3E"); } .bx-compass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='m8 16l5.991-2L16 8l-6 2z'/%3E%3C/svg%3E"); } .bx-confused { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.493' cy='10.493' r='1.493' fill='black'/%3E%3Cpath fill='black' d='m8.124 16.992l-.248-1.984l8-1l.248 1.984z'/%3E%3C/svg%3E"); } .bx-conversation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 14h.5c.827 0 1.5-.673 1.5-1.5v-9c0-.827-.673-1.5-1.5-1.5h-13C2.673 2 2 2.673 2 3.5V18l5.333-4zm-9.333-2L4 14V4h12v8z'/%3E%3Cpath fill='black' d='M20.5 8H20v6.001c0 1.1-.893 1.993-1.99 1.999H8v.5c0 .827.673 1.5 1.5 1.5h7.167L22 22V9.5c0-.827-.673-1.5-1.5-1.5'/%3E%3C/svg%3E"); } .bx-cookie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.598 11.064a1 1 0 0 0-.854-.172A3 3 0 0 1 20 11c-1.654 0-3-1.346-3.003-2.937c.005-.034.016-.136.017-.17a.998.998 0 0 0-1.254-1.006A3 3 0 0 1 15 7c-1.654 0-3-1.346-3-3c0-.217.031-.444.099-.716a1 1 0 0 0-1.067-1.236A9.956 9.956 0 0 0 2 12c0 5.514 4.486 10 10 10s10-4.486 10-10c0-.049-.003-.097-.007-.16a1 1 0 0 0-.395-.776M12 20c-4.411 0-8-3.589-8-8a7.96 7.96 0 0 1 6.006-7.75A5.006 5.006 0 0 0 15 9l.101-.001a5.01 5.01 0 0 0 4.837 4C19.444 16.941 16.073 20 12 20'/%3E%3Ccircle cx='12.5' cy='11.5' r='1.5' fill='black'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5' fill='black'/%3E%3Ccircle cx='7.5' cy='12.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.5' cy='15.5' r='1.5' fill='black'/%3E%3Ccircle cx='10.5' cy='16.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-cool { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14.683 14.828a4.1 4.1 0 0 1-1.272.858a4 4 0 0 1-4.875-1.45l-1.658 1.119a6.1 6.1 0 0 0 1.621 1.62a6 6 0 0 0 2.148.903a6.04 6.04 0 0 0 3.542-.35a6 6 0 0 0 1.907-1.284c.272-.271.52-.571.734-.889l-1.658-1.119a4 4 0 0 1-.489.592'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 2c2.953 0 5.531 1.613 6.918 4H5.082C6.469 5.613 9.047 4 12 4m0 16c-4.411 0-8-3.589-8-8c0-.691.098-1.359.264-2H5v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2h2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h.736c.166.641.264 1.309.264 2c0 4.411-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-copy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H10c-1.103 0-2 .897-2 2v4H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2v-4h4c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M4 20V10h10l.002 10zm16-6h-4v-4c0-1.103-.897-2-2-2h-4V4h10z'/%3E%3C/svg%3E"); } .bx-copy-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H10c-1.103 0-2 .897-2 2v4H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2v-4h4c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M4 20V10h10l.002 10zm16-6h-4v-4c0-1.103-.897-2-2-2h-4V4h10z'/%3E%3Cpath fill='black' d='M6 12h6v2H6zm0 4h6v2H6z'/%3E%3C/svg%3E"); } .bx-copyright { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c5.421 0 10-4.579 10-10S17.421 2 12 2S2 6.579 2 12s4.579 10 10 10m0-18c4.337 0 8 3.663 8 8s-3.663 8-8 8s-8-3.663-8-8s3.663-8 8-8'/%3E%3Cpath fill='black' d='M12 17c.901 0 2.581-.168 3.707-1.292l-1.414-1.416C13.85 14.735 12.992 15 12 15c-1.626 0-3-1.374-3-3s1.374-3 3-3c.993 0 1.851.265 2.293.707l1.414-1.414C14.582 7.168 12.901 7 12 7c-2.757 0-5 2.243-5 5s2.243 5 5 5'/%3E%3C/svg%3E"); } .bx-credit-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M4 6h16v2H4zm0 12v-6h16.001l.001 6z'/%3E%3Cpath fill='black' d='M6 14h6v2H6z'/%3E%3C/svg%3E"); } .bx-credit-card-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='15.5' cy='13.5' r='2.5' fill='black'/%3E%3Cpath fill='black' d='M12 13.5c0-.815.396-1.532 1-1.988A2.47 2.47 0 0 0 11.5 11a2.5 2.5 0 1 0 0 5a2.47 2.47 0 0 0 1.5-.512a2.49 2.49 0 0 1-1-1.988'/%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M4 18V6h16l.002 12z'/%3E%3C/svg%3E"); } .bx-credit-card-front { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M4 18V6h16l.001 12z'/%3E%3Cpath fill='black' d='M6.5 11h3a.5.5 0 0 0 .5-.5v-2a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 .5.5M6 14h6v2.001H6zm7 0h5v2.001h-5z'/%3E%3C/svg%3E"); } .bx-cricket-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.07 4.93A10 10 0 0 0 4.93 19.07A10 10 0 0 0 19.07 4.93M6.34 6.34a8 8 0 0 1 8.78-1.71l-.29.3l.71.71l.52-.53a10 10 0 0 1 .84.57L5.68 16.9a10 10 0 0 1-.57-.84l.53-.52l-.71-.71l-.29.29a8 8 0 0 1 1.7-8.78m11.32 11.32a8 8 0 0 1-8.78 1.71l.29-.3l-.71-.71l-.52.53a10 10 0 0 1-.84-.57L18.32 7.1a10 10 0 0 1 .57.84l-.53.52l.71.71l.29-.29a8 8 0 0 1-1.7 8.78m-6.37-2.12l.71.7l-1.41 1.42l-.71-.66zm2.83-2.83l.71.7l-1.42 1.42l-.7-.71zM17 9.88l.71.71L16.24 12l-.7-.71zm-4.29-1.42l-.71-.7l1.41-1.42l.71.71zm-2.83 2.83l-.71-.7l1.42-1.42l.7.71zm-2.83 2.83l-.71-.71L7.76 12l.7.71z'/%3E%3C/svg%3E"); } .bx-crop { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 7c0-1.103-.897-2-2-2H7V2H5v3H2v2h15v15h2v-3h3v-2h-3z'/%3E%3Cpath fill='black' d='M5 9v8c0 1.103.897 2 2 2h8v-2H7V9z'/%3E%3C/svg%3E"); } .bx-cross { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 2h2v7h-2zm0 13h2v7h-2zm4-4h7v2h-7zM2 11h7v2H2z'/%3E%3C/svg%3E"); } .bx-crosshair { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m1 17.931V17h-2v2.931A8.01 8.01 0 0 1 4.069 13H7v-2H4.069A8.01 8.01 0 0 1 11 4.069V7h2V4.069A8.01 8.01 0 0 1 19.931 11H17v2h2.931A8.01 8.01 0 0 1 13 19.931'/%3E%3C/svg%3E"); } .bx-crown { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.219 3.375L8 7.399L4.781 3.375A1.002 1.002 0 0 0 3 4v15c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V4a1.002 1.002 0 0 0-1.781-.625L16 7.399l-3.219-4.024c-.381-.474-1.181-.474-1.562 0M5 19v-2h14.001v2zm10.219-9.375c.381.475 1.182.475 1.563 0L19 6.851L19.001 15H5V6.851l2.219 2.774c.381.475 1.182.475 1.563 0L12 5.601z'/%3E%3C/svg%3E"); } .bx-cube { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.406 6.086l-9-4a1 1 0 0 0-.813 0l-9 4c-.02.009-.034.024-.054.035c-.028.014-.058.023-.084.04c-.022.015-.039.034-.06.05a.9.9 0 0 0-.19.194q-.031.04-.059.081a1 1 0 0 0-.076.165c-.009.027-.023.052-.031.079A1 1 0 0 0 2 7v10c0 .396.232.753.594.914l9 4c.13.058.268.086.406.086a1 1 0 0 0 .402-.096l.004.01l9-4A1 1 0 0 0 22 17V7a1 1 0 0 0-.594-.914M12 4.095L18.538 7L12 9.905l-1.308-.581L5.463 7zM4 16.351V8.539l7 3.111v7.811zm9 3.11V11.65l7-3.111v7.812z'/%3E%3C/svg%3E"); } .bx-cube-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.895 3.553A1 1 0 0 0 17 3H7c-.379 0-.725.214-.895.553l-4 8a1 1 0 0 0 0 .895l4 8c.17.338.516.552.895.552h10c.379 0 .725-.214.895-.553l4-8a1 1 0 0 0 0-.895zM19.382 11h-7.764l-3-6h7.764zM4.118 12L7 6.236L9.882 12L7 17.764zm12.264 7H8.618l3-6h7.764z'/%3E%3C/svg%3E"); } .bx-cuboid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.707 2.293A1 1 0 0 0 16 2H8c-.414 0-.785.255-.934.641l-5 13a1 1 0 0 0 .227 1.066l5 5A1 1 0 0 0 8 22h8c.414 0 .785-.255.934-.641l5-13a1 1 0 0 0-.227-1.066zM18.585 7h-5.171l-3-3h5.172zM8.381 4.795l3.438 3.438l-4.462 10.71l-3.19-3.191zM15.313 20h-6.23l4.583-11h5.878z'/%3E%3C/svg%3E"); } .bx-current-location { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='4' fill='black'/%3E%3Cpath fill='black' d='M13 4.069V2h-2v2.069A8.01 8.01 0 0 0 4.069 11H2v2h2.069A8.01 8.01 0 0 0 11 19.931V22h2v-2.069A8.01 8.01 0 0 0 19.931 13H22v-2h-2.069A8.01 8.01 0 0 0 13 4.069M12 18c-3.309 0-6-2.691-6-6s2.691-6 6-6s6 2.691 6 6s-2.691 6-6 6'/%3E%3C/svg%3E"); } .bx-customize { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 11h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m1-6h4v4H5zm15-2h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-1 6h-4V5h4zm-9 12a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1zm-5-6h4v4H5zm13-1h-2v2h-2v2h2v2h2v-2h2v-2h-2z'/%3E%3C/svg%3E"); } .bx-cut { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 6.5C10 4.57 8.43 3 6.5 3S3 4.57 3 6.5S4.57 10 6.5 10a3.45 3.45 0 0 0 1.613-.413l2.357 2.528l-2.318 2.318A3.46 3.46 0 0 0 6.5 14C4.57 14 3 15.57 3 17.5S4.57 21 6.5 21s3.5-1.57 3.5-3.5c0-.601-.166-1.158-.434-1.652l2.269-2.268L17 19.121a3 3 0 0 0 2.121.879H22L9.35 8.518c.406-.572.65-1.265.65-2.018M6.5 8C5.673 8 5 7.327 5 6.5S5.673 5 6.5 5S8 5.673 8 6.5S7.327 8 6.5 8m0 11c-.827 0-1.5-.673-1.5-1.5S5.673 16 6.5 16s1.5.673 1.5 1.5S7.327 19 6.5 19'/%3E%3Cpath fill='black' d='m17 4.879l-3.707 4.414l1.414 1.414L22 4h-2.879A3 3 0 0 0 17 4.879'/%3E%3C/svg%3E"); } .bx-cycling { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 15.414V20h2v-4.586c0-.526-.214-1.042-.586-1.414l-2-2L13 9.414l2 2c.372.372.888.586 1.414.586H20v-2h-3.586l-3.707-3.707a1 1 0 0 0-1.414 0L8 9.586c-.378.378-.586.88-.586 1.414s.208 1.036.586 1.414z'/%3E%3Ccircle cx='16' cy='5' r='2' fill='black'/%3E%3Cpath fill='black' d='M18 14c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4m0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2M6 22c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4m0-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2'/%3E%3C/svg%3E"); } .bx-cylinder { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c5.131 0 9-1.935 9-4.5V7h-.053q.051-.245.053-.5C21 3.935 17.131 2 12 2C7.209 2 3.52 3.688 3.053 6H3v11.5c0 2.565 3.869 4.5 9 4.5m0-2c-4.273 0-7-1.48-7-2.5V9.394C6.623 10.387 9.111 11 12 11s5.377-.613 7-1.606V17.5c0 1.02-2.727 2.5-7 2.5m0-16c4.273 0 7 1.48 7 2.5S16.273 9 12 9S5 7.52 5 6.5S7.727 4 12 4'/%3E%3C/svg%3E"); } .bx-data { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 17V7c0-2.168-3.663-4-8-4S4 4.832 4 7v10c0 2.168 3.663 4 8 4s8-1.832 8-4M12 5c3.691 0 5.931 1.507 6 1.994C17.931 7.493 15.691 9 12 9S6.069 7.493 6 7.006C6.069 6.507 8.309 5 12 5M6 9.607C7.479 10.454 9.637 11 12 11s4.521-.546 6-1.393v2.387c-.069.499-2.309 2.006-6 2.006s-5.931-1.507-6-2zM6 17v-2.393C7.479 15.454 9.637 16 12 16s4.521-.546 6-1.393v2.387c-.069.499-2.309 2.006-6 2.006s-5.931-1.507-6-2'/%3E%3C/svg%3E"); } .bx-desktop { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h7v2H8v2h8v-2h-3v-2h7c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 14V5h16l.002 9z'/%3E%3C/svg%3E"); } .bx-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 19V5h16l.002 14z'/%3E%3Cpath fill='black' d='M6 7h12v2H6zm0 4h12v2H6zm0 4h6v2H6z'/%3E%3C/svg%3E"); } .bx-devices { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H7c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h6c1.103 0 2-.897 2-2h8c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M9.997 19H4V9h6zm10-2H12V9c0-1.103-.897-2-2-2H7V5h13z'/%3E%3C/svg%3E"); } .bx-dialpad { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 3h4v3h-4zm0 5h4v3h-4zm0 5h4v3h-4zm6-10h4v3h-4zm0 5h4v3h-4zm0 5h4v3h-4zM4 3h4v3H4zm0 5h4v3H4zm0 5h4v3H4zm6 5h4v3h-4z'/%3E%3C/svg%3E"); } .bx-dialpad-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='6' r='2' fill='black'/%3E%3Ccircle cx='6' cy='6' r='2' fill='black'/%3E%3Ccircle cx='18' cy='6' r='2' fill='black'/%3E%3Ccircle cx='12' cy='12' r='2' fill='black'/%3E%3Ccircle cx='6' cy='12' r='2' fill='black'/%3E%3Ccircle cx='18' cy='12' r='2' fill='black'/%3E%3Ccircle cx='12' cy='18' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-diamond { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.813 3.838A2 2 0 0 0 16.187 3H7.813c-.644 0-1.252.313-1.667.899l-4 6.581a1 1 0 0 0 .111 1.188l9 10a.995.995 0 0 0 1.486.001l9-10a1 1 0 0 0 .111-1.188zM12 19.505L5.245 12h13.509zM4.777 10l3.036-5l8.332-.062L19.222 10z'/%3E%3C/svg%3E"); } .bx-dice-1 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-dice-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3Ccircle cx='9.5' cy='12' r='1.5' fill='black'/%3E%3Ccircle cx='14.5' cy='12' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-dice-3 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3Ccircle cx='8' cy='8' r='1.5' fill='black'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='black'/%3E%3Ccircle cx='16' cy='16' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-dice-4 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3Ccircle cx='8' cy='8' r='1.5' fill='black'/%3E%3Ccircle cx='16' cy='16' r='1.5' fill='black'/%3E%3Ccircle cx='8' cy='16' r='1.5' fill='black'/%3E%3Ccircle cx='16' cy='8' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-dice-5 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3Ccircle cx='8' cy='8' r='1.5' fill='black'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='black'/%3E%3Ccircle cx='16' cy='16' r='1.5' fill='black'/%3E%3Ccircle cx='8' cy='16' r='1.5' fill='black'/%3E%3Ccircle cx='16' cy='8' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-dice-6 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3Ccircle cx='8' cy='8' r='1.5' fill='black'/%3E%3Ccircle cx='8' cy='12' r='1.5' fill='black'/%3E%3Ccircle cx='16' cy='12' r='1.5' fill='black'/%3E%3Ccircle cx='16' cy='16' r='1.5' fill='black'/%3E%3Ccircle cx='8' cy='16' r='1.5' fill='black'/%3E%3Ccircle cx='16' cy='8' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-directions { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.781 13.875l-2-2.5A1 1 0 0 0 19 11h-6V9h6c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5a1 1 0 0 0-.781.375l-2 2.5a1 1 0 0 0 0 1.25l2 2.5A1 1 0 0 0 5 9h6v2H5c-1.103 0-2 .897-2 2v3c0 1.103.897 2 2 2h6v4h2v-4h6a1 1 0 0 0 .781-.375l2-2.5a1 1 0 0 0 0-1.25M4.281 5.5L5.48 4H19l.002 3H5.48zM18.52 16H5v-3h13.52l1.2 1.5z'/%3E%3C/svg%3E"); } .bx-disc { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m0 18a8 8 0 1 1 8-8a8 8 0 0 1-8 8'/%3E%3Cpath fill='black' d='M12 8a4 4 0 1 0 4 4a4 4 0 0 0-4-4m0 6a2 2 0 1 1 2-2a2 2 0 0 1-2 2'/%3E%3C/svg%3E"); } .bx-dish { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 15c0-4.625-3.507-8.441-8-8.941V4h-2v2.059c-4.493.5-8 4.316-8 8.941v2h18zM5 15c0-3.859 3.141-7 7-7s7 3.141 7 7zm-3 3h20v2H2z'/%3E%3C/svg%3E"); } .bx-dislike { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H6.693A2.01 2.01 0 0 0 4.82 4.298l-2.757 7.351A1 1 0 0 0 2 12v2c0 1.103.897 2 2 2h5.612L8.49 19.367a2 2 0 0 0 .274 1.802c.376.52.982.831 1.624.831H12c.297 0 .578-.132.769-.36l4.7-5.64H20c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m-8.469 17h-1.145l1.562-4.684A1 1 0 0 0 11 14H4v-1.819L6.693 5H16v9.638zM18 14V5h2l.001 9z'/%3E%3C/svg%3E"); } .bx-dizzy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M10.707 12.293L9.414 11l1.293-1.293l-1.414-1.414L8 9.586L6.707 8.293L5.293 9.707L6.586 11l-1.293 1.293l1.414 1.414L8 12.414l1.293 1.293zm6.586-4L16 9.586l-1.293-1.293l-1.414 1.414L14.586 11l-1.293 1.293l1.414 1.414L16 12.414l1.293 1.293l1.414-1.414L17.414 11l1.293-1.293zM10 16h4v2h-4z'/%3E%3C/svg%3E"); } .bx-dna { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.794 11.09q.498-.394.947-.84l.136-.142q.426-.438.801-.919l.062-.075c.255-.335.486-.688.702-1.049l.128-.22c.205-.364.395-.737.559-1.123c.02-.047.035-.095.055-.142q.22-.542.383-1.109q.033-.105.063-.211q.16-.604.251-1.229q.018-.13.032-.263c.051-.432.087-.869.087-1.311V2h-2v.457c0 .184-.031.361-.042.543H6.022C6.012 2.819 6 2.64 6 2.457V2H4v.457c0 4.876 3.269 9.218 7.952 10.569l.028.009c2.881.823 5.056 3.146 5.769 5.965H6.251l.799-2h7.607a7.4 7.4 0 0 0-2.063-2h-4c.445-.424.956-.774 1.491-1.09a10 10 0 0 1-2.08-1.014C5.55 14.812 4 17.779 4 21.015V23h2v-1.985L6.001 21h11.998l.001.015V23h2v-1.985c0-3.83-2.159-7.303-5.443-9.07a11 11 0 0 0 1.072-.729zm-1.19-1.604a9 9 0 0 1-2.325 1.348q-.138.052-.278.102A8.95 8.95 0 0 1 8.836 9h6.292c-.171.161-.332.333-.517.48zM17.619 5l-.012.049l-.044.151a9 9 0 0 1-.513 1.252c-.096.19-.213.365-.321.548h-9.48a9 9 0 0 1-.871-2z'/%3E%3C/svg%3E"); } .bx-dock-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v9H5V5zM5 19v-3h14v3z'/%3E%3C/svg%3E"); } .bx-dock-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M5 5h3v14H5zm5 14V5h9v14z'/%3E%3C/svg%3E"); } .bx-dock-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M5 5h9v14H5zm11 14V5h3v14z'/%3E%3C/svg%3E"); } .bx-dock-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v3H5V5zM5 19v-9h14v9z'/%3E%3C/svg%3E"); } .bx-dollar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.999 8.5h2c0-2.837-2.755-4.131-5-4.429V2h-2v2.071c-2.245.298-5 1.592-5 4.429c0 2.706 2.666 4.113 5 4.43v4.97c-1.448-.251-3-1.024-3-2.4h-2c0 2.589 2.425 4.119 5 4.436V22h2v-2.07c2.245-.298 5-1.593 5-4.43s-2.755-4.131-5-4.429V6.1c1.33.239 3 .941 3 2.4m-8 0c0-1.459 1.67-2.161 3-2.4v4.799c-1.371-.253-3-1.002-3-2.399m8 7c0 1.459-1.67 2.161-3 2.4v-4.8c1.33.239 3 .941 3 2.4'/%3E%3C/svg%3E"); } .bx-dollar-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m0 18a8 8 0 1 1 8-8a8 8 0 0 1-8 8'/%3E%3Cpath fill='black' d='M12 11c-2 0-2-.63-2-1s.7-1 2-1s1.39.64 1.4 1h2A3 3 0 0 0 13 7.12V6h-2v1.09C9 7.42 8 8.71 8 10c0 1.12.52 3 4 3c2 0 2 .68 2 1s-.62 1-2 1c-1.84 0-2-.86-2-1H8c0 .92.66 2.55 3 2.92V18h2v-1.08c2-.34 3-1.63 3-2.92c0-1.12-.52-3-4-3'/%3E%3C/svg%3E"); } .bx-donate-blood { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 21h9.62a4 4 0 0 0 3.037-1.397l5.102-5.952a1 1 0 0 0-.442-1.6l-1.968-.656a3.04 3.04 0 0 0-2.823.503l-3.185 2.547l-.617-1.235A3.98 3.98 0 0 0 9.146 11H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2m0-8h5.146c.763 0 1.448.423 1.789 1.105l.447.895H7v2h6.014a1 1 0 0 0 .442-.11l.003-.001l.004-.002h.003l.002-.001h.004l.001-.001c.011.003.003-.001.003-.001c.012 0 .002-.001.002-.001h.001l.002-.001l.003-.001l.002-.001l.002-.001l.003-.001l.002-.001l.002-.001l.003-.002l.002-.001l.002-.001l.003-.001l.002-.001h.001l.002-.001h.001l.002-.001l.002-.001c.011-.001.003-.001.003-.001l.002-.001a1 1 0 0 0 .11-.078l4.146-3.317c.261-.208.623-.273.94-.167l.557.186l-4.133 4.823a2.03 2.03 0 0 1-1.52.688H4zm9.761-10.674C13.3 2.832 11 5.457 11 7.5c0 1.93 1.57 3.5 3.5 3.5S18 9.43 18 7.5c0-2.043-2.3-4.668-2.761-5.174c-.379-.416-1.099-.416-1.478 0M16 7.5c0 .827-.673 1.5-1.5 1.5S13 8.327 13 7.5c0-.708.738-1.934 1.5-2.934c.762 1 1.5 2.226 1.5 2.934'/%3E%3C/svg%3E"); } .bx-donate-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 21h9.62a4 4 0 0 0 3.037-1.397l5.102-5.952a1 1 0 0 0-.442-1.6l-1.968-.656a3.04 3.04 0 0 0-2.823.503l-3.185 2.547l-.617-1.235A3.98 3.98 0 0 0 9.146 11H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2m0-8h5.146c.763 0 1.448.423 1.789 1.105l.447.895H7v2h6.014a1 1 0 0 0 .442-.11l.003-.001l.004-.002h.003l.002-.001h.004l.001-.001c.009.003.003-.001.003-.001c.01 0 .002-.001.002-.001h.001l.002-.001l.003-.001l.002-.001l.002-.001l.003-.001l.002-.001c.003 0 .001-.001.002-.001l.003-.002l.002-.001l.002-.001l.003-.001l.002-.001h.001l.002-.001h.001l.002-.001l.002-.001c.009-.001.003-.001.003-.001l.002-.001a1 1 0 0 0 .11-.078l4.146-3.317c.262-.208.623-.273.94-.167l.557.186l-4.133 4.823a2.03 2.03 0 0 1-1.52.688H4zM16 2h-.017c-.163.002-1.006.039-1.983.705c-.951-.648-1.774-.7-1.968-.704L12.002 2h-.004c-.801 0-1.555.313-2.119.878C9.313 3.445 9 4.198 9 5s.313 1.555.861 2.104l3.414 3.586a1.006 1.006 0 0 0 1.45-.001l3.396-3.568C18.688 6.555 19 5.802 19 5s-.313-1.555-.878-2.121A2.98 2.98 0 0 0 16.002 2zm1 3c0 .267-.104.518-.311.725L14 8.55l-2.707-2.843C11.104 5.518 11 5.267 11 5s.104-.518.294-.708A.98.98 0 0 1 11.979 4c.025.001.502.032 1.067.485q.121.098.247.222l.707.707l.707-.707q.126-.124.247-.222c.529-.425.976-.478 1.052-.484a1 1 0 0 1 .701.292c.189.189.293.44.293.707'/%3E%3C/svg%3E"); } .bx-door-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.385 21.788a1 1 0 0 0 .857.182l8-2A1 1 0 0 0 20 19V5a1 1 0 0 0-.758-.97l-8-2A1.003 1.003 0 0 0 10 3v1H6a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h4v1c0 .308.142.599.385.788M12 4.281l6 1.5v12.438l-6 1.5zM7 18V6h3v12z'/%3E%3Cpath fill='black' d='M14.242 13.159c.446-.112.758-.512.758-.971v-.377a1 1 0 1 0-2 .001v.377a1 1 0 0 0 1.242.97'/%3E%3C/svg%3E"); } .bx-dots-horizontal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 10h4v4h-4zm6 0h4v4h-4zM4 10h4v4H4z'/%3E%3C/svg%3E"); } .bx-dots-horizontal-rounded { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 10c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2m6 0c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2M6 10c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2'/%3E%3C/svg%3E"); } .bx-dots-vertical { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 10h4v4h-4zm0-6h4v4h-4zm0 12h4v4h-4z'/%3E%3C/svg%3E"); } .bx-dots-vertical-rounded { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 10c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2m0-6c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2m0 12c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2'/%3E%3C/svg%3E"); } .bx-doughnut-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m7.931 9h-3.032A5.01 5.01 0 0 0 13 7.102V4.069A8.01 8.01 0 0 1 19.931 11M12 9c1.654 0 3 1.346 3 3s-1.346 3-3 3s-3-1.346-3-3s1.346-3 3-3m0 11c-4.411 0-8-3.589-8-8c0-4.072 3.061-7.436 7-7.931v3.032A5.01 5.01 0 0 0 7 12c0 2.757 2.243 5 5 5a5.01 5.01 0 0 0 4.898-4h3.032c-.494 3.939-3.858 7-7.93 7'/%3E%3C/svg%3E"); } .bx-down-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.886 5.536A1 1 0 0 0 21 5H3a1.002 1.002 0 0 0-.822 1.569l9 13a.998.998 0 0 0 1.644 0l9-13a1 1 0 0 0 .064-1.033M12 17.243L4.908 7h14.184z'/%3E%3C/svg%3E"); } .bx-down-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m18.707 12.707l-1.414-1.414L13 15.586V6h-2v9.586l-4.293-4.293l-1.414 1.414L12 19.414z'/%3E%3C/svg%3E"); } .bx-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 1.993C6.486 1.994 2 6.48 2 11.994s4.486 9.999 10 10s10-4.486 10-10s-4.485-10-10-10.001m0 18.001c-4.411-.001-8-3.59-8-8s3.589-8 8-8.001c4.411.001 8 3.59 8 8.001s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M13 8h-2v4H7.991l4.005 4.005L16 12h-3z'/%3E%3C/svg%3E"); } .bx-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 16l4-5h-3V4h-2v7H8z'/%3E%3Cpath fill='black' d='M20 18H4v-7H2v7c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-7h-2z'/%3E%3C/svg%3E"); } .bx-downvote { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.901 10.566A1 1 0 0 0 20 10h-4V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v7H4a1.001 1.001 0 0 0-.781 1.625l8 10a1 1 0 0 0 1.562 0l8-10c.24-.301.286-.712.12-1.059M12 19.399L6.081 12H10V4h4v8h3.919z'/%3E%3C/svg%3E"); } .bx-drink { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.832 4.555A1 1 0 0 0 20 3H4a1 1 0 0 0-.832 1.554L11 16.303V20H8v2h8v-2h-3v-3.697zM12 14.197L8.535 9h6.93zM18.132 5l-1.333 2H7.201L5.868 5z'/%3E%3C/svg%3E"); } .bx-droplet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c4.636 0 8-3.468 8-8.246C20 7.522 12.882 2.4 12.579 2.185a1 1 0 0 0-1.156-.001C11.12 2.397 4 7.503 4 13.75C4 18.53 7.364 22 12 22m-.001-17.74C13.604 5.55 18 9.474 18 13.754C18 17.432 15.532 20 12 20s-6-2.57-6-6.25c0-4.29 4.394-8.203 5.999-9.49'/%3E%3C/svg%3E"); } .bx-dumbbell { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 5v14h3v-6h6v6h3V5h-3v6H9V5zM3 15a1 1 0 0 0 1 1h1V8H4a1 1 0 0 0-1 1v2H2v2h1zm18-6a1 1 0 0 0-1-1h-1v8h1a1 1 0 0 0 1-1v-2h1v-2h-1z'/%3E%3C/svg%3E"); } .bx-duplicate { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 10H9v3H6v2h3v3h2v-3h3v-2h-3z'/%3E%3Cpath fill='black' d='M4 22h12c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2M4 8h12l.002 12H4z'/%3E%3Cpath fill='black' d='M20 2H8v2h12v12h2V4c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bx-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m7 17.013l4.413-.015l9.632-9.54c.378-.378.586-.88.586-1.414s-.208-1.036-.586-1.414l-1.586-1.586c-.756-.756-2.075-.752-2.825-.003L7 12.583zM18.045 4.458l1.589 1.583l-1.597 1.582l-1.586-1.585zM9 13.417l6.03-5.973l1.586 1.586l-6.029 5.971L9 15.006z'/%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2v-8.668l-2 2V19H8.158c-.026 0-.053.01-.079.01c-.033 0-.066-.009-.1-.01H5V5h6.847l2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bx-edit-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.045 7.401c.378-.378.586-.88.586-1.414s-.208-1.036-.586-1.414l-1.586-1.586c-.378-.378-.88-.586-1.414-.586s-1.036.208-1.413.585L4 13.585V18h4.413zm-3-3l1.587 1.585l-1.59 1.584l-1.586-1.585zM6 16v-1.585l7.04-7.018l1.586 1.586L7.587 16zm-2 4h16v2H4z'/%3E%3C/svg%3E"); } .bx-envelope { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m0 2v.511l-8 6.223l-8-6.222V6zM4 18V9.044l7.386 5.745a.994.994 0 0 0 1.228 0L20 9.044L20.002 18z'/%3E%3C/svg%3E"); } .bx-envelope-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.555 8.168l-9-6a1 1 0 0 0-1.109 0l-9 6A1 1 0 0 0 2 9v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V9c0-.334-.167-.646-.445-.832M12 4.202L19.197 9L12 13.798L4.803 9zM4 20v-9.131l7.445 4.963a1 1 0 0 0 1.11 0L20 10.869L19.997 20z'/%3E%3C/svg%3E"); } .bx-equalizer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 9h2v6h-2zm4-3h2v12h-2zM7 4h2v16H7zm12 7h2v2h-2zM3 10h2v4H3z'/%3E%3C/svg%3E"); } .bx-eraser { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2.586 15.408l4.299 4.299a1 1 0 0 0 .707.293h12.001v-2h-6.958l7.222-7.222c.78-.779.78-2.049 0-2.828L14.906 3a2.003 2.003 0 0 0-2.828 0l-4.75 4.749l-4.754 4.843a2.007 2.007 0 0 0 .012 2.816M13.492 4.414l4.95 4.95l-2.586 2.586L10.906 7zM8.749 9.156l.743-.742l4.95 4.95l-4.557 4.557a1 1 0 0 0-.069.079h-1.81l-4.005-4.007z'/%3E%3C/svg%3E"); } .bx-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.001 10h2v5h-2zM11 16h2v2h-2z'/%3E%3Cpath fill='black' d='M13.768 4.2C13.42 3.545 12.742 3.138 12 3.138s-1.42.407-1.768 1.063L2.894 18.064a1.99 1.99 0 0 0 .054 1.968A1.98 1.98 0 0 0 4.661 21h14.678c.708 0 1.349-.362 1.714-.968a1.99 1.99 0 0 0 .054-1.968zM4.661 19L12 5.137L19.344 19z'/%3E%3C/svg%3E"); } .bx-error-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 7h2v7h-2zm0 8h2v2h-2z'/%3E%3Cpath fill='black' d='m21.707 7.293l-5-5A1 1 0 0 0 16 2H8a1 1 0 0 0-.707.293l-5 5A1 1 0 0 0 2 8v8c0 .266.105.52.293.707l5 5A1 1 0 0 0 8 22h8c.266 0 .52-.105.707-.293l5-5A1 1 0 0 0 22 16V8a1 1 0 0 0-.293-.707M20 15.586L15.586 20H8.414L4 15.586V8.414L8.414 4h7.172L20 8.414z'/%3E%3C/svg%3E"); } .bx-error-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.953 2C6.465 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.493 2 11.953 2M12 20c-4.411 0-8-3.589-8-8s3.567-8 7.953-8C16.391 4 20 7.589 20 12s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M11 7h2v7h-2zm0 8h2v2h-2z'/%3E%3C/svg%3E"); } .bx-euro { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.464 6c1.43 0 2.779.613 3.799 1.726l1.475-1.352C17.334 4.843 15.461 4 13.464 4c-1.998 0-3.87.843-5.272 2.375A8 8 0 0 0 6.589 9H4v2h2.114c-.038.33-.064.663-.064 1s.026.67.064 1H4v2h2.589c.362.97.901 1.861 1.603 2.626C9.594 19.157 11.466 20 13.464 20c1.997 0 3.87-.843 5.273-2.374l-1.475-1.352C16.243 17.387 14.894 18 13.464 18s-2.778-.612-3.798-1.726A6 6 0 0 1 8.801 15H13v-2H8.139c-.05-.328-.089-.66-.089-1s.039-.672.089-1H13V9H8.801c.24-.457.516-.893.865-1.274C10.686 6.613 12.034 6 13.464 6'/%3E%3C/svg%3E"); } .bx-exclude { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 8h-3V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h3v3c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2m-4 7H9V9h6z'/%3E%3C/svg%3E"); } .bx-exit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.002 3h-14c-1.103 0-2 .897-2 2v4h2V5h14v14h-14v-4h-2v4c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.898-2-2-2'/%3E%3Cpath fill='black' d='m11 16l5-4l-5-4v3.001H3v2h8z'/%3E%3C/svg%3E"); } .bx-exit-fullscreen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 4H8v4H4v2h6zM8 20h2v-6H4v2h4zm12-6h-6v6h2v-4h4zm0-6h-4V4h-2v6h6z'/%3E%3C/svg%3E"); } .bx-expand { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21 15.344l-2.121 2.121l-3.172-3.172l-1.414 1.414l3.172 3.172L15.344 21H21zM3 8.656l2.121-2.121l3.172 3.172l1.414-1.414l-3.172-3.172L8.656 3H3zM21 3h-5.656l2.121 2.121l-3.172 3.172l1.414 1.414l3.172-3.172L21 8.656zM3 21h5.656l-2.121-2.121l3.172-3.172l-1.414-1.414l-3.172 3.172L3 15.344z'/%3E%3C/svg%3E"); } .bx-expand-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 12H3v9h9v-2H5zm7-7h7v7h2V3h-9z'/%3E%3C/svg%3E"); } .bx-expand-horizontal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.29 5.64L1.93 12l6.36 6.36l1.42-1.41L4.76 12l4.95-4.95zm6 1.41L19.24 12l-4.95 4.95l1.42 1.41L22.07 12l-6.36-6.36z'/%3E%3C/svg%3E"); } .bx-expand-vertical { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 19.24l-4.95-4.95l-1.41 1.42L12 22.07l6.36-6.36l-1.41-1.42zM5.64 8.29l1.41 1.42L12 4.76l4.95 4.95l1.41-1.42L12 1.93z'/%3E%3C/svg%3E"); } .bx-export { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 16h2V7h3l-4-5l-4 5h3z'/%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2h-4v2h4v9H5v-9h4V9H5c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bx-extension { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 10V7c0-1.103-.897-2-2-2h-3c0-1.654-1.346-3-3-3S8 3.346 8 5H5c-1.103 0-2 .897-2 2v3.881l.659.239C4.461 11.41 5 12.166 5 13s-.539 1.59-1.341 1.88L3 15.119V19c0 1.103.897 2 2 2h3.881l.239-.659C9.41 19.539 10.166 19 11 19s1.59.539 1.88 1.341l.239.659H17c1.103 0 2-.897 2-2v-3c1.654 0 3-1.346 3-3s-1.346-3-3-3m0 4h-2l-.003 5h-2.545c-.711-1.22-2.022-2-3.452-2s-2.741.78-3.452 2H5v-2.548C6.22 15.741 7 14.43 7 13s-.78-2.741-2-3.452V7h5V5a1 1 0 0 1 2 0v2h5v5h2a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bx-face { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 2c3.213 0 5.982 1.908 7.254 4.648a8 8 0 0 1-.895-.498c-.409-.258-.873-.551-1.46-.772c-.669-.255-1.4-.378-2.234-.378s-1.565.123-2.234.377c-.587.223-1.051.516-1.472.781c-.378.237-.703.443-1.103.594C9.41 8.921 8.926 9 8.33 9c-.595 0-1.079-.079-1.524-.248c-.4-.151-.728-.358-1.106-.598c-.161-.101-.34-.208-.52-.313C6.587 5.542 9.113 4 12 4m0 16c-4.411 0-8-3.589-8-8c0-.81.123-1.59.348-2.327c.094.058.185.11.283.173c.411.26.876.554 1.466.776c.669.255 1.399.378 2.233.378c.833 0 1.564-.123 2.235-.377c.587-.223 1.051-.516 1.472-.781c.378-.237.703-.443 1.103-.595c.445-.168.929-.247 1.525-.247s1.08.079 1.525.248c.399.15.725.356 1.114.602c.409.258.873.551 1.46.773c.363.138.748.229 1.153.291c.049.357.083.717.083 1.086c0 4.411-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='13.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.5' cy='13.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-fast-forward { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19 12l-7-5v10zM5 7v10l7-5z'/%3E%3C/svg%3E"); } .bx-fast-forward-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='m13 16l5-4l-5-4zm-6 0l5-4l-5-4z'/%3E%3C/svg%3E"); } .bx-female { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M14.948 7.684A1 1 0 0 0 14 7h-4a1 1 0 0 0-.948.684l-2 6l1.775.593L8 18h2v4h4v-4h2l-.827-3.724l1.775-.593z'/%3E%3C/svg%3E"); } .bx-female-sign { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C8.691 2 6 4.691 6 8c0 2.967 2.167 5.432 5 5.91V17H8v2h3v2.988h2V19h3v-2h-3v-3.09c2.833-.479 5-2.943 5-5.91c0-3.309-2.691-6-6-6m0 10c-2.206 0-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4s-1.794 4-4 4'/%3E%3C/svg%3E"); } .bx-file { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.903 8.586a1 1 0 0 0-.196-.293l-6-6a1 1 0 0 0-.293-.196c-.03-.014-.062-.022-.094-.033a1 1 0 0 0-.259-.051C13.04 2.011 13.021 2 13 2H6c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V9c0-.021-.011-.04-.013-.062a1 1 0 0 0-.051-.259q-.014-.048-.033-.093M16.586 8H14V5.414zM6 20V4h6v5a1 1 0 0 0 1 1h5l.002 10z'/%3E%3Cpath fill='black' d='M8 12h8v2H8zm0 4h8v2H8zm0-8h2v2H8z'/%3E%3C/svg%3E"); } .bx-file-blank { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.937 8.68q-.015-.048-.033-.094a1 1 0 0 0-.196-.293l-6-6a1 1 0 0 0-.293-.196c-.03-.014-.062-.022-.094-.033a1 1 0 0 0-.259-.051C13.04 2.011 13.021 2 13 2H6c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V9c0-.021-.011-.04-.013-.062a1 1 0 0 0-.05-.258M16.586 8H14V5.414zM6 20V4h6v5a1 1 0 0 0 1 1h5l.002 10z'/%3E%3C/svg%3E"); } .bx-file-find { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.707 2.293A1 1 0 0 0 13 2H6c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V9a1 1 0 0 0-.293-.707zM6 4h6.586L18 9.414l.002 9.174l-2.568-2.568c.35-.595.566-1.281.566-2.02c0-2.206-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4c.739 0 1.425-.216 2.02-.566L16.586 20H6zm6 12c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2'/%3E%3C/svg%3E"); } .bx-film { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M9 11V5h6v6zm6 2v6H9v-6zM5 5h2v2H5zm0 4h2v2H5zm0 4h2v2H5zm0 4h2v2H5zm14.002 2H17v-2h2.002zm-.001-4H17v-2h2.001zm0-4H17V9h2.001zM17 7V5h2v2z'/%3E%3C/svg%3E"); } .bx-filter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 11h10v2H7zM4 7h16v2H4zm6 8h4v2h-4z'/%3E%3C/svg%3E"); } .bx-filter-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 3H5a1 1 0 0 0-1 1v2.59c0 .523.213 1.037.583 1.407L10 13.414V21a1 1 0 0 0 1.447.895l4-2c.339-.17.553-.516.553-.895v-5.586l5.417-5.417c.37-.37.583-.884.583-1.407V4a1 1 0 0 0-1-1m-6.707 9.293A1 1 0 0 0 14 13v5.382l-2 1V13a1 1 0 0 0-.293-.707L6 6.59V5h14.001l.002 1.583z'/%3E%3C/svg%3E"); } .bx-fingerprint { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.962 17.674C7 19.331 7 20.567 7 22h2c0-1.521 0-3.244-1.343-5.389zM16.504 3.387C13.977 1.91 7.55.926 4.281 4.305c-3.368 3.481-2.249 9.072.001 11.392c.118.122.244.229.369.333c.072.061.146.116.205.184l1.494-1.33a4 4 0 0 0-.419-.391c-.072-.06-.146-.119-.214-.188c-1.66-1.711-2.506-6.017.001-8.608c2.525-2.611 8.068-1.579 9.777-.581c2.691 1.569 4.097 4.308 4.109 4.333l1.789-.895c-.065-.135-1.668-3.289-4.889-5.167'/%3E%3Cpath fill='black' d='M9.34 12.822c-1.03-1.26-1.787-2.317-1.392-3.506c.263-.785.813-1.325 1.637-1.604c1.224-.41 2.92-.16 4.04.601l1.123-1.654c-1.648-1.12-3.982-1.457-5.804-.841c-1.408.476-2.435 1.495-2.892 2.866c-.776 2.328.799 4.254 1.74 5.405c.149.183.29.354.409.512C11 18.323 11 20.109 11 22h2c0-2.036 0-4.345-3.201-8.601a20 20 0 0 0-.459-.577m5.791-3.344c1.835 1.764 3.034 4.447 3.889 8.701l1.961-.395c-.939-4.678-2.316-7.685-4.463-9.748z'/%3E%3Cpath fill='black' d='m11.556 9.169l-1.115 1.66c.027.019 2.711 1.88 3.801 5.724l1.924-.545c-1.299-4.582-4.476-6.749-4.61-6.839m3.132 9.29c.21 1.168.312 2.326.312 3.541h2c0-1.335-.112-2.608-.343-3.895z'/%3E%3C/svg%3E"); } .bx-first-aid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M9 4h6v2H9zM4 18V8h16l.001 10z'/%3E%3Cpath fill='black' d='M13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z'/%3E%3C/svg%3E"); } .bx-first-page { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m16.293 17.707l1.414-1.414L13.414 12l4.293-4.293l-1.414-1.414L10.586 12zM7 6h2v12H7z'/%3E%3C/svg%3E"); } .bx-flag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4H6V2H4v18H3v2h4v-2H6v-5h13a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 9H6V6h12z'/%3E%3C/svg%3E"); } .bx-folder { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 5h-8.586L9.707 3.293A1 1 0 0 0 9 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2M4 19V7h16l.002 12z'/%3E%3C/svg%3E"); } .bx-folder-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 5h-8.586L9.707 3.293A1 1 0 0 0 9 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2M4 19V7h16l.002 12z'/%3E%3Cpath fill='black' d='M7.874 12h8v2h-8z'/%3E%3C/svg%3E"); } .bx-folder-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.165 19.551c.186.28.499.449.835.449h15c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 11h-1V7c0-1.103-.897-2-2-2h-6.1L9.616 3.213A1 1 0 0 0 9 3H4c-1.103 0-2 .897-2 2v14h.007a1 1 0 0 0 .158.551M17.341 18H4.517l2.143-5h12.824zM18 7v4H6c-.4 0-.762.238-.919.606L4 14.129V7z'/%3E%3C/svg%3E"); } .bx-folder-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 9h-2v3H8v2h3v3h2v-3h3v-2h-3z'/%3E%3Cpath fill='black' d='M20 5h-8.586L9.707 3.293A1 1 0 0 0 9 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2M4 19V7h16l.002 12z'/%3E%3C/svg%3E"); } .bx-font { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11.307 4l-6 16h2.137l1.875-5h6.363l1.875 5h2.137l-6-16zm-1.239 9L12.5 6.515L14.932 13z'/%3E%3C/svg%3E"); } .bx-font-color { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 18h14v3H5zm7.5-14h-1c-.401 0-.764.24-.921.609L5.745 16h2.173l1.273-3h5.604l1.268 3h2.171L13.421 4.61A1 1 0 0 0 12.5 4m-2.46 7l1.959-4.616L13.95 11z'/%3E%3C/svg%3E"); } .bx-font-family { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 4h7v2h-7zm1 4h6v2h-6zm2 4h4v2h-4zM9.307 4l-6 16h2.137l1.875-5h6.363l1.875 5h2.137l-6-16zm-1.239 9L10.5 6.515L12.932 13z'/%3E%3C/svg%3E"); } .bx-font-size { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m22 6l-3-4l-3 4h2v4h-2l3 4l3-4h-2V6zM9.307 4l-6 16h2.137l1.875-5h6.363l1.875 5h2.137l-6-16zm-1.239 9L10.5 6.515L12.932 13z'/%3E%3C/svg%3E"); } .bx-food-menu { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 2h2v20H3zm7 4h7v2h-7zm0 4h7v2h-7z'/%3E%3Cpath fill='black' d='M19 2H6v20h13c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 18H8V4h11z'/%3E%3C/svg%3E"); } .bx-food-tag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-1 16H5V5h14z'/%3E%3Ccircle cx='12' cy='12' r='5' fill='black'/%3E%3C/svg%3E"); } .bx-football { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.071 4.929a9.94 9.94 0 0 0-7.07-2.938a9.94 9.94 0 0 0-7.072 2.938c-3.899 3.898-3.899 10.243 0 14.142a9.94 9.94 0 0 0 7.073 2.938a9.94 9.94 0 0 0 7.07-2.937c3.899-3.898 3.899-10.243-.001-14.143M12.181 4h-.359c.061-.001.119-.009.18-.009s.118.008.179.009m6.062 13H16l-1.258 2.516a8 8 0 0 1-2.741.493a8 8 0 0 1-2.746-.494L8 17.01H5.765a7.96 7.96 0 0 1-1.623-3.532L6 11L4.784 8.567a8 8 0 0 1 1.559-2.224a8 8 0 0 1 3.22-1.969L12 6l2.438-1.625a8 8 0 0 1 3.22 1.968a8 8 0 0 1 1.558 2.221L18 11l1.858 2.478A7.95 7.95 0 0 1 18.243 17'/%3E%3Cpath fill='black' d='m8.5 11l1.5 4h4l1.5-4L12 8.5z'/%3E%3C/svg%3E"); } .bx-fork { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m14.47 13.77l-1.41-1.42l5.66-5.65l-1.42-1.42l-5.65 5.66l-1.42-1.41l5.66-5.66l-1.42-1.42l-6.36 6.37a3 3 0 0 0 0 4.24l.71.71l-6.37 6.36l1.42 1.42l6.36-6.37l.71.71a3 3 0 0 0 4.24 0l6.37-6.36l-1.42-1.42z'/%3E%3C/svg%3E"); } .bx-fridge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 2H6c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 2l.001 5H10V7H8v2H6V4zM6 20v-9h2v3h2v-3h8.001l.001 9z'/%3E%3C/svg%3E"); } .bx-fullscreen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 5h5V3H3v7h2zm5 14H5v-5H3v7h7zm11-5h-2v5h-5v2h7zm-2-4h2V3h-7v2h5z'/%3E%3C/svg%3E"); } .bx-game { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.937 7.53C19.227 4.119 15.803 2 12 2C6.486 2 2 6.486 2 12s4.486 10 10 10c3.803 0 7.227-2.119 8.937-5.53a1 1 0 0 0-.397-1.316L15.017 12l5.522-3.153c.461-.264.636-.842.398-1.317m-8.433 3.602a.999.999 0 0 0 0 1.736l6.173 3.525A7.95 7.95 0 0 1 12 20c-4.411 0-8-3.589-8-8s3.589-8 8-8a7.95 7.95 0 0 1 6.677 3.606z'/%3E%3Ccircle cx='11.5' cy='7.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-gas-pump { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19.616 6.48l.014-.017l-4-3.24l-1.26 1.554l2.067 1.674a2.99 2.99 0 0 0-1.395 3.058c.149.899.766 1.676 1.565 2.112c.897.49 1.685.446 2.384.197L18.976 18a.996.996 0 0 1-1.39.922a1 1 0 0 1-.318-.217a1 1 0 0 1-.291-.705L17 16a2.98 2.98 0 0 0-.877-2.119A3 3 0 0 0 14 13h-1V5c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h7c1.103 0 2-.897 2-2v-4h1q.205 0 .391.078a1.03 1.03 0 0 1 .531.533A1 1 0 0 1 15 16l-.024 2c0 .406.079.799.236 1.168c.151.359.368.68.641.951a2.97 2.97 0 0 0 2.123.881q.611 0 1.168-.236c.358-.15.68-.367.951-.641A2.98 2.98 0 0 0 20.976 18L21 9a3 3 0 0 0-1.384-2.52M4 5h7l.001 4H4zm0 14v-8h7.001l.001 8zm14-9a1 1 0 1 1 0-2a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bx-ghost { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2c-4.963 0-9 4.038-9 9v8h.051c.245 1.691 1.69 3 3.449 3c1.174 0 2.074-.417 2.672-1.174a3.99 3.99 0 0 0 5.668-.014c.601.762 1.504 1.188 2.66 1.188c1.93 0 3.5-1.57 3.5-3.5V11c0-4.962-4.037-9-9-9m7 16.5c0 .827-.673 1.5-1.5 1.5c-.449 0-1.5 0-1.5-2v-1h-2v1c0 1.103-.897 2-2 2s-2-.897-2-2v-1H8v1c0 1.845-.774 2-1.5 2c-.827 0-1.5-.673-1.5-1.5V11c0-3.86 3.141-7 7-7s7 3.14 7 7z'/%3E%3Ccircle cx='9' cy='10' r='2' fill='black'/%3E%3Ccircle cx='15' cy='10' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-gift { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 7h-1.209A5 5 0 0 0 19 5.5C19 3.57 17.43 2 15.5 2c-1.622 0-2.705 1.482-3.404 3.085C11.407 3.57 10.269 2 8.5 2C6.57 2 5 3.57 5 5.5c0 .596.079 1.089.209 1.5H4c-1.103 0-2 .897-2 2v2c0 1.103.897 2 2 2v7c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7c1.103 0 2-.897 2-2V9c0-1.103-.897-2-2-2m-4.5-3c.827 0 1.5.673 1.5 1.5C17 7 16.374 7 16 7h-2.478c.511-1.576 1.253-3 1.978-3M7 5.5C7 4.673 7.673 4 8.5 4c.888 0 1.714 1.525 2.198 3H8c-.374 0-1 0-1-1.5M4 9h7v2H4zm2 11v-7h5v7zm12 0h-5v-7h5zm-5-9V9.085L13.017 9H20l.001 2z'/%3E%3C/svg%3E"); } .bx-git-branch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.5 4C15.57 4 14 5.57 14 7.5c0 1.554 1.025 2.859 2.43 3.315c-.146.932-.547 1.7-1.23 2.323c-1.946 1.773-5.527 1.935-7.2 1.907V8.837c1.44-.434 2.5-1.757 2.5-3.337C10.5 3.57 8.93 2 7 2S3.5 3.57 3.5 5.5c0 1.58 1.06 2.903 2.5 3.337v6.326c-1.44.434-2.5 1.757-2.5 3.337C3.5 20.43 5.07 22 7 22s3.5-1.57 3.5-3.5c0-.551-.14-1.065-.367-1.529c2.06-.186 4.657-.757 6.409-2.35c1.097-.997 1.731-2.264 1.904-3.768C19.915 10.438 21 9.1 21 7.5C21 5.57 19.43 4 17.5 4m-12 1.5C5.5 4.673 6.173 4 7 4s1.5.673 1.5 1.5S7.827 7 7 7s-1.5-.673-1.5-1.5M7 20c-.827 0-1.5-.673-1.5-1.5a1.5 1.5 0 0 1 1.482-1.498l.13.01A1.495 1.495 0 0 1 7 20M17.5 9c-.827 0-1.5-.673-1.5-1.5S16.673 6 17.5 6s1.5.673 1.5 1.5S18.327 9 17.5 9'/%3E%3C/svg%3E"); } .bx-git-commit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 6c-2.967 0-5.431 2.167-5.909 5H2v2h4.092c.479 2.832 2.942 4.998 5.909 4.998s5.43-2.166 5.909-4.998H22v-2h-4.09c-.478-2.833-2.942-5-5.91-5m0 9.998c-2.205 0-3.999-1.794-3.999-3.999S9.795 8 12 8s4 1.794 4 3.999s-1.794 3.999-4 3.999'/%3E%3C/svg%3E"); } .bx-git-compare { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.01 2c-1.93 0-3.5 1.57-3.5 3.5c0 1.58 1.06 2.903 2.5 3.337v7.16c-.001.179.027 1.781 1.174 2.931C6.892 19.64 7.84 20 9 20v2l4-3l-4-3v2c-1.823 0-1.984-1.534-1.99-2V8.837c1.44-.434 2.5-1.757 2.5-3.337c0-1.93-1.571-3.5-3.5-3.5m0 5c-.827 0-1.5-.673-1.5-1.5S5.183 4 6.01 4s1.5.673 1.5 1.5S6.837 7 6.01 7m13 8.163V7.997C19.005 6.391 17.933 4 15 4V2l-4 3l4 3V6c1.829 0 2.001 1.539 2.01 2v7.163c-1.44.434-2.5 1.757-2.5 3.337c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-1.58-1.06-2.903-2.5-3.337m-1 4.837c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5s1.5.673 1.5 1.5s-.673 1.5-1.5 1.5'/%3E%3C/svg%3E"); } .bx-git-merge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.5 18.5C2.5 20.43 4.07 22 6 22s3.5-1.57 3.5-3.5c0-1.58-1.06-2.903-2.5-3.337v-3.488c.244.273.509.527.813.744c1.18.844 2.617 1.098 3.918 1.098c.966 0 1.853-.14 2.506-.281a3.5 3.5 0 0 0 3.264 2.265c1.93 0 3.5-1.57 3.5-3.5s-1.57-3.5-3.5-3.5a3.5 3.5 0 0 0-3.404 2.718c-1.297.321-3.664.616-5.119-.426c-.666-.477-1.09-1.239-1.306-2.236C8.755 7.96 9.5 6.821 9.5 5.5C9.5 3.57 7.93 2 6 2S2.5 3.57 2.5 5.5c0 1.58 1.06 2.903 2.5 3.337v6.326c-1.44.434-2.5 1.757-2.5 3.337m15-8c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5S16 12.827 16 12s.673-1.5 1.5-1.5m-10 8c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5S5.173 17 6 17s1.5.673 1.5 1.5m-3-13C4.5 4.673 5.173 4 6 4s1.5.673 1.5 1.5S6.827 7 6 7s-1.5-.673-1.5-1.5'/%3E%3C/svg%3E"); } .bx-git-pull-request { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.01 15.163V7.997C19.005 6.391 17.933 4 15 4V2l-4 3l4 3V6c1.829 0 2.001 1.539 2.01 2v7.163c-1.44.434-2.5 1.757-2.5 3.337c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-1.58-1.06-2.903-2.5-3.337m-1 4.837c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5s1.5.673 1.5 1.5s-.673 1.5-1.5 1.5M9.5 5.5C9.5 3.57 7.93 2 6 2S2.5 3.57 2.5 5.5c0 1.58 1.06 2.903 2.5 3.337v6.326c-1.44.434-2.5 1.757-2.5 3.337C2.5 20.43 4.07 22 6 22s3.5-1.57 3.5-3.5c0-1.58-1.06-2.903-2.5-3.337V8.837C8.44 8.403 9.5 7.08 9.5 5.5m-5 0C4.5 4.673 5.173 4 6 4s1.5.673 1.5 1.5S6.827 7 6 7s-1.5-.673-1.5-1.5m3 13c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5S5.173 17 6 17s1.5.673 1.5 1.5'/%3E%3C/svg%3E"); } .bx-git-repo-forked { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.559 8.855c.166 1.183.789 3.207 3.087 4.079C11 13.829 11 14.534 11 15v.163c-1.44.434-2.5 1.757-2.5 3.337c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5c0-1.58-1.06-2.903-2.5-3.337V15c0-.466 0-1.171 2.354-2.065c2.298-.872 2.921-2.896 3.087-4.079C19.912 8.441 21 7.102 21 5.5C21 3.57 19.43 2 17.5 2S14 3.57 14 5.5c0 1.552 1.022 2.855 2.424 3.313c-.146.735-.565 1.791-1.778 2.252c-1.192.452-2.053.953-2.646 1.536c-.593-.583-1.453-1.084-2.646-1.536c-1.213-.461-1.633-1.517-1.778-2.252C8.978 8.355 10 7.052 10 5.5C10 3.57 8.43 2 6.5 2S3 3.57 3 5.5c0 1.602 1.088 2.941 2.559 3.355M17.5 4c.827 0 1.5.673 1.5 1.5S18.327 7 17.5 7S16 6.327 16 5.5S16.673 4 17.5 4m-4 14.5c0 .827-.673 1.5-1.5 1.5s-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5s1.5.673 1.5 1.5M6.5 4C7.327 4 8 4.673 8 5.5S7.327 7 6.5 7S5 6.327 5 5.5S5.673 4 6.5 4'/%3E%3C/svg%3E"); } .bx-glasses { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.977 13.783l-2-9A1 1 0 0 0 19 4h-3v2h2.198l.961 4.326A4.5 4.5 0 0 0 17.5 10c-1.953 0-3.603 1.258-4.224 3h-2.553c-.621-1.742-2.271-3-4.224-3c-.587 0-1.145.121-1.659.326L5.802 6H8V4H5a1 1 0 0 0-.976.783l-2 9l.047.011A4.6 4.6 0 0 0 2 14.5C2 16.981 4.019 19 6.5 19c2.31 0 4.197-1.756 4.449-4h2.102c.252 2.244 2.139 4 4.449 4c2.481 0 4.5-2.019 4.5-4.5c0-.242-.034-.475-.071-.706zM6.5 17C5.122 17 4 15.878 4 14.5S5.122 12 6.5 12S9 13.122 9 14.5S7.878 17 6.5 17m11 0c-1.379 0-2.5-1.122-2.5-2.5s1.121-2.5 2.5-2.5s2.5 1.122 2.5 2.5s-1.121 2.5-2.5 2.5'/%3E%3C/svg%3E"); } .bx-glasses-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.948 11.684l-2-6A1 1 0 0 0 19 5h-3v2h2.279l1.334 4H15c-1.103 0-2 .897-2 2h-2c0-1.103-.897-2-2-2H4.387l1.334-4H8V5H5a1 1 0 0 0-.948.684l-2 6l.012.004A.9.9 0 0 0 2 12v4c0 1.654 1.346 3 3 3h3c1.654 0 3-1.346 3-3v-1h2v1c0 1.654 1.346 3 3 3h3c1.654 0 3-1.346 3-3v-4a1 1 0 0 0-.063-.313zM9 16c0 .551-.448 1-1 1H5c-.552 0-1-.449-1-1v-3h5zm11 0c0 .551-.448 1-1 1h-3c-.552 0-1-.449-1-1v-3h5z'/%3E%3C/svg%3E"); } .bx-globe { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m7.931 9h-2.764a14.7 14.7 0 0 0-1.792-6.243A8.01 8.01 0 0 1 19.931 11M12.53 4.027c1.035 1.364 2.427 3.78 2.627 6.973H9.03c.139-2.596.994-5.028 2.451-6.974c.172-.01.344-.026.519-.026c.179 0 .354.016.53.027m-3.842.7C7.704 6.618 7.136 8.762 7.03 11H4.069a8.01 8.01 0 0 1 4.619-6.273M4.069 13h2.974c.136 2.379.665 4.478 1.556 6.23A8.01 8.01 0 0 1 4.069 13m7.381 6.973C10.049 18.275 9.222 15.896 9.041 13h6.113c-.208 2.773-1.117 5.196-2.603 6.972c-.182.012-.364.028-.551.028c-.186 0-.367-.016-.55-.027m4.011-.772c.955-1.794 1.538-3.901 1.691-6.201h2.778a8 8 0 0 1-4.469 6.201'/%3E%3C/svg%3E"); } .bx-globe-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 18.791V20H9v2h6v-2h-2v-1.845a9.9 9.9 0 0 0 3.071-2.084c3.898-3.898 3.898-10.243 0-14.143l-1.414 1.414c3.119 3.12 3.119 8.195 0 11.314s-8.195 3.12-11.314 0L1.929 16.07A9.97 9.97 0 0 0 9 18.994a10 10 0 0 0 2-.203'/%3E%3Cpath fill='black' d='M3 9c0 3.309 2.691 6 6 6s6-2.691 6-6s-2.691-6-6-6s-6 2.691-6 6m10 0c0 2.206-1.794 4-4 4s-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4'/%3E%3C/svg%3E"); } .bx-grid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 3H4.984c-1.103 0-2 .897-2 2v14.016c0 1.103.897 2 2 2H19c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm4 5h-3V5h3zM4.984 10h3v4.016h-3zm5 0H14v4.016H9.984zM16 10h3v4.016h-3zm-2-5v3H9.984V5zM7.984 5v3h-3V5zm-3 11.016h3v3h-3zm5 3v-3H14v3zm6.016 0v-3h3.001v3z'/%3E%3C/svg%3E"); } .bx-grid-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M9 9H5V5h4zm5 2h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m1-6h4v4h-4zM3 20a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1zm2-5h4v4H5zm8 5a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1zm2-5h4v4h-4z'/%3E%3C/svg%3E"); } .bx-grid-horizontal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 7h4v4h-4zm6 0h4v4h-4zM4 7h4v4H4zm6 6h4v4h-4zm6 0h4v4h-4zM4 13h4v4H4z'/%3E%3C/svg%3E"); } .bx-grid-small { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 7h4v4H7zm0 6h4v4H7zm6-6h4v4h-4zm0 6h4v4h-4z'/%3E%3C/svg%3E"); } .bx-grid-vertical { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 10h4v4H7zm0-6h4v4H7zm0 12h4v4H7zm6-6h4v4h-4zm0-6h4v4h-4zm0 12h4v4h-4z'/%3E%3C/svg%3E"); } .bx-group { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.604 11.048a5.67 5.67 0 0 0 .751-3.44c-.179-1.784-1.175-3.361-2.803-4.44l-1.105 1.666c1.119.742 1.8 1.799 1.918 2.974a3.7 3.7 0 0 1-1.072 2.986l-1.192 1.192l1.618.475C18.951 13.701 19 17.957 19 18h2c0-1.789-.956-5.285-4.396-6.952'/%3E%3Cpath fill='black' d='M9.5 12c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4m0-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2m1.5 7H8c-3.309 0-6 2.691-6 6v1h2v-1c0-2.206 1.794-4 4-4h3c2.206 0 4 1.794 4 4v1h2v-1c0-3.309-2.691-6-6-6'/%3E%3C/svg%3E"); } .bx-handicap { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='9' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M16.98 14.804A1 1 0 0 0 16 14h-4.133l-.429-3H16V9h-4.847l-.163-1.142A1 1 0 0 0 10 7H9a1.003 1.003 0 0 0-.99 1.142l.877 6.142A2.01 2.01 0 0 0 10.867 16h4.313l.839 4.196c.094.467.504.804.981.804h3v-2h-2.181z'/%3E%3Cpath fill='black' d='M12.51 17.5c-.739 1.476-2.25 2.5-4.01 2.5A4.505 4.505 0 0 1 4 15.5a4.5 4.5 0 0 1 2.817-4.167l-.289-2.025C3.905 10.145 2 12.604 2 15.5C2 19.084 4.916 22 8.5 22a6.5 6.5 0 0 0 5.545-3.126l-.274-1.374z'/%3E%3C/svg%3E"); } .bx-happy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.493' cy='10.493' r='1.493' fill='black'/%3E%3Cpath fill='black' d='M12 18c4 0 5-4 5-4H7s1 4 5 4'/%3E%3C/svg%3E"); } .bx-happy-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='9.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.493' cy='9.493' r='1.493' fill='black'/%3E%3Cpath fill='black' d='M12 18c5 0 6-5 6-5H6s1 5 6 5'/%3E%3C/svg%3E"); } .bx-happy-beaming { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 18c4 0 5-4 5-4H7s1 4 5 4'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='m13 12l2 .012c.012-.462.194-1.012 1-1.012s.988.55 1 1h2c0-1.206-.799-3-3-3s-3 1.794-3 3m-5-1c.806 0 .988.55 1 1h2c0-1.206-.799-3-3-3s-3 1.794-3 3l2 .012C7.012 11.55 7.194 11 8 11'/%3E%3C/svg%3E"); } .bx-happy-heart-eyes { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 18c4 0 5-4 5-4H7s1 4 5 4'/%3E%3Cpath fill='black' d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10m0-18c4.411 0 8 3.589 8 8s-3.589 8-8 8s-8-3.589-8-8s3.589-8 8-8'/%3E%3Cpath fill='black' d='m8.535 12.634l2.05-2.083a1.485 1.485 0 0 0-.018-2.118a1.49 1.49 0 0 0-2.065-.034a1.49 1.49 0 0 0-2.067.068c-.586.6-.579 1.53.019 2.117zm7 0l2.05-2.083a1.485 1.485 0 0 0-.018-2.118a1.49 1.49 0 0 0-2.065-.034a1.49 1.49 0 0 0-2.068.067c-.586.6-.579 1.53.019 2.117z'/%3E%3C/svg%3E"); } .bx-hard-hat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 15a9 9 0 0 0-.18-1.81a8.5 8.5 0 0 0-.53-1.69a8 8 0 0 0-.83-1.5a8.7 8.7 0 0 0-1.1-1.33A8.3 8.3 0 0 0 17 7.54a8 8 0 0 0-1.53-.83L15 6.52V5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v1.52l-.5.19a8 8 0 0 0-1.5.83a8.3 8.3 0 0 0-1.33 1.1A8.3 8.3 0 0 0 4.54 10a8 8 0 0 0-.83 1.53a9 9 0 0 0-.53 1.69A9 9 0 0 0 3 15v3H2v2h20v-2h-1zM5 15a7.3 7.3 0 0 1 .14-1.41a6.6 6.6 0 0 1 .41-1.31a7 7 0 0 1 .64-1.19a7.2 7.2 0 0 1 1.9-1.9A7 7 0 0 1 9 8.68V15h2V6h2v9h2V8.68a8 8 0 0 1 .91.51a7 7 0 0 1 1 .86a6.4 6.4 0 0 1 .85 1a6 6 0 0 1 .65 1.19a7 7 0 0 1 .41 1.31A7.3 7.3 0 0 1 19 15v3H5z'/%3E%3C/svg%3E"); } .bx-hash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.018 3.815L15.232 8h-4.966l.716-3.815l-1.964-.37L8.232 8H4v2h3.857l-.751 4H3v2h3.731l-.714 3.805l1.965.369L8.766 16h4.966l-.714 3.805l1.965.369l.783-4.174H20v-2h-3.859l.751-4H21V8h-3.733l.716-3.815zM14.106 14H9.141l.751-4h4.966z'/%3E%3C/svg%3E"); } .bx-hdd { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.983 13.821l-1.851-10.18A2 2 0 0 0 18.165 2H5.835a2 2 0 0 0-1.968 1.643l-1.85 10.178l.019.003c-.012.06-.036.114-.036.176v5c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-5c0-.063-.024-.116-.035-.176zM5.835 4h12.331l1.637 9H4.198zM4 19v-4h16l.002 4z'/%3E%3Cpath fill='black' d='M17 16h2v2h-2zm-3 0h2v2h-2z'/%3E%3C/svg%3E"); } .bx-heading { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 20V4h-3v6H9V4H6v16h3v-7h6v7z'/%3E%3C/svg%3E"); } .bx-headphone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 12v-1.707c0-4.442-3.479-8.161-7.755-8.29c-2.204-.051-4.251.736-5.816 2.256A7.93 7.93 0 0 0 4 10v2c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h2V10a5.95 5.95 0 0 1 1.821-4.306a5.98 5.98 0 0 1 4.363-1.691C15.392 4.099 18 6.921 18 10.293V20h2c1.103 0 2-.897 2-2v-4c0-1.103-.897-2-2-2'/%3E%3Cpath fill='black' d='M7 12h2v8H7zm8 0h2v8h-2z'/%3E%3C/svg%3E"); } .bx-health { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.649 5.286L14 8.548V2.025h-4v6.523L4.351 5.286l-2 3.465l5.648 3.261l-5.648 3.261l2 3.465L10 15.477V22h4v-6.523l5.649 3.261l2-3.465l-5.648-3.261l5.648-3.261z'/%3E%3C/svg%3E"); } .bx-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4.595a5.9 5.9 0 0 0-3.996-1.558a5.94 5.94 0 0 0-4.213 1.758c-2.353 2.363-2.352 6.059.002 8.412l7.332 7.332c.17.299.498.492.875.492a.99.99 0 0 0 .792-.409l7.415-7.415c2.354-2.354 2.354-6.049-.002-8.416a5.94 5.94 0 0 0-4.209-1.754A5.9 5.9 0 0 0 12 4.595m6.791 1.61c1.563 1.571 1.564 4.025.002 5.588L12 18.586l-6.793-6.793c-1.562-1.563-1.561-4.017-.002-5.584c.76-.756 1.754-1.172 2.799-1.172s2.035.416 2.789 1.17l.5.5a1 1 0 0 0 1.414 0l.5-.5c1.512-1.509 4.074-1.505 5.584-.002'/%3E%3C/svg%3E"); } .bx-heart-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.279 8.833L12 9.112l-.279-.279a2.745 2.745 0 0 0-3.906 0a2.745 2.745 0 0 0 0 3.907L12 16.926l4.186-4.186a2.745 2.745 0 0 0 0-3.907a2.746 2.746 0 0 0-3.907 0'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-heart-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11.998 17l4.186-4.186a2.745 2.745 0 0 0 0-3.907a2.746 2.746 0 0 0-3.907 0l-.278.279l-.279-.279a2.746 2.746 0 0 0-3.907 0a2.746 2.746 0 0 0 0 3.907z'/%3E%3Cpath fill='black' d='M21 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1zm-2 15H5V5h14z'/%3E%3C/svg%3E"); } .bx-help-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 6a3.94 3.94 0 0 0-3.934 3.934h2C10.066 8.867 10.934 8 12 8s1.934.867 1.934 1.934c0 .598-.481 1.032-1.216 1.626a9 9 0 0 0-.691.599c-.998.997-1.027 2.056-1.027 2.174V15h2l-.001-.633c.001-.016.033-.386.441-.793c.15-.15.339-.3.535-.458c.779-.631 1.958-1.584 1.958-3.182A3.937 3.937 0 0 0 12 6m-1 10h2v2h-2z'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-hide { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 19c.946 0 1.81-.103 2.598-.281l-1.757-1.757c-.273.021-.55.038-.841.038c-5.351 0-7.424-3.846-7.926-5a8.6 8.6 0 0 1 1.508-2.297L4.184 8.305c-1.538 1.667-2.121 3.346-2.132 3.379a1 1 0 0 0 0 .633C2.073 12.383 4.367 19 12 19m0-14c-1.837 0-3.346.396-4.604.981L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-3.319-3.319c2.614-1.951 3.547-4.615 3.561-4.657a1 1 0 0 0 0-.633C21.927 11.617 19.633 5 12 5m4.972 10.558l-2.28-2.28c.19-.39.308-.819.308-1.278c0-1.641-1.359-3-3-3c-.459 0-.888.118-1.277.309L8.915 7.501A9.3 9.3 0 0 1 12 7c5.351 0 7.424 3.846 7.926 5c-.302.692-1.166 2.342-2.954 3.558'/%3E%3C/svg%3E"); } .bx-highlight { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.707 5.826l-3.535-3.533a1 1 0 0 0-1.408-.006L7.096 10.82a1 1 0 0 0-.273.488l-1.024 4.437L4 18h2.828l1.142-1.129l3.588-.828c.18-.042.345-.133.477-.262l8.667-8.535a1 1 0 0 0 .005-1.42m-9.369 7.833l-2.121-2.12l7.243-7.131l2.12 2.12zM4 20h16v2H4z'/%3E%3C/svg%3E"); } .bx-history { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 8v5h5v-2h-3V8z'/%3E%3Cpath fill='black' d='M21.292 8.497a9 9 0 0 0-1.928-2.862a9 9 0 0 0-4.55-2.452a9.1 9.1 0 0 0-3.626 0a8.97 8.97 0 0 0-4.552 2.453a9 9 0 0 0-1.928 2.86A9 9 0 0 0 4 12l.001.025H2L5 16l3-3.975H6.001L6 12a6.96 6.96 0 0 1 1.195-3.913a7.1 7.1 0 0 1 1.891-1.892a7 7 0 0 1 2.503-1.054a7.003 7.003 0 0 1 8.269 5.445a7.1 7.1 0 0 1 0 2.824a6.9 6.9 0 0 1-1.054 2.503c-.25.371-.537.72-.854 1.036a7.1 7.1 0 0 1-2.225 1.501a7 7 0 0 1-1.313.408a7.1 7.1 0 0 1-2.823 0a7 7 0 0 1-2.501-1.053a7 7 0 0 1-1.037-.855l-1.414 1.414A9 9 0 0 0 13 21a9.1 9.1 0 0 0 3.503-.707a9 9 0 0 0 3.959-3.26A8.97 8.97 0 0 0 22 12a8.9 8.9 0 0 0-.708-3.503'/%3E%3C/svg%3E"); } .bx-hive { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.895 7.553l-2-4A1 1 0 0 0 18 3h-5c-.379 0-.725.214-.895.553L10.382 7H6c-.379 0-.725.214-.895.553l-2 4a1 1 0 0 0 0 .895l2 4c.17.338.516.552.895.552h4.382l1.724 3.447A1 1 0 0 0 13 21h5c.379 0 .725-.214.895-.553l2-4a1 1 0 0 0 0-.895L19.118 12l1.776-3.553a1 1 0 0 0 .001-.894M13.618 5h3.764l1.5 3l-1.5 3h-3.764l-1.5-3zm-8.5 7l1.5-3h3.764l1.5 3l-1.5 3H6.618zm12.264 7h-3.764l-1.5-3l1.5-3h3.764l1.5 3z'/%3E%3C/svg%3E"); } .bx-home { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 13h1v7c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7h1a1 1 0 0 0 .707-1.707l-9-9a1 1 0 0 0-1.414 0l-9 9A1 1 0 0 0 3 13m7 7v-5h4v5zm2-15.586l6 6V15l.001 5H16v-5c0-1.103-.897-2-2-2h-4c-1.103 0-2 .897-2 2v5H6v-9.586z'/%3E%3C/svg%3E"); } .bx-home-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14a2 2 0 0 0 2-2v-9a1 1 0 0 0-.29-.71l-8-8a1 1 0 0 0-1.41 0l-8 8A1 1 0 0 0 3 11v9a2 2 0 0 0 2 2m5-2v-5h4v5zm-5-8.59l7-7l7 7V20h-3v-5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v5H5z'/%3E%3C/svg%3E"); } .bx-home-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.71 2.29a1 1 0 0 0-1.42 0l-9 9a1 1 0 0 0 0 1.42A1 1 0 0 0 3 13h1v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7h1a1 1 0 0 0 1-1a1 1 0 0 0-.29-.71zM6 20v-9.59l6-6l6 6V20z'/%3E%3C/svg%3E"); } .bx-home-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 13h1v7c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7h1a1 1 0 0 0 .707-1.707l-9-9a1 1 0 0 0-1.414 0l-9 9A1 1 0 0 0 3 13m9-8.586l6 6V15l.001 5H6v-9.585z'/%3E%3Cpath fill='black' d='M12 17c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4m0-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2'/%3E%3C/svg%3E"); } .bx-home-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12.223 11.641l-.223.22l-.224-.22a2.224 2.224 0 0 0-3.125 0a2.13 2.13 0 0 0 0 3.07L12 18l3.349-3.289a2.13 2.13 0 0 0 0-3.07a2.225 2.225 0 0 0-3.126 0'/%3E%3Cpath fill='black' d='m21.707 11.293l-9-9a1 1 0 0 0-1.414 0l-9 9A1 1 0 0 0 3 13h1v7c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7h1a1 1 0 0 0 .707-1.707M18.001 20H6v-9.585l6-6l6 6V15z'/%3E%3C/svg%3E"); } .bx-home-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 13h1v7c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7h1a1 1 0 0 0 .707-1.707l-9-9a1 1 0 0 0-1.414 0l-9 9A1 1 0 0 0 3 13m9-8.586l6 6V15l.001 5H6v-9.586z'/%3E%3Cpath fill='black' d='M12 18c3.703 0 4.901-3.539 4.95-3.689l-1.9-.621c-.008.023-.781 2.31-3.05 2.31c-2.238 0-3.02-2.221-3.051-2.316l-1.899.627C7.099 14.461 8.297 18 12 18'/%3E%3C/svg%3E"); } .bx-horizontal-center { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m5.005 15.995l4-4l-4-4v3h-3v2h3zm14-5v-3l-4 4l4 4v-3h3v-2h-2.072zm-8 7h2v3h-2zm0-5h2v3h-2zm0-5h2v3h-2zm0-5h2v3h-2z'/%3E%3C/svg%3E"); } .bx-horizontal-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11 8l-4 4l4 4v-3h8v-2h-8zM3 18h2v3H3zm0-5h2v3H3zm0-5h2v3H3zm0-5h2v3H3z'/%3E%3C/svg%3E"); } .bx-horizontal-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 11H5v2h8v3l4-4l-4-4zm6-8h2v3h-2zm0 5h2v3h-2zm0 5h2v3h-2zm0 5h2v3h-2z'/%3E%3C/svg%3E"); } .bx-hotel { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='7.5' cy='11.5' r='2.5' fill='black'/%3E%3Cpath fill='black' d='M17.205 7H12a1 1 0 0 0-1 1v7H4V6H2v14h2v-3h16v3h2v-8.205A4.8 4.8 0 0 0 17.205 7M13 15V9h4.205A2.8 2.8 0 0 1 20 11.795V15z'/%3E%3C/svg%3E"); } .bx-hourglass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.566 11.021A7.02 7.02 0 0 0 19 5V4h1V2H4v2h1v1a7.02 7.02 0 0 0 3.434 6.021c.354.208.566.545.566.9v.158c0 .354-.212.69-.566.9A7.02 7.02 0 0 0 5 19v1H4v2h16v-2h-1v-1a7.01 7.01 0 0 0-3.433-6.02c-.355-.21-.567-.547-.567-.901v-.158c0-.355.212-.692.566-.9m-1.015 3.681A5.01 5.01 0 0 1 17 19v1H7v-1a5.01 5.01 0 0 1 2.45-4.299c.971-.573 1.55-1.554 1.55-2.622v-.158c0-1.069-.58-2.051-1.551-2.623A5.01 5.01 0 0 1 7 5V4h10v1c0 1.76-.938 3.406-2.449 4.298C13.58 9.87 13 10.852 13 11.921v.158c0 1.068.579 2.049 1.551 2.623'/%3E%3C/svg%3E"); } .bx-id-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.715 12c1.151 0 2-.849 2-2s-.849-2-2-2s-2 .849-2 2s.848 2 2 2'/%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .841-2 1.875v12.25C2 19.159 2.897 20 4 20h16c1.103 0 2-.841 2-1.875V5.875C22 4.841 21.103 4 20 4m0 14l-16-.011V6l16 .011z'/%3E%3Cpath fill='black' d='M14 9h4v2h-4zm1 4h3v2h-3zm-1.57 2.536c0-1.374-1.676-2.786-3.715-2.786S6 14.162 6 15.536V16h7.43z'/%3E%3C/svg%3E"); } .bx-image { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='7.499' cy='9.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='m10.499 14l-1.5-2l-3 4h12l-4.5-6z'/%3E%3Cpath fill='black' d='M19.999 4h-16c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-16 14V6h16l.002 12z'/%3E%3C/svg%3E"); } .bx-image-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 5h13v7h2V5c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h8v-2H4z'/%3E%3Cpath fill='black' d='m8 11l-3 4h11l-4-6l-3 4z'/%3E%3Cpath fill='black' d='M19 14h-2v3h-3v2h3v3h2v-3h3v-2h-3z'/%3E%3C/svg%3E"); } .bx-image-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19V5h14l.002 14z'/%3E%3Cpath fill='black' d='m10 14l-1-1l-3 4h12l-5-7z'/%3E%3C/svg%3E"); } .bx-images { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H8c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M8 16V4h12l.002 12z'/%3E%3Cpath fill='black' d='M4 8H2v12c0 1.103.897 2 2 2h12v-2H4z'/%3E%3Cpath fill='black' d='m12 12l-1-1l-2 3h10l-4-6z'/%3E%3C/svg%3E"); } .bx-import { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 18l4-5h-3V2h-2v11H8z'/%3E%3Cpath fill='black' d='M19 9h-4v2h4v9H5v-9h4V9H5c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bx-infinite { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 7c-2.094 0-3.611 1.567-5.001 3.346C10.609 8.567 9.093 7 7 7c-2.757 0-5 2.243-5 5a4.98 4.98 0 0 0 1.459 3.534A4.96 4.96 0 0 0 6.99 17h.012c2.089-.005 3.605-1.572 4.996-3.351C13.389 15.431 14.906 17 17 17c2.757 0 5-2.243 5-5s-2.243-5-5-5M6.998 15l-.008 1v-1c-.799 0-1.55-.312-2.114-.878A3.004 3.004 0 0 1 7 9c1.33 0 2.56 1.438 3.746 2.998C9.558 13.557 8.328 14.997 6.998 15M17 15c-1.33 0-2.561-1.44-3.749-3.002C14.438 10.438 15.668 9 17 9c1.654 0 3 1.346 3 3s-1.346 3-3 3'/%3E%3C/svg%3E"); } .bx-info-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M11 11h2v6h-2zm0-4h2v2h-2z'/%3E%3C/svg%3E"); } .bx-info-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-1 16H5V5h14z'/%3E%3Cpath fill='black' d='M11 7h2v2h-2zm0 4h2v6h-2z'/%3E%3C/svg%3E"); } .bx-injection { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.84 7.4L22.25 6L18 1.75l-1.4 1.41L18 4.58L16.6 6l-2.13-2.13l-1.41-1.42l-1.41 1.42l.7.71L3 13.92a2 2 0 0 0-.3 2.45L4 18.56l-2.25 2.28l1.41 1.41L5.44 20l2.19 1.31a2 2 0 0 0 1 .28a2 2 0 0 0 1.45-.59l9.34-9.34l.71.7l1.42-1.41l-1.42-1.42L18 7.4L19.42 6zM18 10.23l-9.34 9.35L6 18l-1.58-2.66l.86-.87l2.83 2.83l1.42-1.41l-2.83-2.83l1.41-1.41l2.83 2.82l1.41-1.41l-2.83-2.83l1.42-1.41l2.83 2.83l1.41-1.42l-2.83-2.83L13.77 6z'/%3E%3C/svg%3E"); } .bx-intersect { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 16h3v3c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2h-3V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2m9.001-2L14 10h.001zM19 10l.001 9H10v-3h4c1.103 0 2-.897 2-2v-4zM5 5h9v3h-4c-1.103 0-2 .897-2 2v4H5z'/%3E%3C/svg%3E"); } .bx-italic { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 7V4H9v3h2.868L9.012 17H5v3h10v-3h-2.868l2.856-10z'/%3E%3C/svg%3E"); } .bx-joystick { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M22 8.65A5 5 0 0 0 17 4H7a5 5 0 0 0-5 4.74A2 2 0 0 0 2 9v7.5A3.48 3.48 0 0 0 5.5 20c1.43 0 2.32-1.06 3.19-2.09c.32-.37.65-.76 1-1.1a4.8 4.8 0 0 1 1.54-.75a6.6 6.6 0 0 1 1.54 0a4.8 4.8 0 0 1 1.54.75c.35.34.68.73 1 1.1c.87 1 1.76 2.09 3.19 2.09a3.48 3.48 0 0 0 3.5-3.5V9a2 2 0 0 0 0-.26zm-2 7.85a1.5 1.5 0 0 1-1.5 1.5c-.5 0-1-.64-1.66-1.38c-.34-.39-.72-.85-1.15-1.26a6.7 6.7 0 0 0-2.46-1.25a6.9 6.9 0 0 0-2.46 0a6.7 6.7 0 0 0-2.46 1.25c-.43.41-.81.87-1.15 1.26C6.54 17.36 6 18 5.5 18A1.5 1.5 0 0 1 4 16.5V9a1 1 0 0 0 0-.15A3 3 0 0 1 7 6h10a3 3 0 0 1 3 2.72v.12A1 1 0 0 0 20 9z'/%3E%3Ccircle cx='16' cy='12' r='1' fill='black'/%3E%3Ccircle cx='18' cy='10' r='1' fill='black'/%3E%3Ccircle cx='16' cy='8' r='1' fill='black'/%3E%3Ccircle cx='14' cy='10' r='1' fill='black'/%3E%3Ccircle cx='8' cy='10' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-joystick-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='15' cy='13' r='1' fill='black'/%3E%3Ccircle cx='17' cy='11' r='1' fill='black'/%3E%3Cpath fill='black' d='M10 9H8v2H6v2h2v2h2v-2h2v-2h-2z'/%3E%3Cpath fill='black' d='M15 5H9a7 7 0 0 0-7 7a7 7 0 0 0 7 7h6a7 7 0 0 0 7-7a7 7 0 0 0-7-7m0 12H9A5 5 0 1 1 9 7h6a5 5 0 1 1 0 10'/%3E%3C/svg%3E"); } .bx-joystick-button { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 7h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v3H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2h3v3c0 1.103.897 2 2 2h6c1.103 0 2-.897 2-2v-3h3c1.103 0 2-.897 2-2V9c0-1.103-.897-2-2-2m0 8h-5v4h.001v1H9v-5H4V9h5V4h6v5h5z'/%3E%3Cpath fill='black' d='M8 14v-4l-3 2zm8 0l3-2l-3-2zm-6-6h4l-2-3zm2 11l2-3h-4z'/%3E%3Ccircle cx='12' cy='12' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-key { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 17a5.01 5.01 0 0 0 4.898-4H14v2h2v-2h2v3h2v-3h1v-2h-9.102A5.01 5.01 0 0 0 7 7c-2.757 0-5 2.243-5 5s2.243 5 5 5m0-8c1.654 0 3 1.346 3 3s-1.346 3-3 3s-3-1.346-3-3s1.346-3 3-3'/%3E%3C/svg%3E"); } .bx-knife { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.66 3.6a3 3 0 0 0-4.24 0l-.71.71l-7.07 7.07l2.12 2.12l-6.36 6.36l1.41 1.42L19.66 6.43c1.1-1.1 1.1-1.73.71-2.12z'/%3E%3C/svg%3E"); } .bx-label { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.813 4.419A1 1 0 0 0 16 4H3a1 1 0 0 0-.813 1.581L6.771 12l-4.585 6.419A1 1 0 0 0 3 20h13a1 1 0 0 0 .813-.419l5-7a1 1 0 0 0 0-1.162zM15.485 18H4.943l3.87-5.419a1 1 0 0 0 0-1.162L4.943 6h10.542l4.286 6z'/%3E%3C/svg%3E"); } .bx-landscape { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 20h18a1 1 0 0 0 .864-1.504l-7-12c-.359-.615-1.369-.613-1.729 0L9.866 12.1l-1.02-1.632A1 1 0 0 0 8 10h-.001a1 1 0 0 0-.847.47l-5 8A1 1 0 0 0 3 20M14 8.985L19.259 18h-5.704l-2.486-3.987zm-5.999 3.9L11.197 18H4.805zM6 8c1.654 0 3-1.346 3-3S7.654 2 6 2S3 3.346 3 5s1.346 3 3 3m0-4a1 1 0 1 1 0 2a1 1 0 0 1 0-2'/%3E%3C/svg%3E"); } .bx-laptop { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 17.722c.595-.347 1-.985 1-1.722V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v11c0 .736.405 1.375 1 1.722V18H2v2h20v-2h-2zM5 16V5h14l.002 11z'/%3E%3C/svg%3E"); } .bx-last-page { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.707 17.707L13.414 12L7.707 6.293L6.293 7.707L10.586 12l-4.293 4.293zM15 6h2v12h-2z'/%3E%3C/svg%3E"); } .bx-laugh { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M12 18c4 0 5-4 5-4H7s1 4 5 4m5.555-9.168l-1.109-1.664l-3 2a1 1 0 0 0 .108 1.727l4 2l.895-1.789l-2.459-1.229zm-6.557 1.23a1 1 0 0 0-.443-.894l-3-2l-1.11 1.664l1.566 1.044l-2.459 1.229l.895 1.789l4-2a1 1 0 0 0 .551-.832'/%3E%3C/svg%3E"); } .bx-layer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M22 7.999a1 1 0 0 0-.516-.874l-9.022-5a1 1 0 0 0-.968 0l-8.978 4.96a1 1 0 0 0-.003 1.748l9.022 5.04a1 1 0 0 0 .973.001l8.978-5A1 1 0 0 0 22 7.999m-9.977 3.855L5.06 7.965l6.917-3.822l6.964 3.859z'/%3E%3Cpath fill='black' d='M20.515 11.126L12 15.856l-8.515-4.73l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5z'/%3E%3Cpath fill='black' d='M20.515 15.126L12 19.856l-8.515-4.73l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5z'/%3E%3C/svg%3E"); } .bx-layer-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2.513 12.833l9.022 5.04a1 1 0 0 0 .973.001l8.978-5a1 1 0 0 0-.002-1.749l-9.022-5a1 1 0 0 0-.968-.001l-8.978 4.96a1 1 0 0 0-.003 1.749m9.464-4.69l6.964 3.859l-6.917 3.853l-6.964-3.89z'/%3E%3Cpath fill='black' d='m3.485 15.126l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5l-.971-1.748L12 19.856zM16 4h6v2h-6z'/%3E%3C/svg%3E"); } .bx-layer-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.484 11.125l-9.022-5a1 1 0 0 0-.968-.001l-8.978 4.96a1 1 0 0 0-.003 1.749l9.022 5.04a1 1 0 0 0 .973.001l8.978-5a1 1 0 0 0-.002-1.749m-9.461 4.73l-6.964-3.89l6.917-3.822l6.964 3.859z'/%3E%3Cpath fill='black' d='M12 22a1 1 0 0 0 .485-.126l9-5l-.971-1.748L12 19.856l-8.515-4.73l-.971 1.748l9 5A1 1 0 0 0 12 22m8-20h-2v2h-2v2h2v2h2V6h2V4h-2z'/%3E%3C/svg%3E"); } .bx-layout { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m0 2l.001 4H5V5zM5 11h8v8H5zm10 8v-8h4.001l.001 8z'/%3E%3C/svg%3E"); } .bx-leaf { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.88 2.15l-1.2.4a13.84 13.84 0 0 1-6.41.64a11.87 11.87 0 0 0-6.68.9A7.23 7.23 0 0 0 3.3 9.5a8.65 8.65 0 0 0 1.47 6.6c-.06.21-.12.42-.17.63A22.6 22.6 0 0 0 4 22h2a31 31 0 0 1 .59-4.32a9.25 9.25 0 0 0 4.52 1.11a11 11 0 0 0 4.28-.87C23 14.67 22 3.86 22 3.41zm-7.27 13.93c-2.61 1.11-5.73.92-7.48-.45a13.8 13.8 0 0 1 1.21-2.84A10.2 10.2 0 0 1 9.73 11a9 9 0 0 1 1.81-1.42A12 12 0 0 1 16 8V7a11.4 11.4 0 0 0-5.26 1.08a10.3 10.3 0 0 0-4.12 3.65a15 15 0 0 0-1 1.87a7 7 0 0 1-.38-3.73a5.24 5.24 0 0 1 3.14-4a8.9 8.9 0 0 1 3.82-.84c.62 0 1.23.06 1.87.11a16.2 16.2 0 0 0 6-.35C20 7.55 19.5 14 14.61 16.08'/%3E%3C/svg%3E"); } .bx-left-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.464 2.114a1 1 0 0 0-1.033.063l-13 9a1.003 1.003 0 0 0 0 1.645l13 9A1 1 0 0 0 19 21V3a1 1 0 0 0-.536-.886M17 19.091L6.757 12L17 4.909z'/%3E%3C/svg%3E"); } .bx-left-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.707 17.293L8.414 13H18v-2H8.414l4.293-4.293l-1.414-1.414L4.586 12l6.707 6.707z'/%3E%3C/svg%3E"); } .bx-left-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.999 1.993C6.486 1.994 2 6.48 1.999 11.994s4.486 10 10.001 10c5.514-.001 10-4.487 10-10c0-5.514-4.486-10-10.001-10.001M12 19.994c-4.412 0-8.001-3.589-8.001-8c.001-4.411 3.59-8 8-8.001C16.411 3.994 20 7.583 20 11.994s-3.589 7.999-8 8'/%3E%3Cpath fill='black' d='m12.012 7.989l-4.005 4.005l4.005 4.004v-3.004h3.994v-2h-3.994z'/%3E%3C/svg%3E"); } .bx-left-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.006 2.007A9.93 9.93 0 0 0 4.935 4.93c-3.898 3.898-3.898 10.242 0 14.142c1.885 1.885 4.396 2.923 7.071 2.923s5.187-1.038 7.071-2.923c3.898-3.899 3.898-10.243 0-14.142a9.93 9.93 0 0 0-7.071-2.923m5.657 15.65c-1.507 1.507-3.516 2.337-5.657 2.337s-4.15-.83-5.657-2.337c-3.118-3.119-3.118-8.194 0-11.313c1.507-1.507 3.517-2.337 5.657-2.337s4.15.83 5.657 2.337c3.118 3.119 3.118 8.194 0 11.313'/%3E%3Cpath fill='black' d='m14.346 8.247l-3.215 3.215l-2.125-2.125V15h5.663l-2.124-2.124l3.215-3.215z'/%3E%3C/svg%3E"); } .bx-left-indent { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 7h10v2H4zm0-4h16v2H4zm0 8h10v2H4zm0 4h10v2H4zm0 4h16v2H4zm16-3V8l-4 4z'/%3E%3C/svg%3E"); } .bx-left-top-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.993 2.007a9.93 9.93 0 0 0-7.071 2.922c-3.899 3.899-3.899 10.243 0 14.143a9.93 9.93 0 0 0 7.071 2.923a9.93 9.93 0 0 0 7.071-2.923c3.899-3.899 3.899-10.243 0-14.143a9.93 9.93 0 0 0-7.071-2.922m5.657 15.65a7.95 7.95 0 0 1-5.657 2.337c-2.141 0-4.15-.83-5.657-2.337c-3.119-3.119-3.119-8.195 0-11.314a7.95 7.95 0 0 1 5.657-2.336c2.142 0 4.15.829 5.657 2.336c3.12 3.119 3.12 8.195 0 11.314'/%3E%3Cpath fill='black' d='M14.657 9H8.993v5.663l2.125-2.124l3.215 3.214l1.414-1.414l-3.215-3.214z'/%3E%3C/svg%3E"); } .bx-lemon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22a9.8 9.8 0 0 1-3.26-.55a2.23 2.23 0 0 0-1.7.19a3.5 3.5 0 0 1-2.47.24a3.55 3.55 0 0 1-2.45-2.45A3.5 3.5 0 0 1 2.36 17a2.23 2.23 0 0 0 .19-1.7a10.07 10.07 0 0 1 0-6.53a9.87 9.87 0 0 1 6.18-6.23a10.07 10.07 0 0 1 6.53 0A2.23 2.23 0 0 0 17 2.36a3.5 3.5 0 0 1 2.47-.24a3.55 3.55 0 0 1 2.45 2.45A3.5 3.5 0 0 1 21.64 7a2.23 2.23 0 0 0-.19 1.7a10.07 10.07 0 0 1 0 6.53a9.87 9.87 0 0 1-6.19 6.19A10.3 10.3 0 0 1 12 22m-3.84-2.64a3.9 3.9 0 0 1 1.23.2a8 8 0 0 0 5.24 0a7.84 7.84 0 0 0 4.94-4.93a8 8 0 0 0 0-5.24a4.2 4.2 0 0 1 .29-3.23a1.53 1.53 0 0 0 .09-1.08a1.49 1.49 0 0 0-1-1a1.53 1.53 0 0 0-1.08.09a4.2 4.2 0 0 1-3.23.29a8 8 0 0 0-5.24 0a7.84 7.84 0 0 0-4.97 4.91a8 8 0 0 0 0 5.24a4.2 4.2 0 0 1-.29 3.23a1.53 1.53 0 0 0-.09 1.08a1.49 1.49 0 0 0 1 1a1.53 1.53 0 0 0 1.08-.09a4.5 4.5 0 0 1 2.03-.47'/%3E%3Cpath fill='black' d='M8 12H6a6 6 0 0 1 6-6v2a4 4 0 0 0-4 4'/%3E%3C/svg%3E"); } .bx-library { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 3h2v18H7zM4 3h2v18H4zm6 0h2v18h-2zm9.062 17.792l-6.223-16.89l1.877-.692l6.223 16.89z'/%3E%3C/svg%3E"); } .bx-like { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 8h-5.612l1.123-3.367c.202-.608.1-1.282-.275-1.802S14.253 2 13.612 2H12c-.297 0-.578.132-.769.36L6.531 8H4c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h13.307a2.01 2.01 0 0 0 1.873-1.298l2.757-7.351A1 1 0 0 0 22 12v-2c0-1.103-.897-2-2-2M4 10h2v9H4zm16 1.819L17.307 19H8V9.362L12.468 4h1.146l-1.562 4.683A.998.998 0 0 0 13 10h7z'/%3E%3C/svg%3E"); } .bx-line-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 3v17a1 1 0 0 0 1 1h17v-2H5V3z'/%3E%3Cpath fill='black' d='M15.293 14.707a1 1 0 0 0 1.414 0l5-5l-1.414-1.414L16 12.586l-2.293-2.293a1 1 0 0 0-1.414 0l-5 5l1.414 1.414L13 12.414z'/%3E%3C/svg%3E"); } .bx-line-chart-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 3H3v18h18v-2H5z'/%3E%3Cpath fill='black' d='M13 12.586L8.707 8.293L7.293 9.707L13 15.414l3-3l4.293 4.293l1.414-1.414L16 9.586z'/%3E%3C/svg%3E"); } .bx-link { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.465 11.293c1.133-1.133 3.109-1.133 4.242 0l.707.707l1.414-1.414l-.707-.707c-.943-.944-2.199-1.465-3.535-1.465s-2.592.521-3.535 1.465L4.929 12a5.01 5.01 0 0 0 0 7.071a4.98 4.98 0 0 0 3.535 1.462A4.98 4.98 0 0 0 12 19.071l.707-.707l-1.414-1.414l-.707.707a3.007 3.007 0 0 1-4.243 0a3.005 3.005 0 0 1 0-4.243z'/%3E%3Cpath fill='black' d='m12 4.929l-.707.707l1.414 1.414l.707-.707a3.007 3.007 0 0 1 4.243 0a3.005 3.005 0 0 1 0 4.243l-2.122 2.121c-1.133 1.133-3.109 1.133-4.242 0L10.586 12l-1.414 1.414l.707.707c.943.944 2.199 1.465 3.535 1.465s2.592-.521 3.535-1.465L19.071 12a5.01 5.01 0 0 0 0-7.071a5.006 5.006 0 0 0-7.071 0'/%3E%3C/svg%3E"); } .bx-link-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.222 19.778a4.98 4.98 0 0 0 3.535 1.462a5 5 0 0 0 3.536-1.462l2.828-2.829l-1.414-1.414l-2.828 2.829a3.007 3.007 0 0 1-4.243 0a3.005 3.005 0 0 1 0-4.243l2.829-2.828l-1.414-1.414l-2.829 2.828a5.006 5.006 0 0 0 0 7.071m15.556-8.485a5.01 5.01 0 0 0 0-7.071a5.006 5.006 0 0 0-7.071 0L9.879 7.051l1.414 1.414l2.828-2.829a3.007 3.007 0 0 1 4.243 0a3.005 3.005 0 0 1 0 4.243l-2.829 2.828l1.414 1.414z'/%3E%3Cpath fill='black' d='m8.464 16.95l-1.415-1.414l8.487-8.486l1.414 1.415z'/%3E%3C/svg%3E"); } .bx-link-external { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m13 3l3.293 3.293l-7 7l1.414 1.414l7-7L21 11V3z'/%3E%3Cpath fill='black' d='M19 19H5V5h7l-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-5l-2-2z'/%3E%3C/svg%3E"); } .bx-lira { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 21h2c4.411 0 8-4.038 8-9h-2c0 3.86-2.691 7-6 7v-7.358l6-1.385V8.204l-6 1.385V7.642l6-1.385V4.204l-6 1.385V3H9v3.05l-3 .693v2.053l3-.692v1.947l-3 .692v2.053l3-.692z'/%3E%3C/svg%3E"); } .bx-list-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 7h11v2H4zm0 4h11v2H4zm0 4h7v2H4zm15.299-2.708l-4.3 4.291l-1.292-1.291l-1.414 1.415l2.706 2.704l5.712-5.703z'/%3E%3C/svg%3E"); } .bx-list-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.063 15H13v2h9v-2zM4 7h11v2H4zm0 4h11v2H4zm0 4h7v2H4z'/%3E%3C/svg%3E"); } .bx-list-ol { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.282 12.064c-.428.328-.72.609-.875.851q-.233.361-.279.768h2.679v-.748H5.413c.081-.081.152-.151.212-.201q.093-.076.361-.27q.454-.327.626-.604c.116-.186.173-.375.173-.578a.9.9 0 0 0-.151-.512a.9.9 0 0 0-.412-.341q-.262-.113-.733-.111q-.451 0-.706.114a.9.9 0 0 0-.396.338q-.141.216-.194.604l.894.076q.037-.28.147-.394a.38.38 0 0 1 .279-.108q.165 0 .272.108a.34.34 0 0 1 .108.258a.55.55 0 0 1-.108.297q-.11.154-.503.453m.055 6.386a.4.4 0 0 1-.282-.105q-.111-.104-.162-.378L4 18.085q.088.306.251.506t.417.306Q4.92 19 5.36 19q.45 0 .725-.14a1 1 0 0 0 .424-.403q.146-.26.146-.544a.8.8 0 0 0-.088-.393a.7.7 0 0 0-.249-.261a1 1 0 0 0-.286-.11a.94.94 0 0 0 .345-.299a.67.67 0 0 0 .113-.383a.75.75 0 0 0-.281-.596q-.28-.238-.909-.238q-.548 0-.847.219q-.3.216-.404.626l.844.151q.034-.242.133-.338c.099-.096.151-.098.257-.098a.33.33 0 0 1 .241.089q.088.09.087.238q0 .155-.117.27c-.117.115-.177.112-.293.112a1 1 0 0 1-.116-.011l-.045.649a1 1 0 0 1 .289-.056q.199 0 .313.126q.115.123.115.352q0 .22-.119.354a.4.4 0 0 1-.301.134m.948-10.083V5h-.739a1.5 1.5 0 0 1-.394.523q-.252.212-.708.365v.754a2.6 2.6 0 0 0 .937-.48v2.206zM9 6h11v2H9zm0 5h11v2H9zm0 5h11v2H9z'/%3E%3C/svg%3E"); } .bx-list-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 15v-3h-2v3h-3v2h3v3h2v-3h3v-2h-.937zM4 7h11v2H4zm0 4h11v2H4zm0 4h8v2H4z'/%3E%3C/svg%3E"); } .bx-list-ul { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 6h2v2H4zm0 5h2v2H4zm0 5h2v2H4zm16-8V6H8.023v2H18.8zM8 11h12v2H8zm0 5h12v2H8z'/%3E%3C/svg%3E"); } .bx-loader { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 11h5v2H2zm15 0h5v2h-5zm-6 6h2v5h-2zm0-15h2v5h-2zM4.222 5.636l1.414-1.414l3.536 3.536l-1.414 1.414zm15.556 12.728l-1.414 1.414l-3.536-3.536l1.414-1.414zm-12.02-3.536l1.414 1.414l-3.536 3.536l-1.414-1.414zm7.07-7.071l3.536-3.535l1.414 1.415l-3.536 3.535z'/%3E%3C/svg%3E"); } .bx-loader-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c5.421 0 10-4.579 10-10h-2c0 4.337-3.663 8-8 8s-8-3.663-8-8s3.663-8 8-8V2C6.579 2 2 6.58 2 12c0 5.421 4.579 10 10 10'/%3E%3C/svg%3E"); } .bx-loader-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='20' r='2' fill='black'/%3E%3Ccircle cx='12' cy='4' r='2' fill='black'/%3E%3Ccircle cx='6.343' cy='17.657' r='2' fill='black'/%3E%3Ccircle cx='17.657' cy='6.343' r='2' fill='black'/%3E%3Ccircle cx='4' cy='12' r='2.001' fill='black'/%3E%3Ccircle cx='20' cy='12' r='2' fill='black'/%3E%3Ccircle cx='6.343' cy='6.344' r='2' fill='black'/%3E%3Ccircle cx='17.657' cy='17.658' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-location-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.42 21.815a1 1 0 0 0 1.16 0C12.884 21.598 20.029 16.44 20 10c0-4.411-3.589-8-8-8S4 5.589 4 9.996c-.029 6.444 7.116 11.602 7.42 11.819M12 4c3.309 0 6 2.691 6 6.004c.021 4.438-4.388 8.423-6 9.731c-1.611-1.308-6.021-5.293-6-9.735c0-3.309 2.691-6 6-6'/%3E%3Cpath fill='black' d='M11 14h2v-3h3V9h-3V6h-2v3H8v2h3z'/%3E%3C/svg%3E"); } .bx-lock { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C9.243 2 7 4.243 7 7v2H6c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2h-1V7c0-2.757-2.243-5-5-5M9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v2H9zm9.002 13H13v-2.278c.595-.347 1-.985 1-1.722c0-1.103-.897-2-2-2s-2 .897-2 2c0 .736.405 1.375 1 1.722V20H6v-9h12z'/%3E%3C/svg%3E"); } .bx-lock-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C9.243 2 7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2h-1V7c0-2.757-2.243-5-5-5m6 10l.002 8H6v-8zm-9-2V7c0-1.654 1.346-3 3-3s3 1.346 3 3v3z'/%3E%3C/svg%3E"); } .bx-lock-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4c1.654 0 3 1.346 3 3h2c0-2.757-2.243-5-5-5S7 4.243 7 7v2H6c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2H9V7c0-1.654 1.346-3 3-3m6.002 16H13v-2.278c.595-.347 1-.985 1-1.722c0-1.103-.897-2-2-2s-2 .897-2 2c0 .736.405 1.375 1 1.722V20H6v-9h12z'/%3E%3C/svg%3E"); } .bx-lock-open-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 8V7c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2H9V7c0-1.654 1.346-3 3-3s3 1.346 3 3v1zm1 4l.002 8H6v-8z'/%3E%3C/svg%3E"); } .bx-log-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m13 16l5-4l-5-4v3H4v2h9z'/%3E%3Cpath fill='black' d='M20 3h-9c-1.103 0-2 .897-2 2v4h2V5h9v14h-9v-4H9v4c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bx-log-in-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10.998 16l5-4l-5-4v3h-9v2h9z'/%3E%3Cpath fill='black' d='M12.999 2.999a8.94 8.94 0 0 0-6.364 2.637L8.049 7.05c1.322-1.322 3.08-2.051 4.95-2.051s3.628.729 4.95 2.051S20 10.13 20 12s-.729 3.628-2.051 4.95s-3.08 2.051-4.95 2.051s-3.628-.729-4.95-2.051l-1.414 1.414c1.699 1.7 3.959 2.637 6.364 2.637s4.665-.937 6.364-2.637C21.063 16.665 22 14.405 22 12s-.937-4.665-2.637-6.364a8.94 8.94 0 0 0-6.364-2.637'/%3E%3C/svg%3E"); } .bx-log-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 13v-2H7V8l-5 4l5 4v-3z'/%3E%3Cpath fill='black' d='M20 3h-9c-1.103 0-2 .897-2 2v4h2V5h9v14h-9v-4H9v4c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bx-log-out-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2 12l5 4v-3h9v-2H7V8z'/%3E%3Cpath fill='black' d='M13.001 2.999a8.94 8.94 0 0 0-6.364 2.637L8.051 7.05c1.322-1.322 3.08-2.051 4.95-2.051s3.628.729 4.95 2.051s2.051 3.08 2.051 4.95s-.729 3.628-2.051 4.95s-3.08 2.051-4.95 2.051s-3.628-.729-4.95-2.051l-1.414 1.414c1.699 1.7 3.959 2.637 6.364 2.637s4.665-.937 6.364-2.637c1.7-1.699 2.637-3.959 2.637-6.364s-.937-4.665-2.637-6.364a8.94 8.94 0 0 0-6.364-2.637'/%3E%3C/svg%3E"); } .bx-low-vision { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4.998c-1.836 0-3.356.389-4.617.971L3.707 2.293L2.293 3.707l3.315 3.316c-2.613 1.952-3.543 4.618-3.557 4.66l-.105.316l.105.316C2.073 12.382 4.367 19 12 19c1.835 0 3.354-.389 4.615-.971l3.678 3.678l1.414-1.414l-3.317-3.317c2.614-1.952 3.545-4.618 3.559-4.66l.105-.316l-.105-.316c-.022-.068-2.316-6.686-9.949-6.686M4.074 12c.103-.236.274-.586.521-.989l5.867 5.867C6.249 16.23 4.523 13.035 4.074 12m9.247 4.907l-7.48-7.481a8 8 0 0 1 1.188-.982l8.055 8.054a9 9 0 0 1-1.763.409m3.648-1.352l-1.541-1.541c.354-.596.572-1.28.572-2.015c0-.474-.099-.924-.255-1.349A.98.98 0 0 1 15 11a1 1 0 0 1-1-1c0-.439.288-.802.682-.936A3.97 3.97 0 0 0 12 7.999c-.735 0-1.419.218-2.015.572l-1.07-1.07A9.3 9.3 0 0 1 12 6.998c5.351 0 7.425 3.847 7.926 5a8.57 8.57 0 0 1-2.957 3.557'/%3E%3C/svg%3E"); } .bx-magnet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3h-3c-1.103 0-2 .897-2 2v8c0 1.103-.897 2-2 2s-2-.897-2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v8c0 4.963 4.037 9 9 9s9-4.037 9-9V5c0-1.103-.897-2-2-2m-3 2h3v3h-3zM5 5h3v3H5zm7 15c-3.859 0-7-3.141-7-7v-3h3v3c0 2.206 1.794 4 4 4s4-1.794 4-4v-3h3v3c0 3.859-3.141 7-7 7'/%3E%3C/svg%3E"); } .bx-mail-send { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H6c-1.103 0-2 .897-2 2v5h2V8l6.4 4.8a1 1 0 0 0 1.2 0L20 8v9h-8v2h8c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-7 6.75L6.666 6h12.668z'/%3E%3Cpath fill='black' d='M2 12h7v2H2zm2 3h6v2H4zm3 3h4v2H7z'/%3E%3C/svg%3E"); } .bx-male { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M15 7H9a1 1 0 0 0-1 1v7h2v7h4v-7h2V8a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bx-male-female { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='6' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M9 7H3a1 1 0 0 0-1 1v7h2v7h4v-7h2V8a1 1 0 0 0-1-1'/%3E%3Ccircle cx='17' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M20.21 7.73a1 1 0 0 0-1-.73h-4.5a1 1 0 0 0-1 .73L12 14h2l-1 4h2v4h4v-4h2l-1-4h2z'/%3E%3C/svg%3E"); } .bx-male-sign { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 11V4h-7l2.793 2.793l-4.322 4.322A5.96 5.96 0 0 0 8 10c-3.309 0-6 2.691-6 6s2.691 6 6 6s6-2.691 6-6c0-1.294-.416-2.49-1.115-3.471l4.322-4.322zM8 20c-2.206 0-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4s-1.794 4-4 4'/%3E%3C/svg%3E"); } .bx-map { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 14c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4m0-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2'/%3E%3Cpath fill='black' d='M11.42 21.814a1 1 0 0 0 1.16 0C12.884 21.599 20.029 16.44 20 10c0-4.411-3.589-8-8-8S4 5.589 4 9.995c-.029 6.445 7.116 11.604 7.42 11.819M12 4c3.309 0 6 2.691 6 6.005c.021 4.438-4.388 8.423-6 9.73c-1.611-1.308-6.021-5.294-6-9.735c0-3.309 2.691-6 6-6'/%3E%3C/svg%3E"); } .bx-map-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.447 6.105l-6-3a1 1 0 0 0-.895 0L9 5.882L3.447 3.105A1 1 0 0 0 2 4v13c0 .379.214.725.553.895l6 3a1 1 0 0 0 .895 0L15 18.118l5.553 2.776a.99.99 0 0 0 .972-.043c.295-.183.475-.504.475-.851V7c0-.379-.214-.725-.553-.895M10 7.618l4-2v10.764l-4 2zm-6-2l4 2v10.764l-4-2zm16 12.764l-4-2V5.618l4 2z'/%3E%3C/svg%3E"); } .bx-map-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 17l1-2V9.858c1.721-.447 3-2 3-3.858c0-2.206-1.794-4-4-4S8 3.794 8 6c0 1.858 1.279 3.411 3 3.858V15zM10 6c0-1.103.897-2 2-2s2 .897 2 2s-.897 2-2 2s-2-.897-2-2'/%3E%3Cpath fill='black' d='m16.267 10.563l-.533 1.928C18.325 13.207 20 14.584 20 16c0 1.892-3.285 4-8 4s-8-2.108-8-4c0-1.416 1.675-2.793 4.267-3.51l-.533-1.928C4.197 11.54 2 13.623 2 16c0 3.364 4.393 6 10 6s10-2.636 10-6c0-2.377-2.197-4.46-5.733-5.437'/%3E%3C/svg%3E"); } .bx-mask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 6H5C3.346 6 2 7.346 2 9v5c0 2.206 1.794 4 4 4h1.637c1.166 0 2.28-.557 2.981-1.491c.66-.879 2.104-.88 2.764.001A3.74 3.74 0 0 0 16.363 18H18c2.206 0 4-1.794 4-4V9c0-1.654-1.346-3-3-3m1 8c0 1.103-.897 2-2 2h-1.637c-.54 0-1.057-.259-1.382-.69c-.71-.948-1.797-1.492-2.981-1.492s-2.271.544-2.981 1.491A1.74 1.74 0 0 1 7.637 16H6c-1.103 0-2-.897-2-2V9c0-.551.448-1 1-1h14c.552 0 1 .449 1 1z'/%3E%3Cellipse cx='7.5' cy='11.5' fill='black' rx='2.5' ry='1.5'/%3E%3Cellipse cx='16.5' cy='11.5' fill='black' rx='2.5' ry='1.5'/%3E%3C/svg%3E"); } .bx-math { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 2H5v3H2v2h3v3h2V7h3V5H7zm7 3h8v2h-8zm0 10h8v2h-8zm0 4h8v2h-8zm-5.71-4.71L6 16.59l-2.29-2.3l-1.42 1.42L4.59 18l-2.3 2.29l1.42 1.42L6 19.41l2.29 2.3l1.42-1.42L7.41 18l2.3-2.29z'/%3E%3C/svg%3E"); } .bx-medal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c3.859 0 7-3.141 7-7s-3.141-7-7-7s-7 3.141-7 7s3.14 7 7 7m0-12c2.757 0 5 2.243 5 5s-2.243 5-5 5s-5-2.243-5-5s2.243-5 5-5m-1-8H7v5.518a8.96 8.96 0 0 1 4-1.459zm6 0h-4v4.059a8.96 8.96 0 0 1 4 1.459z'/%3E%3Cpath fill='black' d='m10.019 15.811l-.468 2.726L12 17.25l2.449 1.287l-.468-2.726l1.982-1.932l-2.738-.398L12 11l-1.225 2.481l-2.738.398z'/%3E%3C/svg%3E"); } .bx-meh { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.493' cy='10.493' r='1.493' fill='black'/%3E%3Cpath fill='black' d='M7.974 15H16v2H7.974z'/%3E%3C/svg%3E"); } .bx-meh-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M14 10h4v2h-4zm-6.026 5H16v2H7.974zM6 10h4v2H6z'/%3E%3C/svg%3E"); } .bx-meh-blank { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.493' cy='10.493' r='1.493' fill='black'/%3E%3C/svg%3E"); } .bx-memory-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 4v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 14 2H6c-1.103 0-2 .897-2 2m14 4.414L18.001 20H6V4h7.586z'/%3E%3Cpath fill='black' d='M8 6h2v4H8zm4 0h2v4h-2z'/%3E%3C/svg%3E"); } .bx-menu { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E"); } .bx-menu-alt-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 11h12v2H4zm0-5h16v2H4zm0 12h7.235v-2H4z'/%3E%3C/svg%3E"); } .bx-menu-alt-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 6h16v2H4zm4 5h12v2H8zm5 5h7v2h-7z'/%3E%3C/svg%3E"); } .bx-merge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 3H5a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2'/%3E%3Cpath fill='black' d='M21 19v-9a2 2 0 0 0-2-2h-1v8a2 2 0 0 1-2 2H8v1a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2'/%3E%3C/svg%3E"); } .bx-message { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.767L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.233V16H4V4h16z'/%3E%3C/svg%3E"); } .bx-message-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.767L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.233V16H4V4h16z'/%3E%3Cpath fill='black' d='M11 14h2v-3h3V9h-3V6h-2v3H8v2h3z'/%3E%3C/svg%3E"); } .bx-message-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.586L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-4.414L12 18.586L9.414 16H5V4h14z'/%3E%3C/svg%3E"); } .bx-message-alt-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 16c0 1.103.897 2 2 2h3.586L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2zM5 4h14v12h-4.414L12 18.586L9.414 16H5z'/%3E%3Cpath fill='black' d='M11 14h2v-3h3V9h-3V6h-2v3H8v2h3z'/%3E%3C/svg%3E"); } .bx-message-alt-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 4v12c0 1.103.897 2 2 2h3.586L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m2 0h14v12h-4.414L12 18.586L9.414 16H5z'/%3E%3Cpath fill='black' d='m17.207 7.207l-1.414-1.414L11 10.586L8.707 8.293L7.293 9.707L11 13.414z'/%3E%3C/svg%3E"); } .bx-message-alt-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 2c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.586L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm14 14h-4.414L12 18.586L9.414 16H5V4h14z'/%3E%3Cpath fill='black' d='M7 7h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E"); } .bx-message-alt-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.586L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-4.414L12 18.586L9.414 16H5V4h14z'/%3E%3Ccircle cx='15' cy='10' r='2' fill='black'/%3E%3Ccircle cx='9' cy='10' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-message-alt-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.586 18L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2zM5 4h14v12h-4.414L12 18.586L9.414 16H5z'/%3E%3Cpath fill='black' d='m12.479 7.219l-4.977 4.969v1.799h1.8l4.975-4.969zm2.219-2.22l1.8 1.8l-1.37 1.37l-1.8-1.799z'/%3E%3C/svg%3E"); } .bx-message-alt-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 2c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.586L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm14 14h-4.414L12 18.586L9.414 16H5V4h14z'/%3E%3Cpath fill='black' d='M11 6h2v6h-2zm0 7h2v2h-2z'/%3E%3C/svg%3E"); } .bx-message-alt-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.586 18L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2zM5 4h14v12h-4.414L12 18.586L9.414 16H5z'/%3E%3Cpath fill='black' d='M8 9h8v2H8z'/%3E%3C/svg%3E"); } .bx-message-alt-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.586 18L12 21.414L15.414 18H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2zM5 4h14v12h-4.414L12 18.586L9.414 16H5z'/%3E%3Cpath fill='black' d='M9.707 13.707L12 11.414l2.293 2.293l1.414-1.414L13.414 10l2.293-2.293l-1.414-1.414L12 8.586L9.707 6.293L8.293 7.707L10.586 10l-2.293 2.293z'/%3E%3C/svg%3E"); } .bx-message-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.767L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.233V16H4V4h16z'/%3E%3Cpath fill='black' d='m17.207 7.207l-1.414-1.414L11 10.586L8.707 8.293L7.293 9.707L11 13.414z'/%3E%3C/svg%3E"); } .bx-message-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.767L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.233V16H4V4h16z'/%3E%3Cpath fill='black' d='M7 7h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E"); } .bx-message-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.766L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.234V16H4V4h16z'/%3E%3Ccircle cx='15' cy='10' r='2' fill='black'/%3E%3Ccircle cx='9' cy='10' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-message-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.767L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.233V16H4V4h16z'/%3E%3Cpath fill='black' d='m13.803 9.189l-1.399-1.398l-3.869 3.864v1.399h1.399zm.327-3.123l1.398 1.399l-1.066 1.066l-1.399-1.398z'/%3E%3C/svg%3E"); } .bx-message-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.767L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.233V16H4V4h16z'/%3E%3Cpath fill='black' d='M11 6h2v5h-2zm0 6h2v2h-2z'/%3E%3C/svg%3E"); } .bx-message-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.767L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.233V16H4V4h16z'/%3E%3Cpath fill='black' d='M8 9h8v2H8z'/%3E%3C/svg%3E"); } .bx-message-rounded { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.516 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3C/svg%3E"); } .bx-message-rounded-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3Cpath fill='black' d='M13 6h-2v3H8v2h3v3h2v-3h3V9h-3z'/%3E%3C/svg%3E"); } .bx-message-rounded-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.339-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3Cpath fill='black' d='M11 11.586L8.707 9.293l-1.414 1.414L11 14.414l6.207-6.207l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-message-rounded-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3Cpath fill='black' d='M7 7h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E"); } .bx-message-rounded-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='9.5' cy='9.5' r='1.5' fill='black'/%3E%3Ccircle cx='14.5' cy='9.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.897 5.515 5 6.934V22l5.34-4.004C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.671 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3C/svg%3E"); } .bx-message-rounded-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3Cpath fill='black' d='M8.503 11.589v1.398h1.398l3.87-3.864l-1.399-1.398zm5.927-3.125l-1.398-1.398l1.067-1.067l1.398 1.398z'/%3E%3C/svg%3E"); } .bx-message-rounded-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3Cpath fill='black' d='M11 6h2v5h-2zm0 6h2v2h-2z'/%3E%3C/svg%3E"); } .bx-message-rounded-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3Cpath fill='black' d='M8 9h8v2H8z'/%3E%3C/svg%3E"); } .bx-message-rounded-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6s-3.589 6-8 6'/%3E%3Cpath fill='black' d='M14.293 6.293L12 8.586L9.707 6.293L8.293 7.707L10.586 10l-2.293 2.293l1.414 1.414L12 11.414l2.293 2.293l1.414-1.414L13.414 10l2.293-2.293z'/%3E%3C/svg%3E"); } .bx-message-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v12a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 13c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3C/svg%3E"); } .bx-message-square-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 14c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3Cpath fill='black' d='M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4z'/%3E%3C/svg%3E"); } .bx-message-square-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 14c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3Cpath fill='black' d='m11 13.586l-2.293-2.293l-1.414 1.414L11 16.414l6.207-6.207l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-message-square-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 14c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3Cpath fill='black' d='M7 9h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E"); } .bx-message-square-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v12a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 13c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3Ccircle cx='9.5' cy='11.5' r='1.5' fill='black'/%3E%3Ccircle cx='14.5' cy='11.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-message-square-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 14c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3Cpath fill='black' d='M7 14.987v1.999h1.999l5.529-5.522l-1.998-1.998zm8.47-4.465l-1.998-2L14.995 7l2 1.999z'/%3E%3C/svg%3E"); } .bx-message-square-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 14c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3Cpath fill='black' d='M11 6h2v8h-2zm0 10h2v2h-2z'/%3E%3C/svg%3E"); } .bx-message-square-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 14c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3Cpath fill='black' d='M8 11h8v2H8z'/%3E%3C/svg%3E"); } .bx-message-square-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m4 14c0 2.206-1.794 4-4 4H4V8c0-2.206 1.794-4 4-4h8c2.206 0 4 1.794 4 4z'/%3E%3Cpath fill='black' d='M15.292 7.295L12 10.587L8.708 7.295L7.294 8.709l3.292 3.292l-3.292 3.292l1.414 1.414L12 13.415l3.292 3.292l1.414-1.414l-3.292-3.292l3.292-3.292z'/%3E%3C/svg%3E"); } .bx-message-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3v3.767L13.277 18H20c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m0 14h-7.277L9 18.233V16H4V4h16z'/%3E%3Cpath fill='black' d='M9.707 13.707L12 11.414l2.293 2.293l1.414-1.414L13.414 10l2.293-2.293l-1.414-1.414L12 8.586L9.707 6.293L8.293 7.707L10.586 10l-2.293 2.293z'/%3E%3C/svg%3E"); } .bx-meteor { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.5 22c2.003 0 3.887-.78 5.313-2.207l6.904-7.096A1 1 0 0 0 21 11h-3.301l4.175-7.514a1.001 1.001 0 0 0-1.359-1.36l-7.11 3.95l.576-2.879a1 1 0 0 0-1.629-.957L4.196 9.197c-2.924 2.924-2.924 7.682 0 10.606A7.45 7.45 0 0 0 9.5 22M5.552 10.665l5.902-5.031l-.248 1.24l-.186.93v.001l-.424 2.119l7.83-4.35l-3.3 5.94l-.001.001L14.301 13h4.331l-5.243 5.389C12.35 19.428 10.969 20 9.5 20s-2.851-.572-3.89-1.611c-2.143-2.144-2.143-5.634-.058-7.724'/%3E%3Cpath fill='black' d='M9.5 18a3.492 3.492 0 0 0 1.484-6.659c.005.053.016.105.016.159a1.5 1.5 0 1 1-3 0c0-.054.011-.106.016-.159A3.492 3.492 0 0 0 9.5 18'/%3E%3C/svg%3E"); } .bx-microchip { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h8c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M8 20V4h8l.001 16zM3 7h2V5H3v.5H2v1h1zm18-2h-2v2h2v-.5h1v-1h-1zM3 11h2V9H3v.5H2v1h1zm18-2h-2v2h2v-.5h1v-1h-1zM3 15h2v-2H3v.5H2v1h1zm18-2h-2v2h2v-.5h1v-1h-1zM3 19h2v-2H3v.5H2v1h1zm18-2h-2v2h2v-.5h1v-1h-1z'/%3E%3C/svg%3E"); } .bx-microphone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 12V6c0-2.217-1.785-4.021-3.979-4.021a1 1 0 0 0-.209.025A4.006 4.006 0 0 0 8 6v6c0 2.206 1.794 4 4 4s4-1.794 4-4m-6 0V6c0-1.103.897-2 2-2a1 1 0 0 0 .163-.015C13.188 4.06 14 4.935 14 6v6c0 1.103-.897 2-2 2s-2-.897-2-2'/%3E%3Cpath fill='black' d='M6 12H4c0 4.072 3.061 7.436 7 7.931V22h2v-2.069c3.939-.495 7-3.858 7-7.931h-2c0 3.309-2.691 6-6 6s-6-2.691-6-6'/%3E%3C/svg%3E"); } .bx-microphone-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.707 20.293l-3.388-3.388A7.94 7.94 0 0 0 20 12.021h-2a5.95 5.95 0 0 1-1.109 3.456l-1.452-1.452c.348-.591.561-1.27.561-2.004v-6C16 3.804 14.215 2 12.021 2q-.105 0-.209.025A4.005 4.005 0 0 0 8 6.021v.565L3.707 2.293L2.293 3.707l18 18zM10 6.021c0-1.103.897-2 2-2a1 1 0 0 0 .164-.015C13.188 4.08 14 4.956 14 6.021v6c0 .172-.029.335-.071.494L10 8.586zm-4 6H4c0 4.072 3.06 7.436 7 7.931v2.069h2v-2.07a8 8 0 0 0 2.218-.611l-1.558-1.558a6 6 0 0 1-1.66.239c-3.309 0-6-2.692-6-6'/%3E%3Cpath fill='black' d='M8.011 12.132a3.993 3.993 0 0 0 3.877 3.877z'/%3E%3C/svg%3E"); } .bx-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 11h14v2H5z'/%3E%3C/svg%3E"); } .bx-minus-back { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 3H5c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h3v3c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2h-3V5c0-1.103-.897-2-2-2M5 5h9l-.003 9H5z'/%3E%3C/svg%3E"); } .bx-minus-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 11h10v2H7z'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-minus-front { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 16h3v3c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2h-3V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2m13.997 3H10v-9h9z'/%3E%3C/svg%3E"); } .bx-mobile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 2H7c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M7 16.999V5h10l.002 11.999z'/%3E%3C/svg%3E"); } .bx-mobile-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.75 2h-10c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-10 18V4h10l.002 16z'/%3E%3Ccircle cx='11.75' cy='18' r='1' fill='black'/%3E%3C/svg%3E"); } .bx-mobile-landscape { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 5H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2M7.001 7H19v10H7.001z'/%3E%3C/svg%3E"); } .bx-mobile-vibration { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.535 2.808c-.756-.756-2.072-.756-2.828 0l-9.899 9.899a2 2 0 0 0 0 2.828l5.657 5.657c.378.378.88.586 1.414.586s1.036-.208 1.414-.586l9.899-9.899c.378-.378.586-.88.586-1.414s-.208-1.036-.586-1.414zm-5.656 16.97v1zl-5.657-5.657l9.899-9.899l5.657 5.657z'/%3E%3Ccircle cx='9' cy='15' r='1' fill='black'/%3E%3Cpath fill='black' d='m15.707 21.707l-1.414-1.414l6-6l1.414 1.415zM8.293 2.293l1.414 1.414l-6 6l-1.414-1.415z'/%3E%3C/svg%3E"); } .bx-money { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 4H3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1m-1 11a3 3 0 0 0-3 3H7a3 3 0 0 0-3-3V9a3 3 0 0 0 3-3h10a3 3 0 0 0 3 3z'/%3E%3Cpath fill='black' d='M12 8c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4m0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2'/%3E%3C/svg%3E"); } .bx-money-withdraw { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 15c-1.84 0-2-.86-2-1H8c0 .92.66 2.55 3 2.92V18h2v-1.08c2-.34 3-1.63 3-2.92c0-1.12-.52-3-4-3c-2 0-2-.63-2-1s.7-1 2-1s1.39.64 1.4 1h2A3 3 0 0 0 13 7.12V6h-2v1.09C9 7.42 8 8.71 8 10c0 1.12.52 3 4 3c2 0 2 .68 2 1s-.62 1-2 1'/%3E%3Cpath fill='black' d='M5 2H2v2h2v17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V4h2V2zm13 18H6V4h12z'/%3E%3C/svg%3E"); } .bx-moon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.742 13.045a8 8 0 0 1-2.077.271c-2.135 0-4.14-.83-5.646-2.336a8.03 8.03 0 0 1-2.064-7.723A1 1 0 0 0 9.73 2.034a10 10 0 0 0-4.489 2.582c-3.898 3.898-3.898 10.243 0 14.143a9.94 9.94 0 0 0 7.072 2.93a9.93 9.93 0 0 0 7.07-2.929a10 10 0 0 0 2.583-4.491a1 1 0 0 0-1.224-1.224m-2.772 4.301a7.95 7.95 0 0 1-5.656 2.343a7.95 7.95 0 0 1-5.658-2.344c-3.118-3.119-3.118-8.195 0-11.314a8 8 0 0 1 2.06-1.483a10.03 10.03 0 0 0 2.89 7.848a9.97 9.97 0 0 0 7.848 2.891a8 8 0 0 1-1.484 2.059'/%3E%3C/svg%3E"); } .bx-mouse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.975 22H12c3.859 0 7-3.14 7-7V9c0-3.841-3.127-6.974-6.981-7h-.06C8.119 2.022 5 5.157 5 9v6c0 3.86 3.129 7 6.975 7M7 9a5.007 5.007 0 0 1 4.985-5C14.75 4.006 17 6.249 17 9v6c0 2.757-2.243 5-5 5h-.025C9.186 20 7 17.804 7 15z'/%3E%3Cpath fill='black' d='M11 6h2v6h-2z'/%3E%3C/svg%3E"); } .bx-mouse-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 2h-2C7.691 2 5 4.691 5 8v8c0 3.309 2.691 6 6 6h2c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m-2 2v6H7V8c0-2.206 1.794-4 4-4m6 12c0 2.206-1.794 4-4 4h-2c-2.206 0-4-1.794-4-4v-4h10zm-4-6V4c2.206 0 4 1.794 4 4v2z'/%3E%3C/svg%3E"); } .bx-move { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 11h-5V6h3l-4-4l-4 4h3v5H6V8l-4 4l4 4v-3h5v5H8l4 4l4-4h-3v-5h5v3l4-4l-4-4z'/%3E%3C/svg%3E"); } .bx-move-horizontal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 11H7V7l-5 5l5 5v-4h10v4l5-5l-5-5z'/%3E%3C/svg%3E"); } .bx-move-vertical { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m7 17l5 5l5-5h-4V7h4l-5-5l-5 5h4v10z'/%3E%3C/svg%3E"); } .bx-movie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m.001 6q-.002 0 0 0h-.466l-2.667-4H20zM9.535 9L6.868 5h2.597l2.667 4zm5 0l-2.667-4h2.597l2.667 4zM4 5h.465l2.667 4H4zm0 14v-8h16l.002 8z'/%3E%3C/svg%3E"); } .bx-movie-play { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m.001 6q-.002 0 0 0h-.465l-2.667-4H20zM9.536 9L6.869 5h2.596l2.667 4zm5 0l-2.667-4h2.596l2.667 4zM4 5h.465l2.667 4H4zm0 14v-8h16l.002 8z'/%3E%3Cpath fill='black' d='m10 18l5.5-3l-5.5-3z'/%3E%3C/svg%3E"); } .bx-music { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19.684 5.821l-9-3.272A1.998 1.998 0 0 0 8 4.428v6.129A3.95 3.95 0 0 0 6 10c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4V4.428L19 7.7v6.856A3.96 3.96 0 0 0 17 14c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4V7.7c0-.838-.529-1.594-1.316-1.879M6 16c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2m11 4c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2'/%3E%3C/svg%3E"); } .bx-navigation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.002 9.63c-.023.411.207.794.581.966l7.504 3.442l3.442 7.503c.164.356.52.583.909.583l.057-.002a1 1 0 0 0 .894-.686l5.595-17.032c.117-.358.023-.753-.243-1.02s-.66-.358-1.02-.243L2.688 8.736a1 1 0 0 0-.686.894m16.464-3.971l-4.182 12.73l-2.534-5.522a1 1 0 0 0-.492-.492L5.734 9.841z'/%3E%3C/svg%3E"); } .bx-network-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3c-1.654 0-3 1.346-3 3c0 .502.136.968.354 1.385l-1.116 1.302A4 4 0 0 0 13 8c-.739 0-1.425.216-2.02.566L9.566 7.152A3.45 3.45 0 0 0 10 5.5C10 3.57 8.43 2 6.5 2S3 3.57 3 5.5S4.57 9 6.5 9c.601 0 1.158-.166 1.652-.434L9.566 9.98A3.97 3.97 0 0 0 9 12c0 .997.38 1.899.985 2.601l-1.692 1.692l.025.025A2.96 2.96 0 0 0 7 16c-1.654 0-3 1.346-3 3s1.346 3 3 3s3-1.346 3-3c0-.476-.121-.919-.318-1.318l.025.025l1.954-1.954c.421.15.867.247 1.339.247c2.206 0 4-1.794 4-4a3.96 3.96 0 0 0-.439-1.785l1.253-1.462c.364.158.764.247 1.186.247c1.654 0 3-1.346 3-3s-1.346-3-3-3M7 20a1 1 0 1 1 0-2a1 1 0 0 1 0 2M5 5.5C5 4.673 5.673 4 6.5 4S8 4.673 8 5.5S7.327 7 6.5 7S5 6.327 5 5.5m8 8.5c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2m6-7a1 1 0 1 1 0-2a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bx-news { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.875 3H4.125C2.953 3 2 3.897 2 5v14c0 1.103.953 2 2.125 2h15.75C21.047 21 22 20.103 22 19V5c0-1.103-.953-2-2.125-2m0 16H4.125c-.057 0-.096-.016-.113-.016q-.01 0-.012.008L3.988 5.046c.007-.01.052-.046.137-.046h15.75c.079.001.122.028.125.008l.012 13.946c-.007.01-.052.046-.137.046'/%3E%3Cpath fill='black' d='M6 7h6v6H6zm7 8H6v2h12v-2h-4zm1-4h4v2h-4zm0-4h4v2h-4z'/%3E%3C/svg%3E"); } .bx-no-entry { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 10h10v4H7z'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-no-signal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 16h2v5H3zm4-3h2v8H7zM21 3h-2v14.59l-2-2V7h-2v6.59l-2-2V10h-1.59l-7.7-7.71l-1.42 1.42l18 18l1.42-1.42l-.71-.7zm-6 18h1.88L15 19.12zm-4 0h2v-3.88l-2-2z'/%3E%3C/svg%3E"); } .bx-note { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h8a1 1 0 0 0 .707-.293l7-7a1 1 0 0 0 .196-.293c.014-.03.022-.061.033-.093a1 1 0 0 0 .051-.259c.002-.021.013-.041.013-.062V5c0-1.103-.897-2-2-2M5 5h14v7h-6a1 1 0 0 0-1 1v6H5zm9 12.586V14h3.586z'/%3E%3C/svg%3E"); } .bx-notepad { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-3V2h-2v2h-4V2H8v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M5 20V7h14V6l.002 14z'/%3E%3Cpath fill='black' d='M7 9h10v2H7zm0 4h5v2H7z'/%3E%3C/svg%3E"); } .bx-notification { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='18' cy='6' r='3' fill='black'/%3E%3Cpath fill='black' d='M18 19H5V6h8c0-.712.153-1.387.422-2H5c-1.103 0-2 .897-2 2v13c0 1.103.897 2 2 2h13c1.103 0 2-.897 2-2v-8.422A5 5 0 0 1 18 11z'/%3E%3C/svg%3E"); } .bx-notification-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.71 20.296l-1.786-1.786c.045-.163.076-.332.076-.51v-7h-2v5.586L7.414 6H13V4H6c-.178 0-.347.031-.51.076l-1.78-1.78L2.296 3.71l18 18zM4 8.121V18c0 1.103.897 2 2 2h9.879l-2-2H6v-7.879z'/%3E%3Ccircle cx='18' cy='6' r='3' fill='black'/%3E%3C/svg%3E"); } .bx-objects-horizontal-center { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 20h6v2h2v-2h6a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1h-6v-2h4a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-4V2h-2v2H7a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4v2H5a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1M8 6h8v3H8zm-2 9h12v3H6z'/%3E%3C/svg%3E"); } .bx-objects-horizontal-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 2h2v20H2zm19 11H7a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1m-1 5H8v-3h12zM7 11h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1m1-5h8v3H8z'/%3E%3C/svg%3E"); } .bx-objects-horizontal-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2h2v20h-2zm-2 12a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1zm-2 4H4v-3h12zm-9-7h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1m1-5h8v3H8z'/%3E%3C/svg%3E"); } .bx-objects-vertical-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 20h20v2H2zM4 3v14a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1m2 1h3v12H6zm7 13a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1h-5a1 1 0 0 0-1 1zm2-9h3v8h-3z'/%3E%3C/svg%3E"); } .bx-objects-vertical-center { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 7a1 1 0 0 0-1-1h-5a1 1 0 0 0-1 1v4h-2V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v6H2v2h2v6a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-6h2v4a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-4h2v-2h-2zM9 18H6V6h3zm9-2h-3V8h3z'/%3E%3C/svg%3E"); } .bx-objects-vertical-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 2h20v2H2zm9 19V7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1m-2-1H6V8h3zM19 6h-5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1m-1 10h-3V8h3z'/%3E%3C/svg%3E"); } .bx-outline { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 19v-9c0-1.103-.897-2-2-2h-3V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h3v3c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2M5 14V5h9v3h-4c-1.103 0-2 .897-2 2v4zm9.001 0H10v-4h4.001zM10 16h4c1.103 0 2-.897 2-2v-4h3l.001 9H10z'/%3E%3C/svg%3E"); } .bx-package { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M22 8a.8.8 0 0 0 0-.21v-.08a1 1 0 0 0-.07-.16a.4.4 0 0 0-.05-.08l-.1-.13l-.08-.06l-.12-.09l-9-5a1 1 0 0 0-1 0l-9 5l-.09.07l-.11.08a.4.4 0 0 0-.07.11a.4.4 0 0 0-.08.1a.6.6 0 0 0-.06.14a.3.3 0 0 0 0 .1A.8.8 0 0 0 2 8v8a1 1 0 0 0 .52.87l9 5a1 1 0 0 0 .13.06h.1a1.06 1.06 0 0 0 .5 0h.1l.14-.06l9-5A1 1 0 0 0 22 16zm-10 3.87L5.06 8l2.76-1.52l6.83 3.9zm0-7.72L18.94 8L16.7 9.25L9.87 5.34zM4 9.7l7 3.92v5.68l-7-3.89zm9 9.6v-5.68l3-1.68V15l2-1v-3.18l2-1.11v5.7z'/%3E%3C/svg%3E"); } .bx-paint { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.061 22c1.523 0 2.84-.543 3.91-1.613c1.123-1.123 1.707-2.854 1.551-4.494l8.564-8.564a3.123 3.123 0 0 0-.002-4.414c-1.178-1.18-3.234-1.18-4.412 0l-8.884 8.884c-1.913.169-3.807 1.521-3.807 3.919c0 .303.021.588.042.86c.08 1.031.109 1.418-1.471 2.208a1 1 0 0 0-.122 1.717C2.52 20.563 4.623 22 7.061 22q-.002 0 0 0M18.086 4.328a1.144 1.144 0 0 1 1.586.002a1.12 1.12 0 0 1 0 1.584L12 13.586L10.414 12zM6.018 16.423c-.018-.224-.037-.458-.037-.706c0-1.545 1.445-1.953 2.21-1.953c.356 0 .699.073.964.206c.945.475 1.26 1.293 1.357 1.896c.177 1.09-.217 2.368-.956 3.107C8.865 19.664 8.049 20 7.061 20H7.06c-.75 0-1.479-.196-2.074-.427c1.082-.973 1.121-1.989 1.032-3.15'/%3E%3C/svg%3E"); } .bx-paint-roll { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 2H7c-1.103 0-2 .897-2 2v3c0 1.103.897 2 2 2h11c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M7 7V4h11l.002 3z'/%3E%3Cpath fill='black' d='M13 15v-2c0-1.103-.897-2-2-2H4V5c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h7v2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bx-palette { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.4 2.096a10.08 10.08 0 0 0-8.937 3.331A10.05 10.05 0 0 0 2.096 13.4c.53 3.894 3.458 7.207 7.285 8.246a10 10 0 0 0 2.618.354l.142-.001a3 3 0 0 0 2.516-1.426a2.99 2.99 0 0 0 .153-2.879l-.199-.416a1.92 1.92 0 0 1 .094-1.912a2.004 2.004 0 0 1 2.576-.755l.412.197c.412.198.85.299 1.301.299A3.02 3.02 0 0 0 22 12.14a10 10 0 0 0-.353-2.76c-1.04-3.826-4.353-6.754-8.247-7.284m5.158 10.909l-.412-.197c-1.828-.878-4.07-.198-5.135 1.494c-.738 1.176-.813 2.576-.204 3.842l.199.416a.98.98 0 0 1-.051.961a.99.99 0 0 1-.844.479h-.112a8 8 0 0 1-2.095-.283c-3.063-.831-5.403-3.479-5.826-6.586c-.321-2.355.352-4.623 1.893-6.389a8 8 0 0 1 7.16-2.664c3.107.423 5.755 2.764 6.586 5.826c.198.73.293 1.474.282 2.207c-.012.807-.845 1.183-1.441.894'/%3E%3Ccircle cx='7.5' cy='14.5' r='1.5' fill='black'/%3E%3Ccircle cx='7.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='10.5' cy='7.5' r='1.5' fill='black'/%3E%3Ccircle cx='14.5' cy='7.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-paper-plane { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.56 3.34a1 1 0 0 0-1-.08l-17 8a1 1 0 0 0-.57.92a1 1 0 0 0 .6.9L8 15.45v6.72L13.84 18l4.76 2.08a.9.9 0 0 0 .4.09a1 1 0 0 0 .52-.15a1 1 0 0 0 .48-.79l1-15a1 1 0 0 0-.44-.89M18.1 17.68l-5.27-2.31L16 9.17l-7.65 4.25l-2.93-1.29l13.47-6.34Z'/%3E%3C/svg%3E"); } .bx-paperclip { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.004 5H9c-1.838 0-3.586.737-4.924 2.076S2 10.163 2 12s.737 3.586 2.076 4.924S7.162 19 9 19h8v-2H9c-1.303 0-2.55-.529-3.51-1.49C4.529 14.55 4 13.303 4 12s.529-2.549 1.49-3.51C6.45 7.529 7.697 7 9 7h8V6l.001 1h.003c.79 0 1.539.314 2.109.886c.571.571.886 1.322.887 2.116a2.97 2.97 0 0 1-.884 2.11A3 3 0 0 1 17 13H9a1 1 0 0 1-.698-.3A1 1 0 0 1 8 12c0-.252.11-.507.301-.698A1 1 0 0 1 9 11h8V9H9c-.79 0-1.541.315-2.114.889C6.314 10.461 6 11.211 6 12s.314 1.54.888 2.114A2.97 2.97 0 0 0 9 15h8.001a4.97 4.97 0 0 0 3.528-1.473a4.967 4.967 0 0 0-.001-7.055A4.95 4.95 0 0 0 17.004 5'/%3E%3C/svg%3E"); } .bx-paragraph { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 16h2v4h2V6h2v14h2V6h3V4H9c-3.309 0-6 2.691-6 6s2.691 6 6 6M9 6h2v8H9c-2.206 0-4-1.794-4-4s1.794-4 4-4'/%3E%3C/svg%3E"); } .bx-party { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 8.31c-.36-.41-.73-.82-1.12-1.21l-.29-.27l.14-.12a3.15 3.15 0 0 0 .9-3.49A3.91 3.91 0 0 0 14 1v2a2 2 0 0 1 1.76 1c.17.4 0 .84-.47 1.31c-.07.08-.15.13-.22.2c-3-2.41-6.29-3.77-7.9-2.16a2.2 2.2 0 0 0-.41.59v.1l-.18.53l-4.41 13.1A3.28 3.28 0 0 0 5.28 22a3.2 3.2 0 0 0 1-.17L20 17.28a1 1 0 0 0 .43-.31l.21-.18c1.43-1.44.51-4.21-1.41-6.9A6.63 6.63 0 0 1 23 9V7a8.44 8.44 0 0 0-5 1.31M5.7 19.93a1.29 1.29 0 0 1-1.63-1.63l1.36-4.1a10.7 10.7 0 0 0 4.29 4.39zm7-2.33a8.87 8.87 0 0 1-6.3-6.29l1-3l.06.09c.11.22.25.45.39.68s.16.29.26.44s.33.48.51.73s.19.28.3.42s.43.55.66.82l.29.35c.34.39.7.77 1.08 1.16s.68.64 1 1l.33.28l.78.63l.37.28c.28.2.55.4.83.58l.31.2c.36.22.72.43 1.07.61h.05zm6.51-2.23h-.06c-.69.38-3.56-.57-6.79-3.81c-.34-.34-.66-.67-.95-1l-.29-.35l-.53-.64l-.29-.4c-.13-.19-.27-.37-.39-.55l-.26-.42l-.29-.47c-.08-.14-.14-.27-.21-.4s-.15-.26-.21-.4a3 3 0 0 1-.14-.36c-.05-.13-.11-.26-.15-.38S8.6 6 8.57 5.88s-.05-.22-.07-.32a2 2 0 0 1 0-.26a1 1 0 0 1 0-.24l.11-.31c.36-.36 2.23 0 4.73 1.9A4.1 4.1 0 0 1 12 7v2a6.45 6.45 0 0 0 3-.94l.48.46c.42.42.81.85 1.18 1.28a5.32 5.32 0 0 0-.6 3.4l2-.39a3.6 3.6 0 0 1 0-1.12a11 11 0 0 1 .81 1.45c.56 1.32.52 2.06.34 2.23'/%3E%3C/svg%3E"); } .bx-paste { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 11V5c0-1.103-.897-2-2-2h-3a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1H4c-1.103 0-2 .897-2 2v13c0 1.103.897 2 2 2h7c0 1.103.897 2 2 2h7c1.103 0 2-.897 2-2v-7c0-1.103-.897-2-2-2m-9 2v5H4V5h3v2h8V5h3v6h-5c-1.103 0-2 .897-2 2m2 7v-7h7l.001 7z'/%3E%3C/svg%3E"); } .bx-pause { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 7h3v10H8zm5 0h3v10h-3z'/%3E%3C/svg%3E"); } .bx-pause-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M13 9h2v6h-2zM9 9h2v6H9z'/%3E%3C/svg%3E"); } .bx-pen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.404 2.998c-.757-.754-2.077-.751-2.828.005l-1.784 1.791L11.586 7H7a1 1 0 0 0-.939.658l-4 11c-.133.365-.042.774.232 1.049l2 2a1 1 0 0 0 1.049.232l11-4A1 1 0 0 0 17 17v-4.586l2.207-2.207v-.001h.001L21 8.409c.378-.378.586-.881.585-1.415c0-.535-.209-1.038-.588-1.415zm-3.111 8.295A1 1 0 0 0 15 12v4.3l-9.249 3.363l4.671-4.671c.026.001.052.008.078.008A1.5 1.5 0 1 0 9 13.5c0 .026.007.052.008.078l-4.671 4.671L7.7 9H12c.266 0 .52-.105.707-.293L14.5 6.914L17.086 9.5zm3.206-3.208l-2.586-2.586l1.079-1.084l2.593 2.581z'/%3E%3C/svg%3E"); } .bx-pencil { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 21a1 1 0 0 0 .24 0l4-1a1 1 0 0 0 .47-.26L21 7.41a2 2 0 0 0 0-2.82L19.42 3a2 2 0 0 0-2.83 0L4.3 15.29a1.06 1.06 0 0 0-.27.47l-1 4A1 1 0 0 0 3.76 21A1 1 0 0 0 4 21M18 4.41L19.59 6L18 7.59L16.42 6zM5.91 16.51L15 7.41L16.59 9l-9.1 9.1l-2.11.52z'/%3E%3C/svg%3E"); } .bx-phone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.707 12.293a1 1 0 0 0-1.414 0l-1.594 1.594c-.739-.22-2.118-.72-2.992-1.594s-1.374-2.253-1.594-2.992l1.594-1.594a1 1 0 0 0 0-1.414l-4-4a1 1 0 0 0-1.414 0L3.581 5.005c-.38.38-.594.902-.586 1.435c.023 1.424.4 6.37 4.298 10.268s8.844 4.274 10.269 4.298h.028c.528 0 1.027-.208 1.405-.586l2.712-2.712a1 1 0 0 0 0-1.414zm-.127 6.712c-1.248-.021-5.518-.356-8.873-3.712c-3.366-3.366-3.692-7.651-3.712-8.874L7 4.414L9.586 7L8.293 8.293a1 1 0 0 0-.272.912c.024.115.611 2.842 2.271 4.502s4.387 2.247 4.502 2.271a.99.99 0 0 0 .912-.271L17 14.414L19.586 17z'/%3E%3C/svg%3E"); } .bx-phone-call { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.57 22a2 2 0 0 0 1.43-.59l2.71-2.71a1 1 0 0 0 0-1.41l-4-4a1 1 0 0 0-1.41 0l-1.6 1.59a7.55 7.55 0 0 1-3-1.59a7.6 7.6 0 0 1-1.59-3l1.59-1.6a1 1 0 0 0 0-1.41l-4-4a1 1 0 0 0-1.41 0L2.59 6A2 2 0 0 0 2 7.43A15.28 15.28 0 0 0 6.3 17.7A15.28 15.28 0 0 0 16.57 22M6 5.41L8.59 8L7.3 9.29a1 1 0 0 0-.3.91a10.1 10.1 0 0 0 2.3 4.5a10.1 10.1 0 0 0 4.5 2.3a1 1 0 0 0 .91-.27L16 15.41L18.59 18l-2 2a13.28 13.28 0 0 1-8.87-3.71A13.28 13.28 0 0 1 4 7.41zM20 11h2a8.81 8.81 0 0 0-9-9v2a6.77 6.77 0 0 1 7 7'/%3E%3Cpath fill='black' d='M13 8c2.1 0 3 .9 3 3h2c0-3.22-1.78-5-5-5z'/%3E%3C/svg%3E"); } .bx-phone-incoming { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.712 13.288a1 1 0 0 0-1.414 0l-1.597 1.596c-.824-.245-2.166-.771-2.99-1.596c-.874-.874-1.374-2.253-1.594-2.992l1.594-1.594a1 1 0 0 0 0-1.414l-4-4a1.03 1.03 0 0 0-1.414 0l-2.709 2.71c-.382.38-.597.904-.588 1.437c.022 1.423.396 6.367 4.297 10.268C10.195 21.6 15.142 21.977 16.566 22h.028c.528 0 1.027-.208 1.405-.586l2.712-2.712a1 1 0 0 0 0-1.414zM16.585 20c-1.248-.021-5.518-.356-8.874-3.712C4.343 12.92 4.019 8.636 4 7.414l2.004-2.005L8.59 7.995L7.297 9.288c-.238.238-.34.582-.271.912c.024.115.611 2.842 2.271 4.502s4.387 2.247 4.502 2.271a1 1 0 0 0 .912-.271l1.293-1.293l2.586 2.586z'/%3E%3Cpath fill='black' d='M15.795 6.791L13.005 4v6.995H20l-2.791-2.79l4.503-4.503l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-phone-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.09 12.5a9 9 0 0 1-1-2.2l1.59-1.59a1 1 0 0 0 0-1.42l-4-4a1 1 0 0 0-1.41 0L2.59 6A2 2 0 0 0 2 7.44A15.44 15.44 0 0 0 5.62 17L2.3 20.29l1.41 1.42l18-18l-1.41-1.42zM7 15.55a13.36 13.36 0 0 1-3-8.13l2-2L8.59 8L7.3 9.29a1 1 0 0 0-.27.92a11 11 0 0 0 1.62 3.73zm9.71-2.26a1 1 0 0 0-1.41 0l-1.6 1.6l-.34-.12l-1.56 1.55a12 12 0 0 0 2 .66a1 1 0 0 0 .91-.27l1.3-1.3L18.59 18l-2 2A13.6 13.6 0 0 1 10 18.1l-1.43 1.45a15.63 15.63 0 0 0 8 2.45a2 2 0 0 0 1.43-.58l2.71-2.71a1 1 0 0 0 0-1.42z'/%3E%3C/svg%3E"); } .bx-phone-outgoing { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.712 13.288a1 1 0 0 0-1.414 0l-1.594 1.594c-.739-.22-2.118-.72-2.992-1.594s-1.374-2.253-1.594-2.992l1.594-1.594a1 1 0 0 0 0-1.414l-4-4a1 1 0 0 0-1.414 0L2.586 6c-.38.38-.594.902-.586 1.435c.023 1.424.4 6.37 4.298 10.268S15.142 21.977 16.566 22h.028c.528 0 1.027-.208 1.405-.586l2.712-2.712a1 1 0 0 0 0-1.414zM16.585 20c-1.248-.021-5.518-.356-8.873-3.712C4.346 12.922 4.02 8.637 4 7.414l2.005-2.005l2.586 2.586l-1.293 1.293a1 1 0 0 0-.272.912c.024.115.611 2.842 2.271 4.502s4.387 2.247 4.502 2.271a1 1 0 0 0 .912-.271l1.293-1.293l2.586 2.586z'/%3E%3Cpath fill='black' d='m16.795 5.791l-4.497 4.497l1.414 1.414l4.497-4.497L21.005 10V2.995H14z'/%3E%3C/svg%3E"); } .bx-photo-album { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.024 11.536L10 10l-2 3h9l-3.5-5z'/%3E%3Ccircle cx='9.503' cy='7.497' r='1.503' fill='black'/%3E%3Cpath fill='black' d='M19 2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2m0 14H5V5c0-.806.55-.988 1-1h13z'/%3E%3C/svg%3E"); } .bx-pie-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M12 5.166V12h6.834A6.817 6.817 0 0 0 12 5.166'/%3E%3C/svg%3E"); } .bx-pie-chart-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2a9.94 9.94 0 0 0-7.071 2.929C3.04 6.818 2 9.33 2 12s1.04 5.182 2.929 7.071S9.33 22 12 22s5.182-1.04 7.071-2.929S22 14.67 22 12s-1.04-5.182-2.929-7.071A9.94 9.94 0 0 0 12 2m5.657 15.657C16.146 19.168 14.137 20 12 20s-4.146-.832-5.657-2.343S4 14.137 4 12s.832-4.146 2.343-5.657A7.93 7.93 0 0 1 11 4.069V12a1 1 0 0 0 1 1h7.931a7.93 7.93 0 0 1-2.274 4.657M13 11V4.062a7.95 7.95 0 0 1 4.657 2.281A7.93 7.93 0 0 1 19.938 11z'/%3E%3C/svg%3E"); } .bx-pie-chart-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m7.931 9H13V4.069A8.01 8.01 0 0 1 19.931 11M4 12c0-4.072 3.061-7.436 7-7.931V12a1 1 0 0 0 .111.438c.015.03.022.063.041.093l4.202 6.723A7.95 7.95 0 0 1 12 20c-4.411 0-8-3.589-8-8m13.052 6.196L13.805 13h6.126a8 8 0 0 1-2.879 5.196'/%3E%3C/svg%3E"); } .bx-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 22l1-2v-3h5a1 1 0 0 0 1-1v-1.586c0-.526-.214-1.042-.586-1.414L17 11.586V8a1 1 0 0 0 1-1V4c0-1.103-.897-2-2-2H8c-1.103 0-2 .897-2 2v3a1 1 0 0 0 1 1v3.586L5.586 13A2 2 0 0 0 5 14.414V16a1 1 0 0 0 1 1h5v3zM8 4h8v2H8zM7 14.414l1.707-1.707A1 1 0 0 0 9 12V8h6v4c0 .266.105.52.293.707L17 14.414V15H7z'/%3E%3C/svg%3E"); } .bx-planet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.76 20.2a2.73 2.73 0 0 0 2.15.85a8.9 8.9 0 0 0 3.37-.86a9 9 0 0 0 12.27-10.9c1.31-2.23 1.75-4.26.67-5.48a2.94 2.94 0 0 0-2.57-1A5 5 0 0 0 16.1 4A9 9 0 0 0 3.58 15.14c-1.06 1.21-2.05 3.68-.82 5.06m1.5-1.32c-.22-.25 0-1.07.37-1.76a9.3 9.3 0 0 0 1.57 1.74c-1.03.3-1.71.28-1.94.02m14.51-5.17A7 7 0 0 1 15.58 18A7.1 7.1 0 0 1 12 19a6.4 6.4 0 0 1-1.24-.13a30.7 30.7 0 0 0 4.42-3.29a31.5 31.5 0 0 0 3.8-4a6.9 6.9 0 0 1-.21 2.13m.09-8.89a.94.94 0 0 1 .87.32c.23.26.16.94-.26 1.93a9.2 9.2 0 0 0-1.61-1.86a2.5 2.5 0 0 1 1-.39M5.22 10.31A6.94 6.94 0 0 1 8.41 6A7 7 0 0 1 12 5a6.9 6.9 0 0 1 6 3.41a5 5 0 0 1 .35.66a27.4 27.4 0 0 1-4.49 5A27.4 27.4 0 0 1 8.35 18a7 7 0 0 1-3.13-7.65z'/%3E%3C/svg%3E"); } .bx-play { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 6v12l10-6z'/%3E%3C/svg%3E"); } .bx-play-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='m9 17l8-5l-8-5z'/%3E%3C/svg%3E"); } .bx-plug { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 8h2v5c0 2.206 1.794 4 4 4h2v5h2v-5h2c2.206 0 4-1.794 4-4V8h2V6H3zm4 0h10v5c0 1.103-.897 2-2 2H9c-1.103 0-2-.897-2-2zm0-6h2v3H7zm8 0h2v3h-2z'/%3E%3C/svg%3E"); } .bx-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 11h-6V5h-2v6H5v2h6v6h2v-6h6z'/%3E%3C/svg%3E"); } .bx-plus-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4z'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3C/svg%3E"); } .bx-plus-medical { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 2.013H9V9H2v6h7v6.987h6V15h7V9h-7z'/%3E%3C/svg%3E"); } .bx-podcast { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12.01' cy='12' r='2' fill='black'/%3E%3Cpath fill='black' d='M11.01 22h2l.5-7h-3z'/%3E%3Cpath fill='black' d='M12 2a10 10 0 0 0-2.45 19.68l-.15-2.12a8 8 0 1 1 5.21 0l-.15 2.12A10 10 0 0 0 12 2'/%3E%3Cpath fill='black' d='M15.32 9.61a3.4 3.4 0 0 1 .37.68a4 4 0 0 1 .23.75a3.6 3.6 0 0 1 .09.8a3.7 3.7 0 0 1-.09.81a4 4 0 0 1-.23.75a3.4 3.4 0 0 1-.37.68a5 5 0 0 1-.35.43l-.19 2.62a5 5 0 0 0 .58-.31A5.9 5.9 0 0 0 17 15.2a5.6 5.6 0 0 0 .55-1a6 6 0 0 0 .35-1.13a6 6 0 0 0 .1-1.23a6.2 6.2 0 0 0-.13-1.21A6.1 6.1 0 0 0 17 8.49a6.3 6.3 0 0 0-.73-.89a5.7 5.7 0 0 0-.89-.73a6.3 6.3 0 0 0-1-.56A6 6 0 0 0 13.21 6a6.1 6.1 0 0 0-2.41 0a5.5 5.5 0 0 0-1.13.36a5.6 5.6 0 0 0-1 .55a5.7 5.7 0 0 0-.89.73a6.3 6.3 0 0 0-.78.85a6.1 6.1 0 0 0-.9 2.14a6 6 0 0 0-.1 1.21a6 6 0 0 0 .12 1.21a6 6 0 0 0 .35 1.13a5.6 5.6 0 0 0 .55 1a6.2 6.2 0 0 0 1.62 1.62a5 5 0 0 0 .58.31L9 14.51a5 5 0 0 1-.35-.43a3.4 3.4 0 0 1-.37-.68a4 4 0 0 1-.23-.75a3.7 3.7 0 0 1-.05-.81a3.6 3.6 0 0 1 .08-.8a4 4 0 0 1 .23-.75a3.4 3.4 0 0 1 .37-.68a4 4 0 0 1 .5-.61a4 4 0 0 1 .59-.48a3.4 3.4 0 0 1 .68-.37a4 4 0 0 1 .75-.24a4.4 4.4 0 0 1 1.61 0a4 4 0 0 1 .75.24a3.6 3.6 0 0 1 1.27.85a3.5 3.5 0 0 1 .49.61'/%3E%3C/svg%3E"); } .bx-pointer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.978 13.21a1 1 0 0 0-.396-1.024l-14-10a.999.999 0 0 0-1.575.931l2 17a1 1 0 0 0 1.767.516l3.612-4.416l3.377 5.46l1.701-1.052l-3.357-5.428l6.089-1.218a1 1 0 0 0 .782-.769m-8.674.31a1 1 0 0 0-.578.347l-3.008 3.677L7.257 5.127l10.283 7.345z'/%3E%3C/svg%3E"); } .bx-poll { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 11h7v2H7zm0-4h10.97v2H7zm0 8h13v2H7zM4 4h2v16H4z'/%3E%3C/svg%3E"); } .bx-polygon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.707 2.293A1 1 0 0 0 16 2H8a1 1 0 0 0-.707.293l-5 5A1 1 0 0 0 2 8v8c0 .266.105.52.293.707l5 5A1 1 0 0 0 8 22h8c.266 0 .52-.105.707-.293l5-5A1 1 0 0 0 22 16V8a1 1 0 0 0-.293-.707zM20 15.586L15.586 20H8.414L4 15.586V8.414L8.414 4h7.172L20 8.414z'/%3E%3C/svg%3E"); } .bx-popsicle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 2a7 7 0 0 0-4.94 2l-7.78 7.82a1 1 0 0 0 0 1.41l3.54 3.54l-3.54 3.53l1.42 1.42l3.53-3.54l3.54 3.54a1 1 0 0 0 1.41 0L20 13.94A7 7 0 0 0 15 2m3.54 10.54l-7.07 7.06l-2.82-2.83l-1.42-1.42l-2.83-2.83l7.07-7.07a5 5 0 0 1 7.08 7.08z'/%3E%3C/svg%3E"); } .bx-pound { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m5.553 19.105l.764 1.843C7.498 20.555 9.422 20 10 20c.838 0 1.462.208 2.184.448c.775.259 1.654.552 2.816.552c1.177 0 3.078-.921 3.447-1.105l-.895-1.789c-.721.36-2.031.894-2.552.894c-.838 0-1.462-.208-2.184-.448C12.041 18.293 11.162 18 10 18c-.229 0-.526.037-.857.099C9.702 16.95 10 15.561 10 14h3v-2H9.626c-.042-.107-.084-.216-.125-.317C9.243 11.052 9 10.455 9 9c0-1.369.521-3 3-3c2.224 0 3.021 2.227 3.052 2.316l1.896-.633C16.898 7.533 15.679 4 12 4C8.313 4 7 6.583 7 9c0 1.491.234 2.35.478 3H5v2h3c0 2.467-.892 4.328-2.447 5.105'/%3E%3C/svg%3E"); } .bx-power-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 21c4.411 0 8-3.589 8-8c0-3.35-2.072-6.221-5-7.411v2.223A6 6 0 0 1 18 13c0 3.309-2.691 6-6 6s-6-2.691-6-6a6 6 0 0 1 3-5.188V5.589C6.072 6.779 4 9.65 4 13c0 4.411 3.589 8 8 8'/%3E%3Cpath fill='black' d='M11 2h2v10h-2z'/%3E%3C/svg%3E"); } .bx-printer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 7h-1V2H6v5H5c-1.654 0-3 1.346-3 3v7c0 1.103.897 2 2 2h2v3h12v-3h2c1.103 0 2-.897 2-2v-7c0-1.654-1.346-3-3-3M8 4h8v3H8zm8 16H8v-4h8zm4-3h-2v-3H6v3H4v-7c0-.551.449-1 1-1h14c.552 0 1 .449 1 1z'/%3E%3Cpath fill='black' d='M14 10h4v2h-4z'/%3E%3C/svg%3E"); } .bx-pulse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.97 4.757a.999.999 0 0 0-1.918-.073l-3.186 9.554l-2.952-6.644a1.002 1.002 0 0 0-1.843.034L5.323 12H2v2h3.323c.823 0 1.552-.494 1.856-1.257l.869-2.172l3.037 6.835c.162.363.521.594.915.594l.048-.001a1 1 0 0 0 .9-.683l2.914-8.742l.979 3.911A1.995 1.995 0 0 0 18.781 14H22v-2h-3.22z'/%3E%3C/svg%3E"); } .bx-purchase-tag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.707 3.293A1 1 0 0 0 13 3H4a1 1 0 0 0-1 1v9c0 .266.105.52.293.707l8 8a.997.997 0 0 0 1.414 0l9-9a1 1 0 0 0 0-1.414zM12 19.586l-7-7V5h7.586l7 7z'/%3E%3Ccircle cx='8.496' cy='8.495' r='1.505' fill='black'/%3E%3C/svg%3E"); } .bx-purchase-tag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.707 2.293A1 1 0 0 0 11 2H6a1 1 0 0 0-.707.293l-3 3A1 1 0 0 0 2 6v5c0 .266.105.52.293.707l10 10a.997.997 0 0 0 1.414 0l8-8a1 1 0 0 0 0-1.414zM13 19.586l-9-9V6.414L6.414 4h4.172l9 9z'/%3E%3Ccircle cx='8.353' cy='8.353' r='1.647' fill='black'/%3E%3C/svg%3E"); } .bx-pyramid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.445 21.832a1 1 0 0 0 1.11 0l9-6A1 1 0 0 0 21.8 14.4l-9-12c-.377-.504-1.223-.504-1.6 0l-9 12a1 1 0 0 0 .245 1.432zM13 19.131V6l6.565 8.754zM11 6v13.131l-6.565-4.377z'/%3E%3C/svg%3E"); } .bx-qr { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 11h8V3H3zm2-6h4v4H5zM3 21h8v-8H3zm2-6h4v4H5zm8-12v8h8V3zm6 6h-4V5h4zm-5.99 4h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm4 0h2v2h-2zm2 2h2v2h-2zm-4 0h2v2h-2zm2-6h2v2h-2zm2 2h2v2h-2z'/%3E%3C/svg%3E"); } .bx-qr-scan { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 4h4.01V2H2v6h2zm0 12H2v6h6.01v-2H4zm16 4h-4v2h6v-6h-2zM16 4h4v4h2V2h-6z'/%3E%3Cpath fill='black' d='M5 11h6V5H5zm2-4h2v2H7zM5 19h6v-6H5zm2-4h2v2H7zM19 5h-6v6h6zm-2 4h-2V7h2zm-3.99 4h2v2h-2zm2 2h2v2h-2zm2 2h2v2h-2zm0-4h2v2h-2z'/%3E%3C/svg%3E"); } .bx-question-mark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4C9.243 4 7 6.243 7 9h2c0-1.654 1.346-3 3-3s3 1.346 3 3c0 1.069-.454 1.465-1.481 2.255c-.382.294-.813.626-1.226 1.038C10.981 13.604 10.995 14.897 11 15v2h2v-2.009c0-.024.023-.601.707-1.284c.32-.32.682-.598 1.031-.867C15.798 12.024 17 11.1 17 9c0-2.757-2.243-5-5-5m-1 14h2v2h-2z'/%3E%3C/svg%3E"); } .bx-radar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.579 2 2 6.58 2 12s4.579 10 10 10s10-4.58 10-10S17.421 2 12 2m0 18c-4.337 0-8-3.664-8-8c0-3.998 3.115-7.417 7-7.927V6.09C8.167 6.569 6 9.033 6 12c0 3.309 2.691 6 6 6c1.595 0 3.1-.626 4.237-1.763l-1.414-1.415A3.97 3.97 0 0 1 12 16c-2.206 0-4-1.794-4-4c0-1.858 1.279-3.411 3-3.858v2.146c-.59.353-1 .993-1 1.712c0 1.081.919 2 2 2s2-.919 2-2c0-.719-.41-1.359-1-1.712V4.073c3.885.51 7 3.929 7 7.927c0 4.336-3.663 8-8 8'/%3E%3C/svg%3E"); } .bx-radio { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.25 5.025l-7.898-2.962l-.703 1.873L14.484 5H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.018-.767-1.85-1.75-1.975M4 19v-7h16v-2H4V7h16l.001 12z'/%3E%3Ccircle cx='16.5' cy='15.5' r='2.5' fill='black'/%3E%3Cpath fill='black' d='M6 15h4.999v2H6z'/%3E%3C/svg%3E"); } .bx-radio-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 12c0 3.859 3.14 7 7 7s7-3.141 7-7s-3.141-7-7-7s-7 3.141-7 7m12 0c0 2.757-2.243 5-5 5s-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5'/%3E%3C/svg%3E"); } .bx-radio-circle-marked { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 5c-3.859 0-7 3.141-7 7s3.141 7 7 7s7-3.141 7-7s-3.141-7-7-7m0 12c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5s-2.243 5-5 5'/%3E%3Cpath fill='black' d='M12 9c-1.627 0-3 1.373-3 3s1.373 3 3 3s3-1.373 3-3s-1.373-3-3-3'/%3E%3C/svg%3E"); } .bx-receipt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 11h-3V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v14c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3v-6a1 1 0 0 0-1-1M5 19a1 1 0 0 1-1-1V5h12v13c0 .351.061.688.171 1zm15-1a1 1 0 0 1-2 0v-5h2z'/%3E%3Cpath fill='black' d='M6 7h8v2H6zm0 4h8v2H6zm5 4h3v2h-3z'/%3E%3C/svg%3E"); } .bx-rectangle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 19V5h16l.001 14z'/%3E%3C/svg%3E"); } .bx-recycle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.224 15.543l-.813-1.464l-1.748.972l.812 1.461q.072.128.104.264a1 1 0 0 1-.014.5a1 1 0 0 1-.104.235a1 1 0 0 1-.347.352a1 1 0 0 1-.513.137H14v-2l-4 3l4 3v-2h4.601c.278 0 .552-.037.811-.109a2.95 2.95 0 0 0 1.319-.776c.178-.179.332-.38.456-.593a3 3 0 0 0 .336-2.215a3.2 3.2 0 0 0-.299-.764M5.862 11.039l-2.31 4.62a3 3 0 0 0-.261.755a3 3 0 0 0 .851 2.735q.267.262.595.453A3 3 0 0 0 6.236 20H8v-2H6.236a1 1 0 0 1-.5-.13a1 1 0 0 1-.353-.349a1 1 0 0 1-.149-.468a1 1 0 0 1 .018-.245q.027-.131.089-.256l2.256-4.512l1.599.923L8.598 8L4 9.964zm12.736 1.925L19.196 8l-1.638.945l-2.843-5.117a2.95 2.95 0 0 0-1.913-1.459a3.2 3.2 0 0 0-.772-.083a3 3 0 0 0-1.498.433A2.97 2.97 0 0 0 9.41 3.944l-.732 1.464l1.789.895l.732-1.465q.068-.135.166-.242a.93.93 0 0 1 .443-.27a1.05 1.05 0 0 1 .53-.011a.96.96 0 0 1 .63.485l2.858 5.146L14 11z'/%3E%3C/svg%3E"); } .bx-redo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 18h3v-2H9c-1.654 0-3-1.346-3-3s1.346-3 3-3h6v3l5-4l-5-4v3H9c-2.757 0-5 2.243-5 5s2.243 5 5 5'/%3E%3C/svg%3E"); } .bx-reflect-horizontal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 21h12l-6-6zM18 3H6l6 6zM3 11h3v2H3zm5 0h3v2H8zm5 0h3v2h-3zm5 0h3v2h-3z'/%3E%3C/svg%3E"); } .bx-reflect-vertical { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m3 18l6-6l-6-6zm12-6l6 6V6zm-4-9h2v3h-2zm0 5h2v3h-2zm0 5h2v3h-2zm0 5h2v3h-2z'/%3E%3C/svg%3E"); } .bx-refresh { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 11H7.101l.001-.009a5 5 0 0 1 .752-1.787a5.05 5.05 0 0 1 2.2-1.811q.455-.193.938-.291a5.1 5.1 0 0 1 2.018 0a5 5 0 0 1 2.525 1.361l1.416-1.412a7 7 0 0 0-2.224-1.501a7 7 0 0 0-1.315-.408a7.1 7.1 0 0 0-2.819 0a7 7 0 0 0-1.316.409a7.04 7.04 0 0 0-3.08 2.534a7 7 0 0 0-1.054 2.505c-.028.135-.043.273-.063.41H2l4 4zm4 2h2.899l-.001.008a4.98 4.98 0 0 1-2.103 3.138a4.9 4.9 0 0 1-1.787.752a5.1 5.1 0 0 1-2.017 0a5 5 0 0 1-1.787-.752a5 5 0 0 1-.74-.61L7.05 16.95a7 7 0 0 0 2.225 1.5c.424.18.867.317 1.315.408a7.1 7.1 0 0 0 2.818 0a7.03 7.03 0 0 0 4.395-2.945a7 7 0 0 0 1.053-2.503c.027-.135.043-.273.063-.41H22l-4-4z'/%3E%3C/svg%3E"); } .bx-registered { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.14 2a10 10 0 1 0 10 10a10 10 0 0 0-10-10m0 18a8 8 0 1 1 8-8a8 8 0 0 1-8 8'/%3E%3Cpath fill='black' d='M16.14 10a3 3 0 0 0-3-3h-5v10h2v-4h1.46l2.67 4h2.4l-2.75-4.12A3 3 0 0 0 16.14 10m-3 1h-3V9h3a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bx-rename { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.005 5.995h-1v2h1v8h-1v2h1c1.103 0 2-.897 2-2v-8c0-1.102-.898-2-2-2m-14 4H15v4H6.005z'/%3E%3Cpath fill='black' d='M17.005 17.995V4H20V2h-8v2h3.005v1.995h-11c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h11V20H12v2h8v-2h-2.995zm-13-2v-8h11v8z'/%3E%3C/svg%3E"); } .bx-repeat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 6h-5v2h4v9H4V8h5v3l5-4l-5-4v3H3a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bx-reply { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 11h6v7h2v-8a1 1 0 0 0-1-1h-7V6l-5 4l5 4z'/%3E%3C/svg%3E"); } .bx-reply-all { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 18v-8a1 1 0 0 0-1-1h-6V6l-5 4l5 4v-3h5v7z'/%3E%3Cpath fill='black' d='M9 12.4L6 10l3-2.4V6l-5 4l5 4z'/%3E%3C/svg%3E"); } .bx-repost { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 7a1 1 0 0 0-1-1h-8v2h7v5h-3l3.969 5L22 13h-3zM5 17a1 1 0 0 0 1 1h8v-2H7v-5h3L6 6l-4 5h3z'/%3E%3C/svg%3E"); } .bx-reset { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 16c1.671 0 3-1.331 3-3s-1.329-3-3-3s-3 1.331-3 3s1.329 3 3 3'/%3E%3Cpath fill='black' d='M20.817 11.186a8.9 8.9 0 0 0-1.355-3.219a9 9 0 0 0-2.43-2.43a9 9 0 0 0-3.219-1.355a9 9 0 0 0-1.838-.18V2L8 5l3.975 3V6.002c.484-.002.968.044 1.435.14a7 7 0 0 1 2.502 1.053a7 7 0 0 1 1.892 1.892A6.97 6.97 0 0 1 19 13a7 7 0 0 1-.55 2.725a7 7 0 0 1-.644 1.188a7 7 0 0 1-.858 1.039a7.03 7.03 0 0 1-3.536 1.907a7.1 7.1 0 0 1-2.822 0a7 7 0 0 1-2.503-1.054a7 7 0 0 1-1.89-1.89A7 7 0 0 1 5 13H3a9 9 0 0 0 1.539 5.034a9.1 9.1 0 0 0 2.428 2.428A8.95 8.95 0 0 0 12 22a9 9 0 0 0 1.814-.183a9 9 0 0 0 3.218-1.355a9 9 0 0 0 1.331-1.099a9 9 0 0 0 1.1-1.332A8.95 8.95 0 0 0 21 13a9 9 0 0 0-.183-1.814'/%3E%3C/svg%3E"); } .bx-restaurant { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 10h-2V3H8v7H6V3H4v8c0 1.654 1.346 3 3 3h1v7h2v-7h1c1.654 0 3-1.346 3-3V3h-2zm7-7h-1c-1.159 0-2 1.262-2 3v8h2v7h2V4a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bx-revision { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.89 10.105a8.7 8.7 0 0 0-.789-1.456l-1.658 1.119a6.6 6.6 0 0 1 .987 2.345a6.7 6.7 0 0 1 0 2.648a6.5 6.5 0 0 1-.384 1.231a6.4 6.4 0 0 1-.603 1.112a6.7 6.7 0 0 1-1.776 1.775a6.6 6.6 0 0 1-2.343.987a6.7 6.7 0 0 1-2.646 0a6.55 6.55 0 0 1-3.317-1.788a6.6 6.6 0 0 1-1.408-2.088a6.6 6.6 0 0 1-.382-1.23a6.63 6.63 0 0 1 .382-3.877A6.6 6.6 0 0 1 7.36 8.797A6.6 6.6 0 0 1 9.446 7.39c.395-.167.81-.296 1.23-.382c.107-.022.216-.032.324-.049V10l5-4l-5-4v2.938a9 9 0 0 0-.725.111a8.5 8.5 0 0 0-3.063 1.29A8.566 8.566 0 0 0 4.11 16.77a8.5 8.5 0 0 0 1.835 2.724a8.6 8.6 0 0 0 2.721 1.833a8.55 8.55 0 0 0 5.061.499a8.58 8.58 0 0 0 6.162-5.056c.22-.52.389-1.061.5-1.608a8.6 8.6 0 0 0 0-3.45a8.7 8.7 0 0 0-.499-1.607'/%3E%3C/svg%3E"); } .bx-rewind { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 12V7l-7 5l7 5zm7-5l-7 5l7 5z'/%3E%3C/svg%3E"); } .bx-rewind-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M11 16V8l-5 4zm6 0V8l-5 4z'/%3E%3C/svg%3E"); } .bx-rfid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 22h16a1 1 0 0 0 1-1v-8h-2v7H5V4h5V2H4a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1'/%3E%3Ccircle cx='12' cy='11' r='1' fill='black'/%3E%3Cpath fill='black' d='M15 11h2a5 5 0 0 0-5-5v2a3 3 0 0 1 3 3'/%3E%3Cpath fill='black' d='M19 11h2a9 9 0 0 0-9-9v2a7 7 0 0 1 7 7m-9.35 4.67a1 1 0 0 0-.14-.51a.76.76 0 0 0-.38-.31a2.3 2.3 0 0 0-.75-.09H7V18h.65v-1.35h.14a1.3 1.3 0 0 1 .33 0a.6.6 0 0 1 .19.14a5 5 0 0 1 .35.48l.47.7h.78l-.39-.63a3.6 3.6 0 0 0-.38-.53a1.3 1.3 0 0 0-.35-.27a1 1 0 0 0 .64-.3a.84.84 0 0 0 .22-.57m-.74.33a.4.4 0 0 1-.18.14a2.4 2.4 0 0 1-.59 0h-.49v-.82h1a.4.4 0 0 1 .25.13a.36.36 0 0 1 .09.26a.43.43 0 0 1-.08.29m2.01.62h1.36v-.54h-1.36v-.77h1.57v-.55h-2.22V18h.65zm2.09-1.86h.65V18h-.65zm3.09.06a2.5 2.5 0 0 0-.62-.06h-1.2V18h1.24a1.8 1.8 0 0 0 .57-.07a1.1 1.1 0 0 0 .46-.26a1.35 1.35 0 0 0 .35-.57a2 2 0 0 0 .1-.69a2.4 2.4 0 0 0-.11-.76a1.3 1.3 0 0 0-.31-.53a1.1 1.1 0 0 0-.48-.3m.16 2.18a.74.74 0 0 1-.17.31a.57.57 0 0 1-.27.13a1.8 1.8 0 0 1-.39 0h-.49v-2.13h.29a3 3 0 0 1 .54 0a.7.7 0 0 1 .3.15a.8.8 0 0 1 .19.32a2 2 0 0 1 .06.57a2.4 2.4 0 0 1-.06.65'/%3E%3C/svg%3E"); } .bx-right-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.536 21.886a1 1 0 0 0 1.033-.064l13-9a1 1 0 0 0 0-1.644l-13-9A.998.998 0 0 0 5 3v18a1 1 0 0 0 .536.886M7 4.909L17.243 12L7 19.091z'/%3E%3C/svg%3E"); } .bx-right-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11.293 17.293l1.414 1.414L19.414 12l-6.707-6.707l-1.414 1.414L15.586 11H6v2h9.586z'/%3E%3C/svg%3E"); } .bx-right-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.999 1.993c-5.514.001-10 4.487-10 10.001s4.486 10 10.001 10c5.513 0 9.999-4.486 10-10s-4.486-10-10.001-10.001M12 19.994c-4.412 0-8.001-3.589-8.001-8s3.589-8 8-8.001C16.411 3.994 20 7.583 20 11.994c-.001 4.411-3.59 8-8 8'/%3E%3Cpath fill='black' d='M12 10.994H8v2h4V16l4.005-4.005L12 7.991z'/%3E%3C/svg%3E"); } .bx-right-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2.007a9.93 9.93 0 0 0-7.071 2.922c-3.899 3.899-3.899 10.243 0 14.143A9.93 9.93 0 0 0 12 21.995a9.93 9.93 0 0 0 7.071-2.923c3.899-3.899 3.899-10.243 0-14.143A9.93 9.93 0 0 0 12 2.007m5.657 15.65A7.95 7.95 0 0 1 12 19.994c-2.141 0-4.15-.83-5.657-2.337c-3.119-3.119-3.119-8.195 0-11.314A7.94 7.94 0 0 1 12 4.007c2.141 0 4.15.829 5.657 2.336c3.119 3.119 3.119 8.195 0 11.314'/%3E%3Cpath fill='black' d='M9.661 8.247L8.247 9.661l3.214 3.214L9.336 15H15V9.337l-2.125 2.124z'/%3E%3C/svg%3E"); } .bx-right-indent { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 15h10v2H10zm-6 4h16v2H4zm6-8h10v2H10zm0-4h10v2H10zM4 3h16v2H4zm0 5v8l4-4z'/%3E%3C/svg%3E"); } .bx-right-top-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.006 2.007a9.93 9.93 0 0 0-7.071 2.922c-3.898 3.899-3.898 10.243 0 14.142c1.885 1.885 4.396 2.923 7.071 2.923s5.187-1.038 7.071-2.923c3.898-3.898 3.898-10.242 0-14.142a9.93 9.93 0 0 0-7.071-2.922m5.657 15.649c-1.507 1.507-3.517 2.337-5.657 2.337s-4.15-.83-5.657-2.337c-3.118-3.119-3.118-8.194 0-11.313c1.507-1.507 3.516-2.336 5.657-2.336s4.15.829 5.657 2.336c3.118 3.119 3.118 8.194 0 11.313'/%3E%3Cpath fill='black' d='m11.467 11.125l-3.214 3.214l1.414 1.414l3.214-3.214l2.125 2.124V9H9.343z'/%3E%3C/svg%3E"); } .bx-rocket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.92 2.38A15.7 15.7 0 0 0 17.5 2a8.26 8.26 0 0 0-6 2.06Q9.89 5.67 8.31 7.27c-1.21-.13-4.08-.2-6 1.74a1 1 0 0 0 0 1.41l11.3 11.32a1 1 0 0 0 1.41 0c1.95-2 1.89-4.82 1.77-6l3.21-3.2c3.19-3.19 1.74-9.18 1.68-9.43a1 1 0 0 0-.76-.73m-2.36 8.75L15 14.67a1 1 0 0 0-.27.9a6.8 6.8 0 0 1-.54 3.94L4.52 9.82a6.67 6.67 0 0 1 4-.5A1 1 0 0 0 9.39 9s1.4-1.45 3.51-3.56A6.6 6.6 0 0 1 17.5 4a14.5 14.5 0 0 1 2.33.2c.24 1.43.62 5.04-1.27 6.93'/%3E%3Ccircle cx='15.73' cy='8.3' r='2' fill='black'/%3E%3Cpath fill='black' d='M5 16c-2 1-2 5-2 5a7.8 7.8 0 0 0 5-2z'/%3E%3C/svg%3E"); } .bx-rotate-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.758 8.758L5.344 7.344a8.05 8.05 0 0 0-1.841 2.859l1.873.701a6.05 6.05 0 0 1 1.382-2.146M19 12.999a7.94 7.94 0 0 0-2.344-5.655A7.9 7.9 0 0 0 12 5.069V2L7 6l5 4V7.089a5.94 5.94 0 0 1 3.242 1.669A5.96 5.96 0 0 1 17 13v.002c0 .33-.033.655-.086.977l-.019.131a6.05 6.05 0 0 1-1.138 2.536c-.16.209-.331.412-.516.597a6 6 0 0 1-.728.613a5.9 5.9 0 0 1-2.277 1.015c-.142.03-.285.05-.43.069c-.062.009-.122.021-.184.027a6.1 6.1 0 0 1-1.898-.103L9.3 20.819a8.1 8.1 0 0 0 2.534.136c.069-.007.138-.021.207-.03q.308-.037.61-.098l.053-.009l-.001-.005a7.9 7.9 0 0 0 2.136-.795l.001.001l.028-.019a8 8 0 0 0 1.01-.67c.27-.209.532-.43.777-.675c.248-.247.47-.513.681-.785c.021-.028.049-.053.07-.081l-.006-.004a7.9 7.9 0 0 0 1.093-1.997l.008.003c.029-.078.05-.158.076-.237q.057-.165.107-.333q.058-.21.105-.423c.022-.099.048-.195.066-.295q.047-.257.076-.516c.01-.076.023-.15.03-.227q.036-.374.037-.753q.002-.003.002-.008M6.197 16.597l-1.6 1.201a8.05 8.05 0 0 0 2.569 2.225l.961-1.754a6 6 0 0 1-1.93-1.672M5 13q0-.217.015-.429l-1.994-.143a8 8 0 0 0 .483 3.372l1.873-.701A6 6 0 0 1 5 13'/%3E%3C/svg%3E"); } .bx-rotate-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.242 17.242a6 6 0 0 1-1.37 1.027l.961 1.754a8.1 8.1 0 0 0 2.569-2.225l-1.6-1.201a6 6 0 0 1-.56.645m1.743-4.671a6 6 0 0 1-.362 2.528l1.873.701a8 8 0 0 0 .483-3.371zm1.512-2.368a8.05 8.05 0 0 0-1.841-2.859l-1.414 1.414a6.1 6.1 0 0 1 1.382 2.146zm-8.128 8.763c-.047-.005-.094-.015-.141-.021a7 7 0 0 1-.468-.075a5.9 5.9 0 0 1-2.421-1.122a6 6 0 0 1-.583-.506a6 6 0 0 1-.516-.597a5.9 5.9 0 0 1-.891-1.634a6 6 0 0 1-.247-.902l-.019-.131A6 6 0 0 1 6 13.002V13c0-1.603.624-3.109 1.758-4.242A5.94 5.94 0 0 1 11 7.089V10l5-4l-5-4v3.069a7.9 7.9 0 0 0-4.656 2.275A7.94 7.94 0 0 0 4 12.999v.009q.001.38.037.753c.007.076.021.15.03.227q.03.259.076.516c.019.1.044.196.066.295q.046.213.105.423q.05.168.107.333c.026.079.047.159.076.237l.008-.003A8 8 0 0 0 5.6 17.785l-.007.005c.021.028.049.053.07.081c.211.272.433.538.681.785a8 8 0 0 0 .966.816c.265.192.537.372.821.529l.028.019l.001-.001a7.9 7.9 0 0 0 2.136.795l-.001.005l.053.009c.201.042.405.071.61.098c.069.009.138.023.207.03a8 8 0 0 0 2.532-.137l-.424-1.955a6.1 6.1 0 0 1-1.904.102'/%3E%3C/svg%3E"); } .bx-rss { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 20.001C19 11.729 12.271 5 4 5v2c7.168 0 13 5.832 13 13.001z'/%3E%3Cpath fill='black' d='M12 20.001h2C14 14.486 9.514 10 4 10v2c4.411 0 8 3.589 8 8.001'/%3E%3Ccircle cx='6' cy='18' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-ruble { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 21h2v-3h6v-2h-6v-2h4.5c2.757 0 5-2.243 5-5s-2.243-5-5-5H9a1 1 0 0 0-1 1v7H5v2h3v2H5v2h3zm2-15h4.5c1.654 0 3 1.346 3 3s-1.346 3-3 3H10z'/%3E%3C/svg%3E"); } .bx-ruler { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.875 7H3.125C1.953 7 1 7.897 1 9v6c0 1.103.953 2 2.125 2h17.75C22.047 17 23 16.103 23 15V9c0-1.103-.953-2-2.125-2m0 8H3.125c-.057 0-.096-.016-.113-.016q-.01 0-.012.008l-.012-5.946c.007-.01.052-.046.137-.046H5v3h2V9h2v4h2V9h2v3h2V9h2v4h2V9h1.875c.079.001.122.028.125.008l.012 5.946c-.007.01-.052.046-.137.046'/%3E%3C/svg%3E"); } .bx-run { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='17' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M15.777 10.969a2.01 2.01 0 0 0 2.148.83l3.316-.829l-.483-1.94l-3.316.829l-1.379-2.067a2 2 0 0 0-1.272-.854l-3.846-.77a2 2 0 0 0-2.181 1.067l-1.658 3.316l1.789.895l1.658-3.317l1.967.394L7.434 17H3v2h4.434c.698 0 1.355-.372 1.715-.971l1.918-3.196l5.169 1.034l1.816 5.449l1.896-.633l-1.815-5.448a2.01 2.01 0 0 0-1.506-1.33l-3.039-.607l1.772-2.954z'/%3E%3C/svg%3E"); } .bx-rupee { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 6V4H6v2h3.5c1.302 0 2.401.838 2.815 2H6v2h6.315A2.99 2.99 0 0 1 9.5 12H6v2.414L11.586 20h2.828l-6-6H9.5a5.01 5.01 0 0 0 4.898-4H17V8h-2.602a4.9 4.9 0 0 0-.924-2z'/%3E%3C/svg%3E"); } .bx-sad { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.493' cy='10.493' r='1.493' fill='black'/%3E%3Cpath fill='black' d='M12 14c-3 0-4 3-4 3h8s-1-3-4-3'/%3E%3C/svg%3E"); } .bx-save { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14a2 2 0 0 0 2-2V8a1 1 0 0 0-.29-.71l-4-4A1 1 0 0 0 16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2m10-2H9v-5h6zM13 7h-2V5h2zM5 5h2v4h8V5h.59L19 8.41V19h-2v-5a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v5H5z'/%3E%3C/svg%3E"); } .bx-scan { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 4v5h2V5h4V3H4a1 1 0 0 0-1 1m18 5V4a1 1 0 0 0-1-1h-5v2h4v4zm-2 10h-4v2h5a1 1 0 0 0 1-1v-5h-2zM9 21v-2H5v-4H3v5a1 1 0 0 0 1 1zM2 11h20v2H2z'/%3E%3C/svg%3E"); } .bx-scatter-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 21h17v-2H5V3H3v17a1 1 0 0 0 1 1'/%3E%3Ccircle cx='10' cy='8' r='2' fill='black'/%3E%3Ccircle cx='18' cy='12' r='2' fill='black'/%3E%3Ccircle cx='11.5' cy='13.5' r='1.5' fill='black'/%3E%3Ccircle cx='16.5' cy='6.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-screenshot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 14h-2v3h-3v2h3v3h2v-3h3v-2h-3zM4 19h3v-2H5v-2H3v3a1 1 0 0 0 1 1M19 4a1 1 0 0 0-1-1h-3v2h2v2h2zM5 5h2V3H4a1 1 0 0 0-1 1v3h2zM3 9h2v4H3zm14 0h2v3h-2zM9 3h4v2H9zm0 14h3v2H9z'/%3E%3C/svg%3E"); } .bx-search { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 18a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8s3.589 8 8 8m0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6'/%3E%3C/svg%3E"); } .bx-search-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 18a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8s3.589 8 8 8m0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6'/%3E%3Cpath fill='black' d='M11.412 8.586c.379.38.588.882.588 1.414h2a3.98 3.98 0 0 0-1.174-2.828c-1.514-1.512-4.139-1.512-5.652 0l1.412 1.416c.76-.758 2.07-.756 2.826-.002'/%3E%3C/svg%3E"); } .bx-search-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.023 16.977a35 35 0 0 1-1.367-1.384c-.372-.378-.596-.653-.596-.653l-2.8-1.337A6.96 6.96 0 0 0 16 9c0-3.859-3.14-7-7-7S2 5.141 2 9s3.14 7 7 7c1.763 0 3.37-.66 4.603-1.739l1.337 2.8s.275.224.653.596c.387.363.896.854 1.384 1.367l1.358 1.392l.604.646l2.121-2.121l-.646-.604c-.379-.372-.885-.866-1.391-1.36M9 14c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5s-2.243 5-5 5'/%3E%3C/svg%3E"); } .bx-select-multiple { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H8c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M8 16V4h12l.002 12z'/%3E%3Cpath fill='black' d='M4 8H2v12c0 1.103.897 2 2 2h12v-2H4zm8.933 3.519l-1.726-1.726l-1.414 1.414l3.274 3.274l5.702-6.84l-1.538-1.282z'/%3E%3C/svg%3E"); } .bx-selection { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 9a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v1H9V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1v6H4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1h6v1a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-1V9zm-3-4h2v2h-2zM5 5h2v2H5zm2 14H5v-2h2zm12 0h-2v-2h2zm-2-4h-1a1 1 0 0 0-1 1v1H9v-1a1 1 0 0 0-1-1H7V9h1a1 1 0 0 0 1-1V7h6v1a1 1 0 0 0 1 1h1z'/%3E%3C/svg%3E"); } .bx-send { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.426 11.095l-17-8A.999.999 0 0 0 3.03 4.242L4.969 12L3.03 19.758a.998.998 0 0 0 1.396 1.147l17-8a1 1 0 0 0 0-1.81M5.481 18.197l.839-3.357L12 12L6.32 9.16l-.839-3.357L18.651 12z'/%3E%3C/svg%3E"); } .bx-server { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M4 9V5h16v4zm16 4H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2M4 19v-4h16v4z'/%3E%3Cpath fill='black' d='M17 6h2v2h-2zm-3 0h2v2h-2zm3 10h2v2h-2zm-3 0h2v2h-2z'/%3E%3C/svg%3E"); } .bx-shape-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.494 9.05a8.14 8.14 0 0 0-4.544-4.544C14.713 3.088 13.485 2 12 2S9.287 3.088 9.05 4.506A8.14 8.14 0 0 0 4.506 9.05C3.088 9.287 2 10.515 2 12s1.088 2.713 2.506 2.95a8.14 8.14 0 0 0 4.544 4.544C9.287 20.912 10.515 22 12 22s2.713-1.088 2.95-2.506a8.14 8.14 0 0 0 4.544-4.544C20.912 14.713 22 13.485 22 12s-1.088-2.713-2.506-2.95M12 4a1 1 0 0 1 1 1c0 .06-.023.11-.034.167a1 1 0 0 1-.083.279c-.014.027-.034.049-.051.075a1 1 0 0 1-.16.209c-.04.037-.09.062-.136.092c-.054.036-.104.078-.165.103c-.115.047-.239.075-.371.075s-.256-.028-.371-.075c-.061-.024-.111-.066-.165-.103c-.046-.03-.096-.055-.136-.092a1 1 0 0 1-.16-.209c-.017-.026-.037-.048-.051-.075a1 1 0 0 1-.083-.279C11.023 5.11 11 5.06 11 5a1 1 0 0 1 1-1m-7 7c.06 0 .11.023.167.034c.099.017.194.041.279.083c.027.014.049.034.075.051c.075.047.149.097.209.16c.037.04.062.09.092.136c.036.054.078.104.103.165c.047.115.075.239.075.371s-.028.256-.075.371c-.024.061-.066.111-.103.165c-.03.046-.055.096-.092.136c-.06.063-.134.113-.209.16c-.026.017-.048.037-.075.051a1 1 0 0 1-.279.083C5.11 12.977 5.06 13 5 13a1 1 0 0 1 0-2m7 9a1 1 0 0 1-1-1c0-.06.023-.11.034-.167c.017-.099.041-.194.083-.279c.014-.027.034-.049.051-.075c.047-.075.097-.149.16-.209c.04-.037.09-.062.136-.092c.054-.036.104-.078.165-.103c.115-.047.239-.075.371-.075s.256.028.371.075c.061.024.111.066.165.103c.046.03.096.055.136.092c.063.06.113.134.16.209c.017.026.037.048.051.075c.042.085.066.181.083.279c.011.057.034.107.034.167a1 1 0 0 1-1 1m2.583-2.512c-.006-.011-.017-.019-.022-.029a3 3 0 0 0-.996-1.007c-.054-.033-.109-.06-.166-.09a3 3 0 0 0-.486-.205c-.064-.021-.128-.044-.194-.061c-.233-.057-.471-.096-.719-.096s-.486.039-.718.097q-.098.027-.195.061a3 3 0 0 0-.485.205q-.084.042-.166.09a3 3 0 0 0-.996 1.007c-.006.011-.017.019-.022.029a6.15 6.15 0 0 1-2.905-2.905c.011-.006.019-.017.029-.022a3 3 0 0 0 1.007-.996q.048-.082.09-.166q.123-.231.205-.485q.033-.097.061-.195c.056-.234.095-.472.095-.72s-.039-.486-.097-.718a3 3 0 0 0-.061-.194a3 3 0 0 0-.205-.486c-.03-.057-.057-.112-.09-.166A3 3 0 0 0 6.54 9.44c-.01-.006-.018-.017-.028-.023a6.15 6.15 0 0 1 2.905-2.905c.006.01.017.018.022.029c.248.411.588.755.996 1.007q.082.048.166.09q.232.123.486.205q.095.033.194.061c.233.057.47.096.719.096a3 3 0 0 0 .912-.158q.254-.081.486-.205q.084-.042.166-.09c.408-.252.748-.596.996-1.007c.006-.011.017-.019.022-.029a6.15 6.15 0 0 1 2.905 2.905c-.011.006-.019.017-.029.022a3 3 0 0 0-1.007.996q-.048.082-.09.166q-.123.232-.205.486c-.021.064-.044.128-.061.194A3 3 0 0 0 16 12a3 3 0 0 0 .158.912q.081.254.205.486q.042.084.09.166c.252.408.596.748 1.007.996c.011.006.019.017.029.022a6.15 6.15 0 0 1-2.906 2.906M19 13c-.06 0-.11-.023-.167-.034a1 1 0 0 1-.279-.083c-.027-.014-.049-.034-.075-.051a1 1 0 0 1-.209-.16c-.037-.04-.062-.09-.092-.136c-.036-.054-.078-.104-.103-.165c-.047-.115-.075-.239-.075-.371s.028-.256.075-.371c.024-.061.066-.111.103-.165c.03-.046.055-.096.092-.136c.06-.063.134-.113.209-.16c.026-.017.048-.037.075-.051c.085-.042.181-.066.279-.083c.057-.011.107-.034.167-.034a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bx-shape-polygon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 14.185v-2.369A3 3 0 0 0 22 9c0-1.654-1.346-3-3-3a3 3 0 0 0-2.116.876L12.969 5.31c.01-.103.031-.204.031-.31c0-1.654-1.346-3-3-3S7 3.346 7 5c0 .762.295 1.451.765 1.981L6.091 9.212A3 3 0 0 0 5 9c-1.654 0-3 1.346-3 3s1.346 3 3 3c.159 0 .313-.023.465-.047L7.4 17.532c-.248.436-.4.932-.4 1.468c0 1.654 1.346 3 3 3a2.99 2.99 0 0 0 2.863-2.153l3.962-.792A3 3 0 0 0 19 20c1.654 0 3-1.346 3-3a2.995 2.995 0 0 0-2-2.815M19 8a1.001 1.001 0 1 1-1 1c0-.551.448-1 1-1m-9-4a1.001 1.001 0 1 1-1 1c0-.551.448-1 1-1m-6 8a1.001 1.001 0 1 1 1 1c-.552 0-1-.449-1-1m6 8a1 1 0 1 1 0-2a1 1 0 0 1 0 2m2.761-2.172A3 3 0 0 0 10 16c-.386 0-.752.079-1.091.213l-1.674-2.231C7.705 13.451 8 12.762 8 12c0-.536-.152-1.032-.399-1.467l1.935-2.58c.152.024.305.047.464.047a3 3 0 0 0 2.116-.876l3.915 1.566c-.01.103-.031.204-.031.31c0 1.302.839 2.401 2 2.815v2.369a3 3 0 0 0-2 2.815c0 .061.015.117.018.177zM19 18a1 1 0 1 1 0-2a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bx-shape-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 6c0-1.654-1.346-3-3-3a2.99 2.99 0 0 0-2.815 2h-6.37A2.99 2.99 0 0 0 6 3C4.346 3 3 4.346 3 6c0 1.302.839 2.401 2 2.815v6.369A3 3 0 0 0 3 18c0 1.654 1.346 3 3 3a2.99 2.99 0 0 0 2.815-2h6.369a2.99 2.99 0 0 0 2.815 2c1.654 0 3-1.346 3-3a3 3 0 0 0-2-2.816V8.816A3 3 0 0 0 21 6m-3-1a1.001 1.001 0 1 1-1 1c0-.551.448-1 1-1m-2.815 12h-6.37A2.99 2.99 0 0 0 7 15.184V8.816A2.99 2.99 0 0 0 8.815 7h6.369A2.99 2.99 0 0 0 17 8.815v6.369A2.99 2.99 0 0 0 15.185 17M6 5a1.001 1.001 0 1 1-1 1c0-.551.448-1 1-1m0 14a1.001 1.001 0 0 1 0-2a1.001 1.001 0 0 1 0 2m12 0a1.001 1.001 0 0 1 0-2a1.001 1.001 0 0 1 0 2'/%3E%3C/svg%3E"); } .bx-shape-triangle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 15c-.183 0-.358.022-.532.054L8.946 6.532C8.978 6.359 9 6.182 9 6c0-1.654-1.346-3-3-3S3 4.346 3 6c0 1.302.839 2.401 2 2.815v6.369A3 3 0 0 0 3 18c0 1.654 1.346 3 3 3a2.99 2.99 0 0 0 2.815-2h6.369a2.99 2.99 0 0 0 2.815 2c1.654 0 3-1.346 3-3S19.654 15 18 15m-11 .184V8.816c.329-.118.629-.291.894-.508l7.799 7.799a3 3 0 0 0-.508.894h-6.37A2.99 2.99 0 0 0 7 15.184M6 5a1.001 1.001 0 1 1-1 1c0-.551.448-1 1-1m0 14a1.001 1.001 0 0 1 0-2a1.001 1.001 0 0 1 0 2m12 0a1.001 1.001 0 0 1 0-2a1.001 1.001 0 0 1 0 2'/%3E%3C/svg%3E"); } .bx-share { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 7.05V4a1 1 0 0 0-1-1a1 1 0 0 0-.7.29l-7 7a1 1 0 0 0 0 1.42l7 7A1 1 0 0 0 11 18v-3.1h.85a10.89 10.89 0 0 1 8.36 3.72a1 1 0 0 0 1.11.35A1 1 0 0 0 22 18c0-9.12-8.08-10.68-11-10.95m.85 5.83a15 15 0 0 0-2 .13A1 1 0 0 0 9 14v1.59L4.42 11L9 6.41V8a1 1 0 0 0 1 1c.91 0 8.11.2 9.67 6.43a13.07 13.07 0 0 0-7.82-2.55'/%3E%3C/svg%3E"); } .bx-share-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.5 15a3.5 3.5 0 0 0 2.36-.93l6.26 3.58a3 3 0 0 0-.12.85a3.53 3.53 0 1 0 1.14-2.57l-6.26-3.58a2.7 2.7 0 0 0 .12-.76l6.15-3.52A3.49 3.49 0 1 0 14 5.5a3.4 3.4 0 0 0 .12.85L8.43 9.6A3.5 3.5 0 1 0 5.5 15m12 2a1.5 1.5 0 1 1-1.5 1.5a1.5 1.5 0 0 1 1.5-1.5m0-13A1.5 1.5 0 1 1 16 5.5A1.5 1.5 0 0 1 17.5 4m-12 6A1.5 1.5 0 1 1 4 11.5A1.5 1.5 0 0 1 5.5 10'/%3E%3C/svg%3E"); } .bx-shekel { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 8v8h2V8c0-2.206-1.794-4-4-4H5v16h2V6h4c1.103 0 2 .897 2 2'/%3E%3Cpath fill='black' d='M17 16c0 1.103-.897 2-2 2h-4V8H9v12h6c2.206 0 4-1.794 4-4V4h-2z'/%3E%3C/svg%3E"); } .bx-shield { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.995 6.903a1 1 0 0 0-.547-.797l-7.973-4a1 1 0 0 0-.895-.002l-8.027 4c-.297.15-.502.437-.544.767c-.013.097-1.145 9.741 8.541 15.008a1 1 0 0 0 .969-.009c9.307-5.259 8.514-14.573 8.476-14.967m-8.977 12.944c-6.86-4.01-7.14-10.352-7.063-12.205l7.071-3.523l6.998 3.511c.005 1.87-.481 8.243-7.006 12.217'/%3E%3C/svg%3E"); } .bx-shield-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.342 8.447l1.105-.553A.998.998 0 0 0 21.8 6.4l-3-4A1 1 0 0 0 18 2H6a1 1 0 0 0-.8.4l-3 4a1 1 0 0 0 .352 1.494l1.105.553l-1.131 2.262A5.05 5.05 0 0 0 2 12.944v.591a6.03 6.03 0 0 0 3.894 5.618l3.431 1.286a5.5 5.5 0 0 1 1.969 1.268a.997.997 0 0 0 1.413 0a5.5 5.5 0 0 1 1.969-1.267l3.432-1.287A6.03 6.03 0 0 0 22 13.535v-.591c0-.771-.183-1.545-.527-2.236zM20 13.535a4.02 4.02 0 0 1-2.596 3.745l-3.431 1.287a7.5 7.5 0 0 0-1.974 1.101a7.5 7.5 0 0 0-1.974-1.102L6.596 17.28A4.02 4.02 0 0 1 4 13.535v-.591c0-.463.109-.928.316-1.342l1.131-2.261a2.003 2.003 0 0 0-.895-2.684l-.033-.015L6.5 4h11l1.981 2.642l-.034.017a2.004 2.004 0 0 0-.895 2.684l1.131 2.26c.208.414.317.878.317 1.341z'/%3E%3C/svg%3E"); } .bx-shield-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.438 5.089a1 1 0 0 0-.959.015c-.684.389-1.355.577-2.053.577c-2.035 0-3.952-1.629-5.722-3.39c-.375-.373-1.063-.373-1.438 0C9.592 3.959 7.598 5.663 5.51 5.663c-.69 0-1.351-.184-2.018-.561c-.298-.166-.658-.171-.96-.012s-.501.461-.528.801c-.011.129-.944 12.872 9.683 16.041a1 1 0 0 0 .286.042H12q.145 0 .285-.041c10.657-3.17 9.695-15.916 9.684-16.044a1 1 0 0 0-.531-.8m-9.452 14.842c-6.979-2.255-7.934-9.412-8.014-12.477q.759.21 1.537.209c2.492 0 4.65-1.567 6.476-3.283c1.893 1.788 3.983 3.301 6.442 3.301q.797 0 1.575-.22c-.074 3.065-1.021 10.217-8.016 12.47'/%3E%3C/svg%3E"); } .bx-shield-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.41 6.11l-8-4a.94.94 0 0 0-.89 0l-8 4A1 1 0 0 0 3 6.9c0 .11-1 10.77 8.59 15a1 1 0 0 0 .41.1a.9.9 0 0 0 .4-.09C21.92 17.67 21 7 21 6.9a1 1 0 0 0-.59-.79M12 19.9C5.2 16.63 4.88 9.64 4.93 7.63l7-3.51l7 3.51c.13 2.01-.19 9-6.93 12.27'/%3E%3Cpath fill='black' d='M8 11h8v2H8z'/%3E%3C/svg%3E"); } .bx-shield-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.63 21.91A.9.9 0 0 0 12 22a1 1 0 0 0 .41-.09C22 17.67 21 7 21 6.9a1 1 0 0 0-.55-.79l-8-4a1 1 0 0 0-.9 0l-8 4A1 1 0 0 0 3 6.9c0 .1-.92 10.77 8.63 15.01M5 7.63l7-3.51l7 3.51c.05 2-.27 9-7 12.27C5.26 16.63 4.94 9.64 5 7.63'/%3E%3Cpath fill='black' d='M11.06 16h2v-3h3.01v-2h-3.01V8h-2v3h-3v2h3z'/%3E%3C/svg%3E"); } .bx-shield-quarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.995 6.9a1 1 0 0 0-.548-.795l-8-4a1 1 0 0 0-.895 0l-8 4a1 1 0 0 0-.547.795c-.011.107-.961 10.767 8.589 15.014a1 1 0 0 0 .812 0c9.55-4.247 8.6-14.906 8.589-15.014M12 19.897V12H5.51a15.5 15.5 0 0 1-.544-4.365L12 4.118V12h6.46c-.759 2.74-2.498 5.979-6.46 7.897'/%3E%3C/svg%3E"); } .bx-shield-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.48 6.105l-8-4a1 1 0 0 0-.895 0l-8 4a1 1 0 0 0-.547.795c-.011.107-.961 10.767 8.589 15.014a1 1 0 0 0 .812 0c9.55-4.247 8.6-14.906 8.589-15.014a1 1 0 0 0-.548-.795m-8.447 13.792C5.265 16.625 4.944 9.642 4.999 7.635l7.034-3.517l7.029 3.515c.038 1.989-.328 9.018-7.029 12.264'/%3E%3Cpath fill='black' d='M14.293 8.293L12 10.586L9.707 8.293L8.293 9.707L10.586 12l-2.293 2.293l1.414 1.414L12 13.414l2.293 2.293l1.414-1.414L13.414 12l2.293-2.293z'/%3E%3C/svg%3E"); } .bx-shocked { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.493' cy='10.493' r='1.493' fill='black'/%3E%3Cellipse cx='12' cy='15.5' fill='black' rx='3' ry='2.5'/%3E%3C/svg%3E"); } .bx-shopping-bag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V9a1 1 0 0 0-1-1h-3V7c0-2.757-2.243-5-5-5S7 4.243 7 7v1H4a1 1 0 0 0-1 1v11c0 1.103.897 2 2 2M9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v1H9zm-4 3h2v2h2v-2h6v2h2v-2h2l.002 10H5z'/%3E%3C/svg%3E"); } .bx-show { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 9a3.02 3.02 0 0 0-3 3c0 1.642 1.358 3 3 3s3-1.358 3-3s-1.359-3-3-3'/%3E%3Cpath fill='black' d='M12 5c-7.633 0-9.927 6.617-9.948 6.684L1.946 12l.105.316C2.073 12.383 4.367 19 12 19s9.927-6.617 9.948-6.684l.106-.316l-.105-.316C21.927 11.617 19.633 5 12 5m0 12c-5.351 0-7.424-3.846-7.926-5C4.578 10.842 6.652 7 12 7c5.351 0 7.424 3.846 7.926 5c-.504 1.158-2.578 5-7.926 5'/%3E%3C/svg%3E"); } .bx-show-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 12c-1.095 0-2-.905-2-2c0-.354.103-.683.268-.973C12.178 9.02 12.092 9 12 9a3.02 3.02 0 0 0-3 3c0 1.642 1.358 3 3 3s3-1.358 3-3c0-.092-.02-.178-.027-.268c-.29.165-.619.268-.973.268'/%3E%3Cpath fill='black' d='M12 5c-7.633 0-9.927 6.617-9.948 6.684L1.946 12l.105.316C2.073 12.383 4.367 19 12 19s9.927-6.617 9.948-6.684l.106-.316l-.105-.316C21.927 11.617 19.633 5 12 5m0 12c-5.351 0-7.424-3.846-7.926-5C4.578 10.842 6.652 7 12 7c5.351 0 7.424 3.846 7.926 5c-.504 1.158-2.578 5-7.926 5'/%3E%3C/svg%3E"); } .bx-shower { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 18.33A6.8 6.8 0 0 0 19.5 15a6.73 6.73 0 0 0-1.5 3.33a1.51 1.51 0 1 0 3 0m-10 2A6.8 6.8 0 0 0 9.5 17A6.73 6.73 0 0 0 8 20.33A1.59 1.59 0 0 0 9.5 22a1.59 1.59 0 0 0 1.5-1.67M14.5 22a1.59 1.59 0 0 0 1.5-1.67A6.8 6.8 0 0 0 14.5 17a6.73 6.73 0 0 0-1.5 3.33A1.59 1.59 0 0 0 14.5 22M3 18.33A1.59 1.59 0 0 0 4.5 20A1.59 1.59 0 0 0 6 18.33A6.8 6.8 0 0 0 4.5 15A6.73 6.73 0 0 0 3 18.33M13 4.07V2h-2v2.07A8 8 0 0 0 4 12H2v2h20v-2h-2a8 8 0 0 0-7-7.93M6 12a6 6 0 0 1 12 0z'/%3E%3C/svg%3E"); } .bx-shuffle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 17h-1.559l-9.7-10.673A1 1 0 0 0 5.001 6H2v2h2.559l4.09 4.5l-4.09 4.501H2v2h3.001a1 1 0 0 0 .74-.327L10 13.987l4.259 4.686a1 1 0 0 0 .74.327H17v3l5-4l-5-4z'/%3E%3Cpath fill='black' d='M15.441 8H17v3l5-3.938L17 3v3h-2.001a1 1 0 0 0-.74.327l-3.368 3.707l1.48 1.346z'/%3E%3C/svg%3E"); } .bx-sidebar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 19V7h6v12zm8 0V7h8V5l.002 14z'/%3E%3Cpath fill='black' d='M6 10h2v2H6zm0 4h2v2H6z'/%3E%3C/svg%3E"); } .bx-signal-1 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 16h2v5H3z'/%3E%3C/svg%3E"); } .bx-signal-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 16h2v5H3zm4-3h2v8H7z'/%3E%3C/svg%3E"); } .bx-signal-3 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 16h2v5H3zm4-3h2v8H7zm4-3h2v11h-2z'/%3E%3C/svg%3E"); } .bx-signal-4 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 16h2v5H3zm4-3h2v8H7zm4-3h2v11h-2zm4-3h2v14h-2z'/%3E%3C/svg%3E"); } .bx-signal-5 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 16h2v5H3zm4-3h2v8H7zm4-3h2v11h-2zm4-3h2v14h-2zm4-3h2v17h-2z'/%3E%3C/svg%3E"); } .bx-sitemap { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 13.01h-7V10h1c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2h-4c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h1v3.01H4V18H3v4h4v-4H6v-2.99h5V18h-1v4h4v-4h-1v-2.99h5V18h-1v4h4v-4h-1zM10 8V4h4l.002 4z'/%3E%3C/svg%3E"); } .bx-skip-next { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 7v10l7-5zm9 10V7h-2v10z'/%3E%3C/svg%3E"); } .bx-skip-next-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='m8 16l5-4l-5-4zm5-4v4h2V8h-2z'/%3E%3C/svg%3E"); } .bx-skip-previous { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m16 7l-7 5l7 5zm-7 5V7H7v10h2z'/%3E%3C/svg%3E"); } .bx-skip-previous-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M16 16V8l-5 4zM9 8v8h2V8z'/%3E%3C/svg%3E"); } .bx-sleepy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cellipse cx='12' cy='15.5' fill='black' rx='3' ry='2.5'/%3E%3Cpath fill='black' d='M10 7c-2.905 0-3.983 2.386-4 3.99l2 .021C8.002 10.804 8.076 9 10 9zm4 0v2c1.826 0 1.992 1.537 2 2.007L17 11h1c0-1.608-1.065-4-4-4'/%3E%3C/svg%3E"); } .bx-slider { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 5h9v2h-9zM2 7h7v2h2V3H9v2H2zm7 10h13v2H9zm10-6h3v2h-3zm-2 4V9.012h-2V11H2v2h13v2zM7 21v-6H5v2H2v2h3v2z'/%3E%3C/svg%3E"); } .bx-slider-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.5 14.5c-1.58 0-2.903 1.06-3.337 2.5H2v2h2.163c.434 1.44 1.757 2.5 3.337 2.5s2.903-1.06 3.337-2.5H22v-2H10.837c-.434-1.44-1.757-2.5-3.337-2.5m0 5c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5S9 17.173 9 18s-.673 1.5-1.5 1.5m9-11c-1.58 0-2.903 1.06-3.337 2.5H2v2h11.163c.434 1.44 1.757 2.5 3.337 2.5s2.903-1.06 3.337-2.5H22v-2h-2.163c-.434-1.44-1.757-2.5-3.337-2.5m0 5c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5s1.5.673 1.5 1.5s-.673 1.5-1.5 1.5'/%3E%3Cpath fill='black' d='M12.837 5C12.403 3.56 11.08 2.5 9.5 2.5S6.597 3.56 6.163 5H2v2h4.163C6.597 8.44 7.92 9.5 9.5 9.5s2.903-1.06 3.337-2.5h9.288V5zM9.5 7.5C8.673 7.5 8 6.827 8 6s.673-1.5 1.5-1.5S11 5.173 11 6s-.673 1.5-1.5 1.5'/%3E%3C/svg%3E"); } .bx-slideshow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h7v3H8v2h8v-2h-3v-3h7c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 15V5h16l.001 10z'/%3E%3Cpath fill='black' d='m10 13l5-3l-5-3z'/%3E%3C/svg%3E"); } .bx-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M14.829 14.828a4.1 4.1 0 0 1-1.272.858a4 4 0 0 1-4.875-1.45l-1.658 1.119a6.1 6.1 0 0 0 1.621 1.62a6 6 0 0 0 2.148.903a6 6 0 0 0 2.415 0a6 6 0 0 0 2.148-.903c.313-.212.612-.458.886-.731c.272-.271.52-.571.734-.889l-1.658-1.119a4 4 0 0 1-.489.592'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.493' cy='10.493' r='1.493' fill='black'/%3E%3C/svg%3E"); } .bx-sort { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 16H4l6 6V2H8zm6-11v17h2V8h4l-6-6z'/%3E%3C/svg%3E"); } .bx-sort-a-z { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.707 14.707A1 1 0 0 0 19 13h-7v2h4.586l-4.293 4.293A1 1 0 0 0 13 21h7v-2h-4.586zM7 3.99H5v12H2l4 4l4-4H7zM17 3h-2c-.417 0-.79.259-.937.649l-2.75 7.333h2.137L14.193 9h3.613l.743 1.981h2.137l-2.75-7.333A1 1 0 0 0 17 3m-2.057 4l.75-2h.613l.75 2z'/%3E%3C/svg%3E"); } .bx-sort-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 20h2V8h3L8 4L4 8h3zm13-4h-3V4h-2v12h-3l4 4z'/%3E%3C/svg%3E"); } .bx-sort-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m6 20l4-4H7V4H5v12H2zm5-12h9v2h-9zm0 4h7v2h-7zm0-8h11v2H11zm0 12h5v2h-5z'/%3E%3C/svg%3E"); } .bx-sort-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 9h9v2h-9zm0 4h7v2h-7zm0-8h11v2H11zm0 12h5v2h-5zm-6 3h2V8h3L6 4L2 8h3z'/%3E%3C/svg%3E"); } .bx-sort-z-a { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.707 14.707A1 1 0 0 0 19 13h-7v2h4.586l-4.293 4.293A1 1 0 0 0 13 21h7v-2h-4.586zM6 3.99l-4 4h3v12h2v-12h3zM17 3h-2c-.417 0-.79.259-.937.649l-2.75 7.333h2.137L14.193 9h3.613l.743 1.981h2.137l-2.75-7.333A1 1 0 0 0 17 3m-2.057 4l.75-2h.613l.75 2z'/%3E%3C/svg%3E"); } .bx-spa { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.787 9.023c-.125.027-1.803.418-3.953 1.774c-.323-1.567-1.279-4.501-4.108-7.485L12 2.546l-.726.767C8.435 6.308 7.483 9.25 7.163 10.827C5.005 9.448 3.34 9.052 3.218 9.024L2 8.752V10c0 7.29 3.925 12 10 12c5.981 0 10-4.822 10-12V8.758zM8.999 12.038c.002-.033.152-3.1 3.001-6.532C14.814 8.906 14.999 12 15 12v.125a19 19 0 0 0-3.01 3.154a20 20 0 0 0-2.991-3.113zM12 20c-5.316 0-7.549-4.196-7.937-8.564c1.655.718 4.616 2.426 7.107 6.123l.841 1.249l.825-1.26c2.426-3.708 5.425-5.411 7.096-6.122C19.534 15.654 17.304 20 12 20'/%3E%3C/svg%3E"); } .bx-space-bar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 13H7V9H5v6h14V9h-2z'/%3E%3C/svg%3E"); } .bx-speaker { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 18H6V4h12z'/%3E%3Cpath fill='black' d='M12 19a4 4 0 1 0-4-4a4 4 0 0 0 4 4m0-6a2 2 0 1 1-2 2a2 2 0 0 1 2-2'/%3E%3Ccircle cx='12.01' cy='7' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-spray-can { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.002 2h-4a1 1 0 0 0-1 1v3.812a6 6 0 0 0-3 5.188v.988L3 13l.002.072V21a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-9a6 6 0 0 0-3-5.188V3a1 1 0 0 0-1-1m-3 4V4h2v2zm5.001 14h-8v-6h8zm-8.001-8c0-2.206 1.794-4 4-4s4 1.794 4 4zm8.001-9h2v2h-2zM16 3h2v2h-2zm0 3h2v2h-2zm3-3h2v2h-2zm0 3h2v2h-2zm0 3h2v2h-2z'/%3E%3C/svg%3E"); } .bx-spreadsheet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2zM5 19V5h14l.002 14z'/%3E%3Cpath fill='black' d='M7 7h1.998v2H7zm4 0h6v2h-6zm-4 4h1.998v2H7zm4 0h6v2h-6zm-4 4h1.998v2H7zm4 0h6v2h-6z'/%3E%3C/svg%3E"); } .bx-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-1 16H5V5h14z'/%3E%3C/svg%3E"); } .bx-square-rounded { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 2H7C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5m3 15c0 1.654-1.346 3-3 3H7c-1.654 0-3-1.346-3-3V7c0-1.654 1.346-3 3-3h10c1.654 0 3 1.346 3 3z'/%3E%3C/svg%3E"); } .bx-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m6.516 14.323l-1.49 6.452a.998.998 0 0 0 1.529 1.057L12 18.202l5.445 3.63a1.001 1.001 0 0 0 1.517-1.106l-1.829-6.4l4.536-4.082a1 1 0 0 0-.59-1.74l-5.701-.454l-2.467-5.461a.998.998 0 0 0-1.822 0L8.622 8.05l-5.701.453a1 1 0 0 0-.619 1.713zm2.853-4.326a1 1 0 0 0 .832-.586L12 5.43l1.799 3.981a1 1 0 0 0 .832.586l3.972.315l-3.271 2.944c-.284.256-.397.65-.293 1.018l1.253 4.385l-3.736-2.491a.995.995 0 0 0-1.109 0l-3.904 2.603l1.05-4.546a1 1 0 0 0-.276-.94l-3.038-2.962z'/%3E%3C/svg%3E"); } .bx-station { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='2' fill='black'/%3E%3Cpath fill='black' d='m7.758 16.243l1.414-1.415a3.97 3.97 0 0 1-1.173-2.831c0-1.068.417-2.071 1.173-2.825L7.758 7.756a5.96 5.96 0 0 0-1.76 4.24c0 1.604.625 3.112 1.76 4.247m8.484 0A5.96 5.96 0 0 0 18 12a5.96 5.96 0 0 0-1.758-4.243l-1.414 1.414C15.584 9.927 16 10.932 16 12s-.416 2.073-1.172 2.829z'/%3E%3Cpath fill='black' d='M6.344 17.657a7.95 7.95 0 0 1-2.345-5.659c0-2.137.833-4.145 2.345-5.654L4.93 4.929c-1.89 1.886-2.931 4.397-2.931 7.069s1.041 5.183 2.931 7.073zM17.657 6.343A7.95 7.95 0 0 1 20 12a7.95 7.95 0 0 1-2.343 5.657l1.414 1.414A9.93 9.93 0 0 0 22 12a9.93 9.93 0 0 0-2.929-7.071z'/%3E%3C/svg%3E"); } .bx-stats { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 12a2 2 0 0 0-.703.133l-2.398-1.963c.059-.214.101-.436.101-.67C17 8.114 15.886 7 14.5 7S12 8.114 12 9.5c0 .396.1.765.262 1.097l-2.909 3.438A2 2 0 0 0 9 14c-.179 0-.348.03-.512.074l-2.563-2.563C5.97 11.348 6 11.179 6 11c0-1.108-.892-2-2-2s-2 .892-2 2s.892 2 2 2c.179 0 .348-.03.512-.074l2.563 2.563A2 2 0 0 0 7 16c0 1.108.892 2 2 2s2-.892 2-2c0-.237-.048-.46-.123-.671l2.913-3.442c.227.066.462.113.71.113a2.5 2.5 0 0 0 1.133-.281l2.399 1.963A2 2 0 0 0 18 14c0 1.108.892 2 2 2s2-.892 2-2s-.892-2-2-2'/%3E%3C/svg%3E"); } .bx-sticker { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.796 9.982C20.849 5.357 16.729 2 12 2C6.486 2 2 6.486 2 12c0 4.729 3.357 8.849 7.982 9.796a.99.99 0 0 0 .908-.272l10.633-10.633c.238-.238.34-.578.273-.909M11 18a7.93 7.93 0 0 1 1.365-4.471a8 8 0 0 1 .978-1.186a8 8 0 0 1 1.184-.977a8 8 0 0 1 1.36-.738c.481-.203.986-.36 1.501-.466a8 8 0 0 1 2.17-.134l-8.529 8.529c-.013-.185-.029-.37-.029-.557m-7-6c0-4.411 3.589-8 8-8c2.909 0 5.528 1.589 6.929 4.005a10 10 0 0 0-1.943.198c-.643.132-1.274.328-1.879.583a10 10 0 0 0-1.699.923c-.533.361-1.03.771-1.479 1.22s-.858.945-1.221 1.48c-.359.533-.67 1.104-.922 1.698A10 10 0 0 0 9 18c0 .491.048.979.119 1.461C6.089 18.288 4 15.336 4 12'/%3E%3C/svg%3E"); } .bx-stop { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 7h10v10H7z'/%3E%3C/svg%3E"); } .bx-stop-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M9 9h6v6H9z'/%3E%3C/svg%3E"); } .bx-stopwatch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 5c-4.411 0-8 3.589-8 8s3.589 8 8 8s8-3.589 8-8s-3.589-8-8-8m0 14c-3.309 0-6-2.691-6-6s2.691-6 6-6s6 2.691 6 6s-2.691 6-6 6'/%3E%3Cpath fill='black' d='M11 9h2v5h-2zM9 2h6v2H9zm10.293 5.707l-2-2l1.414-1.414l2 2z'/%3E%3C/svg%3E"); } .bx-store { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.148 2.971A2.01 2.01 0 0 0 17.434 2H6.566c-.698 0-1.355.372-1.714.971L2.143 7.485A1 1 0 0 0 2 8a3.97 3.97 0 0 0 1 2.618V19c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-8.382A3.97 3.97 0 0 0 22 8a1 1 0 0 0-.143-.515zm.836 5.28A2 2 0 0 1 18 10c-1.103 0-2-.897-2-2c0-.068-.025-.128-.039-.192l.02-.004L15.22 4h2.214zM10.819 4h2.361l.813 4.065C13.958 9.137 13.08 10 12 10s-1.958-.863-1.993-1.935zM6.566 4H8.78l-.76 3.804l.02.004C8.025 7.872 8 7.932 8 8c0 1.103-.897 2-2 2a2 2 0 0 1-1.984-1.749zM10 19v-3h4v3zm6 0v-3c0-1.103-.897-2-2-2h-4c-1.103 0-2 .897-2 2v3H5v-7.142c.321.083.652.142 1 .142a4 4 0 0 0 3-1.357c.733.832 1.807 1.357 3 1.357s2.267-.525 3-1.357A4 4 0 0 0 18 12c.348 0 .679-.059 1-.142V19z'/%3E%3C/svg%3E"); } .bx-store-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M22 5c0-1.654-1.346-3-3-3H5C3.346 2 2 3.346 2 5v2.831c0 1.053.382 2.01 1 2.746V19c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-8.424c.618-.735 1-1.692 1-2.746zm-2 0v2.831c0 1.14-.849 2.112-1.891 2.167L18 10c-1.103 0-2-.897-2-2V4h3c.552 0 1 .449 1 1M10 4h4v4c0 1.103-.897 2-2 2s-2-.897-2-2zM4 5c0-.551.448-1 1-1h3v4c0 1.103-.897 2-2 2l-.109-.003C4.849 9.943 4 8.971 4 7.831zm6 14v-3h4v3zm6 0v-3c0-1.103-.897-2-2-2h-4c-1.103 0-2 .897-2 2v3H5v-7.131q.382.102.787.125A3.99 3.99 0 0 0 9 10.643c.733.832 1.807 1.357 3 1.357s2.267-.525 3-1.357a3.99 3.99 0 0 0 3.213 1.351q.406-.023.787-.125V19z'/%3E%3C/svg%3E"); } .bx-street-view { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M12 18h2v-5h2V9c0-1.103-.897-2-2-2h-4c-1.103 0-2 .897-2 2v4h2v5z'/%3E%3Cpath fill='black' d='m18.446 11.386l-.893 1.789C19.108 13.95 20 14.98 20 16c0 1.892-3.285 4-8 4s-8-2.108-8-4c0-1.02.892-2.05 2.446-2.825l-.893-1.789C3.295 12.512 2 14.193 2 16c0 3.364 4.393 6 10 6s10-2.636 10-6c0-1.807-1.295-3.488-3.554-4.614'/%3E%3C/svg%3E"); } .bx-strikethrough { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 11h-8c-4 0-4-1.816-4-2.5C8 7.882 8 6 12 6c2.8 0 2.99 1.678 3 2.014L16 8h1c0-1.384-1.045-4-5-4c-5.416 0-6 3.147-6 4.5c0 .728.148 1.667.736 2.5H4v2h16zm-8 7c-3.793 0-3.99-1.815-4-2H6c0 .04.069 4 6 4c5.221 0 6-2.819 6-4.5c0-.146-.009-.317-.028-.5h-2.006c.032.2.034.376.034.5c0 .684 0 2.5-4 2.5'/%3E%3C/svg%3E"); } .bx-subdirectory-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 13h-6v-3l-5 4l5 4v-3h7a1 1 0 0 0 1-1V5h-2z'/%3E%3C/svg%3E"); } .bx-subdirectory-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 13H8V5H6v9a1 1 0 0 0 1 1h7v3l5-4l-5-4z'/%3E%3C/svg%3E"); } .bx-sun { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.993 12c0 2.761 2.246 5.007 5.007 5.007s5.007-2.246 5.007-5.007S14.761 6.993 12 6.993S6.993 9.239 6.993 12M12 8.993c1.658 0 3.007 1.349 3.007 3.007S13.658 15.007 12 15.007S8.993 13.658 8.993 12S10.342 8.993 12 8.993M10.998 19h2v3h-2zm0-17h2v3h-2zm-9 9h3v2h-3zm17 0h3v2h-3zM4.219 18.363l2.12-2.122l1.415 1.414l-2.12 2.122zM16.24 6.344l2.122-2.122l1.414 1.414l-2.122 2.122zM6.342 7.759L4.22 5.637l1.415-1.414l2.12 2.122zm13.434 10.605l-1.414 1.414l-2.122-2.122l1.414-1.414z'/%3E%3C/svg%3E"); } .bx-support { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12v4.143C2 17.167 2.897 18 4 18h1a1 1 0 0 0 1-1v-5.143a1 1 0 0 0-1-1h-.908C4.648 6.987 7.978 4 12 4s7.352 2.987 7.908 6.857H19a1 1 0 0 0-1 1V18c0 1.103-.897 2-2 2h-2v-1h-4v3h6c2.206 0 4-1.794 4-4c1.103 0 2-.833 2-1.857V12c0-5.514-4.486-10-10-10'/%3E%3C/svg%3E"); } .bx-sushi { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C7.51 2 4 4.2 4 7v10c0 2.8 3.51 5 8 5s8-2.2 8-5V7c0-2.8-3.51-5-8-5m0 18c-3.54 0-6-1.58-6-3v-6.67A10.5 10.5 0 0 0 12 12a10.5 10.5 0 0 0 6-1.67V17c0 1.42-2.46 3-6 3m0-10c-3.54 0-6-1.58-6-3s2.46-3 6-3s6 1.58 6 3s-2.46 3-6 3'/%3E%3Cellipse cx='12' cy='7' fill='black' rx='3' ry='1.71'/%3E%3C/svg%3E"); } .bx-swim { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='19.003' cy='6.002' r='2.002' fill='black'/%3E%3Cpath fill='black' d='M18.875 13.219c-.567.453-.978.781-1.878.781s-1.288-.311-1.876-.781c-.68-.543-1.525-1.219-3.127-1.219s-2.445.676-3.124 1.219c-.588.47-.975.781-1.875.781c-.898 0-1.286-.311-1.873-.78C4.443 12.676 3.6 12 2 12v2c.897 0 1.285.311 1.872.78c.679.544 1.523 1.22 3.123 1.22s2.446-.676 3.125-1.22c.587-.47.976-.78 1.874-.78c.9 0 1.311.328 1.878.781c.679.543 1.524 1.219 3.125 1.219c1.602 0 2.447-.676 3.127-1.219c.588-.47.977-.781 1.876-.781v-2c-1.601 0-2.446.676-3.125 1.219M16.997 19c-.899 0-1.288-.311-1.876-.781c-.68-.543-1.525-1.219-3.127-1.219s-2.445.676-3.124 1.219c-.588.47-.975.781-1.875.781c-.898 0-1.286-.311-1.873-.78C4.443 17.676 3.6 17 2 17v2c.897 0 1.285.311 1.872.78c.679.544 1.523 1.22 3.123 1.22s2.446-.676 3.125-1.22c.587-.47.976-.78 1.874-.78c.9 0 1.311.328 1.878.781c.679.543 1.524 1.219 3.125 1.219c1.602 0 2.447-.676 3.127-1.219c.588-.47.977-.781 1.876-.781v-2c-1.601 0-2.446.676-3.125 1.219c-.567.453-.978.781-1.878.781M11 5.419l2.104 2.104l-2.057 2.57c.286-.056.596-.093.947-.093c1.602 0 2.447.676 3.127 1.219c.588.47.977.781 1.876.781c.9 0 1.311-.328 1.878-.781c.132-.105.274-.217.423-.326l-2.096-2.09l.005-.005l-5.5-5.5a1 1 0 0 0-1.414 0l-4 4l1.414 1.414z'/%3E%3C/svg%3E"); } .bx-sync { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m13 7.101l.01.001a5 5 0 0 1 2.526 1.362a5 5 0 0 1 1.363 2.528a5.1 5.1 0 0 1-.001 2.016a5 5 0 0 1-1.363 2.527l1.414 1.414a7 7 0 0 0 1.908-3.54a7 7 0 0 0 0-2.819a6.96 6.96 0 0 0-1.907-3.539a7 7 0 0 0-2.223-1.5a7 7 0 0 0-1.315-.408c-.137-.028-.275-.043-.412-.063V2L9 6l4 4zm-7.45 7.623c.174.412.392.812.646 1.19c.249.37.537.718.854 1.034a7 7 0 0 0 2.224 1.501c.425.18.868.317 1.315.408c.167.034.338.056.508.078v2.944l4-4l-4-4v3.03c-.035-.006-.072-.003-.107-.011a5 5 0 0 1-2.526-1.362a4.994 4.994 0 0 1 .001-7.071L7.051 7.05a7 7 0 0 0-1.5 2.224A7 7 0 0 0 5 12a7 7 0 0 0 .55 2.724'/%3E%3C/svg%3E"); } .bx-tab { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 2c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm0 15V5h12l.002 12z'/%3E%3C/svg%3E"); } .bx-table { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 21h15.893c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m0-2v-5h4v5zM14 7v5h-4V7zM8 7v5H4V7zm2 12v-5h4v5zm6 0v-5h3.894v5zm3.893-7H16V7h3.893z'/%3E%3C/svg%3E"); } .bx-tachometer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4C6.486 4 2 8.486 2 14a9.9 9.9 0 0 0 1.051 4.445c.17.34.516.555.895.555h16.107c.379 0 .726-.215.896-.555A9.9 9.9 0 0 0 22 14c0-5.514-4.486-10-10-10m7.41 13H4.59A7.9 7.9 0 0 1 4 14c0-4.411 3.589-8 8-8s8 3.589 8 8a7.9 7.9 0 0 1-.59 3'/%3E%3Cpath fill='black' d='M10.939 12.939a1.53 1.53 0 0 0 0 2.561a1.53 1.53 0 0 0 2.121-.44l3.962-6.038a.03.03 0 0 0 0-.035a.033.033 0 0 0-.045-.01z'/%3E%3C/svg%3E"); } .bx-tag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H8.515a2 2 0 0 0-1.627.838l-4.701 6.581a1 1 0 0 0 0 1.162l4.701 6.581A2 2 0 0 0 8.515 20H20c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m0 14H8.515l-4.286-6l4.286-6H20z'/%3E%3C/svg%3E"); } .bx-tag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.868 4.504A1 1 0 0 0 17 4H3a1 1 0 0 0-.868 1.496L5.849 12l-3.717 6.504A1 1 0 0 0 3 20h14a1 1 0 0 0 .868-.504l4-7a1 1 0 0 0 0-.992zM16.42 18H4.724l3.145-5.504a1 1 0 0 0 0-.992L4.724 6H16.42l3.429 6z'/%3E%3C/svg%3E"); } .bx-target-lock { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='3' fill='black'/%3E%3Cpath fill='black' d='M13 4.069V2h-2v2.069A8.01 8.01 0 0 0 4.069 11H2v2h2.069A8.01 8.01 0 0 0 11 19.931V22h2v-2.069A8.01 8.01 0 0 0 19.931 13H22v-2h-2.069A8.01 8.01 0 0 0 13 4.069M12 18c-3.309 0-6-2.691-6-6s2.691-6 6-6s6 2.691 6 6s-2.691 6-6 6'/%3E%3C/svg%3E"); } .bx-task { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2h-2a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1H5c-1.103 0-2 .897-2 2v15c0 1.103.897 2 2 2M5 5h2v2h10V5h2v15H5z'/%3E%3Cpath fill='black' d='m11 13.586l-1.793-1.793l-1.414 1.414L11 16.414l5.207-5.207l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-task-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 20c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2h-2a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1H5c-1.103 0-2 .897-2 2zM5 5h2v2h10V5h2v15H5z'/%3E%3Cpath fill='black' d='M14.292 10.295L12 12.587l-2.292-2.292l-1.414 1.414l2.292 2.292l-2.292 2.292l1.414 1.414L12 15.415l2.292 2.292l1.414-1.414l-2.292-2.292l2.292-2.292z'/%3E%3C/svg%3E"); } .bx-taxi { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.772 10.156l-1.368-4.105A2.995 2.995 0 0 0 16.559 4H14V2h-4v2H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.105A2 2 0 0 0 2 12v5c0 .753.423 1.402 1.039 1.743c-.013.066-.039.126-.039.195V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2h12v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2.062c0-.069-.026-.13-.039-.195A1.99 1.99 0 0 0 22 17v-5c0-.829-.508-1.541-1.228-1.844M4 17v-5h16l.002 5zM7.441 6h9.117c.431 0 .813.274.949.684L18.613 10H5.387l1.105-3.316A1 1 0 0 1 7.441 6'/%3E%3Ccircle cx='6.5' cy='14.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='14.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-tennis-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.929 19.081c1.895 1.895 4.405 2.938 7.071 2.938s5.177-1.043 7.071-2.938c3.899-3.899 3.899-10.243 0-14.143C17.177 3.044 14.665 2 12 2S6.823 3.044 4.929 4.938c-3.899 3.899-3.899 10.244 0 14.143m12.728-1.414a7.97 7.97 0 0 1-3.813 2.129c-.009-1.602.586-3.146 1.691-4.251c1.163-1.163 2.732-1.828 4.277-1.851a7.95 7.95 0 0 1-2.155 3.973m2.325-5.965c-2.124-.021-4.284.853-5.861 2.429c-1.532 1.532-2.327 3.68-2.263 5.881a7.95 7.95 0 0 1-5.516-2.345a7.97 7.97 0 0 1-2.332-5.512c.077.002.154.014.231.014c2.115 0 4.16-.804 5.637-2.28c1.58-1.58 2.457-3.739 2.43-5.873a7.95 7.95 0 0 1 5.349 2.337a7.96 7.96 0 0 1 2.325 5.349M6.343 6.353a7.97 7.97 0 0 1 3.973-2.169c-.018 1.555-.685 3.124-1.851 4.291c-1.104 1.103-2.642 1.696-4.238 1.691a7.93 7.93 0 0 1 2.116-3.813'/%3E%3C/svg%3E"); } .bx-terminal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 14h6v2h-6zM6.293 9.707L8.586 12l-2.293 2.293l1.414 1.414L11.414 12L7.707 8.293z'/%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M4 18V6h16l.002 12z'/%3E%3C/svg%3E"); } .bx-test-tube { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m13.293 2.707l.818.818L3.318 14.318C2.468 15.168 2 16.298 2 17.5s.468 2.332 1.318 3.183C4.169 21.532 5.299 22 6.5 22s2.331-.468 3.182-1.318L20.475 9.889l.818.818l1.414-1.414l-8-8zm3.182 8.354l-2.403-2.404l-1.414 1.414l2.403 2.404l-1.414 1.415l-.99-.99l-1.414 1.414l.99.99l-1.415 1.415l-2.403-2.404L7 15.728l2.403 2.404l-1.136 1.136c-.945.944-2.59.944-3.535 0C4.26 18.795 4 18.168 4 17.5s.26-1.295.732-1.768L15.525 4.939l3.535 3.535z'/%3E%3C/svg%3E"); } .bx-text { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 8h2V6h3.252L7.68 18H5v2h8v-2h-2.252L13.32 6H17v2h2V4H5z'/%3E%3C/svg%3E"); } .bx-time { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M13 7h-2v6h6v-2h-4z'/%3E%3C/svg%3E"); } .bx-time-five { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M13 7h-2v5.414l3.293 3.293l1.414-1.414L13 11.586z'/%3E%3C/svg%3E"); } .bx-timer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.145 8.27l1.563-1.563l-1.414-1.414L18.586 7c-1.05-.63-2.274-1-3.586-1c-3.859 0-7 3.14-7 7s3.141 7 7 7s7-3.14 7-7a6.97 6.97 0 0 0-1.855-4.73M15 18c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5s-2.243 5-5 5'/%3E%3Cpath fill='black' d='M14 10h2v4h-2zm-1-7h4v2h-4zM3 8h4v2H3zm0 8h4v2H3zm-1-4h3.99v2H2z'/%3E%3C/svg%3E"); } .bx-tired { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 14c-3 0-4 3-4 3h8s-1-3-4-3'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='m17.555 8.832l-1.109-1.664l-3 2a1 1 0 0 0 .108 1.727l4 2l.895-1.789l-2.459-1.229zm-6.557 1.23a1 1 0 0 0-.443-.894l-3-2l-1.11 1.664l1.566 1.044l-2.459 1.229l.895 1.789l4-2a1 1 0 0 0 .551-.832'/%3E%3C/svg%3E"); } .bx-toggle-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 9c-1.628 0-3 1.372-3 3s1.372 3 3 3s3-1.372 3-3s-1.372-3-3-3'/%3E%3Cpath fill='black' d='M16 6H8c-3.3 0-5.989 2.689-6 6v.016A6.01 6.01 0 0 0 8 18h8a6.01 6.01 0 0 0 6-5.994V12c-.009-3.309-2.699-6-6-6m0 10H8a4.006 4.006 0 0 1-4-3.99C4.004 9.799 5.798 8 8 8h8c2.202 0 3.996 1.799 4 4.006A4.007 4.007 0 0 1 16 16m4-3.984l.443-.004l.557.004z'/%3E%3C/svg%3E"); } .bx-toggle-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 9c-1.628 0-3 1.372-3 3s1.372 3 3 3s3-1.372 3-3s-1.372-3-3-3'/%3E%3Cpath fill='black' d='M16 6H8c-3.296 0-5.982 2.682-6 5.986v.042A6.01 6.01 0 0 0 8 18h8c3.309 0 6-2.691 6-6s-2.691-6-6-6m0 10H8a4.006 4.006 0 0 1-4-3.99C4.004 9.799 5.798 8 8 8h8c2.206 0 4 1.794 4 4s-1.794 4-4 4'/%3E%3C/svg%3E"); } .bx-tone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-1 9H4.069a8 8 0 0 1 .52-2H11zm0 4H4.589a8 8 0 0 1-.52-2H11zm0-10.931V7H5.765A8 8 0 0 1 11 4.069M5.765 17H11v2.931A8 8 0 0 1 5.765 17M13 19.931V4.069c3.939.495 7 3.858 7 7.931s-3.061 7.436-7 7.931'/%3E%3C/svg%3E"); } .bx-traffic-cone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.943 2.667A1 1 0 0 0 13 2h-2a1 1 0 0 0-.943.667L4.292 19H2v2h20v-2h-2.292zM15.47 13H8.53l1.06-3h4.82zm-3.763-9h.586l1.412 4h-3.41zM7.825 15h8.35l1.412 4H6.413z'/%3E%3C/svg%3E"); } .bx-train { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='8.5' cy='14.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.5' cy='14.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='M18.87 3.34A3.55 3.55 0 0 0 16.38 2H7.62a3.47 3.47 0 0 0-2.5 1.35A4.32 4.32 0 0 0 4 6v12a1 1 0 0 0 1 1h2l-2 3h2.32L8 21h8l.68 1H19l-2-3h2a1 1 0 0 0 1-1V6a4.15 4.15 0 0 0-1.13-2.66M7.62 4h8.72a1.77 1.77 0 0 1 1 .66a3 3 0 0 1 .25.34H6.39a2.3 2.3 0 0 1 .25-.35A1.65 1.65 0 0 1 7.62 4M6 8V7h12v3H6zm12 9H6v-5h12z'/%3E%3C/svg%3E"); } .bx-transfer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m15 12l5-4l-5-4v2.999H2v2h13zm7 3H9v-3l-5 4l5 4v-3h13z'/%3E%3C/svg%3E"); } .bx-transfer-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.924 10.383a1 1 0 0 0-.217-1.09l-5-5l-1.414 1.414L16.586 9H4v2h15a1 1 0 0 0 .924-.617M4.076 13.617a1 1 0 0 0 .217 1.09l5 5l1.414-1.414L7.414 15H20v-2H5a1 1 0 0 0-.924.617'/%3E%3C/svg%3E"); } .bx-trash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 20a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8h2V6h-4V4a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v2H3v2h2zM9 4h6v2H9zM8 8h9v12H7V8z'/%3E%3Cpath fill='black' d='M9 10h2v8H9zm4 0h2v8h-2z'/%3E%3C/svg%3E"); } .bx-trash-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 2H9c-1.103 0-2 .897-2 2v2H3v2h2v12c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2V8h2V6h-4V4c0-1.103-.897-2-2-2M9 4h6v2H9zm8 16H7V8h10z'/%3E%3C/svg%3E"); } .bx-trending-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m14 9.586l-4 4l-6.293-6.293l-1.414 1.414L10 16.414l4-4l4.293 4.293L16 19h6v-6l-2.293 2.293z'/%3E%3C/svg%3E"); } .bx-trending-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10 10.414l4 4l5.707-5.707L22 11V5h-6l2.293 2.293L14 11.586l-4-4l-7.707 7.707l1.414 1.414z'/%3E%3C/svg%3E"); } .bx-trim { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 16h3v3c0 1.103.897 2 2 2h9c1.103 0 2-.897 2-2v-9c0-1.103-.897-2-2-2h-3V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2m14-6l-.003 9H10v-3h4c1.103 0 2-.897 2-2v-4zM5 10h5V5h4l-.003 9H5z'/%3E%3C/svg%3E"); } .bx-trip { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14.844 20H6.5C5.121 20 4 18.879 4 17.5S5.121 15 6.5 15h7c1.93 0 3.5-1.57 3.5-3.5S15.43 8 13.5 8H8.639a9.8 9.8 0 0 1-1.354 2H13.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5h-7C4.019 13 2 15.019 2 17.5S4.019 22 6.5 22h9.593a10.4 10.4 0 0 1-1.249-2M5 2C3.346 2 2 3.346 2 5c0 3.188 3 5 3 5s3-1.813 3-5c0-1.654-1.346-3-3-3m0 4.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5 6.5'/%3E%3Cpath fill='black' d='M19 14c-1.654 0-3 1.346-3 3c0 3.188 3 5 3 5s3-1.813 3-5c0-1.654-1.346-3-3-3m0 4.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 19 18.5'/%3E%3C/svg%3E"); } .bx-trophy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 4h-3V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v1H3a1 1 0 0 0-1 1v3c0 4.31 1.799 6.91 4.819 7.012A6 6 0 0 0 11 17.91V20H9v2h6v-2h-2v-2.09a6.01 6.01 0 0 0 4.181-2.898C20.201 14.91 22 12.31 22 8V5a1 1 0 0 0-1-1M4 8V6h2v6.83C4.216 12.078 4 9.299 4 8m8 8c-2.206 0-4-1.794-4-4V4h8v8c0 2.206-1.794 4-4 4m6-3.17V6h2v2c0 1.299-.216 4.078-2 4.83'/%3E%3C/svg%3E"); } .bx-tv { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-5.586l2.293-2.293l-1.414-1.414L12 5.586L8.707 2.293L7.293 3.707L9.586 6H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M4 19V8h16l.002 11z'/%3E%3C/svg%3E"); } .bx-underline { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 18h14v2H5zM6 4v6c0 3.309 2.691 6 6 6s6-2.691 6-6V4h-2v6c0 2.206-1.794 4-4 4s-4-1.794-4-4V4z'/%3E%3C/svg%3E"); } .bx-undo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 10h6c1.654 0 3 1.346 3 3s-1.346 3-3 3h-3v2h3c2.757 0 5-2.243 5-5s-2.243-5-5-5H9V5L4 9l5 4z'/%3E%3C/svg%3E"); } .bx-unite { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 16a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1z'/%3E%3Cpath fill='black' d='M5 16h1V8a2 2 0 0 1 2-2h8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2m3 3a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1v8a2 2 0 0 1-2 2H8z'/%3E%3C/svg%3E"); } .bx-universal-access { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='7.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m0 18a8 8 0 1 1 8-8a8 8 0 0 1-8 8'/%3E%3Cpath fill='black' d='M16.5 10.5L16 9l-3 1h-2L8 9l-.5 1.5l3 1V13L9 17.25l1.5.75l1.25-3.5h.5L13.5 18l1.5-.75L13.5 13v-1.5z'/%3E%3C/svg%3E"); } .bx-unlink { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.949 14.121L19.071 12a5.01 5.01 0 0 0 0-7.071a5.006 5.006 0 0 0-7.071 0l-.707.707l1.414 1.414l.707-.707a3.007 3.007 0 0 1 4.243 0a3.005 3.005 0 0 1 0 4.243l-2.122 2.121a2.7 2.7 0 0 1-.844.57L13.414 12l1.414-1.414l-.707-.707a4.97 4.97 0 0 0-3.535-1.465c-.235 0-.464.032-.691.066L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-5.536-5.536q.417-.276.778-.636m-6.363 3.536a3.007 3.007 0 0 1-4.243 0a3.005 3.005 0 0 1 0-4.243l1.476-1.475l-1.414-1.414L4.929 12a5.01 5.01 0 0 0 0 7.071a4.98 4.98 0 0 0 3.535 1.462A4.98 4.98 0 0 0 12 19.071l.707-.707l-1.414-1.414z'/%3E%3C/svg%3E"); } .bx-up-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 19h18a1.002 1.002 0 0 0 .823-1.569l-9-13c-.373-.539-1.271-.539-1.645 0l-9 13A.999.999 0 0 0 3 19m9-12.243L19.092 17H4.908z'/%3E%3C/svg%3E"); } .bx-up-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 8.414V18h2V8.414l4.293 4.293l1.414-1.414L12 4.586l-6.707 6.707l1.414 1.414z'/%3E%3C/svg%3E"); } .bx-up-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.001 1.993C6.486 1.994 2 6.48 2 11.994c.001 5.514 4.487 10 10 10c5.515 0 10.001-4.486 10.001-10s-4.486-10-10-10.001M12 19.994c-4.41 0-7.999-3.589-8-8c0-4.411 3.589-8 8.001-8.001c4.411.001 8 3.59 8 8.001s-3.589 8-8.001 8'/%3E%3Cpath fill='black' d='m12.001 8.001l-4.005 4.005h3.005V16h2v-3.994h3.004z'/%3E%3C/svg%3E"); } .bx-upload { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 15h2V9h3l-4-5l-4 5h3z'/%3E%3Cpath fill='black' d='M20 18H4v-7H2v7c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-7h-2z'/%3E%3C/svg%3E"); } .bx-upside-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M14.829 9.172q.273.273.488.592l1.658-1.119a6.1 6.1 0 0 0-1.621-1.62a6 6 0 0 0-2.148-.903a5.99 5.99 0 0 0-5.448 1.634a6 6 0 0 0-.733.889l1.657 1.119a4.02 4.02 0 0 1 2.51-1.683a3.99 3.99 0 0 1 3.637 1.091'/%3E%3Ccircle cx='15.5' cy='13.5' r='1.5' fill='black'/%3E%3Ccircle cx='8.507' cy='13.507' r='1.493' fill='black'/%3E%3C/svg%3E"); } .bx-upvote { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.781 2.375c-.381-.475-1.181-.475-1.562 0l-8 10A1.001 1.001 0 0 0 4 14h4v7a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-7h4a1.001 1.001 0 0 0 .781-1.625zM15 12h-1v8h-4v-8H6.081L12 4.601L17.919 12z'/%3E%3C/svg%3E"); } .bx-usb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 10h1v2h-4V6h2l-3-4l-3 4h2v8H7v-2.277c.596-.347 1-.985 1-1.723a2 2 0 0 0-4 0c0 .738.404 1.376 1 1.723V14c0 1.103.897 2 2 2h4v2.277A1.99 1.99 0 0 0 10 20a2 2 0 0 0 4 0c0-.738-.404-1.376-1-1.723V14h4c1.103 0 2-.897 2-2v-2h1V6h-4z'/%3E%3C/svg%3E"); } .bx-user { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2a5 5 0 1 0 5 5a5 5 0 0 0-5-5m0 8a3 3 0 1 1 3-3a3 3 0 0 1-3 3m9 11v-1a7 7 0 0 0-7-7h-4a7 7 0 0 0-7 7v1h2v-1a5 5 0 0 1 5-5h4a5 5 0 0 1 5 5v1z'/%3E%3C/svg%3E"); } .bx-user-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.29 8.29L16 12.58l-1.3-1.29l-1.41 1.42l2.7 2.7l5.72-5.7zM4 8a3.91 3.91 0 0 0 4 4a3.91 3.91 0 0 0 4-4a3.91 3.91 0 0 0-4-4a3.91 3.91 0 0 0-4 4m6 0a1.91 1.91 0 0 1-2 2a1.91 1.91 0 0 1-2-2a1.91 1.91 0 0 1 2-2a1.91 1.91 0 0 1 2 2M4 18a3 3 0 0 1 3-3h2a3 3 0 0 1 3 3v1h2v-1a5 5 0 0 0-5-5H7a5 5 0 0 0-5 5v1h2z'/%3E%3C/svg%3E"); } .bx-user-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2A10.13 10.13 0 0 0 2 12a10 10 0 0 0 4 7.92V20h.1a9.7 9.7 0 0 0 11.8 0h.1v-.08A10 10 0 0 0 22 12A10.13 10.13 0 0 0 12 2M8.07 18.93A3 3 0 0 1 11 16.57h2a3 3 0 0 1 2.93 2.36a7.75 7.75 0 0 1-7.86 0m9.54-1.29A5 5 0 0 0 13 14.57h-2a5 5 0 0 0-4.61 3.07A8 8 0 0 1 4 12a8.1 8.1 0 0 1 8-8a8.1 8.1 0 0 1 8 8a8 8 0 0 1-2.39 5.64'/%3E%3Cpath fill='black' d='M12 6a3.91 3.91 0 0 0-4 4a3.91 3.91 0 0 0 4 4a3.91 3.91 0 0 0 4-4a3.91 3.91 0 0 0-4-4m0 6a1.91 1.91 0 0 1-2-2a1.91 1.91 0 0 1 2-2a1.91 1.91 0 0 1 2 2a1.91 1.91 0 0 1-2 2'/%3E%3C/svg%3E"); } .bx-user-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 11h8v2h-8zM8 4a3.91 3.91 0 0 0-4 4a3.91 3.91 0 0 0 4 4a3.91 3.91 0 0 0 4-4a3.91 3.91 0 0 0-4-4m0 6a1.91 1.91 0 0 1-2-2a1.91 1.91 0 0 1 2-2a1.91 1.91 0 0 1 2 2a1.91 1.91 0 0 1-2 2m-4 8a3 3 0 0 1 3-3h2a3 3 0 0 1 3 3v1h2v-1a5 5 0 0 0-5-5H7a5 5 0 0 0-5 5v1h2z'/%3E%3C/svg%3E"); } .bx-user-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 10c1.151 0 2-.848 2-2s-.849-2-2-2c-1.15 0-2 .848-2 2s.85 2 2 2m0 1c-2.209 0-4 1.612-4 3.6v.386h8V14.6c0-1.988-1.791-3.6-4-3.6'/%3E%3Cpath fill='black' d='M19 2H5c-1.103 0-2 .897-2 2v13c0 1.103.897 2 2 2h4l3 3l3-3h4c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-5 15l-2 2l-2-2H5V4h14l.002 13z'/%3E%3C/svg%3E"); } .bx-user-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM4 8a3.91 3.91 0 0 0 4 4a3.91 3.91 0 0 0 4-4a3.91 3.91 0 0 0-4-4a3.91 3.91 0 0 0-4 4m6 0a1.91 1.91 0 0 1-2 2a1.91 1.91 0 0 1-2-2a1.91 1.91 0 0 1 2-2a1.91 1.91 0 0 1 2 2M4 18a3 3 0 0 1 3-3h2a3 3 0 0 1 3 3v1h2v-1a5 5 0 0 0-5-5H7a5 5 0 0 0-5 5v1h2z'/%3E%3C/svg%3E"); } .bx-user-voice { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 12c2.28 0 4-1.72 4-4s-1.72-4-4-4s-4 1.72-4 4s1.72 4 4 4m0-6c1.178 0 2 .822 2 2s-.822 2-2 2s-2-.822-2-2s.822-2 2-2m1 7H7c-2.757 0-5 2.243-5 5v1h2v-1c0-1.654 1.346-3 3-3h2c1.654 0 3 1.346 3 3v1h2v-1c0-2.757-2.243-5-5-5m9.364-10.364L16.95 4.05C18.271 5.373 19 7.131 19 9s-.729 3.627-2.05 4.95l1.414 1.414C20.064 13.663 21 11.403 21 9s-.936-4.663-2.636-6.364'/%3E%3Cpath fill='black' d='M15.535 5.464L14.121 6.88C14.688 7.445 15 8.198 15 9s-.312 1.555-.879 2.12l1.414 1.416C16.479 11.592 17 10.337 17 9s-.521-2.592-1.465-3.536'/%3E%3C/svg%3E"); } .bx-user-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m15.71 15.71l2.29-2.3l2.29 2.3l1.42-1.42l-2.3-2.29l2.3-2.29l-1.42-1.42l-2.29 2.3l-2.29-2.3l-1.42 1.42L16.58 12l-2.29 2.29zM12 8a3.91 3.91 0 0 0-4-4a3.91 3.91 0 0 0-4 4a3.91 3.91 0 0 0 4 4a3.91 3.91 0 0 0 4-4M6 8a1.91 1.91 0 0 1 2-2a1.91 1.91 0 0 1 2 2a1.91 1.91 0 0 1-2 2a1.91 1.91 0 0 1-2-2M4 18a3 3 0 0 1 3-3h2a3 3 0 0 1 3 3v1h2v-1a5 5 0 0 0-5-5H7a5 5 0 0 0-5 5v1h2z'/%3E%3C/svg%3E"); } .bx-vector { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.277 8c.347.596.985 1 1.723 1a2 2 0 0 0 0-4c-.738 0-1.376.404-1.723 1H16V4a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v2H5.723C5.376 5.404 4.738 5 4 5a2 2 0 0 0 0 4c.738 0 1.376-.404 1.723-1H8v.369C5.133 9.84 4.318 12.534 4.091 14H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.877c.197-.959.718-2.406 2.085-3.418A.98.98 0 0 0 9 11h6a.98.98 0 0 0 .792-.419c1.373 1.013 1.895 2.458 2.089 3.419H17a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-1.092c-.227-1.466-1.042-4.161-3.908-5.632V8zM6 18H4v-2h2zm14 0h-2v-2h2zm-6-9h-4V5h4z'/%3E%3C/svg%3E"); } .bx-vertical-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 19h3v2h-3zm-5 0h3v2h-3zm-5 0h3v2H8zm-5 0h3v2H3zM13 5h-2v8H8l4 4l4-4h-3z'/%3E%3C/svg%3E"); } .bx-vertical-center { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 5V2h-2v3H8l4 4l4-4zm0 17v-3h3l-4-4l-4 4h3v3zM3 11h3v2H3zm5 0h3v2H8zm5 0h3v2h-3zm5 0h3v2h-3z'/%3E%3C/svg%3E"); } .bx-vertical-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 7l-4 4h3v8h2v-8h3zM3 3h3v2H3zm5 0h3v2H8zm5 0h3v2h-3zm5 0h3v2h-3z'/%3E%3C/svg%3E"); } .bx-vial { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11.95 3.564l.708.707l-9.193 9.193C2.521 14.408 2 15.664 2 17s.521 2.592 1.465 3.535C4.408 21.479 5.664 22 7 22s2.592-.521 3.535-1.465l9.193-9.193l.707.708l1.414-1.414l-8.485-8.486zM9.121 19.121c-1.133 1.133-3.109 1.133-4.242 0C4.313 18.555 4 17.802 4 17s.313-1.555.879-2.121L5.758 14h8.484zM16.242 12H7.758l6.314-6.314l4.242 4.242z'/%3E%3C/svg%3E"); } .bx-video { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 7c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-3.333L22 17V7l-4 3.333zm-1.998 10H4V7h12l.001 4.999L16 12l.001.001z'/%3E%3C/svg%3E"); } .bx-video-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 7c0-1.103-.897-2-2-2H6.414L3.707 2.293L2.293 3.707l18 18l1.414-1.414L18 16.586v-2.919L22 17V7l-4 3.333zm-2 7.586L8.414 7H16zM4 19h10.879l-2-2H4V8.121L2.145 6.265A2 2 0 0 0 2 7v10c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bx-video-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 8H9v3H6v2h3v3h2v-3h3v-2h-3z'/%3E%3Cpath fill='black' d='M18 7c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-3.333L22 17V7l-4 3.333zm-1.999 10H4V7h12v5z'/%3E%3C/svg%3E"); } .bx-video-recording { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 9c0-1.103-.897-2-2-2h-1.434l-2.418-4.029A2.01 2.01 0 0 0 10.434 2H5v2h5.434l1.8 3H4c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-3l4 2v-7l-4 2zm-1.998 9H4V9h12l.001 4H16v1l.001.001z'/%3E%3Cpath fill='black' d='M6 14h6v2H6z'/%3E%3C/svg%3E"); } .bx-voicemail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.5 8a4.505 4.505 0 0 0-4.5 4.5c0 .925.281 1.784.762 2.5h-3.523c.48-.716.761-1.575.761-2.5C11 10.019 8.981 8 6.5 8S2 10.019 2 12.5S4.019 17 6.5 17c.171 0 .334-.032.5-.051V17h11v-.051c2.244-.252 4-2.139 4-4.449c0-2.481-2.019-4.5-4.5-4.5M4 12.5C4 11.121 5.121 10 6.5 10S9 11.121 9 12.5S7.879 15 6.5 15S4 13.879 4 12.5M17.5 15c-1.379 0-2.5-1.121-2.5-2.5s1.121-2.5 2.5-2.5s2.5 1.121 2.5 2.5s-1.121 2.5-2.5 2.5'/%3E%3C/svg%3E"); } .bx-volume { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 17h2.697l5.748 3.832a1 1 0 0 0 1.027.05A1 1 0 0 0 14 20V4a1 1 0 0 0-1.554-.832L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2m0-8h3c.033 0 .061-.016.093-.019a1 1 0 0 0 .379-.116c.026-.014.057-.017.082-.033L12 5.868v12.264l-4.445-2.964c-.025-.018-.056-.02-.082-.033a1 1 0 0 0-.382-.116C7.059 15.016 7.032 15 7 15H4z'/%3E%3C/svg%3E"); } .bx-volume-full { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 21c3.527-1.547 5.999-4.909 5.999-9S19.527 4.547 16 3v2c2.387 1.386 3.999 4.047 3.999 7S18.387 17.614 16 19z'/%3E%3Cpath fill='black' d='M16 7v10c1.225-1.1 2-3.229 2-5s-.775-3.9-2-5M4 17h2.697l5.748 3.832a1 1 0 0 0 1.027.05A1 1 0 0 0 14 20V4a1 1 0 0 0-1.554-.832L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2m0-8h3c.033 0 .061-.016.093-.019a1 1 0 0 0 .38-.116c.026-.015.057-.017.082-.033L12 5.868v12.264l-4.445-2.964c-.025-.017-.056-.02-.082-.033a1 1 0 0 0-.382-.116C7.059 15.016 7.032 15 7 15H4z'/%3E%3C/svg%3E"); } .bx-volume-low { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 17h2.697l5.748 3.832a1 1 0 0 0 1.027.05A1 1 0 0 0 14 20V4a1 1 0 0 0-1.554-.832L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2m0-8h3c.033 0 .061-.016.093-.019a1 1 0 0 0 .379-.116c.026-.014.057-.017.082-.033L12 5.868v12.264l-4.445-2.964c-.025-.018-.056-.02-.082-.033a1 1 0 0 0-.382-.116C7.059 15.016 7.032 15 7 15H4zm12-2v10c1.225-1.1 2-3.229 2-5s-.775-3.9-2-5'/%3E%3C/svg%3E"); } .bx-volume-mute { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.707 20.293l-2.023-2.023A9.57 9.57 0 0 0 21.999 12c0-4.091-2.472-7.453-5.999-9v2c2.387 1.386 3.999 4.047 3.999 7a8.1 8.1 0 0 1-1.672 4.913l-1.285-1.285C17.644 14.536 18 13.19 18 12c0-1.771-.775-3.9-2-5v7.586l-2-2V4a1 1 0 0 0-1.554-.832L7.727 6.313l-4.02-4.02l-1.414 1.414l18 18zM12 5.868v4.718L9.169 7.755zM4 17h2.697l5.748 3.832a1 1 0 0 0 1.027.05A1 1 0 0 0 14 20v-1.879l-2-2v2.011l-4.445-2.964c-.025-.017-.056-.02-.082-.033a1 1 0 0 0-.382-.116C7.059 15.016 7.032 15 7 15H4V9h.879L3.102 7.223A2 2 0 0 0 2 9v6c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bx-walk { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='13' cy='4' r='2' fill='black'/%3E%3Cpath fill='black' d='M13.978 12.27c.245.368.611.647 1.031.787l2.675.892l.633-1.896l-2.675-.892l-1.663-2.495a2 2 0 0 0-.769-.679l-1.434-.717a2 2 0 0 0-1.378-.149l-3.193.797a2 2 0 0 0-1.306 1.046l-1.794 3.589l1.789.895l1.794-3.589l2.223-.556l-1.804 8.346l-3.674 2.527l1.133 1.648l3.675-2.528c.421-.29.713-.725.82-1.225l.517-2.388l2.517 1.888l.925 4.625l1.961-.393l-.925-4.627a2 2 0 0 0-.762-1.206l-2.171-1.628l.647-3.885z'/%3E%3C/svg%3E"); } .bx-wallet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 12h2v4h-2z'/%3E%3Cpath fill='black' d='M20 7V5c0-1.103-.897-2-2-2H5C3.346 3 2 4.346 2 6v12c0 2.201 1.794 3 3 3h15c1.103 0 2-.897 2-2V9c0-1.103-.897-2-2-2M5 5h13v2H5a1.001 1.001 0 0 1 0-2m15 14H5.012C4.55 18.988 4 18.805 4 18V8.815c.314.113.647.185 1 .185h15z'/%3E%3C/svg%3E"); } .bx-wallet-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H5C3.346 3 2 4.346 2 6v12c0 1.654 1.346 3 3 3h15c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M5 19c-.552 0-1-.449-1-1V6c0-.551.448-1 1-1h15v3h-6c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h6.001v3zm15-9v4h-6v-4z'/%3E%3C/svg%3E"); } .bx-water { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.996 9c1.413 0 2.16-.747 2.705-1.293c.49-.49.731-.707 1.292-.707s.802.217 1.292.707C11.83 8.253 12.577 9 13.991 9c1.415 0 2.163-.747 2.71-1.293c.491-.49.732-.707 1.295-.707s.804.217 1.295.707C19.837 8.253 20.585 9 22 9V7c-.563 0-.804-.217-1.295-.707C20.159 5.747 19.411 5 17.996 5s-2.162.747-2.709 1.292c-.491.491-.731.708-1.296.708c-.562 0-.802-.217-1.292-.707C12.154 5.747 11.407 5 9.993 5s-2.161.747-2.706 1.293c-.49.49-.73.707-1.291.707s-.801-.217-1.291-.707C4.16 5.747 3.413 5 2 5v2c.561 0 .801.217 1.291.707C3.836 8.253 4.583 9 5.996 9m0 5c1.413 0 2.16-.747 2.705-1.293c.49-.49.731-.707 1.292-.707s.802.217 1.292.707c.545.546 1.292 1.293 2.706 1.293c1.415 0 2.163-.747 2.71-1.293c.491-.49.732-.707 1.295-.707s.804.217 1.295.707C19.837 13.253 20.585 14 22 14v-2c-.563 0-.804-.217-1.295-.707c-.546-.546-1.294-1.293-2.709-1.293s-2.162.747-2.709 1.292c-.491.491-.731.708-1.296.708c-.562 0-.802-.217-1.292-.707C12.154 10.747 11.407 10 9.993 10s-2.161.747-2.706 1.293c-.49.49-.73.707-1.291.707s-.801-.217-1.291-.707C4.16 10.747 3.413 10 2 10v2c.561 0 .801.217 1.291.707C3.836 13.253 4.583 14 5.996 14m0 5c1.413 0 2.16-.747 2.705-1.293c.49-.49.731-.707 1.292-.707s.802.217 1.292.707c.545.546 1.292 1.293 2.706 1.293c1.415 0 2.163-.747 2.71-1.293c.491-.49.732-.707 1.295-.707s.804.217 1.295.707C19.837 18.253 20.585 19 22 19v-2c-.563 0-.804-.217-1.295-.707c-.546-.546-1.294-1.293-2.709-1.293s-2.162.747-2.709 1.292c-.491.491-.731.708-1.296.708c-.562 0-.802-.217-1.292-.707C12.154 15.747 11.407 15 9.993 15s-2.161.747-2.706 1.293c-.49.49-.73.707-1.291.707s-.801-.217-1.291-.707C4.16 15.747 3.413 15 2 15v2c.561 0 .801.217 1.291.707C3.836 18.253 4.583 19 5.996 19'/%3E%3C/svg%3E"); } .bx-webcam { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2c-4.963 0-9 4.038-9 9c0 3.328 1.82 6.232 4.513 7.79l-2.067 1.378A1 1 0 0 0 6 22h12a1 1 0 0 0 .555-1.832l-2.067-1.378C19.18 17.232 21 14.328 21 11c0-4.962-4.037-9-9-9m0 16c-3.859 0-7-3.141-7-7s3.141-7 7-7s7 3.14 7 7s-3.141 7-7 7'/%3E%3Cpath fill='black' d='M12 6c-2.757 0-5 2.243-5 5s2.243 5 5 5s5-2.243 5-5s-2.243-5-5-5m0 8c-1.654 0-3-1.346-3-3s1.346-3 3-3s3 1.346 3 3s-1.346 3-3 3'/%3E%3C/svg%3E"); } .bx-wifi { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 6c3.537 0 6.837 1.353 9.293 3.809l1.414-1.414C19.874 5.561 16.071 4 12 4c-4.071.001-7.874 1.561-10.707 4.395l1.414 1.414C5.163 7.353 8.463 6 12 6m5.671 8.307c-3.074-3.074-8.268-3.074-11.342 0l1.414 1.414c2.307-2.307 6.207-2.307 8.514 0z'/%3E%3Cpath fill='black' d='M20.437 11.293c-4.572-4.574-12.301-4.574-16.873 0l1.414 1.414c3.807-3.807 10.238-3.807 14.045 0z'/%3E%3Ccircle cx='12' cy='18' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-wifi-0 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='18' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-wifi-1 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.671 14.307C16.184 12.819 14.17 12 12 12s-4.184.819-5.671 2.307l1.414 1.414c1.11-1.11 2.621-1.722 4.257-1.722c1.636.001 3.147.612 4.257 1.722z'/%3E%3Ccircle cx='12' cy='18' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-wifi-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.671 14.307C16.184 12.819 14.17 12 12 12s-4.184.819-5.671 2.307l1.414 1.414c1.11-1.11 2.621-1.722 4.257-1.722c1.636.001 3.147.612 4.257 1.722z'/%3E%3Cpath fill='black' d='M20.437 11.292c-4.572-4.573-12.301-4.573-16.873 0l1.414 1.414c3.807-3.807 10.238-3.807 14.045 0z'/%3E%3Ccircle cx='12' cy='18' r='2' fill='black'/%3E%3C/svg%3E"); } .bx-wifi-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m1.293 8.395l1.414 1.414c.504-.504 1.052-.95 1.622-1.359L2.9 7.021c-.56.422-1.104.87-1.607 1.374M6.474 5.06L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-5.012-5.012l.976-.975a7.86 7.86 0 0 0-4.099-2.148L11.294 9.88c2.789-.191 5.649.748 7.729 2.827l1.414-1.414c-2.898-2.899-7.061-3.936-10.888-3.158L8.024 6.61A13.4 13.4 0 0 1 12 6c3.537 0 6.837 1.353 9.293 3.809l1.414-1.414C19.874 5.561 16.071 4 12 4a15.2 15.2 0 0 0-5.526 1.06m-2.911 6.233l1.414 1.414a9.6 9.6 0 0 1 2.058-1.551L5.576 9.697c-.717.451-1.395.979-2.013 1.596m2.766 3.014l1.414 1.414c.692-.692 1.535-1.151 2.429-1.428l-1.557-1.557a7.8 7.8 0 0 0-2.286 1.571m7.66 3.803l-2.1-2.1a1.996 1.996 0 1 0 2.1 2.1'/%3E%3C/svg%3E"); } .bx-wind { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 5.5C13 3.57 11.43 2 9.5 2C7.466 2 6.25 3.525 6.25 5h2c0-.415.388-1 1.25-1c.827 0 1.5.673 1.5 1.5S10.327 7 9.5 7H2v2h7.5C11.43 9 13 7.43 13 5.5m2.5 9.5H8v2h7.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5c-.862 0-1.25-.585-1.25-1h-2c0 1.475 1.216 3 3.25 3c1.93 0 3.5-1.57 3.5-3.5S17.43 15 15.5 15'/%3E%3Cpath fill='black' d='M18 5c-2.206 0-4 1.794-4 4h2c0-1.103.897-2 2-2s2 .897 2 2s-.897 2-2 2H2v2h16c2.206 0 4-1.794 4-4s-1.794-4-4-4M2 15h4v2H2z'/%3E%3C/svg%3E"); } .bx-window { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 21h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m0-2V7h16l.001 12z'/%3E%3C/svg%3E"); } .bx-window-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m0 2l.001 4H4V5zM4 19v-8h16.001l.001 8z'/%3E%3Cpath fill='black' d='M14 6h2v2h-2zm3 0h2v2h-2z'/%3E%3C/svg%3E"); } .bx-window-close { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M4 19V7h16l.001 12z'/%3E%3Cpath fill='black' d='m15.707 10.707l-1.414-1.414L12 11.586L9.707 9.293l-1.414 1.414L10.586 13l-2.293 2.293l1.414 1.414L12 14.414l2.293 2.293l1.414-1.414L13.414 13z'/%3E%3C/svg%3E"); } .bx-window-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h5v-2H4V7h16v12h-5v2h5c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2'/%3E%3Cpath fill='black' d='M13 21v-5h3l-4-5l-4 5h3v5z'/%3E%3C/svg%3E"); } .bx-windows { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 7H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V9c0-1.103-.897-2-2-2M4 19v-8h12V9l.002 10z'/%3E%3Cpath fill='black' d='M22 5c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2h13.001c1.101 0 1.996.895 1.999 1.994L20.002 15H20v2c1.103 0 2-.897 2-2V8.007L22.001 8V6L22 5.99z'/%3E%3C/svg%3E"); } .bx-wine { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.713 12.123c.264-.952.312-2.03.143-3.206l-.866-6.059A1 1 0 0 0 18 2H6a1 1 0 0 0-.99.858l-.865 6.058c-.169 1.177-.121 2.255.142 3.206c.864 3.134 3.551 5.392 6.713 5.794V20H9v2h6v-2h-2v-2.084c3.162-.402 5.849-2.66 6.713-5.793M17.133 4l.57 4H6.296l.571-4zM6.215 11.59c-.132-.474-.181-1.009-.159-1.59h11.889c.021.581-.028 1.116-.159 1.591A6.02 6.02 0 0 1 12 16a6.02 6.02 0 0 1-5.785-4.41'/%3E%3C/svg%3E"); } .bx-wink-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8s8 3.589 8 8s-3.589 8-8 8'/%3E%3Cpath fill='black' d='M14.828 14.828a4 4 0 0 1-2.02 1.09a4.1 4.1 0 0 1-1.616 0a4 4 0 0 1-.749-.232a4 4 0 0 1-.679-.368a4.1 4.1 0 0 1-1.082-1.082l-1.658 1.117c.215.319.462.619.733.889a5.99 5.99 0 0 0 8.485.002c.272-.271.52-.571.734-.891l-1.658-1.117q-.215.318-.49.592'/%3E%3Ccircle cx='8.5' cy='10.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='M15.5 10c-2 0-2.5 2-2.5 2h5s-.501-2-2.5-2'/%3E%3C/svg%3E"); } .bx-wink-tongue { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.5 9c-2 0-2.5 2-2.5 2h5s-.501-2-2.5-2'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-2 16v-3h4v3c0 1.103-.897 2-2 2s-2-.897-2-2m5.856 1.005c.085-.323.144-.656.144-1.005v-1.499C17.589 15.028 18 13 18 13H6s.412 2.028 2 3.501V18c0 .349.059.682.144 1.005A8 8 0 0 1 4 12c0-4.411 3.589-8 8-8s8 3.589 8 8a8 8 0 0 1-4.144 7.005'/%3E%3Ccircle cx='8.5' cy='9.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bx-won { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.758 5H19.68l-.844 3h-4.893l-.899-3h-2.088l-.899 3H5.164L4.32 5H2.242l.844 3H2v2h1.648l.563 2H2v2h2.773l1.688 6h2.083l1.8-6h3.313l1.8 6h2.083l1.688-6H22v-2h-2.211l.563-2H22V8h-1.086zM5.727 10h3.729l-.6 2H6.289zm1.804 6.417L6.852 14h1.404zM10.944 12l.6-2h.912l.6 2zm5.525 4.417L15.744 14h1.404zM17.711 12h-2.567l-.6-2h3.729z'/%3E%3C/svg%3E"); } .bx-world { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M4 12c0-.899.156-1.762.431-2.569L6 11l2 2v2l2 2l1 1v1.931C7.061 19.436 4 16.072 4 12m14.33 4.873C17.677 16.347 16.687 16 16 16v-1a2 2 0 0 0-2-2h-4v-3a2 2 0 0 0 2-2V7h1a2 2 0 0 0 2-2v-.411C17.928 5.778 20 8.65 20 12a7.95 7.95 0 0 1-1.67 4.873'/%3E%3C/svg%3E"); } .bx-wrench { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.122 21c.378.378.88.586 1.414.586S7.572 21.378 7.95 21l4.336-4.336a7.5 7.5 0 0 0 2.217.333a7.45 7.45 0 0 0 5.302-2.195a7.48 7.48 0 0 0 1.632-8.158l-.57-1.388l-4.244 4.243l-2.121-2.122l4.243-4.243l-1.389-.571A7.5 7.5 0 0 0 14.499 2c-2.003 0-3.886.78-5.301 2.196a7.48 7.48 0 0 0-1.862 7.518L3 16.05a2 2 0 0 0 0 2.828zm4.548-8.791l-.254-.616a5.49 5.49 0 0 1 1.196-5.983a5.46 5.46 0 0 1 4.413-1.585l-3.353 3.353l4.949 4.95l3.355-3.355a5.49 5.49 0 0 1-1.587 4.416c-1.55 1.55-3.964 2.027-5.984 1.196l-.615-.255l-5.254 5.256h.001l-.001 1v-1l-2.122-2.122z'/%3E%3C/svg%3E"); } .bx-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m16.192 6.344l-4.243 4.242l-4.242-4.242l-1.414 1.414L10.535 12l-4.242 4.242l1.414 1.414l4.242-4.242l4.243 4.242l1.414-1.414L13.364 12l4.242-4.242z'/%3E%3C/svg%3E"); } .bx-x-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.172 16.242L12 13.414l2.828 2.828l1.414-1.414L13.414 12l2.828-2.828l-1.414-1.414L12 10.586L9.172 7.758L7.758 9.172L10.586 12l-2.828 2.828z'/%3E%3Cpath fill='black' d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10m0-18c4.411 0 8 3.589 8 8s-3.589 8-8 8s-8-3.589-8-8s3.589-8 8-8'/%3E%3C/svg%3E"); } .bx-yen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.2 3.4L12 10.333L6.8 3.4L5.2 4.6L10 11H7v2h4v2H7v2h4v4h2v-4h4v-2h-4v-2h4v-2h-3l4.8-6.4z'/%3E%3C/svg%3E"); } .bx-zoom-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 6H9v3H6v2h3v3h2v-3h3V9h-3z'/%3E%3Cpath fill='black' d='M10 2c-4.411 0-8 3.589-8 8s3.589 8 8 8a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8m0 14c-3.309 0-6-2.691-6-6s2.691-6 6-6s6 2.691 6 6s-2.691 6-6 6'/%3E%3C/svg%3E"); } .bx-zoom-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 9h8v2H6z'/%3E%3Cpath fill='black' d='M10 18a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8s3.589 8 8 8m0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6'/%3E%3C/svg%3E"); } .bx { display: inline-block; width: 1em; height: 1em; background-color: currentColor; -webkit-mask-image: var(--svg); mask-image: var(--svg); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } .bxl-500px { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.379 14.791c.004.01.098.269.151.396a5.9 5.9 0 0 0 1.258 1.865a5.86 5.86 0 0 0 6.437 1.259a5.88 5.88 0 0 0 3.124-3.125a5.8 5.8 0 0 0 .461-2.285c0-.793-.153-1.563-.461-2.287a5.9 5.9 0 0 0-1.257-1.864a5.86 5.86 0 0 0-4.152-1.72a6 6 0 0 0-2.318.461c-.57.241-1.536.862-2.102 1.446l-.002.002V4.107h8.117c.295-.003.295-.417.295-.55c0-.137 0-.549-.296-.553H7.857a.387.387 0 0 0-.388.384v6.801c0 .221.273.379.527.434c.496.104.61-.053.732-.222l.015-.021c.187-.275.767-.858.771-.863a4.78 4.78 0 0 1 3.406-1.403a4.76 4.76 0 0 1 3.394 1.403a4.75 4.75 0 0 1 1.408 3.385c0 1.28-.498 2.483-1.4 3.385a4.86 4.86 0 0 1-3.416 1.403a4.66 4.66 0 0 1-2.42-.668l.004-4.137c0-.552.238-1.151.64-1.604a2.35 2.35 0 0 1 1.778-.803c.667 0 1.291.254 1.754.714c.46.455.714 1.064.714 1.711a2.443 2.443 0 0 1-2.474 2.466c-.268 0-.753-.117-.773-.123c-.281-.084-.4.305-.439.435c-.151.492.077.59.122.604c.448.138.741.164 1.124.164a3.555 3.555 0 0 0 3.551-3.553c0-1.943-1.592-3.526-3.548-3.526a3.6 3.6 0 0 0-2.536 1.033c-.644.632-1.013 1.478-1.013 2.317v.021c-.004.105-.004 2.583-.005 3.398l-.005-.006c-.368-.407-.731-1.029-.973-1.668c-.097-.25-.309-.206-.601-.116c-.127.04-.514.159-.429.438zm4.172-.972c.002.118.111.223.175.286l.021.019q.167.164.315.164c.081 0 .13-.037.148-.054c.05-.046.604-.608.658-.662l.618.618q.086.096.192.098q.15 0 .32-.174c.267-.272.134-.42.069-.49l-.628-.63l.655-.658c.144-.155.017-.32-.111-.446c-.183-.184-.359-.23-.474-.127l-.65.652l-.657-.658a.18.18 0 0 0-.128-.051q-.131 0-.308.177c-.202.201-.246.341-.141.453l.657.656l-.653.655a.25.25 0 0 0-.078.172m1.434-8.891c-1.053 0-2.171.211-2.992.566a.23.23 0 0 0-.151.205c-.011.093.013.216.076.377c.051.131.187.478.449.376a7.6 7.6 0 0 1 2.618-.498c.96 0 1.892.188 2.768.558c.696.296 1.354.721 2.068 1.341a.24.24 0 0 0 .165.068c.138 0 .271-.137.386-.266c.191-.214.321-.392.135-.569a7.7 7.7 0 0 0-2.354-1.52a8.1 8.1 0 0 0-3.168-.638m5.668 12.986c-.127-.126-.235-.199-.33-.228a.24.24 0 0 0-.247.059l-.063.062a7.07 7.07 0 0 1-5.018 2.081a7.1 7.1 0 0 1-5.02-2.081a6.8 6.8 0 0 1-1.521-2.255a7.6 7.6 0 0 1-.462-1.596q-.004-.027-.009-.041c-.044-.232-.257-.249-.564-.202c-.127.019-.517.078-.479.358l.002.006a8.1 8.1 0 0 0 2.288 4.478a8.1 8.1 0 0 0 2.59 1.747a8.1 8.1 0 0 0 3.175.642a8.1 8.1 0 0 0 3.172-.643a8.1 8.1 0 0 0 2.658-1.813c.083-.09.154-.248-.172-.574'/%3E%3C/svg%3E"); } .bxl-99designs { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.93 10.61A2.7 2.7 0 0 0 19 10a2.7 2.7 0 0 0-1.1-.19a3.28 3.28 0 0 0-2.16.76v-.05a3.67 3.67 0 0 0-5.09-3.39a3.6 3.6 0 0 0-1.78 1.56a3.67 3.67 0 0 0-3.12-1.86a3.74 3.74 0 0 0-1.82.44a3.66 3.66 0 0 0-1.37 1.28A3.8 3.8 0 0 0 2 10.34a3.67 3.67 0 0 0 3.42 3.83l-1.6 2.76h2.39l2.65-4.59a3.63 3.63 0 0 0 2.93 1.84l-1.59 2.76h2.4l1.86-3.23a3.53 3.53 0 0 0 2.07 3.19a3.52 3.52 0 0 0 2.61.05a2.6 2.6 0 0 0 .9-.74v.73h2V7.06h-2.11zm-12.78.72a1.69 1.69 0 0 1-1.46.83a1.7 1.7 0 0 1-.86-.16a1.75 1.75 0 0 1-.62-.62a1.8 1.8 0 0 1-.21-.87a1.69 1.69 0 0 1 1.67-1.69a1.63 1.63 0 0 1 .84.23a1.6 1.6 0 0 1 .62.61a1.6 1.6 0 0 1 .23.83a1.7 1.7 0 0 1-.21.84m6.38 0a1.6 1.6 0 0 1-.62.61a1.53 1.53 0 0 1-.84.22a1.8 1.8 0 0 1-.84-.22a1.65 1.65 0 0 1-.61-.62a1.67 1.67 0 0 1 0-1.69a1.73 1.73 0 0 1 .62-.61a1.63 1.63 0 0 1 .84-.23a1.7 1.7 0 0 1 .84.23a1.69 1.69 0 0 1 .63 2.28zm6.3 3a1.72 1.72 0 0 1-2 .85a1.72 1.72 0 0 1-1-.7a1.75 1.75 0 0 1-.29-1.15a1.77 1.77 0 0 1 .51-1.07a1.75 1.75 0 0 1 2.35-.11a1.73 1.73 0 0 1 .43 2.18'/%3E%3C/svg%3E"); } .bxl-adobe { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 19.966V4.034h-6.654zM3 4.034v15.932L9.658 4.034zM9.092 16.76h3.104l1.268 3.205h2.778L12.003 9.904z'/%3E%3C/svg%3E"); } .bxl-airbnb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.001 16.709c-1.013-1.271-1.609-2.386-1.808-3.34c-.197-.769-.12-1.385.218-1.848c.357-.532.89-.791 1.589-.791s1.231.259 1.589.796c.335.458.419 1.075.215 1.848c-.218.974-.813 2.087-1.808 3.341zm7.196.855c-.14.934-.775 1.708-1.65 2.085c-1.687.734-3.359-.437-4.789-2.026c2.365-2.961 2.803-5.268 1.787-6.758c-.596-.855-1.449-1.271-2.544-1.271c-2.206 0-3.419 1.867-2.942 4.034c.276 1.173 1.013 2.506 2.186 3.996c-.735.813-1.432 1.391-2.047 1.748c-.478.258-.934.418-1.37.456c-2.008.299-3.582-1.647-2.867-3.656c.1-.259.297-.734.634-1.471l.019-.039c1.097-2.382 2.43-5.088 3.961-8.09l.039-.1l.435-.836c.338-.616.477-.892 1.014-1.231c.258-.157.576-.235.934-.235c.715 0 1.271.418 1.511.753c.118.18.259.419.436.716l.419.815l.06.119c1.53 3.001 2.863 5.702 3.955 8.089l.02.019l.401.915l.237.573c.183.459.221.915.16 1.393zm.913-1.791c-.139-.438-.378-.953-.675-1.569v-.022a263 263 0 0 0-3.976-8.128l-.084-.121C14.486 4.109 13.849 3.014 12 3.014c-1.827 0-2.604 1.27-3.397 2.922l-.061.119c-1.251 2.426-2.564 5.128-3.975 8.13v.039l-.418.914c-.158.378-.237.575-.259.636C2.878 18.556 4.964 21 7.489 21c.021 0 .099 0 .198-.021h.278c1.313-.159 2.664-.993 4.035-2.485c1.371 1.49 2.725 2.326 4.033 2.485h.279c.1.021.18.021.2.021c2.525.002 4.61-2.444 3.598-5.227'/%3E%3C/svg%3E"); } .bxl-algolia { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.177 9.059a3.58 3.58 0 0 0-3.576 3.584a3.584 3.584 0 0 0 3.576 3.585a3.58 3.58 0 0 0 3.575-3.585a3.58 3.58 0 0 0-3.575-3.584m2.518 2.268l-2.366 1.229c-.07.039-.153-.017-.153-.093V9.791h.001c0-.06.054-.104.109-.104a2.94 2.94 0 0 1 2.452 1.492c.028.055.011.121-.043.148'/%3E%3Cpath fill='black' d='M18.578 3H5.361A2.363 2.363 0 0 0 3 5.366v13.277a2.37 2.37 0 0 0 2.361 2.371h13.217a2.367 2.367 0 0 0 2.361-2.372V5.372A2.37 2.37 0 0 0 18.578 3m-8.112 3.404a.78.78 0 0 1 .779-.781h1.815c.43 0 .778.35.778.781v.618a.106.106 0 0 1-.131.104a5.7 5.7 0 0 0-3.106.017c-.07.016-.136-.033-.136-.104zM7.08 8.993a.78.78 0 0 1 .001-1.103l.371-.371l.002-.002a.776.776 0 0 1 1.099.002l.31.311c.043.05.038.127-.017.159a5.8 5.8 0 0 0-1.296 1.3c-.044.049-.114.06-.163.011zm5.097 8.737a5.08 5.08 0 0 1-5.074-5.087c0-2.813 2.272-5.092 5.074-5.092a5.074 5.074 0 0 1 5.074 5.086c0 2.815-2.272 5.093-5.074 5.093'/%3E%3C/svg%3E"); } .bxl-amazon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.027 17.023q.09-.147.289-.02c3.035 1.76 6.338 2.645 9.906 2.645c2.381 0 4.73-.447 7.051-1.332l.262-.117c.115-.051.195-.084.244-.109c.189-.074.326-.037.438.109c.102.143.076.279-.1.4c-.213.158-.5.342-.84.545q-1.557.927-3.492 1.441a14.8 14.8 0 0 1-3.77.508q-2.834 0-5.369-.99a14.9 14.9 0 0 1-4.531-2.797q-.125-.092-.125-.184q.002-.058.041-.109zm5.479-5.189q0-1.258.619-2.152c.414-.592.977-1.041 1.703-1.346c.666-.281 1.465-.48 2.43-.602q.49-.056 1.6-.145v-.31c0-.773-.084-1.299-.248-1.564c-.252-.359-.65-.541-1.203-.541h-.15c-.4.039-.746.162-1.039.383a1.5 1.5 0 0 0-.564.916c-.049.25-.172.387-.361.426l-2.105-.264c-.209-.051-.311-.15-.311-.326c0-.037.006-.074.018-.123q.313-1.618 1.52-2.404c.814-.514 1.752-.814 2.828-.875h.451c1.379 0 2.469.361 3.244 1.076c.115.123.227.25.34.398c.1.139.188.264.234.377c.063.111.127.275.164.475c.051.213.088.352.113.426c.023.086.051.25.064.514c.006.262.016.41.016.461v4.406c0 .314.049.602.137.865c.088.26.174.451.262.563l.428.561a.6.6 0 0 1 .111.303q0 .153-.148.26c-1.002.877-1.553 1.352-1.639 1.428q-.206.169-.525.039a5 5 0 0 1-.439-.414l-.258-.291c-.051-.063-.141-.174-.266-.352l-.25-.363c-.676.74-1.338 1.205-2.002 1.393c-.414.125-.914.188-1.529.188c-.926 0-1.701-.285-2.303-.863c-.598-.576-.9-1.389-.9-2.453l-.043-.063zm3.131-.367q-.001.71.355 1.139c.236.285.563.428.965.428q.052-.001.16-.018c.078-.012.111-.02.141-.02c.512-.133.902-.461 1.189-.982a2.6 2.6 0 0 0 .299-.758c.076-.268.1-.494.111-.666c.016-.166.016-.453.016-.84v-.451q-1.056 0-1.604.148c-1.063.303-1.604.977-1.604 2.029l-.029-.016zm7.646 5.865c.025-.051.063-.092.109-.143c.301-.201.596-.342.877-.416a6.6 6.6 0 0 1 1.344-.201q.177-.014.346.025c.539.051.873.141.977.273c.053.078.074.191.074.328v.125q0 .638-.348 1.502c-.348.864-.553 1.041-.963 1.402q-.091.074-.164.074c-.025 0-.051 0-.074-.01c-.076-.037-.09-.1-.055-.201c.451-1.051.672-1.787.672-2.201c0-.127-.025-.227-.074-.289c-.119-.137-.457-.217-1.02-.217a9 9 0 0 0-.727.039q-.455.06-.834.115q-.11-.001-.15-.037c-.025-.025-.031-.039-.018-.064c0-.014.006-.025.018-.053v-.049z'/%3E%3C/svg%3E"); } .bxl-android { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.344 8.71c-.707 0-1.279.572-1.279 1.278v4.53a1.278 1.278 0 1 0 2.558 0v-4.53c0-.706-.572-1.278-1.279-1.278m-12.688 0c-.707 0-1.279.572-1.279 1.278v4.53a1.278 1.278 0 1 0 2.558 0v-4.53A1.277 1.277 0 0 0 5.656 8.71m8.889-3.809l.768-1.388a.343.343 0 0 0-.133-.47a.344.344 0 0 0-.471.135l-.789 1.42c-.588-.235-1.236-.368-1.92-.368s-1.332.132-1.92.367l-.789-1.418a.344.344 0 0 0-.471-.135a.345.345 0 0 0-.133.47l.768 1.388C8.072 5.69 7.148 7.099 7.148 8.71l.002.034l-.002.019v.001h9.703V8.71c.001-1.611-.923-3.019-2.306-3.809M9.76 6.869a.346.346 0 1 1 .005-.693a.346.346 0 0 1-.005.693m4.48 0a.347.347 0 0 1 0-.692a.346.346 0 0 1 0 .692M7.148 16.12c0 .646.525 1.171 1.174 1.171h.586v2.401a1.279 1.279 0 0 0 2.558 0v-2.401h1.066v2.401c0 .707.572 1.278 1.277 1.278c.709 0 1.281-.571 1.281-1.278v-2.401h.586c.648 0 1.174-.524 1.174-1.171V9.028H7.148z'/%3E%3C/svg%3E"); } .bxl-angular { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.483 12.482h3.034L12 8.831z'/%3E%3Cpath fill='black' d='M12 3.074L3.689 6.038l1.268 10.987l7.043 3.9l7.043-3.9l1.268-10.987zm5.187 13.621H15.25l-1.045-2.606h-4.41L8.75 16.695H6.813L12 5.047z'/%3E%3C/svg%3E"); } .bxl-apple { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.665 16.811a10.3 10.3 0 0 1-1.021 1.837q-.807 1.15-1.316 1.592q-.787.723-1.692.744q-.649.001-1.562-.373q-.914-.372-1.683-.371q-.805-.001-1.73.371q-.924.375-1.495.393q-.866.038-1.729-.764q-.55-.48-1.377-1.648q-.885-1.245-1.455-2.891q-.61-1.78-.611-3.447q0-1.91.826-3.292a4.86 4.86 0 0 1 1.73-1.751a4.65 4.65 0 0 1 2.34-.662q.69.001 1.81.422c1.12.421 1.227.422 1.436.422q.237 0 1.593-.498q1.279-.46 2.163-.384q2.4.192 3.6 1.895q-2.145 1.301-2.123 3.637q.02 1.82 1.317 3.023a4.3 4.3 0 0 0 1.315.863q-.159.46-.336.882M15.998 2.38q-.001 1.426-1.039 2.659c-.836.976-1.846 1.541-2.941 1.452a3 3 0 0 1-.021-.36c0-.913.396-1.889 1.103-2.688q.528-.606 1.343-1.009q.813-.397 1.536-.435q.02.192.019.381'/%3E%3C/svg%3E"); } .bxl-audible { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.005 10.238v1.69l10.002 6.254l9.988-6.254v-1.69l-9.988 6.229z'/%3E%3Cpath fill='black' d='m15.938 12.469l1.465-.938c-1.161-1.701-3.153-2.876-5.396-2.876c-2.257 0-4.236 1.135-5.371 2.89c.093-.093.146-.146.238-.211c2.811-2.336 6.86-1.808 9.064 1.135'/%3E%3Cpath fill='black' d='M9.051 13.063a3 3 0 0 1 1.78-.58c1.083 0 2.047.554 2.692 1.49l1.399-.871c-.607-.963-1.688-1.557-2.916-1.557c-1.226 0-2.309.62-2.955 1.518M5.25 9.012c4.117-3.246 9.937-2.362 13.037 1.953l.026.026l1.517-.938a9.34 9.34 0 0 0-7.823-4.235a9.35 9.35 0 0 0-7.825 4.235c.304-.342.686-.751 1.068-1.041'/%3E%3C/svg%3E"); } .bxl-aws { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.75 11.35a4.3 4.3 0 0 1-.79-.08a4 4 0 0 1-.73-.23l-.17-.04h-.12q-.15 0-.15.21v.33a.4.4 0 0 0 0 .19a.5.5 0 0 0 .21.19a3 3 0 0 0 .76.26a4.4 4.4 0 0 0 1 .12a3 3 0 0 0 1-.14a1.9 1.9 0 0 0 .73-.37a1.8 1.8 0 0 0 .49-.58a1.8 1.8 0 0 0 .17-.78a1.54 1.54 0 0 0-.3-.93a2.15 2.15 0 0 0-1-.64l-.95-.3a2 2 0 0 1-.73-.36a.65.65 0 0 1-.2-.47a.66.66 0 0 1 .31-.6a1.8 1.8 0 0 1 .89-.18a2.9 2.9 0 0 1 1.27.26a.8.8 0 0 0 .26.08c.1 0 .15-.08.15-.22v-.36a.4.4 0 0 0-.06-.22a.56.56 0 0 0-.2-.16a1.6 1.6 0 0 0-.28-.12a3 3 0 0 0-.38-.11l-.44-.1A3.4 3.4 0 0 0 19 6a2.8 2.8 0 0 0-.83.11a2.2 2.2 0 0 0-.7.35A1.6 1.6 0 0 0 17 7a1.5 1.5 0 0 0-.18.74a1.6 1.6 0 0 0 .33 1a2.1 2.1 0 0 0 1.06.68l1 .3a1.6 1.6 0 0 1 .67.34a.66.66 0 0 1 .18.47a.72.72 0 0 1-.35.63a1.83 1.83 0 0 1-.96.19M12.94 6.5a.5.5 0 0 0-.13-.26a.37.37 0 0 0-.26-.07H12a.43.43 0 0 0-.26.07a.42.42 0 0 0-.13.26l-1 4.4l-1.14-4.4a.5.5 0 0 0-.14-.26s-.13-.07-.26-.07h-.65c-.11 0-.16.06-.16.17a1.2 1.2 0 0 0 .06.27l1.56 5.14A.6.6 0 0 0 10 12a.45.45 0 0 0 .26.06h.57a.5.5 0 0 0 .27-.06a.57.57 0 0 0 .12-.27l1-4.28l1 4.29a.42.42 0 0 0 .12.26a.4.4 0 0 0 .27.07h.57a.4.4 0 0 0 .25-.07a.44.44 0 0 0 .14-.26l1.61-5.14a.7.7 0 0 0 0-.16a.5.5 0 0 0 0-.11a.15.15 0 0 0-.17-.17h-.62a.45.45 0 0 0-.26.07a.7.7 0 0 0-.13.26L14 11zM5.77 8.63a6 6 0 0 0-.71-.05a2.42 2.42 0 0 0-1.63.52a1.72 1.72 0 0 0-.6 1.37a1.7 1.7 0 0 0 .49 1.28a1.82 1.82 0 0 0 1.33.48a2.48 2.48 0 0 0 2-.92a4 4 0 0 0 .2.39a2.3 2.3 0 0 0 .24.31a.26.26 0 0 0 .37 0l.42-.28a.28.28 0 0 0 .13-.2a.27.27 0 0 0 0-.16a4 4 0 0 1-.21-.47a2 2 0 0 1-.07-.6V8.19a2.2 2.2 0 0 0-.55-1.64A2.42 2.42 0 0 0 5.33 6a4 4 0 0 0-1 .13a4 4 0 0 0-.84.3a.5.5 0 0 0-.18.14a.37.37 0 0 0 0 .23v.33c0 .14 0 .2.14.2a.3.3 0 0 0 .11 0l.23-.08A4.3 4.3 0 0 1 4.42 7a3 3 0 0 1 .72-.09a1.5 1.5 0 0 1 1.08.31a1.46 1.46 0 0 1 .31 1.06v.49zm.78.9v.27a2.4 2.4 0 0 1-.07.58a1.06 1.06 0 0 1-.23.43a1.4 1.4 0 0 1-.63.42a2.1 2.1 0 0 1-.68.12a.94.94 0 0 1-.7-.24a.92.92 0 0 1-.24-.71a.92.92 0 0 1 .33-.76a1.52 1.52 0 0 1 1-.27h.62a6 6 0 0 1 .6.16M19.76 15a19.7 19.7 0 0 1-7.55 1.54a20 20 0 0 1-9.9-2.62c-.24-.15-.43.1-.22.29A14.68 14.68 0 0 0 12 18a14.4 14.4 0 0 0 8.1-2.47c.34-.31.03-.72-.34-.53'/%3E%3Cpath fill='black' d='M18.38 14.06c-.19.14-.16.33.05.3c.71-.09 2.28-.27 2.56.09s-.31 1.83-.58 2.49c-.08.2.1.28.28.13a3.9 3.9 0 0 0 1.23-3.34a3.94 3.94 0 0 0-3.54.33'/%3E%3C/svg%3E"); } .bxl-baidu { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.217 12.486c1.964-.422 1.693-2.772 1.637-3.287c-.096-.788-1.028-2.172-2.291-2.061c-1.588.141-1.821 2.44-1.821 2.44c-.216 1.06.515 3.33 2.475 2.908m3.646-3.944c1.084 0 1.959-1.251 1.959-2.792c0-1.537-.871-2.785-1.955-2.785c-1.086 0-1.966 1.242-1.966 2.785s.88 2.792 1.965 2.792m4.671.186c1.454.195 2.38-1.355 2.568-2.53c.188-1.166-.754-2.528-1.776-2.763c-1.031-.237-2.303 1.411-2.431 2.484c-.136 1.318.188 2.627 1.634 2.813m5.751 1.973c0-.562-.46-2.253-2.19-2.253s-1.965 1.596-1.965 2.726c0 1.077.089 2.573 2.247 2.528c2.148-.052 1.913-2.438 1.913-3.002M18.1 15.626s-2.247-1.739-3.557-3.613c-1.776-2.768-4.304-1.64-5.144-.239c-.845 1.418-2.153 2.306-2.339 2.544c-.188.232-2.709 1.596-2.147 4.079s2.528 2.439 2.528 2.439s1.446.142 3.133-.234c1.686-.375 3.13.091 3.13.091s3.92 1.317 5.005-1.212c1.072-2.537-.61-3.847-.61-3.847'/%3E%3C/svg%3E"); } .bxl-behance { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.803 5.731c.589 0 1.119.051 1.605.155q.723.155 1.243.508q.515.352.804.939c.187.387.28.871.28 1.443q0 .93-.421 1.551q-.423.622-1.256 1.015q1.134.33 1.69 1.146c.374.549.557 1.206.557 1.976q0 .937-.358 1.613a3.1 3.1 0 0 1-.974 1.114a4.3 4.3 0 0 1-1.399.64a6.3 6.3 0 0 1-1.609.206H2V5.731zm-.351 4.972q.72 0 1.192-.345c.312-.228.463-.604.463-1.119q0-.43-.151-.707a1.1 1.1 0 0 0-.417-.428a1.7 1.7 0 0 0-.597-.215a3.6 3.6 0 0 0-.697-.061H4.71v2.875zm.151 5.239c.267 0 .521-.023.76-.077c.241-.052.455-.136.637-.261c.182-.12.332-.283.44-.491c.109-.206.162-.475.162-.798q-.001-.95-.533-1.358c-.355-.27-.831-.404-1.414-.404H4.71v3.39h2.893zm8.565-.041q.551.538 1.584.538q.74 0 1.278-.373c.354-.249.57-.515.653-.79h2.155c-.346 1.072-.871 1.838-1.589 2.299c-.709.463-1.572.693-2.58.693q-1.052 0-1.9-.337a4 4 0 0 1-1.439-.958a4.4 4.4 0 0 1-.905-1.485a5.4 5.4 0 0 1-.32-1.899q.001-1 .329-1.864a4.4 4.4 0 0 1 .934-1.493q.606-.63 1.444-.994a4.6 4.6 0 0 1 1.858-.362q1.13 0 1.979.44a4 4 0 0 1 1.39 1.182q.543.74.783 1.691q.24.947.171 1.983h-6.431c.001.704.238 1.371.606 1.729m2.812-4.681c-.291-.322-.783-.496-1.385-.496q-.585-.001-.974.199a2 2 0 0 0-.62.491a1.8 1.8 0 0 0-.328.628a3 3 0 0 0-.111.587h3.982c-.058-.624-.272-1.085-.564-1.409m-3.918-4.663h4.989v1.215h-4.989z'/%3E%3C/svg%3E"); } .bxl-bing { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m5.71 3l3.593 1.264v12.645l5.061-2.919l-2.48-1.165l-1.566-3.897l7.974 2.802v4.073l-8.984 5.183l-3.595-2z'/%3E%3C/svg%3E"); } .bxl-bitcoin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11.953 8.819l-.547 2.19c.619.154 2.529.784 2.838-.456c.322-1.291-1.673-1.579-2.291-1.734m-.822 3.296l-.603 2.415c.743.185 3.037.921 3.376-.441c.355-1.422-2.029-1.789-2.773-1.974'/%3E%3Cpath fill='black' d='M14.421 2.299C9.064.964 3.641 4.224 2.306 9.581C.97 14.936 4.23 20.361 9.583 21.697c5.357 1.335 10.783-1.924 12.117-7.281c1.336-5.356-1.924-10.781-7.279-12.117m1.991 8.275c-.145.974-.686 1.445-1.402 1.611c.985.512 1.485 1.298 1.009 2.661c-.592 1.691-1.998 1.834-3.87 1.48l-.454 1.82l-1.096-.273l.447-1.794a45 45 0 0 1-.875-.228l-.449 1.804l-1.095-.275l.454-1.823c-.257-.066-.517-.136-.782-.202L6.87 15l.546-1.256s.808.215.797.199c.311.077.448-.125.502-.261l.719-2.875l.115.029a1 1 0 0 0-.114-.037l.512-2.053c.013-.234-.066-.528-.511-.639c.018-.011-.797-.198-.797-.198l.291-1.172l1.514.378l-.001.005q.341.085.7.165l.449-1.802l1.097.273l-.44 1.766c.294.067.591.135.879.207l.438-1.755l1.097.273l-.449 1.802c1.384.479 2.396 1.195 2.198 2.525'/%3E%3C/svg%3E"); } .bxl-blender { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.427 13.011c.037-.667.363-1.254.856-1.671a2.86 2.86 0 0 1 1.844-.66c.71 0 1.36.25 1.845.66c.492.417.819 1.005.856 1.671c.038.686-.237 1.323-.721 1.795a2.83 2.83 0 0 1-1.979.782a2.83 2.83 0 0 1-1.981-.782c-.483-.472-.759-1.109-.72-1.795'/%3E%3Cpath fill='black' d='M8.124 14.361c.005.26.089.767.213 1.164a6.2 6.2 0 0 0 1.328 2.299a6.8 6.8 0 0 0 2.323 1.667a7.5 7.5 0 0 0 3.05.635a7.5 7.5 0 0 0 3.051-.645a6.9 6.9 0 0 0 2.321-1.675a6.2 6.2 0 0 0 1.326-2.303a5.8 5.8 0 0 0 .25-1.285a5.94 5.94 0 0 0-.888-3.594a6.5 6.5 0 0 0-1.545-1.703l.001-.001l-6.249-4.799l-.016-.014c-.411-.314-1.101-.313-1.551.002c-.457.319-.508.846-.104 1.18l-.001.001l2.606 2.121l-7.943.009h-.012c-.656 0-1.287.432-1.412.976c-.128.555.318 1.015 1.001 1.017l-.001.003l4.027-.008l-7.188 5.516l-.027.021c-.677.519-.896 1.382-.47 1.929c.434.556 1.354.556 2.04.002l3.922-3.209c.001 0-.056.433-.052.694m10.078 1.45c-.808.824-1.938 1.291-3.163 1.293c-1.226.002-2.356-.461-3.165-1.283a3.7 3.7 0 0 1-.864-1.352a3.5 3.5 0 0 1-.199-1.511c.044-.505.193-.987.434-1.422c.236-.429.562-.815.962-1.144a4.48 4.48 0 0 1 2.832-.988a4.48 4.48 0 0 1 2.832.98c.399.326.725.711.961 1.139c.24.436.39.916.434 1.421a3.5 3.5 0 0 1-.198 1.511a3.8 3.8 0 0 1-.866 1.356'/%3E%3C/svg%3E"); } .bxl-blogger { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.954 10.667c-.072-.322-.272-.621-.502-.745c-.07-.039-.522-.088-1.004-.109c-.809-.036-.898-.052-1.152-.201c-.405-.237-.516-.493-.518-1.187c-.002-1.327-.554-2.559-1.646-3.67c-.776-.793-1.645-1.329-2.634-1.629c-.236-.072-.768-.097-2.545-.118c-2.787-.033-3.405.024-4.356.402c-1.748.697-3.008 2.166-3.465 4.05c-.087.353-.103.92-.124 4.177c-.025 4.08.004 4.68.258 5.488c.212.668.425 1.077.861 1.657c.835 1.108 2.083 1.907 3.334 2.133c.595.107 7.931.135 8.683.032c1.306-.178 2.331-.702 3.293-1.684c.694-.71 1.129-1.479 1.414-2.499c.117-.424.127-.63.149-3.117c.017-1.878.002-2.758-.046-2.98M8.007 8.108c.313-.316.399-.329 2.364-.329c1.764 0 1.822.004 2.081.134c.375.189.538.456.538.88c0 .384-.153.653-.493.869c-.184.115-.293.123-2.021.133c-1.067.007-1.916-.013-2.043-.048c-.669-.184-.918-1.143-.426-1.639m7.706 8.037l-.597.098l-3.114.035c-2.736.033-3.511-.018-3.652-.08c-.288-.124-.554-.472-.602-.78c-.042-.292.104-.696.33-.9c.285-.257.409-.266 3.911-.27c3.602-.002 3.583-.003 3.925.315c.482.45.381 1.251-.201 1.582'/%3E%3C/svg%3E"); } .bxl-bootstrap { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.002 2.997H5.999A3.01 3.01 0 0 0 2.997 6v12.002a3.01 3.01 0 0 0 3.002 3.001h12.003a3.01 3.01 0 0 0 3.001-3.001V6a3.01 3.01 0 0 0-3.001-3.003m-1.64 12.647c-.152.36-.389.68-.693.927a3.6 3.6 0 0 1-1.206.614q-.735.228-1.75.229H7.888V6.909h5.103q1.415-.002 2.267.646c.569.436.854 1.082.854 1.958q0 .794-.389 1.357q-.389.56-1.111.868v.034c.642.135 1.137.438 1.464.912q.492.71.493 1.789c0 .405-.078.788-.225 1.147l.02.021v.003zm-2.084-2.589q-.462-.421-1.297-.419H9.737v3.276h3.253c.554 0 .991-.144 1.298-.435q.463-.435.464-1.229c-.005-.518-.156-.919-.464-1.193h-.014zm-.451-2.119c.299-.251.444-.613.444-1.084c0-.526-.131-.902-.397-1.116c-.264-.214-.646-.326-1.146-.326H9.727v2.898h3.001c.436.001.81-.127 1.099-.372'/%3E%3C/svg%3E"); } .bxl-c-plus-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.66 7a1.5 1.5 0 0 0-.55-.57l-7.34-4.24a1.67 1.67 0 0 0-1.54 0L3.89 6.43a1.68 1.68 0 0 0-.77 1.33v8.48a1.6 1.6 0 0 0 .22.76a1.5 1.5 0 0 0 .55.57l7.34 4.24a1.67 1.67 0 0 0 1.54 0l7.34-4.24a1.5 1.5 0 0 0 .55-.57a1.6 1.6 0 0 0 .22-.76V7.76a1.6 1.6 0 0 0-.22-.76M12 17.92A5.92 5.92 0 1 1 17.13 9L16 9.71l-.36.2l-1 .61A3 3 0 0 0 9 12a2.9 2.9 0 0 0 .4 1.48a3 3 0 0 0 5.13 0l2.6 1.52A5.94 5.94 0 0 1 12 17.92m5.92-5.59h-.66V13h-.65v-.66H16v-.66h.66V11h.65v.66h.66zm2.47 0h-.66V13h-.66v-.66h-.65v-.66h.65V11h.66v.66h.66z'/%3E%3C/svg%3E"); } .bxl-chrome { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.742 2.04c-1.404.183-3.06.808-4.281 1.626c-1.01.664-2.397 2.02-2.309 2.251c.193.501 3.28 5.658 3.33 5.562c.038-.067.095-.279.123-.49c.25-1.385 1.425-2.704 2.897-3.253c.568-.221.683-.221 5.495-.27l4.917-.047l-.395-.646c-1.385-2.26-3.522-3.819-6.197-4.512c-.731-.193-2.81-.318-3.58-.22z'/%3E%3Cpath fill='black' d='M3.2 7.217c-.453.799-.983 2.415-1.107 3.358c-.588 4.273 1.568 8.4 5.379 10.315c.894.452 2.174.885 2.732.933l.356.029l1.674-2.838c.915-1.559 1.655-2.849 1.636-2.868s-.231.039-.481.125c-1.569.53-3.387.086-4.57-1.116c-.424-.424-1.002-1.357-2.84-4.542C4.71 8.41 3.642 6.601 3.603 6.601c-.028 0-.211.279-.403.616'/%3E%3Cpath fill='black' d='M15.15 8.804c1.222 1.242 1.655 3.003 1.116 4.59c-.086.26-1.212 2.271-2.501 4.485c-1.29 2.203-2.349 4.031-2.349 4.06c0 .115 1.328.057 2.175-.087c4.32-.74 7.573-4.002 8.265-8.276c.26-1.558.164-2.925-.307-4.503l-.25-.837h-6.707z'/%3E%3Cpath fill='black' d='M10.608 8.563q-1.515.634-2.078 2.147c-.173.453-.202.713-.173 1.424c.03.75.068.963.347 1.511c.366.75.962 1.329 1.751 1.703c.462.221.654.25 1.54.25c.895 0 1.077-.029 1.559-.26c.712-.326 1.462-1.077 1.79-1.79c.23-.48.259-.663.259-1.558c0-.886-.029-1.078-.25-1.54c-.375-.788-.952-1.386-1.703-1.75c-.568-.28-.742-.318-1.56-.348c-.788-.019-.99.01-1.48.212z'/%3E%3C/svg%3E"); } .bxl-codepen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.838 8.445q0-.002 0 0l-.003-.004l-.001-.001v-.001a.8.8 0 0 0-.235-.228l-9.164-6.08a.83.83 0 0 0-.898 0L2.371 8.214A.79.79 0 0 0 2 8.897v6.16a.8.8 0 0 0 .131.448v.001l.002.002l.01.015v.002h.001l.001.001l.001.001q.096.132.226.215l9.165 6.082a.8.8 0 0 0 .448.139a.8.8 0 0 0 .45-.139l9.165-6.082a.8.8 0 0 0 .371-.685v-6.16a.8.8 0 0 0-.133-.452m-9.057-4.172l6.953 4.613l-3.183 2.112l-3.771-2.536zm-1.592 0v4.189l-3.771 2.536l-3.181-2.111zm-7.595 6.098l2.395 1.59l-2.395 1.611zm7.595 9.311l-6.96-4.617l3.195-2.15l3.765 2.498zm.795-5.653l-3.128-2.078l3.128-2.105l3.131 2.105zm.797 5.653v-4.27l3.766-2.498l3.193 2.15zm7.597-6.11l-2.396-1.611l2.396-1.59z'/%3E%3C/svg%3E"); } .bxl-creative-commons { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.354 6.479a10.02 10.02 0 0 0-7.421-4.429c-3.108-.294-6.031.771-8.123 2.963C3.533 6.35 2.699 7.839 2.21 9.66c-.217.805-.247 1.104-.244 2.396c.002 1.293.034 1.599.255 2.432a10.23 10.23 0 0 0 7.451 7.332c.315.078.702.16.859.182c.696.097 2.381.056 3.131-.075c3.088-.538 5.832-2.531 7.24-5.258c1.644-3.181 1.426-7.222-.548-10.19m-.41 7.688c-.808 2.99-3.263 5.272-6.361 5.912c-4.831.997-9.538-2.658-9.839-7.641c-.194-3.217 1.755-6.446 4.745-7.863c1.133-.536 2.045-.733 3.425-.738c1.327-.004 2.064.132 3.223.596c2.324.931 4.146 3.04 4.816 5.573c.281 1.06.276 3.103-.009 4.161'/%3E%3Cpath fill='black' d='M8.042 14.955c-.915-.324-1.616-1.275-1.74-2.36c-.183-1.607.422-2.856 1.654-3.415c.669-.303 1.882-.296 2.603.016c.438.19 1.261.933 1.261 1.139c0 .033-.284.201-.631.372l-.632.312l-.337-.337c-.187-.188-.475-.363-.649-.396c-.433-.082-.952.111-1.187.44c-.389.546-.415 1.972-.048 2.533c.191.291.512.494.813.518c.635.05.796-.006 1.172-.401l.379-.398l.488.269c.269.148.527.305.575.347c.164.148-.592.92-1.199 1.224c-.517.259-.679.293-1.358.286c-.425-.006-.949-.074-1.164-.149m5.816 0c-.901-.32-1.591-1.241-1.739-2.325c-.215-1.569.419-2.888 1.654-3.45c.717-.324 1.934-.3 2.661.056c.45.221 1.201.911 1.201 1.104c0 .034-.295.203-.654.377l-.654.317l-.341-.37c-.304-.332-.385-.369-.802-.369c-.576 0-.945.225-1.145.698c-.18.423-.201 1.461-.043 1.934c.324.961 1.505 1.188 2.175.419l.304-.346l.58.294c.32.161.582.319.582.352c0 .219-.75.918-1.256 1.17c-.517.259-.679.293-1.358.287c-.425-.005-.949-.073-1.165-.148'/%3E%3C/svg%3E"); } .bxl-css3 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.192 3.143h15.615l-1.42 16.034l-6.404 1.812l-6.369-1.813zM16.9 6.424l-9.8-.002l.158 1.949l7.529.002l-.189 2.02H9.66l.179 1.913h4.597l-.272 2.62l-2.164.598l-2.197-.603l-.141-1.569h-1.94l.216 2.867L12 17.484l3.995-1.137z'/%3E%3C/svg%3E"); } .bxl-dailymotion { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.551 11.485a2.327 2.327 0 0 0-2.328 2.332c0 1.314 1.013 2.313 2.441 2.313l-.012.002c1.192 0 2.193-.983 2.193-2.28c.001-1.349-1.001-2.367-2.294-2.367'/%3E%3Cpath fill='black' d='M3 3v18h18V3zm15.52 15.605h-2.682v-1.058c-.825.81-1.667 1.103-2.786 1.103q-1.713 0-2.947-1.114c-1.086-.956-1.648-2.227-1.648-3.701c0-1.351.524-2.561 1.507-3.506c.878-.859 1.946-1.298 3.139-1.298c1.14 0 2.018.385 2.647 1.192V6.118l2.77-.574v-.002l.002.003h-.002z'/%3E%3C/svg%3E"); } .bxl-deezer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.68 5.47H22V8h-4.32zm0 3.51H22v2.53h-4.32zm0 3.51H22v2.53h-4.32zM2 16h4.32v2.53H2zm5.22 0h4.32v2.53H7.22zm5.23 0h4.32v2.53h-4.32zm5.23 0H22v2.53h-4.32zm-5.23-3.51h4.32v2.53h-4.32zm-5.23 0h4.32v2.53H7.22zm0-3.51h4.32v2.53H7.22z'/%3E%3C/svg%3E"); } .bxl-dev-to { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.826 10.083a.8.8 0 0 0-.468-.175h-.701v4.198h.701a.8.8 0 0 0 .469-.175q.233-.175.233-.525v-2.798q0-.35-.234-.525M19.236 3H4.764C3.791 3 3.002 3.787 3 4.76v14.48c.002.973.791 1.76 1.764 1.76h14.473c.973 0 1.762-.787 1.764-1.76V4.76A1.765 1.765 0 0 0 19.236 3M9.195 13.414c0 .755-.466 1.901-1.942 1.898H5.389V8.665h1.903c1.424 0 1.902 1.144 1.903 1.899zm4.045-3.562H11.1v1.544h1.309v1.188H11.1v1.543h2.142v1.188h-2.498a.813.813 0 0 1-.833-.792V9.497a.813.813 0 0 1 .792-.832h2.539zm4.165 4.632c-.531 1.235-1.481.99-1.906 0l-1.548-5.818h1.309l1.193 4.569l1.188-4.569h1.31z'/%3E%3C/svg%3E"); } .bxl-deviantart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.57 3h-3.271l-.326.33l-1.544 2.942l-.486.327H6.432v4.495h3.03l.27.327l-3.3 6.305v3.273h3.272l.327-.33l1.543-2.943l.486-.326h5.511v-4.495h-3.03l-.269-.329l3.299-6.303z'/%3E%3C/svg%3E"); } .bxl-digg { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.803 8.8v6.801h3.2v.799h-3.2v1.602h5.2V8.8zm-6 0v6.801h3.199v.799h-3.199v1.602h5.199V8.8zM5.2 5.999V8.8H2v6.801h5.201V5.999zM10.001 8.8h-2v6.801h2zM20.003 14h-1.2v-3.601h1.2zM5.2 14H4v-3.601h1.2zm8.802 0h-1.2v-3.601h1.2zm-4.001-8.001h-2v2h2z'/%3E%3C/svg%3E"); } .bxl-digitalocean { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.005 21.992v-3.877c4.104 0 7.288-4.068 5.714-8.388a5.81 5.81 0 0 0-3.457-3.446c-4.319-1.563-8.389 1.61-8.389 5.714H2.008c0-6.541 6.325-11.642 13.184-9.499c2.991.94 5.383 3.321 6.313 6.313c2.141 6.858-2.96 13.183-9.5 13.183'/%3E%3Cpath fill='black' d='M12.017 18.139H8.152v-3.866h3.865zm-3.865 2.959H5.193v-2.959h2.959zm-2.959-2.959H2.711v-2.483h2.482z'/%3E%3C/svg%3E"); } .bxl-discord { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.593 10.971c-.542 0-.969.475-.969 1.055c0 .578.437 1.055.969 1.055c.541 0 .968-.477.968-1.055c.011-.581-.427-1.055-.968-1.055m3.468 0c-.542 0-.969.475-.969 1.055c0 .578.437 1.055.969 1.055c.541 0 .968-.477.968-1.055c-.001-.581-.427-1.055-.968-1.055'/%3E%3Cpath fill='black' d='M17.678 3H4.947A1.95 1.95 0 0 0 3 4.957v12.844c0 1.083.874 1.957 1.947 1.957H15.72l-.505-1.759l1.217 1.131l1.149 1.064L19.625 22V4.957A1.95 1.95 0 0 0 17.678 3M14.01 15.407s-.342-.408-.626-.771c1.244-.352 1.719-1.13 1.719-1.13c-.39.256-.76.438-1.093.562a6.7 6.7 0 0 1-3.838.398a8 8 0 0 1-1.396-.41a5.4 5.4 0 0 1-.693-.321c-.029-.021-.057-.029-.085-.048a.1.1 0 0 1-.039-.03c-.171-.094-.266-.16-.266-.16s.456.76 1.663 1.121c-.285.36-.637.789-.637.789c-2.099-.067-2.896-1.444-2.896-1.444c0-3.059 1.368-5.538 1.368-5.538c1.368-1.027 2.669-.998 2.669-.998l.095.114c-1.71.495-2.499 1.245-2.499 1.245s.21-.114.561-.275c1.016-.446 1.823-.57 2.156-.599c.057-.009.105-.019.162-.019a7.76 7.76 0 0 1 4.778.893s-.751-.712-2.366-1.206l.133-.152s1.302-.029 2.669.998c0 0 1.368 2.479 1.368 5.538c0-.001-.807 1.376-2.907 1.443'/%3E%3C/svg%3E"); } .bxl-discord-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14.82 4.26a10 10 0 0 0-.53 1.1a14.7 14.7 0 0 0-4.58 0a10 10 0 0 0-.53-1.1a16 16 0 0 0-4.13 1.3a17.33 17.33 0 0 0-3 11.59a16.6 16.6 0 0 0 5.07 2.59A13 13 0 0 0 8.23 18a9.7 9.7 0 0 1-1.71-.83a3.4 3.4 0 0 0 .42-.33a11.66 11.66 0 0 0 10.12 0q.21.18.42.33a11 11 0 0 1-1.71.84a12.4 12.4 0 0 0 1.08 1.78a16.4 16.4 0 0 0 5.06-2.59a17.22 17.22 0 0 0-3-11.59a16 16 0 0 0-4.09-1.35M8.68 14.81a1.94 1.94 0 0 1-1.8-2a1.93 1.93 0 0 1 1.8-2a1.93 1.93 0 0 1 1.8 2a1.93 1.93 0 0 1-1.8 2m6.64 0a1.94 1.94 0 0 1-1.8-2a1.93 1.93 0 0 1 1.8-2a1.92 1.92 0 0 1 1.8 2a1.92 1.92 0 0 1-1.8 2'/%3E%3C/svg%3E"); } .bxl-discourse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.077 3C7.149 3 3 6.96 3 11.843V21l9.075-.01c4.928 0 8.925-4.11 8.925-8.993C21 7.113 17 3 12.077 3m3.92 12.859a5.57 5.57 0 0 1-6.102 1.043l-3.595.805l1.001-3.192a5.44 5.44 0 0 1 .11-5.415a5.55 5.55 0 0 1 4.753-2.678v.001h.006a5.53 5.53 0 0 1 5.131 3.438a5.44 5.44 0 0 1-1.304 5.998'/%3E%3C/svg%3E"); } .bxl-django { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.533 12.249c-.011 1.985 1.445 3.168 3.768 2.63V9.618c-2.352-.716-3.758.733-3.768 2.631m3.839-10.238h3.199v15.143c-3.066.501-6.004.819-8.104-.355c-2.705-1.513-2.923-6.319-.782-8.46c1.085-1.085 3.271-1.85 5.616-1.351V2.225c-.006-.101-.012-.202.071-.214m8.389 3.342h-3.199V2.011h3.199z'/%3E%3Cpath fill='black' d='M19.761 7.044c-.003 2.356-.003 4.048-.003 6.911c-.136 2.813-.104 5.052-1.135 6.398c-.203.266-.634.652-.995.924c-.303.228-.881.691-1.208.711c-.331.021-1.18-.459-1.564-.64c-.505-.237-.971-.553-1.493-.71c1.218-.754 2.372-1.32 2.844-2.844c.41-1.326.355-3.247.355-5.119c0-1.849.009-3.998.009-5.63z'/%3E%3C/svg%3E"); } .bxl-docker { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.17 9.82a5 5 0 0 0-.84.07a3.12 3.12 0 0 0-1.43-2.14l-.28-.16l-.19.27a3.7 3.7 0 0 0-.51 1.19a2.84 2.84 0 0 0 .33 2.22a4.1 4.1 0 0 1-1.45.35H2.63a.63.63 0 0 0-.63.62a9.6 9.6 0 0 0 .58 3.39a5 5 0 0 0 2 2.6a8.86 8.86 0 0 0 4.42.95a13.3 13.3 0 0 0 2.42-.18a10.1 10.1 0 0 0 3.19-1.15A8.9 8.9 0 0 0 16.78 16a12 12 0 0 0 2.13-3.67h.19a3.08 3.08 0 0 0 2.23-.84a2.36 2.36 0 0 0 .59-.87l.08-.22l-.2-.16a2.7 2.7 0 0 0-1.63-.42'/%3E%3Cpath fill='black' d='M5.61 9.35H3.85a.16.16 0 0 0-.16.15v1.58a.16.16 0 0 0 .16.15h1.76a.16.16 0 0 0 .16-.15V9.5a.16.16 0 0 0-.16-.15m2.44 0H6.28a.16.16 0 0 0-.16.15v1.58a.16.16 0 0 0 .16.15h1.77a.15.15 0 0 0 .15-.15V9.5a.15.15 0 0 0-.15-.15m2.47 0H8.75a.15.15 0 0 0-.15.15v1.58a.15.15 0 0 0 .15.15h1.77a.15.15 0 0 0 .15-.15V9.5a.15.15 0 0 0-.15-.15m.67 0a.15.15 0 0 0-.19.15v1.58a.15.15 0 0 0 .15.15H13a.15.15 0 0 0 .15-.15V9.5a.15.15 0 0 0-.15-.15zM6.28 7.09H8a.16.16 0 0 1 .16.16v1.56A.16.16 0 0 1 8 9H6.28a.15.15 0 0 1-.15-.15V7.24a.15.15 0 0 1 .15-.15m2.47 0h1.77a.15.15 0 0 1 .15.15v1.57a.16.16 0 0 1-.16.16H8.75a.15.15 0 0 1-.15-.15V7.24a.15.15 0 0 1 .15-.15m2.44 0H13a.15.15 0 0 1 .15.15v1.57A.15.15 0 0 1 13 9h-1.81a.16.16 0 0 1-.19-.19V7.24a.15.15 0 0 1 .19-.15'/%3E%3Crect width='2.07' height='1.88' x='11.04' y='4.82' fill='black' rx='.15'/%3E%3Cpath fill='black' d='M13.65 9.35a.15.15 0 0 0-.15.15v1.58a.15.15 0 0 0 .15.15h1.77a.15.15 0 0 0 .15-.15V9.5a.15.15 0 0 0-.15-.15z'/%3E%3C/svg%3E"); } .bxl-dribbble { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.66 6.98a9.93 9.93 0 0 0-3.641-3.64Q14.719 2 12 2c-2.719 0-3.486.447-5.02 1.34q-2.3 1.34-3.64 3.64C2 9.28 2 10.187 2 12s.446 3.487 1.34 5.02a9.9 9.9 0 0 0 3.641 3.64Q9.281 22 12 22c2.719 0 3.486-.447 5.02-1.34a9.93 9.93 0 0 0 3.641-3.64Q22.001 14.72 22 12c-.001-2.72-.446-3.487-1.34-5.02M12 3.66q2.999 0 5.32 1.919q-1.38 1.76-4.1 2.9q-1.502-2.72-3.261-4.54A7.7 7.7 0 0 1 12 3.66M5.51 6.8a8.1 8.1 0 0 1 2.711-2.22q1.818 1.8 3.34 4.5q-3 .9-6.341.9q-.86 0-1.3-.04A8.55 8.55 0 0 1 5.51 6.8M3.66 12q0-.08.01-.2t.01-.2q.381.02 1.161.02q4 0 7.439-1.1q.281.56.58 1.26q-1.98.44-4.061 2.14C6.718 15.62 6.4 16.247 5.76 17.5q-2.1-2.38-2.1-5.5M12 20.34q-2.84 0-5.101-1.759Q7.8 16.8 9.67 15.18t3.71-2.02a29.4 29.4 0 0 1 1.56 6.62a8.2 8.2 0 0 1-2.94.56m7.08-3.96a8.35 8.35 0 0 1-2.58 2.621q-.36-3.12-1.379-6.081q1.398-.1 2.5-.1q1.199 0 2.659.1a8.1 8.1 0 0 1-1.2 3.46m-1.24-5q-1.74 0-3.22.14a27 27 0 0 0-.68-1.62q3.099-1.359 4.399-3.3q1.8 2.12 1.96 4.84q-1.218-.06-2.459-.06'/%3E%3C/svg%3E"); } .bxl-dropbox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.004 3.5L2 6.689l5.004 3.186l5.002-3.186zm10.005 0l-5.003 3.189l5.003 3.186l5.003-3.186zM2 13.062l5.004 3.187l5.002-3.187l-5.002-3.187zm15.009-3.187l-5.003 3.187l5.003 3.187l5.003-3.187zM7.004 17.311l5.002 3.189l5.003-3.189l-5.003-3.186z'/%3E%3C/svg%3E"); } .bxl-drupal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.474 14.42a3.162 3.162 0 1 0 0 6.324a3.162 3.162 0 0 0 0-6.324m3.936-.606a5.43 5.43 0 0 1 1.513 3.769a5.44 5.44 0 0 1-2.335 4.47c2.609-.803 4.771-2.767 5.737-5.142c1.338-3.288.09-5.761-1.999-8.005c.066.288.103.592.103.898a4.175 4.175 0 0 1-3.019 4.01m-3.577-4.003c0 1.34 1.087 2.419 2.42 2.419s2.423-1.087 2.423-2.419a2.42 2.42 0 0 0-2.417-2.417a2.425 2.425 0 0 0-2.426 2.417'/%3E%3Cpath fill='black' d='M7.303 21.093a5.44 5.44 0 0 1-1.276-3.51a5.44 5.44 0 0 1 4.8-5.408a4.162 4.162 0 0 1 3.99-6.492c-1.361-1.176-2.724-2.369-3.799-3.672c.547 5.714-5.2 3.638-7.332 8.904c-1.422 3.527-.138 7.892 3.617 10.178'/%3E%3C/svg%3E"); } .bxl-ebay { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.021 12.111V8.004h1.001v2.525c.493-.586 1.17-.756 1.838-.756c1.118 0 2.361.754 2.361 2.383c0 .195-.014.381-.051.559c.2-.797 1.063-1.09 2.418-1.123c.426-.016.914-.016 1.302-.016v-.111c0-.738-.464-1.039-1.276-1.039c-.602 0-1.04.25-1.09.676H12.46c.113-1.076 1.253-1.352 2.242-1.352c.889 0 1.666.225 2.017.852l-.365-.702h1.177l1.716 3.443l1.716-3.445H22l-3.105 6.098h-1.124l.894-1.703l-1.945-3.656c.108.213.167.465.167.777v2.055c0 .289.009.574.034.838h-.931a6 6 0 0 1-.038-.639c-.503.613-1.103.803-1.937.803c-1.236 0-1.897-.652-1.897-1.416q.002-.186.031-.338c-.251 1.041-1.135 1.74-2.31 1.74c-.727 0-1.414-.262-1.837-.775c0 .201-.013.412-.033.611h-.986c.018-.324.034-.713.034-1.037v-.877H2.985c.054.914.683 1.451 1.547 1.451c.599 0 1.131-.25 1.309-.775h1.035c-.2 1.078-1.344 1.439-2.329 1.439c-1.789.018-2.582-.973-2.582-2.301c0-1.463.819-2.428 2.602-2.428c1.409 0 2.445.738 2.454 2.342zm7.627.153c-.915.027-1.479.193-1.479.793c0 .389.301.809 1.09.809c1.052 0 1.615-.574 1.615-1.514v-.109c-.376 0-.826.006-1.239.02h.011zm-5.059 1.564c.927 0 1.566-.672 1.566-1.686s-.642-1.686-1.58-1.686c-.928 0-1.578.672-1.578 1.686s.639 1.686 1.565 1.686zM5.958 11.73c-.037-.939-.714-1.291-1.44-1.291c-.788 0-1.414.395-1.516 1.291z'/%3E%3C/svg%3E"); } .bxl-edge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.349 13.684H8.874q-.002.649.195 1.178a3.33 3.33 0 0 0 1.381 1.634q.465.295 1.005.484c.356.13.729.226 1.107.288c.821.13 1.658.123 2.477-.021a9.8 9.8 0 0 0 2.421-.783c.393-.18.79-.376 1.201-.594v3.805a13.5 13.5 0 0 1-2.711.978q-.684.17-1.396.246q-.73.08-1.464.079a8.2 8.2 0 0 1-1.95-.232a7.7 7.7 0 0 1-1.762-.668a7.3 7.3 0 0 1-1.51-1.062a6.67 6.67 0 0 1-1.941-3.103a7 7 0 0 1-.267-1.953q0-1.105.303-2.11a6.7 6.7 0 0 1 2.264-3.342a7.4 7.4 0 0 1 1.847-1.066a3.9 3.9 0 0 0-.869 1.329a5.7 5.7 0 0 0-.401 1.538h6.391q.002-.967-.196-1.689q-.196-.726-.637-1.201A2.64 2.64 0 0 0 13.23 6.7q-.694-.24-1.675-.241c-.771 0-1.543.111-2.314.344a9.8 9.8 0 0 0-2.2.955q-1.043.619-1.919 1.452a9.2 9.2 0 0 0-1.474 1.819c.084-.742.247-1.474.485-2.18a9.3 9.3 0 0 1 .912-1.938a8.6 8.6 0 0 1 1.303-1.609a7.7 7.7 0 0 1 1.655-1.235a8.5 8.5 0 0 1 1.955-.792a10 10 0 0 1 2.233-.254q.689 0 1.375.124q.685.125 1.339.342a8 8 0 0 1 2.315 1.239a8 8 0 0 1 1.711 1.833c.463.692.813 1.459 1.055 2.292s.365 1.701.365 2.602v2.23z'/%3E%3C/svg%3E"); } .bxl-etsy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.139 14.058c-.438 0-.693-.294-.693-1.058v-2.696l1.456.112l.074-.694l-1.496.074v-1.53h-.438c-.216 1.201-.759 1.638-1.488 1.712v.364h.869v3.062c0 .836.588 1.271 1.313 1.271c.585 0 1.202-.255 1.418-.763l-.217-.255c-.108.18-.402.401-.798.401m-3.494-.803c-.294.69-.767.729-1.24.729h-1.53c-.508 0-.729-.186-.729-.62v-2.258s1.092 0 1.457.039c.291.035.438.109.546.473l.108.511h.438l-.039-1.309l.074-1.278h-.434l-.147.585c-.073.399-.147.438-.546.508c-.508.038-1.457.038-1.457.038V7.979c0-.112 0-.147.185-.147h2.291c.402 0 .62.326.763.98l.147.512h.399c.039-1.457.074-2.074.074-2.074s-.981.105-1.562.105H3.53L2 7.324v.399l.508.107c.367.074.475.147.475.473c0 0 .039.984.039 2.619c0 1.639-.039 2.623-.039 2.623c0 .291-.108.399-.475.473L2 14.131v.396l1.565-.035h2.623c.581 0 1.965.035 1.965.035c.034-.361.216-1.964.255-2.146H8.04zm6.04-2.622c0-.474.437-.655.875-.655c.36 0 .653.147.729.325l.255.729l.361-.035c0-.364.038-.838.111-1.201c-.328-.147-.983-.221-1.421-.221c-.984 0-1.747.441-1.747 1.387c0 1.674 2.44 1.31 2.44 2.549c0 .399-.256.729-.876.729c-.581 0-.837-.294-.945-.585l-.29-.693h-.369c.04.476.074.948 0 1.382c0 0 .767.294 1.531.294c1.022 0 1.858-.507 1.858-1.457c0-1.674-2.512-1.421-2.512-2.548m6.369-.945v.364l.259.074c.252.07.36.178.36.363c0 .108-.034.144-.073.291c-.108.291-.802 2.003-1.162 2.767a76 76 0 0 1-1.093-2.949c-.035-.073-.035-.108-.035-.146c0-.148.105-.292.361-.326l.329-.074v-.364l-1.346.073l-1.096-.039v.368l.187.069c.251.074.287.11.469.512c.693 1.53 1.457 3.529 1.716 4.15c-.584 1.019-1.204 1.309-1.677 1.309c-.291 0-.399-.147-.435-.329l-.146-.763l-.4.035c-.073.477-.147.984-.255 1.383c.287.182.616.294 1.053.293c.691 0 1.675-.182 2.623-2.332l1.601-3.747c.145-.293.182-.329.546-.476l.183-.144v-.362l-.945.034z'/%3E%3C/svg%3E"); } .bxl-facebook { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.397 20.997v-8.196h2.765l.411-3.209h-3.176V7.548c0-.926.258-1.56 1.587-1.56h1.684V3.127A22 22 0 0 0 14.201 3c-2.444 0-4.122 1.492-4.122 4.231v2.355H7.332v3.209h2.753v8.202z'/%3E%3C/svg%3E"); } .bxl-facebook-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.001 2.002c-5.522 0-9.999 4.477-9.999 9.999c0 4.99 3.656 9.126 8.437 9.879v-6.988h-2.54v-2.891h2.54V9.798c0-2.508 1.493-3.891 3.776-3.891c1.094 0 2.24.195 2.24.195v2.459h-1.264c-1.24 0-1.628.772-1.628 1.563v1.875h2.771l-.443 2.891h-2.328v6.988C18.344 21.129 22 16.992 22 12.001c0-5.522-4.477-9.999-9.999-9.999'/%3E%3C/svg%3E"); } .bxl-facebook-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h8.615v-6.96h-2.338v-2.725h2.338v-2c0-2.325 1.42-3.592 3.5-3.592q1.05-.003 2.095.107v2.42h-1.435c-1.128 0-1.348.538-1.348 1.325v1.735h2.697l-.35 2.725h-2.348V21H20a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bxl-figma { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.332 8.668a3.333 3.333 0 0 0 0-6.663H8.668a3.333 3.333 0 0 0 0 6.663a3.333 3.333 0 0 0 0 6.665a3.333 3.333 0 0 0 0 6.664A3.334 3.334 0 0 0 12 18.664V8.668z'/%3E%3Ccircle cx='15.332' cy='12' r='3.332' fill='black'/%3E%3C/svg%3E"); } .bxl-firebase { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.239 15.063L7.21 2.381a.453.453 0 0 1 .847-.145l2.12 3.979zM19.24 18.14L17.363 6.469a.454.454 0 0 0-.766-.246L4.76 18.14l6.55 3.691c.411.23.912.23 1.323 0zM13.917 7.955L12.4 5.052a.452.452 0 0 0-.8 0L4.939 16.989z'/%3E%3C/svg%3E"); } .bxl-firefox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.634 11.138a2 2 0 0 0-.06-.286l-.187.236a6.4 6.4 0 0 0-.228-1.274a8.7 8.7 0 0 0-.591-1.511a5.3 5.3 0 0 0-.54-.92c-.109-.17-.203-.296-.221-.322c-.362-.589-.767-.947-1.249-1.621a5 5 0 0 1-.615-1.679a6 6 0 0 0-.303 1.097c-.483-.489-.913-.846-1.168-1.08c-1.267-1.183-1.113-1.79-1.113-1.79s-2.364 2.635-1.342 5.377a5.3 5.3 0 0 0 1.764 2.347c.989.813 2.052 1.452 2.609 3.101a5.2 5.2 0 0 0-1.967-2.087c.253.602.38 1.232.371 1.884a4.47 4.47 0 0 1-4.476 4.465a4.3 4.3 0 0 1-.985-.109a4.1 4.1 0 0 1-1.107-.379a4.4 4.4 0 0 1-1.334-1.226v-.007a.4.4 0 0 0 .075.024c.187.067.372.118.567.153a3.56 3.56 0 0 0 2.245-.263c.708-.396 1.139-.685 1.484-.574c.348.109.608-.22.373-.565a1.85 1.85 0 0 0-1.79-.692c-.711.101-1.36.599-2.28.117c-.067-.032-.117-.066-.176-.101c-.06-.042.202.051.134.009a4 4 0 0 1-.582-.347c-.009-.009.145.043.126.033a2.2 2.2 0 0 1-.608-.614a1.12 1.12 0 0 1-.04-.973a.84.84 0 0 1 .38-.354l.192.1s-.059-.1-.085-.151c.01-.008.019 0 .035-.008c.102.042.329.159.455.236a.6.6 0 0 1 .212.186s.043-.017.009-.108a.5.5 0 0 0-.221-.263h.018c.093.051.178.102.261.167c.076-.186.119-.368.112-.563a.8.8 0 0 0-.043-.313c-.035-.067.017-.093.075-.025a.6.6 0 0 0-.051-.152s.034-.051.051-.062c.043-.04.084-.082.136-.107c.293-.185.599-.347.92-.474a7 7 0 0 0 .515-.228c.067-.042.127-.084.186-.136c.22-.185.364-.438.413-.718c.01-.04.01-.074.01-.107v-.069c-.034-.144-.279-.245-1.553-.372a1.1 1.1 0 0 1-.911-.852v.007a2 2 0 0 0-.051.146c.016-.053.033-.094.051-.146v-.007a3.26 3.26 0 0 1 1.249-1.553c.031-.025-.126.007-.093-.017c.102-.051.211-.103.329-.145c.059-.018-.245-.134-.515-.11a1.6 1.6 0 0 0-.473.11c.067-.049.252-.118.21-.118a2.8 2.8 0 0 0-.97.363c0-.033.01-.06.018-.083a1.5 1.5 0 0 0-.6.464v-.112a3 3 0 0 0-.295.28h-.008a3.9 3.9 0 0 0-2.205-.184l-.008-.009h.008a1.7 1.7 0 0 1-.387-.439l-.01.007l-.015-.016c-.053-.068-.093-.152-.147-.246c-.04-.06-.074-.136-.116-.21c0 0 0-.008-.008-.008c-.01 0-.026.077-.033.049a2.7 2.7 0 0 1-.179-1.053H5.28a1.12 1.12 0 0 0-.448.589c-.041.086-.067.128-.092.179v-.028l.024-.125c-.006.009-.006.017-.017.025a1 1 0 0 0-.15.23a1 1 0 0 0-.103.243v-.042c0-.034.009-.085 0-.067l-.009.023a6 6 0 0 0-.506 1.902c-.016.118-.016.228-.016.337v.018a4.4 4.4 0 0 0-.514.683a9.7 9.7 0 0 0-1.082 2.659c.161-.354.354-.701.583-1.021a9.3 9.3 0 0 0-.659 3.454q.114-.517.278-1.022a8.74 8.74 0 0 0 .787 4.062a9.4 9.4 0 0 0 3.738 4.229a8 8 0 0 0 2.169 1.048c.102.033.213.074.313.109c-.034-.018-.059-.035-.092-.042a10 10 0 0 0 2.818.413c3.387 0 4.501-1.292 4.61-1.418c.16-.151.303-.331.396-.541c.068-.024.127-.05.195-.084l.041-.016c.051-.026.075-.034.075-.034a7 7 0 0 0 1.437-.896a3.48 3.48 0 0 0 1.326-1.951c.125-.286.125-.6.024-.894c.05-.084.094-.161.101-.178a7.95 7.95 0 0 0 1.199-3.876v-.116a5 5 0 0 0-.072-.872'/%3E%3C/svg%3E"); } .bxl-flask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.78 18.29c0 .12.15 0 0 0m-3.35-2.7c.39.17-.31-.6 0 0m-5.03.28c.15.26 0-.12 0 0m5.6.39c-.27-.42-.2.06 0 .32c.48.47.18-.26 0-.32'/%3E%3Cpath fill='black' d='M20.24 19.06c-.53.63-1-.07-1.63.13c-1.1 0 .09-.5.06-1c-.58-.45-1.24.61-1.62.9a10.8 10.8 0 0 1-2.67-.83a8 8 0 0 1-2.6-1.94a8.4 8.4 0 0 1-1.87-2.84a21.4 21.4 0 0 1-.84-5.74c.07-1.3 1.44.14 2-.33c-.21-.67-1.29-.88-1.89-1.16c-.58 0-.79-.55-1.4-.59c0-.73-1.13-.33-1.56-.84c.42-1.08-1.37 0-1.23-.91c.58-1.2-1.78-1-.8.06c.95.54-.93.93-.38 1.29a.59.59 0 0 1-.53.86c-.74.07-.67 1.09.06.55c.81-.25.14.11-.25.18a1.3 1.3 0 0 0-.95 1.9a35 35 0 0 1 1 3.42A16.3 16.3 0 0 0 5.84 17A9.8 9.8 0 0 0 8 19a10 10 0 0 0 2.43 1.22a18 18 0 0 0 4.73.73a16.5 16.5 0 0 0 2.9-.24c.87.09 1.49-.65 2.26-.26c.48-.42 1.16-.23 1.63-.54c.32-1.22-1.22-.27-1.71-.85m-1.74-.74c-.22 0 .05-.34 0 0m-7.63-11c-.1 0-.08-.12-.16-.15c-.8-.37.39-.23.16.19zm6.76 11.39c-.35-.08.28-.25 0 0m-2.81.11c-.23 0 .18-.14 0 0m-1.88-1.18c-.13 0 0-.13 0 0m-.22-.17c-.36 0-.09-.23 0 0m-.42-.36c-.33.08 0-.34 0 0m-6-11.66c-.53-.28.11.33-.34.32c-.24 0-.69-.52-.54-.78c.3.16.83.21.92.5zm-.92-.81h-.11c-.03-.27.87-.06.15.04zm-1.02-.79c-.42-.19 0-.93.44-.58c.51.73-.95-.08-.44.58m.49.69c-.27.11.16-.21 0 0m.48.92c.6.46-.34 0-.72.29c-.61.06.66-.34.72-.29m.17.6c.35 0 1.88-.69 1.37-.07c.47.55.1.37-.21 0c.28.19.06 1-.37.45s-.5-.18-.17.21C5.8 6 4.88 6.28 4.21 6.5c-.43-.04 1.13-.37 1.29-.44M3.58 7.51c-.16.4.24.53.62.6c.62-.17-.41-.28.06-.44c.26 0-.82-.26.08-.38S6.09 6.77 7 6.58a8.7 8.7 0 0 1 2.35-.19c.3.35-.23.94-.77 1a8.6 8.6 0 0 1-2 .39c-.8-.1-1.37.61-2.19.7c.22-.4-.18-.14-.59-.16c.21.82-1.47-.21-.48-.41c-.74-.26-.75.52-.67 1c-.65-.91.07-1.29.93-1.4m1.88 1.08c-.22-.05.17-.2 0 0m-.72.88s-.34-.08-.2-.17c1 .13-.9-.33.13-.22c.66-.02.44.36.07.39m.33.17c-.12.12 0-.24 0 0m-.71 0c-.44-.09.21-.22 0 0m-.06 1.43c-.07.1-.1-.08 0 0M4 10.9c-.55-.19 0-.21 0 0m-.12 1.28c-.26-.09-.25-.5-.37-.72c-.38-1.03.41.4.33.72zm.23-1.49c-.69-.08-.05-.49 0 0m0-.34h-.09c-.76-.35.45-.17-.02 0zM4 9.56c-.61-.31.58-.36 0 0m.21.26c-.34.06.05-.32 0 0m-1.3.07c-.12.08 0-.23 0 0M3 9.75c-.16 0 0-.27 0 0m.08-1c-.4-.1.33-.25 0 0m.26 2c-.44-.1-.12-.65 0 0m.3 1.25c.42.51.26.79.69 1.41c-.56-.35-.67-1.2-1-1.75c-.41-.9.23-.01.31.34m4.09 6.38c-.34-.07-.57-.43-.81-.66a4.9 4.9 0 0 1-1.57-1.94a12.3 12.3 0 0 1-1.46-2.38c-.41-.92.25.07.35.42c.21.68.88 1.07.94 1.52c.74.42.36 1.12 1 1.31c.27-.14.3.84.89.64c-.33.15.13.33.3.61c.35-.05 1.17.82.36.52zM4.62 12c-.31-.07.33-.11 0 0m.2.47c-.55-.14.52-.2 0 0m1.39.47c.4-.17.16.78.55.9c.76 1-.53 0-1-.07c.06 0-.38-.12-.19-.16c-.14-.15-.45-.66.26-.32c.6.24.65.06.38-.39zm1.31 1.76c0 .15-.72.13-.06.42c-.38 0-.5 0 0 .3c-.22.17.43.31.21.57c.66.52-.12.13-.4-.08s-.85-.35-.75-.5c.81.42.21 0-.15-.3c.65.16-.51-.48.1-.31c.19.05-.27-.38.33-.07c-.54-.52.47-.12.72-.07zm.48-.17c-.61-.14 0-.34 0 0m-.17 2c-.61-.26.39 0 0 0m-.45-.17c-.71-.23.52 0 0 0m-.09.11c-.22 0 0-.17 0 0m-1.08-1.55c-.72-.3-.2-.33 0 0m-.54-.35c-.58-.33-.08-.33 0 0m0 .65c-.57-.44-.07-.25 0 0m-.15-1.34c-.35 0 .13-.2 0 0M8 17.38c-.51-.15 0-.14 0 0M7.63 17h-.16c-.68-.54.31-.38.75-.14c.97.14-.22.39-.59.14m2.7 1.65c-.68-.16.16-.27 0 0m-.17-.52c-.05 0-.1-.11 0 0m-.86-1.34c-.59-.14.21-.19.36 0c1.02.21-.06.26-.36 0M9.51 18H9.4l-.13-.06c-.56-.59 1.19.28.24.06m-.28.69c-.15.06 0-.14 0 0m.29-1.19l-.16-.05c-.66-.45.84.09.16 0zm.16 1.72c-.4-.16.26-.25 0 0m.1-.74c-.58-.14.36-.13 0 0m.13-.61c-.44-.06.05-.21 0 0m-.72-.88c.46.06.47.27 0 .14c-.09 0-.24 0-.28-.17c-.76-.5.03-.25.28-.02zm-.06 2c-.2.12 0-.22 0 0m-.31-.51c-.53 0 .4-.26 0 0m-.12.35c-.26-.1.17-.08 0 0m.3-.89c-.52-.14.25-.18 0 0m-.16-.57c-.28 0-.06-.16 0 0m-.54-.95c-.57-.46 1.18.38 0 0m-.06.19c0 .06-.11-.09 0 0m3.65 3.78a9.4 9.4 0 0 1-2.56-.85l-.33-.2c-.57-.31-.5-.38.06-.07c.19.16 1.59.73.93.35c-.29-.07-1.9-.95-.84-.57a21 21 0 0 0 2.74 1.21a7.1 7.1 0 0 0 2.43.15c.65.33 1.33-.08 2 .21a13 13 0 0 1-4.45-.23zm-1.25-.7c-.51-.09.16-.23 0 0m.73-1c-.58-.11.6-.23 0 0m.84 1.31c1 .37-.6.12-.93-.09c-.92-.38.72.09.93.09m-1.06-1.1c-.81-.12.9 0 0 0m1.52.85c-.29.23 0-.3 0 0m.29.05c-.15.06 0-.17 0 0m.27-.38c-.16.2 0-.23 0 0m.31 0c-.45.17.47-.39 0 0m.14 0c.49-.42.51-.22.5.13c-.43.48-.17-.2-.44.06s-.19-.1-.06-.17zm.83.45c-.5 0 .51-.54 0 0m0 .18c-.2.05 0-.13 0 0m-.16-.35c-.39-.26.94-.61 0 0m.57.09h-.08c-.03-.23.54-.27.08.02zm.15.19c-.3-.08.47-.4 0 0m.36-.1c-.51.18.48-.4 0 0m.22.11l-.12.08c-.23-.14.71-.48.12-.07zm-.43-.53c-.54-.18-1.4-.76-2-.37c-.8.51.41-.56-.24-.08c-.66.79-.45-.5-1.09-.11c0-.12-.57-.16-.17-.37c-.36 0-.13-.05 0-.34c-.16 0-1 0-1.36-.29c-.4-.52.07-.3.48-.23c-.67.12.24.5.68.29c-.2-.09-.43-.52-1-.9a19 19 0 0 0-2.13-1c-.84-.5.18-.18.47.08c.84.37.51-.51 0-.74c-.54 0-.67-.59-1.1-.56c.67.11 1.14-.17.39-.85s.3.63-.11.44c-.19-.25-.05-.6-.65-.73c0 .23-.08.58-.21.1c-.17 0-.36.21-.5-.28c.13-.57-.56-.7-.67-1.06c.6.38.87.08.45-.33s-.33-.11-.49 0c-.59.6-.06-1-.32-.56c-.26 0-.11.29-.1.65c-.86-.21.2.45.45.81c-.39-.4-.32.31-.65 0c-.11-.3-.12-.77-.67-.85c.62-.22-.36-.65-.28-.67c.35-.32.4-.76.82-.07c-.53 0 0 .88.12.6c0-.47.22-1-.59-1.19c-.24.32-.65-.63-.18-.43c-.06-.63.74-.26.69-.53c.42-.18-.5-.77 0-1c.38.24 1.36-.36.7-.44c.42 0 .75.18.79-.24c.33.07 1.24.36.42-.09a3.5 3.5 0 0 1 1.13-.25c.79-.61.63 1 .45 1.45c.3-.21.24.94.14 1.37c.16-.22.23.36 0 .77c0-.07.4-.13.12.35c-.22-.47-.31 1-.17.32c.37-.61.28 0 .39.24c.08.55.32 1.06.4 1.56c.35.35-.15.11-.15.59c.11-.14.58.19.57.68c0-.78.09-.18.47 0a5.5 5.5 0 0 0 1 1.42c.37.43 0 .13.14.39a3.2 3.2 0 0 0 2.09 1.28a1.46 1.46 0 0 0 1.57.7c-.6.37 1.68.47.91.67c-.23.16-.62-.2-1.01-.18zM8.7 15.89c-.24 0 0-.2 0 0m.38.22c-.18 0-.12-.24 0 0m-2.61-3.65c-.24-.07.1-.09 0 0m-.59 0c-.26 0 0-.34 0 0m-.3-.08c-.1.05 0-.11 0 0m11 8.25c-.39-.07.32-.22 0 0m.73-1.05h-.3c.06-.45 1.33-.1 1.85-.09c-.16.34-1.13.04-1.55.13zm2 0c-.27 0 .12-.32 0 0m1-.09c-.25.13 0-.3 0 0m.48.11c-.52-.12.24-.12.4-.14c.94.02 0 .16-.47.16z'/%3E%3Cpath fill='black' d='M6.51 7.11c1-.2-.38-.33-.69 0c.18.13.41-.21.69 0m-.82.13c0 .19.18-.22 0 0m2.62-.48c.67-.11.11-.41-.09.1c.07.14.11-.05.09-.1m-.62.1c.93.36-.05-1 0 0m-2.92.93a.5.5 0 0 1 .33.1c.75.52-.1-.84-.33-.1'/%3E%3Cpath fill='black' d='M4.81 7.43c.16.13.29-.21 0 0m.37.01l.14.12c.68.06-.11-.46-.14-.12M10.69 16c.09.3 0-.39 0 0m-4.78-5c.1.18.18-.18 0 0m.09.61c.19.34 0-.51 0 0m.21-.49c.33.21-.28-.52 0 0m-.41-.82c.07.15.24.16.37.2c1.32.61-.95-1-.37-.2m.54 1.43c.31.53.18-.37 0 0m.48-.16c.37.92-.23-.12-.3-.43a2.1 2.1 0 0 0 .28 1c.34.51.19-.28.55.23c-.2-.45.1-.2.06-.4s-1-1.17-.59-.4m.36 1.78c.09.31.18 0 0 0M5.85 9c.06.14.11 0 0 0m.67.42c.32.41.17-.36 0 0m-.89 1.14l.14.15c.99.29-1.05-.95-.14-.15m.7-.37c1 .41-.09-.27-.44-.2c.11.13.32.07.44.2m-.18-.44c.18.18.82.51.31.06c.32-.06 0-.16-.24-.32c-.44-.67.07.06-.07.26'/%3E%3Cpath fill='black' d='M5.51 10.64c-.53-.44.16.21-.06.2c-.55-.4-.32-.11 0 .2c.33.5.6-.3.06-.4m2.14.64c.12.11-.06-.68 0 0m1.02-3.5c0 .12.07-.1 0 0M9 12.47c0 .21 0-.18 0 0m-.29-1.22c.08.46.1-.78 0 0m.14.22v.1c.21-.51.04-.79 0-.1m-.1-2.7c-.14.7-.27.41-.08-.11c-.05-.67-.45.41-.27.72c.29.47.6-1.16.35-.61m1.01 5.98c.13.35.11-.42 0 0m-1.35-4.28c0 .2 0-.14 0 0m.64 1.7c0 .26.11-.38 0 0M9.5 14l.07.11c.14-.49-.36-.79-.07-.11m-1.56-.52c.27.22-.13-.23 0 0m1.23-.85c.08.29 0-.42 0 0M8.14 9.81c.15.33-.05-.27 0 0'/%3E%3Cpath fill='black' d='M8.3 10.23c.24.34-.26-.64 0 0m-.06 1.15c-.13-1-.42.45 0 .69c.13.34.25.2.3-.19c-.32 0 .08-.62-.3-.5'/%3E%3C/svg%3E"); } .bxl-flickr { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.157 12a4.573 4.573 0 1 1-9.147 0a4.573 4.573 0 0 1 9.147 0m10.833 0a4.573 4.573 0 1 1-9.147 0a4.573 4.573 0 0 1 9.147 0'/%3E%3C/svg%3E"); } .bxl-flickr-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M8.747 14.746A2.745 2.745 0 1 1 11.494 12a2.744 2.744 0 0 1-2.747 2.746m6.506 0a2.746 2.746 0 1 1-.001-5.493a2.746 2.746 0 0 1 .001 5.493'/%3E%3C/svg%3E"); } .bxl-flutter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.9 2.01L3.9 12l3.09 3.09l2.71-2.7L20.09 2zm.82 14.6l5.39-5.38h-5.93c-.11 0-.26 0-.34.07l-2.23 2.23l-3.09 3.07l3.09 3.1l2.15 2.15c.07.07.14.17.26.15h6.07z'/%3E%3C/svg%3E"); } .bxl-foursquare { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m17.549 5.557l-.403 2.113c-.049.229-.337.47-.605.47h-3.76c-.425 0-.729.296-.729.714v.463c0 .43.307.725.73.725h3.194c.298 0 .591.33.524.646l-.404 2.083c-.037.181-.237.475-.592.475h-2.609c-.477 0-.617.069-.936.454c-.316.395-3.175 3.827-3.175 3.827c-.026.033-.054.022-.054-.011V5.522c0-.271.234-.588.586-.588h7.756c.283 0 .549.269.477.618zm.341 8.288c.111-.437 1.319-6.63 1.722-8.593m-1.489-2.311H8.457c-1.33 0-1.723 1.002-1.723 1.635v15.353c0 .71.381.975.596 1.062s.807.161 1.163-.247c0 0 4.563-5.296 4.64-5.373c.125-.118.125-.118.238-.118h2.954c1.245 0 1.438-.885 1.574-1.405c.114-.429 1.325-6.622 1.721-8.595c.307-1.496-.079-2.311-1.495-2.311h-.002z'/%3E%3C/svg%3E"); } .bxl-git { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.62 11.108l-8.731-8.729a1.29 1.29 0 0 0-1.823 0L9.257 4.19l2.299 2.3a1.532 1.532 0 0 1 1.939 1.95l2.214 2.217a1.53 1.53 0 0 1 1.583 2.531c-.599.6-1.566.6-2.166 0a1.54 1.54 0 0 1-.337-1.662l-2.074-2.063V14.9c.146.071.286.169.407.29a1.537 1.537 0 0 1 0 2.166a1.536 1.536 0 0 1-2.174 0a1.53 1.53 0 0 1 0-2.164q.23-.226.504-.339v-5.49a1.53 1.53 0 0 1-.83-2.008l-2.26-2.271l-5.987 5.982c-.5.504-.5 1.32 0 1.824l8.731 8.729a1.286 1.286 0 0 0 1.821 0l8.69-8.689a1.284 1.284 0 0 0 .003-1.822'/%3E%3C/svg%3E"); } .bxl-github { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M12.026 2c-5.509 0-9.974 4.465-9.974 9.974c0 4.406 2.857 8.145 6.821 9.465c.499.09.679-.217.679-.481c0-.237-.008-.865-.011-1.696c-2.775.602-3.361-1.338-3.361-1.338c-.452-1.152-1.107-1.459-1.107-1.459c-.905-.619.069-.605.069-.605c1.002.07 1.527 1.028 1.527 1.028c.89 1.524 2.336 1.084 2.902.829c.091-.645.351-1.085.635-1.334c-2.214-.251-4.542-1.107-4.542-4.93c0-1.087.389-1.979 1.024-2.675c-.101-.253-.446-1.268.099-2.64c0 0 .837-.269 2.742 1.021a9.6 9.6 0 0 1 2.496-.336a9.6 9.6 0 0 1 2.496.336c1.906-1.291 2.742-1.021 2.742-1.021c.545 1.372.203 2.387.099 2.64c.64.696 1.024 1.587 1.024 2.675c0 3.833-2.33 4.675-4.552 4.922c.355.308.675.916.675 1.846c0 1.334-.012 2.41-.012 2.737c0 .267.178.577.687.479C19.146 20.115 22 16.379 22 11.974C22 6.465 17.535 2 12.026 2' clip-rule='evenodd'/%3E%3C/svg%3E"); } .bxl-gitlab { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.892 9.889a1 1 0 0 0-.025-.087l-2.104-6.479a.84.84 0 0 0-.8-.57a.82.82 0 0 0-.789.575l-2.006 6.175H8.834L6.826 3.327a.82.82 0 0 0-.786-.575h-.006a.84.84 0 0 0-.795.575L3.133 9.815c0 .005-.005.01-.007.016l-1.067 3.281a1.195 1.195 0 0 0 .435 1.34l9.227 6.706c.167.121.393.12.558-.003l9.229-6.703a1.2 1.2 0 0 0 .435-1.34zM17.97 3.936l1.809 5.566H16.16zm-11.94 0l1.812 5.566H4.228zm-2.982 9.752a.25.25 0 0 1-.093-.284l.793-2.437l5.817 7.456zm1.499-3.239h3.601l2.573 7.916zm7.452 8.794l-2.856-8.798h5.718l-1.792 5.515zm1.282-.877l2.467-7.588l.106-.329h3.604l-5.586 7.156zm7.671-4.678l-6.519 4.733l.022-.029l5.794-7.425l.792 2.436a.25.25 0 0 1-.089.285'/%3E%3C/svg%3E"); } .bxl-gmail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m18.73 5.41l-1.28 1L12 10.46L6.55 6.37l-1.28-1A2 2 0 0 0 2 7.05v11.59A1.36 1.36 0 0 0 3.36 20h3.19v-7.72L12 16.37l5.45-4.09V20h3.19A1.36 1.36 0 0 0 22 18.64V7.05a2 2 0 0 0-3.27-1.64'/%3E%3C/svg%3E"); } .bxl-go-lang { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3.79 10.17a.2.2 0 0 0-.11 0l-.2.27H7a.15.15 0 0 0 .1-.06l.17-.26v-.05zm-1.47.89a.14.14 0 0 0-.11 0l-.2.26v.05h4.6a.09.09 0 0 0 .09-.06l.08-.23v-.06zM4.6 12a.13.13 0 0 0-.1.06l-.13.24v.06h2.15a.08.08 0 0 0 .07-.07v-.23s0-.07-.06-.07zm15.99-3.07a3.62 3.62 0 0 0-2.78-.5a4.1 4.1 0 0 0-2.72 1.63a4 4 0 0 0-.67 1.26h-3.14a.25.25 0 0 0-.24.16c-.14.25-.37.76-.5 1.06s0 .29.18.29h1.88a3 3 0 0 1-.26.36a1.81 1.81 0 0 1-1.65.65a1.53 1.53 0 0 1-1.32-1.53a2.07 2.07 0 0 1 1-1.85a1.71 1.71 0 0 1 1.77-.15a1.4 1.4 0 0 1 .45.37c.13.15.14.14.29.1l1.63-.43c.12 0 .16-.08.1-.16a3 3 0 0 0-1.13-1.38a3.35 3.35 0 0 0-2.58-.47A4.3 4.3 0 0 0 8.16 10a3.8 3.8 0 0 0-.82 2.85A3 3 0 0 0 8.57 15a3.46 3.46 0 0 0 2.62.65A4.06 4.06 0 0 0 14 14a4.3 4.3 0 0 0 .41-.69a3 3 0 0 0 1 1.55a3.68 3.68 0 0 0 2.38.86c.25 0 .51 0 .78-.09a4.5 4.5 0 0 0 2.33-1.25A3.72 3.72 0 0 0 22 11.1a3 3 0 0 0-1.41-2.17m-1.78 4.73a1.81 1.81 0 0 1-1.59.06a1.61 1.61 0 0 1-.9-1.84A2.12 2.12 0 0 1 18 10.19a1.59 1.59 0 0 1 2 1.29a3 3 0 0 1 0 .32a2.11 2.11 0 0 1-1.19 1.86'/%3E%3C/svg%3E"); } .bxl-google { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.283 10.356h-8.327v3.451h4.792c-.446 2.193-2.313 3.453-4.792 3.453a5.27 5.27 0 0 1-5.279-5.28a5.27 5.27 0 0 1 5.279-5.279c1.259 0 2.397.447 3.29 1.178l2.6-2.599c-1.584-1.381-3.615-2.233-5.89-2.233a8.91 8.91 0 0 0-8.934 8.934a8.907 8.907 0 0 0 8.934 8.934c4.467 0 8.529-3.249 8.529-8.934c0-.528-.081-1.097-.202-1.625'/%3E%3C/svg%3E"); } .bxl-google-cloud { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.511 9.722a7.83 7.83 0 0 0-2.359-3.804l-.035.035l.005-.042A7.81 7.81 0 0 0 4.418 9.722c.031-.013.066-.013.099-.023a5.643 5.643 0 0 0-.306 9.166l.006-.006l-.006.024a5.6 5.6 0 0 0 3.407 1.134h4.321l.024.024h4.341a5.644 5.644 0 0 0 3.207-10.319m-3.206 6.845h-4.341l-.006.006v-.031h-4.34c-.308 0-.611-.066-.892-.193l.002-.001a2.17 2.17 0 1 1 2.87-2.871l2.518-2.518a5.63 5.63 0 0 0-3.396-2.1c.018-.009.035-.024.05-.021a4.334 4.334 0 0 1 5.931-.451h.046a4.33 4.33 0 0 1 1.558 3.407v.433a2.17 2.17 0 1 1 0 4.34'/%3E%3C/svg%3E"); } .bxl-google-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.545 15.025v-2.421h2.422v-1.815h-2.422V8.368H17.73v2.421h-2.421v1.815h2.421v2.421zM8.052 8.302c1.133 0 1.896.484 2.33.896l1.722-1.67c-1.048-.98-2.415-1.58-4.052-1.58C4.714 5.947 2 8.659 2 12s2.714 6.053 6.052 6.053c3.493 0 5.812-2.457 5.812-5.913c0-.503-.064-.86-.153-1.24H8.049v2.256h3.332c-.158.951-1.011 2.556-3.329 2.556c-2.003 0-3.637-1.665-3.637-3.704c0-2.042 1.634-3.706 3.637-3.706'/%3E%3C/svg%3E"); } .bxl-google-plus-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M22.014 11.974C21.996 6.462 17.521 2 12.008 2C6.493 2 2.019 6.462 2.001 11.974L2 11.948v.112l.001-.023c.017 5.513 4.491 9.977 10.007 9.977c5.514 0 9.988-4.462 10.006-9.974l.001.026v-.118zM9.281 16.557c-2.509 0-4.548-2.039-4.548-4.549s2.039-4.549 4.548-4.549c1.23 0 2.258.451 3.046 1.188l-1.295 1.255c-.325-.309-.899-.673-1.751-.673c-1.505 0-2.733 1.251-2.733 2.785c0 1.533 1.229 2.784 2.733 2.784c1.742 0 2.384-1.206 2.502-1.92H9.279V11.18h4.255c.066.286.115.554.115.932c0 2.597-1.742 4.445-4.368 4.445m10.458-4.095H17.92v1.819h-1.364v-1.819h-1.82v-1.364h1.82v-1.82h1.364v1.82h1.819z'/%3E%3C/svg%3E"); } .bxl-graphql { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.1 14.56a2 2 0 0 0-.47-.18V9.62a1.6 1.6 0 0 0 .48-.18a1.78 1.78 0 0 0-1.78-3.09a1.6 1.6 0 0 0-.41.32l-4.11-2.38a1.7 1.7 0 0 0 .07-.51a1.78 1.78 0 0 0-3.56 0a1.7 1.7 0 0 0 .07.51L6.28 6.66a1.6 1.6 0 0 0-.41-.31a1.78 1.78 0 0 0-1.78 3.09a1.6 1.6 0 0 0 .48.18v4.76a2 2 0 0 0-.47.18a1.78 1.78 0 1 0 1.78 3.09a1.7 1.7 0 0 0 .4-.31l4.11 2.37a1.7 1.7 0 0 0-.07.51a1.78 1.78 0 0 0 3.56 0a1.7 1.7 0 0 0-.09-.56l4.09-2.36a1.7 1.7 0 0 0 .44.35a1.78 1.78 0 1 0 1.78-3.09M6.72 15.69a1.7 1.7 0 0 0-.19-.47a1.5 1.5 0 0 0-.31-.4l5.38-9.33a1.8 1.8 0 0 0 1 0l5.4 9.33a1.5 1.5 0 0 0-.31.4a1.7 1.7 0 0 0-.19.47zM17.5 7.4a1.8 1.8 0 0 0 .17 1.38a1.75 1.75 0 0 0 1.12.84v4.76h-.07l-5.39-9.31l.05-.07zM10.82 5a.1.1 0 0 0 0 .05L5.48 14.4h-.07V9.62a1.75 1.75 0 0 0 1.12-.84A1.8 1.8 0 0 0 6.7 7.4zm2.6 14a1.78 1.78 0 0 0-1.32-.58a1.75 1.75 0 0 0-1.28.54L6.7 16.6v-.06h10.78v.11z'/%3E%3C/svg%3E"); } .bxl-heroku { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.17 2H4.83A1.79 1.79 0 0 0 3 3.8v16.4A1.79 1.79 0 0 0 4.83 22h14.34A1.8 1.8 0 0 0 21 20.2V3.8A1.8 1.8 0 0 0 19.17 2M20 20.2a.8.8 0 0 1-.81.8H4.83a.79.79 0 0 1-.8-.8V3.8a.79.79 0 0 1 .8-.8h14.34a.8.8 0 0 1 .81.8z'/%3E%3Cpath fill='black' d='m7.53 19l2.25-2l-2.25-2zm5.69-9a12 12 0 0 0-3.75.7V5h-2v8.65L8.88 13a12.3 12.3 0 0 1 4.29-1c1 0 1.25.55 1.25 1.05v6h2V13a2.68 2.68 0 0 0-.8-2.1a3.27 3.27 0 0 0-2.4-.9M13 8.25h2A5.9 5.9 0 0 0 16.47 5h-2A7.2 7.2 0 0 1 13 8.25'/%3E%3C/svg%3E"); } .bxl-html5 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.136 3.012h15.729l-1.431 16.15l-6.451 1.826l-6.414-1.826zm5.266 7.302l-.173-2.035l7.533.002l.173-1.963l-9.87-.002l.522 5.998h6.835l-.243 2.566l-2.179.602l-2.214-.605l-.141-1.58H7.691l.247 3.123L12 17.506l4.028-1.08l.558-6.111H9.402z'/%3E%3C/svg%3E"); } .bxl-imdb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.646 10.237q-.085-.048-.313-.048v3.542q.301 0 .371-.122c.07-.122.07-.301.07-.66v-2.092q0-.366-.023-.469a.22.22 0 0 0-.105-.151m3.499 1.182q-.124 0-.162.091q-.037.091-.037.46v1.426q0 .355.041.456q.044.1.168.1c.086 0 .199-.035.225-.103q.04-.104.039-.495V11.97q0-.342-.043-.447c-.032-.069-.147-.104-.231-.104'/%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M6.631 14.663H5.229V9.266h1.402zm4.822 0H10.23l-.006-3.643l-.49 3.643h-.875L8.342 11.1l-.004 3.563H7.111V9.266H8.93q.077.49.166 1.15l.201 1.371l.324-2.521h1.832zm3.664-1.601c0 .484-.027.808-.072.97a.73.73 0 0 1-.238.383a1 1 0 0 1-.422.193q-.25.055-.754.055h-1.699V9.266h1.047c.678 0 1.07.031 1.309.093q.36.093.545.306q.188.213.234.475c.031.174.051.516.051 1.026zm3.654.362q0 .486-.066.723a.76.76 0 0 1-.309.413a.95.95 0 0 1-.572.174c-.158 0-.365-.035-.502-.104a1.1 1.1 0 0 1-.377-.312l-.088.344h-1.262V9.266h1.35v1.755a1.1 1.1 0 0 1 .375-.289c.137-.064.344-.096.504-.096q.28 0 .484.087a.72.72 0 0 1 .44.549q.023.15.023.638z'/%3E%3C/svg%3E"); } .bxl-instagram { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.999 7.377a4.623 4.623 0 1 0 0 9.248a4.623 4.623 0 0 0 0-9.248m0 7.627a3.004 3.004 0 1 1 0-6.008a3.004 3.004 0 0 1 0 6.008'/%3E%3Ccircle cx='16.806' cy='7.207' r='1.078' fill='black'/%3E%3Cpath fill='black' d='M20.533 6.111A4.6 4.6 0 0 0 17.9 3.479a6.6 6.6 0 0 0-2.186-.42c-.963-.042-1.268-.054-3.71-.054s-2.755 0-3.71.054a6.6 6.6 0 0 0-2.184.42a4.6 4.6 0 0 0-2.633 2.632a6.6 6.6 0 0 0-.419 2.186c-.043.962-.056 1.267-.056 3.71s0 2.753.056 3.71c.015.748.156 1.486.419 2.187a4.6 4.6 0 0 0 2.634 2.632a6.6 6.6 0 0 0 2.185.45c.963.042 1.268.055 3.71.055s2.755 0 3.71-.055a6.6 6.6 0 0 0 2.186-.419a4.6 4.6 0 0 0 2.633-2.633c.263-.7.404-1.438.419-2.186c.043-.962.056-1.267.056-3.71s0-2.753-.056-3.71a6.6 6.6 0 0 0-.421-2.217m-1.218 9.532a5 5 0 0 1-.311 1.688a3 3 0 0 1-1.712 1.711a5 5 0 0 1-1.67.311c-.95.044-1.218.055-3.654.055c-2.438 0-2.687 0-3.655-.055a5 5 0 0 1-1.669-.311a3 3 0 0 1-1.719-1.711a5.1 5.1 0 0 1-.311-1.669c-.043-.95-.053-1.218-.053-3.654s0-2.686.053-3.655a5 5 0 0 1 .311-1.687c.305-.789.93-1.41 1.719-1.712a5 5 0 0 1 1.669-.311c.951-.043 1.218-.055 3.655-.055s2.687 0 3.654.055a5 5 0 0 1 1.67.311a3 3 0 0 1 1.712 1.712a5.1 5.1 0 0 1 .311 1.669c.043.951.054 1.218.054 3.655s0 2.698-.043 3.654z'/%3E%3C/svg%3E"); } .bxl-instagram-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.947 8.305a6.5 6.5 0 0 0-.419-2.216a4.6 4.6 0 0 0-2.633-2.633a6.6 6.6 0 0 0-2.186-.42c-.962-.043-1.267-.055-3.709-.055s-2.755 0-3.71.055a6.6 6.6 0 0 0-2.185.42a4.6 4.6 0 0 0-2.633 2.633a6.6 6.6 0 0 0-.419 2.185c-.043.963-.056 1.268-.056 3.71s0 2.754.056 3.71c.015.748.156 1.486.419 2.187a4.6 4.6 0 0 0 2.634 2.632a6.6 6.6 0 0 0 2.185.45c.963.043 1.268.056 3.71.056s2.755 0 3.71-.056a6.6 6.6 0 0 0 2.186-.419a4.62 4.62 0 0 0 2.633-2.633c.263-.7.404-1.438.419-2.187c.043-.962.056-1.267.056-3.71c-.002-2.442-.002-2.752-.058-3.709m-8.953 8.297c-2.554 0-4.623-2.069-4.623-4.623s2.069-4.623 4.623-4.623a4.623 4.623 0 0 1 0 9.246m4.807-8.339a1.077 1.077 0 0 1-1.078-1.078a1.077 1.077 0 1 1 2.155 0c0 .596-.482 1.078-1.077 1.078'/%3E%3Ccircle cx='11.994' cy='11.979' r='3.003' fill='black'/%3E%3C/svg%3E"); } .bxl-internet-explorer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.154 8.514c.85-2.039.906-3.738-.113-4.757c-1.133-1.132-3.852-.792-6.737.565h-.341c-2.037 0-4.02.738-5.492 2.039c-1.244 1.133-2.15 2.605-2.547 4.246c.283-.337 1.869-2.207 3.68-3.226c.058 0 .51-.283.51-.283c-.057 0-.905.85-1.074 1.02c-3.965 4.076-6.285 10.248-4.473 12.059c1.188 1.189 3.34.906 5.831-.452c1.075.51 2.265.735 3.565.735c1.699 0 3.285-.453 4.643-1.359c1.416-.906 2.436-2.319 3.059-3.962h-4.416c-.566 1.075-1.869 1.812-3.227 1.812c-1.926 0-3.512-1.586-3.568-3.397v-.169h11.551v-.17c0-.283.057-.623.057-.848c-.001-1.362-.341-2.664-.908-3.853M4.811 19.838c-.906-.906-.621-2.662.453-4.756c.51 1.416 1.359 2.662 2.435 3.567c.341.282.735.565 1.133.792c-1.814.963-3.285 1.133-4.021.397m11.606-8.606H9.51v-.057c.113-1.756 1.754-3.285 3.681-3.285c1.812 0 3.284 1.416 3.397 3.285v.057zm3.454-3.171a7 7 0 0 0-1.303-1.585a8.5 8.5 0 0 0-2.718-1.699c1.813-.849 3.341-.961 4.134-.169c.623.736.567 1.981-.113 3.453q0 .086 0 0q0 .086 0 0'/%3E%3C/svg%3E"); } .bxl-invision { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.361 3.008H4.638c-.901 0-1.63.729-1.63 1.63v14.724c0 .9.729 1.631 1.63 1.631h14.724c.9 0 1.631-.73 1.631-1.631V4.638a1.63 1.63 0 0 0-1.632-1.63M9.018 6.505c.597 0 1.098.472 1.098 1.078c0 .616-.501 1.08-1.098 1.08v.022c-.604 0-1.09-.486-1.09-1.088c0-.605.486-1.092 1.09-1.092m7.354 10.352c-1.112 0-1.651-.662-1.651-1.566c0-.26.033-.533.114-.812l.528-1.906c.068-.208.086-.405.086-.581c0-.615-.375-.984-.971-.984c-.761 0-1.26.543-1.52 1.598l-1.033 4.146h-1.811l.327-1.303c-.534.873-1.271 1.412-2.183 1.412c-1.102 0-1.617-.632-1.617-1.584a4 4 0 0 1 .096-.811l.826-3.366H6.285l.388-1.43h3.075l-1.216 4.804c-.08.309-.11.559-.11.738c0 .307.148.396.385.452c.146.03 1.295.011 1.918-1.376l.798-3.188h-1.294l.391-1.404h2.787l-.359 1.617c.484-.899 1.452-1.762 2.406-1.762c1.012 0 1.855.728 1.855 2.111c0 .4-.063.796-.18 1.18l-.52 1.858a2.3 2.3 0 0 0-.075.492c0 .326.136.484.368.484c.238 0 .553-.181.899-1.172l.708.272c-.414 1.473-1.182 2.081-2.137 2.081'/%3E%3C/svg%3E"); } .bxl-java { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.37 17.51c-3.09.86 1.87 2.64 5.8 1a7 7 0 0 1-1.1-.54a11.6 11.6 0 0 1-4.16.18c-1.31-.15-.54-.64-.54-.64m5.33-1.68a16.3 16.3 0 0 1-5.36.26c-1.31-.14-.45-.77-.45-.77c-3.4 1.12 1.89 2.4 6.64 1a2.25 2.25 0 0 1-.83-.49m1.82-9.73s-6.87 1.71-3.59 5.49a1.47 1.47 0 0 1-.25 2.12s2.46-1.27 1.33-2.86s-1.86-2.22 2.51-4.75'/%3E%3Cpath fill='black' d='M18.13 19.14s.56.46-.63.82c-2.27.69-9.43.9-11.42 0c-.72-.31.62-.74 1-.83a2.5 2.5 0 0 1 .69-.08c-.8-.56-5.15 1.1-2.21 1.58c8.05 1.37 14.64-.56 12.57-1.49m-2.76-4.88a7 7 0 0 1 .92-.49s-1.51.27-3 .4a28 28 0 0 1-4.82.05C6.09 13.91 9.74 13 9.74 13a6.8 6.8 0 0 0-3.16.75c-2.06 1.03 5.09 1.48 8.79.51m.91 2.44a.4.4 0 0 1-.08.09c5-1.32 3.18-4.65.78-3.81a.7.7 0 0 0-.33.25s.14-.05.43-.12c1.22-.25 2.92 1.63-.8 3.59M12 13c-.74-1.67-3.26-3.14 0-5.71C16.09 4.08 14 2 14 2c.84 3.31-3 4.31-4.34 6.37c-.93 1.41.47 2.92 2.34 4.63'/%3E%3Cpath fill='black' d='M16.41 21.32a29.8 29.8 0 0 1-9.14.14s.46.38 2.84.53c3.61.23 9.15-.12 9.29-1.83c0 0-.26.64-2.99 1.16'/%3E%3C/svg%3E"); } .bxl-javascript { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 3h18v18H3zm16.525 13.707c-.131-.821-.666-1.511-2.252-2.155c-.552-.259-1.165-.438-1.349-.854c-.068-.248-.078-.382-.034-.529c.113-.484.687-.629 1.137-.495c.293.09.563.315.732.676c.775-.507.775-.507 1.316-.844c-.203-.314-.304-.451-.439-.586c-.473-.528-1.103-.798-2.126-.775l-.528.067c-.507.124-.991.395-1.283.754c-.855.968-.608 2.655.427 3.354c1.023.765 2.521.933 2.712 1.653c.18.878-.652 1.159-1.475 1.058c-.607-.136-.945-.439-1.316-1.002l-1.372.788c.157.359.337.517.607.832c1.305 1.316 4.568 1.249 5.153-.754c.021-.067.18-.528.056-1.237zm-6.737-5.434h-1.686c0 1.453-.007 2.898-.007 4.354c0 .924.047 1.772-.104 2.033c-.247.517-.886.451-1.175.359c-.297-.146-.448-.349-.623-.641c-.047-.078-.082-.146-.095-.146l-1.368.844c.229.473.563.879.994 1.137c.641.383 1.502.507 2.404.305c.588-.17 1.095-.519 1.358-1.059c.384-.697.302-1.553.299-2.509c.008-1.541 0-3.083 0-4.635z'/%3E%3C/svg%3E"); } .bxl-joomla { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m15.539 14.059l-1.874 1.875l-1.777 1.777l-.347.35a3.99 3.99 0 0 1-3.785 1.048A2.41 2.41 0 0 1 3 18.567c0-1.138.792-2.092 1.852-2.342a3.99 3.99 0 0 1 1.047-3.811l.135-.135l1.777 1.778l-.138.135a1.48 1.48 0 0 0 0 2.092a1.46 1.46 0 0 0 2.09 0l.349-.349l1.775-1.778l1.877-1.879zm.693 4.988a3.99 3.99 0 0 1-3.996-.988l-.135-.139l1.773-1.777l.135.139a1.48 1.48 0 0 0 2.09 0a1.474 1.474 0 0 0-.002-2.086l-.35-.349l-1.773-1.777l-1.877-1.878l1.777-1.776l1.875 1.879l1.774 1.777l.349.349a3.96 3.96 0 0 1 1.058 3.766a2.407 2.407 0 0 1-.336 4.79a2.39 2.39 0 0 1-2.352-1.924zm-8.001-8.962l1.881-1.879l1.777-1.777l.347-.346a3.97 3.97 0 0 1 3.949-1.002a2.408 2.408 0 1 1 2.699 2.716a3.98 3.98 0 0 1-1.012 3.925l-.137.139l-1.777-1.777l.139-.138a1.474 1.474 0 1 0-2.086-2.085l-.347.346l-1.777 1.776l-1.879 1.876zm-1.99 1.984l-.346-.347a3.98 3.98 0 0 1-.999-3.965a2.414 2.414 0 0 1-1.874-2.35A2.41 2.41 0 0 1 5.43 3c1.197 0 2.19.875 2.378 2.019a3.99 3.99 0 0 1 3.734 1.061l.138.14l-1.778 1.776l-.137-.136a1.48 1.48 0 0 0-2.088 0a1.48 1.48 0 0 0-.004 2.092l.349.35l1.777 1.777l1.879 1.879l-1.775 1.777l-1.883-1.879l-1.778-1.777z'/%3E%3C/svg%3E"); } .bxl-jquery { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3.345 6.935c-1.756 2.523-1.538 5.806-.196 8.487l.098.19q.03.061.063.121q.019.036.039.069a8 8 0 0 0 .198.344l.073.12a9 9 0 0 0 .211.33a10 10 0 0 0 .221.319l.036.049q.095.132.196.261l.074.094l.182.223l.069.082q.124.146.252.289l.005.005q.006.005.01.011q.126.136.256.271l.083.083l.205.201l.084.08q.138.13.281.256l.004.004l.049.041q.125.11.255.215l.105.084a11 11 0 0 0 .565.424q.043.032.087.062l.024.017q.115.079.231.153q.049.034.101.067a11 11 0 0 0 .886.509l.195.101l.045.022l.08.039q.153.073.308.143l.066.029q.178.078.36.149l.088.035a14 14 0 0 0 .382.142q.188.066.38.124l.092.028c.128.039.256.085.39.11c8.492 1.548 10.958-5.102 10.958-5.102c-2.072 2.698-5.748 3.41-9.232 2.618c-.132-.03-.261-.071-.39-.109l-.097-.029a11 11 0 0 1-.755-.264l-.093-.036q-.18-.071-.356-.148l-.071-.031a12 12 0 0 1-.301-.14l-.087-.042q-.117-.058-.232-.118q-.078-.04-.155-.082a8 8 0 0 1-.278-.156l-.094-.052a11 11 0 0 1-.363-.223l-.098-.065a11 11 0 0 1-.259-.172l-.083-.059q-.123-.087-.244-.176a12 12 0 0 1-.328-.255l-.099-.079q-.138-.113-.274-.231a12 12 0 0 1-.319-.288q-.042-.038-.081-.078a8 8 0 0 1-.208-.203l-.081-.081a11 11 0 0 1-.254-.269l-.012-.012a12 12 0 0 1-.258-.293l-.067-.081a10 10 0 0 1-.254-.313a12 12 0 0 1-.215-.286C3.864 11.825 3.17 8.186 4.715 5.198'/%3E%3Cpath fill='black' d='M8.794 4.809c-1.27 1.827-1.2 4.273-.21 6.205q.249.488.561.938c.191.273.401.597.654.816q.138.151.284.295l.076.074q.14.138.291.271l.011.01l.003.002q.166.145.34.281l.078.06a8 8 0 0 0 .366.268q.08.055.161.107l.078.051a7 7 0 0 0 .301.184q.115.066.233.13l.082.043q.082.043.163.083a10 10 0 0 0 .365.171l.074.031q.139.059.281.113l.117.044q.129.047.256.089l.117.037c.121.038.243.085.37.107c6.556 1.086 8.068-3.961 8.068-3.961c-1.364 1.964-4.006 2.902-6.825 2.17a8 8 0 0 1-.743-.232l-.118-.043a8 8 0 0 1-.353-.145a9 9 0 0 1-.344-.159l-.17-.087l-.099-.051a9 9 0 0 1-.533-.313l-.08-.053a8 8 0 0 1-.602-.435c-1.234-.974-2.213-2.306-2.678-3.815c-.488-1.566-.382-3.323.462-4.75'/%3E%3Cpath fill='black' d='M13.379 3.221c-.749 1.102-.823 2.469-.304 3.686c.548 1.292 1.671 2.304 2.981 2.785a4 4 0 0 0 .234.079c.077.024.152.053.233.067c3.62.699 4.601-1.857 4.862-2.234c-.86 1.239-2.306 1.536-4.078 1.105a5.4 5.4 0 0 1-.939-.344a5.4 5.4 0 0 1-.895-.545c-1.585-1.204-2.573-3.501-1.536-5.372'/%3E%3C/svg%3E"); } .bxl-jsfiddle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.58 11.375c.008-.117.018-.231.018-.35c0-3.243-2.668-5.871-5.959-5.871A5.97 5.97 0 0 0 8.26 8.502a2.73 2.73 0 0 0-1.674-.568c-1.521 0-2.752 1.21-2.752 2.704q.001.426.125.808a3.96 3.96 0 0 0-1.98 3.418c0 2.173 1.773 3.938 3.975 3.972h11.898c.074 0 .15.012.227.012c2.178 0 3.943-1.739 3.943-3.893a3.885 3.885 0 0 0-2.432-3.579h-.01zM7.355 15.842a2.33 2.33 0 0 1-.748-1.318a3 3 0 0 1-.053-.544q0-1.108.809-1.827q.806-.721 2.049-.722c.854 0 1.654.32 2.363.957c.176.158.352.338.514.536l.912 1.071c.158.217.324.399.5.56c.471.422.977.632 1.408.632q.548 0 .912-.336c.209-.19.336-.45.363-.73l.008-.123a1 1 0 0 0-.055-.347a1.275 1.275 0 0 0-1.238-.838c-.453 0-.902.153-1.396.631l-.807-.95l-.088-.108c.713-.691 1.414-.95 2.367-.95c.838 0 1.525.237 2.037.712l.014.014c.539.474.801 1.089.801 1.842a2.6 2.6 0 0 1-.049.528a2.38 2.38 0 0 1-.74 1.301a2.7 2.7 0 0 1-1.428.677a5 5 0 0 1-.588.038c-.863 0-1.676-.313-2.365-.938a5 5 0 0 1-.537-.576l-.914-1.065a3.6 3.6 0 0 0-.488-.563c-.463-.425-.977-.626-1.428-.626q-.194 0-.389.051a1.2 1.2 0 0 0-.523.289c-.232.216-.365.52-.365.839c0 .324.113.6.352.825l.014.013c.25.227.563.338.926.338c.463 0 .914-.162 1.4-.639l.801.938l.088.099c-.725.703-1.428.965-2.342.965c-.838 0-1.525-.238-2.051-.713z'/%3E%3C/svg%3E"); } .bxl-kickstarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10.198 9.127l3.309-4.799c.628-.902 1.434-1.354 2.427-1.354q1.21 0 2.097.861q.885.86.885 2.059q.001.886-.469 1.563l-2.983 4.34l3.649 4.627q.546.691.547 1.617q0 1.224-.86 2.105a2.8 2.8 0 0 1-2.084.879q-1.342 0-2.047-.873L10.2 14.574v3.074q0 1.318-.457 2.049c-.555.885-1.356 1.328-2.417 1.328q-1.446-.002-2.24-.977q-.744-.902-.744-2.387V6.258q.001-1.404.755-2.318q.789-.965 2.186-.965q1.33 0 2.216.965q.493.535.625 1.082c.053.227.079.646.079 1.266v2.84z'/%3E%3C/svg%3E"); } .bxl-kubernetes { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10.013 13.738l-2.254.387a4.47 4.47 0 0 0 1.753 2.231l.865-2.095a.27.27 0 0 0 .022-.228c-.022-.18-.204-.295-.386-.295m.865-2.914c.205 0 .387-.159.387-.364l.114-2.277l-.456.091a4.5 4.5 0 0 0-2.118 1.162l1.89 1.343c.069.022.115.045.183.045m-1.002 1.48a.366.366 0 0 0-.045-.524l-1.685-1.503a4.8 4.8 0 0 0-.661 2.778l2.209-.637c.091-.023.137-.046.182-.114m1.457.797l.616.296l.614-.296l.16-.661l-.433-.546h-.683l-.433.546zm1.344-2.436c.114.159.341.182.5.091l1.867-1.32a4.3 4.3 0 0 0-2.573-1.23l.137 2.3a.22.22 0 0 0 .069.159'/%3E%3Cpath fill='black' d='m21.944 14.103l-1.73-7.446c-.113-.364-.387-.66-.729-.842L12.541 2.49c-.182-.091-.387-.114-.569-.114s-.387 0-.569.045L4.457 5.769a1.22 1.22 0 0 0-.683.842l-1.708 7.492c-.068.387.023.774.25 1.093l4.805 5.943c.273.273.66.456 1.047.479h7.651c.41.045.797-.137 1.048-.479l4.805-5.943c.227-.319.318-.706.272-1.093m-2.845.501c-.046 0-.068 0-.114-.023c-.022-.023-.022-.023-.045-.023c-.046 0-.068-.022-.092-.022c-.091-.023-.159-.068-.25-.114a.3.3 0 0 1-.137-.045h-.022a4 4 0 0 0-.729-.205h-.022a.26.26 0 0 0-.182.068s0 .023-.023.023l-.183-.024a5.63 5.63 0 0 1-2.46 3.097l.068.182s-.022 0-.022.022a.26.26 0 0 0-.022.228c.091.228.205.455.364.66v.045a.4.4 0 0 1 .091.114a.8.8 0 0 1 .159.228c.023.022.046.045.046.068c0 0 .022 0 .022.022a.6.6 0 0 1 .023.342a.38.38 0 0 1-.205.25c-.068.022-.114.045-.183.045a.51.51 0 0 1-.433-.273c-.022 0-.022-.022-.022-.022c-.022-.023-.022-.045-.046-.068c-.045-.068-.068-.159-.091-.25l-.046-.137v-.022a4 4 0 0 0-.296-.706a.35.35 0 0 0-.182-.137c0-.023 0-.023-.023-.023l-.091-.159c-.228.068-.479.159-.729.205c-.41.114-.82.159-1.229.159a5.4 5.4 0 0 1-1.981-.364l-.091.182c0 .023 0 .023-.023.023a.35.35 0 0 0-.182.137c-.114.228-.228.455-.296.706l-.045.137c-.023.091-.068.159-.091.25c-.022.023-.045.045-.045.068c-.023 0-.023.022-.023.022a.51.51 0 0 1-.433.273a.4.4 0 0 1-.159-.045a.47.47 0 0 1-.182-.615c.023 0 .023-.023.023-.023c.022-.023.022-.045.045-.068c.068-.091.114-.182.159-.228s.068-.068.091-.114v-.023a3.7 3.7 0 0 0 .364-.66a.27.27 0 0 0-.023-.228s-.022 0-.022-.022l.114-.16a3.6 3.6 0 0 1-.615-.41a5.5 5.5 0 0 1-1.867-2.664l-.205.022s0-.022-.023-.022a.26.26 0 0 0-.182-.068h-.022a4 4 0 0 0-.751.205h-.024c-.045 0-.091.023-.137.046c-.068.022-.159.068-.25.091c-.022 0-.091-.022-.091 0c0 .023 0 .023-.023.023c-.045.023-.068.023-.114.023a.424.424 0 0 1-.456-.319a.445.445 0 0 1 .364-.524c.023-.023.023-.023.046-.023c.045 0 .068-.022.091-.022c.091 0 .182-.023.273-.023c.045-.022.091-.022.137-.022a4 4 0 0 0 .774-.137c.068-.046.137-.091.16-.16c0 0 .022 0 .022-.022l.182-.046c-.205-1.298.091-2.618.797-3.734c.022-.045.045-.068.068-.114l-.131-.132l-.004.019v-.023l.004.004c.01-.065-.031-.145-.072-.186c-.182-.182-.41-.319-.638-.455l-.136-.069a3 3 0 0 1-.251-.136c-.022 0-.068-.045-.068-.045s0-.023-.022-.023a.49.49 0 0 1-.092-.639c.068-.114.182-.159.319-.159a.54.54 0 0 1 .319.114l.023.023c.022.022.045.022.068.045c.068.069.114.137.182.205c.023.022.068.045.091.091c.159.182.364.364.569.524c.045.022.091.045.137.045c.045 0 .068-.023.091-.023h.023l.137.091a5.43 5.43 0 0 1 2.801-1.594c.273-.046.523-.091.774-.114l.023-.182v-.045c.068-.045.091-.114.114-.182c0-.273 0-.524-.045-.774v-.023c0-.045 0-.091-.023-.137a1 1 0 0 1-.045-.273v-.113c0-.114.045-.228.137-.319c.114-.114.25-.182.387-.159a.45.45 0 0 1 .387.478v.137c-.023.091-.023.182-.045.273c0 .045-.023.091-.023.136v.023c-.048.273-.048.524-.048.774c.023.068.045.136.114.182v-.023l.023.182a5.84 5.84 0 0 1 2.96 1.184c.183.182.387.364.569.546l.183-.114h.022c.022.023.068.023.091.023c.046 0 .091-.023.137-.045c.205-.137.41-.319.569-.501c.022-.023.068-.046.091-.091c.046-.068.114-.137.183-.205c.022 0 .045-.022.068-.045l.022-.023a.55.55 0 0 1 .318-.114c.114 0 .251.068.319.16c.159.205.113.478-.091.637c0 .023.022.023 0 .046c-.023.022-.046.022-.068.045c-.092.045-.16.091-.251.137l-.137.068a4 4 0 0 0-.638.455c-.045.046-.068.137-.068.205v.023l-.136.137c.364.569.638 1.207.797 1.867c.137.66.182 1.343.091 2.003l.182.046a.28.28 0 0 0 .16.159c.25.068.523.114.773.137h.023a.3.3 0 0 0 .137.022c.091 0 .182 0 .272.023c.046 0 .092 0 .092.023c0 .022.022.022.045.022a.54.54 0 0 1 .41.479a.49.49 0 0 1-.453.32'/%3E%3Cpath fill='black' d='M12.085 14.718a.35.35 0 0 0-.455.091l-1.116 2.027c.456.136.957.228 1.435.228c.341 0 .66-.045.979-.114c.159-.045.296-.068.433-.091l-1.093-1.981c-.069-.069-.115-.115-.183-.16m3.644-4.441l-1.708 1.548a.36.36 0 0 0-.091.16c-.046.205.068.41.273.455l2.163.615a4.4 4.4 0 0 0-.092-1.435a4.6 4.6 0 0 0-.545-1.343m-2.073 3.484a.37.37 0 0 0-.205.433l.889 2.141a4.4 4.4 0 0 0 1.366-1.366c.182-.25.318-.547.433-.865l-2.277-.387a.6.6 0 0 0-.206.044'/%3E%3C/svg%3E"); } .bxl-less { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.142 10.843c0-.64.098-1.018.098-1.707c0-1.067-.393-1.411-1.263-1.411h-.641v.755h.196c.444 0 .542.147.542.689c0 .509-.049 1.018-.049 1.608c0 .755.246 1.05.739 1.165v.049c-.493.116-.739.411-.739 1.166c0 .591.049 1.067.049 1.608c0 .558-.114.705-.542.705v.017h-.196v.788h.641c.87 0 1.263-.344 1.263-1.411c0-.706-.098-1.067-.098-1.707c0-.345.213-.706.854-.739v-.853c-.642-.016-.854-.377-.854-.722m-3.299 1.001c-.493-.196-.952-.312-.952-.64c0-.246.197-.395.558-.395s.689.148 1.05.411l.657-.87c-.409-.313-.968-.641-1.724-.641c-1.115 0-1.871.641-1.871 1.544c0 .804.706 1.214 1.298 1.443c.508.196 1.001.361 1.001.689c0 .246-.197.41-.641.41c-.41 0-.821-.164-1.263-.509l-.657.952c.492.41 1.247.689 1.871.689c1.313 0 2.019-.689 2.019-1.592c-.001-.9-.707-1.277-1.346-1.491m-11.21 1.854c-.114 0-.262-.098-.262-.41V7.725H4.039c-.886 0-1.279.344-1.279 1.411c0 .706.099 1.101.099 1.707c0 .345-.213.706-.854.739v.853c.641.017.854.378.854.723c0 .606-.099.968-.099 1.674c0 1.067.394 1.411 1.264 1.411h.64v-.755h-.197c-.411 0-.542-.164-.542-.706s.049-1.001.049-1.607c0-.756-.245-1.05-.738-1.165v-.051c.493-.114.738-.409.738-1.165c0-.59-.049-1.066-.049-1.607c0-.542.114-.689.542-.689h.442v4.711c0 1.001.345 1.657 1.346 1.657c.313 0 .559-.05.739-.115l-.165-1.066c-.098.013-.146.013-.196.013m7.238-1.854c-.509-.196-.969-.312-.969-.64c0-.246.197-.395.558-.395s.689.148 1.051.411l.656-.87c-.41-.313-.968-.641-1.723-.641c-1.116 0-1.872.641-1.872 1.544c0 .804.707 1.214 1.297 1.443c.51.196 1.002.361 1.002.689c0 .246-.197.41-.641.41c-.41 0-.82-.164-1.264-.509l-.64.952c.492.41 1.247.689 1.871.689c1.313 0 2.019-.689 2.019-1.592c.001-.9-.705-1.277-1.345-1.491m-4.842-2.15c-1.198 0-2.347 1.001-2.314 2.577c0 1.624 1.066 2.576 2.479 2.576c.591 0 1.247-.214 1.756-.558l-.492-.87c-.36.213-.706.312-1.066.312c-.657 0-1.165-.312-1.297-1.066h2.971c.017-.115.049-.345.049-.607c.016-1.33-.707-2.364-2.086-2.364m-.935 2.068c.099-.655.492-.969.951-.969c.592 0 .821.411.821.969z'/%3E%3C/svg%3E"); } .bxl-linkedin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='4.983' cy='5.009' r='2.188' fill='black'/%3E%3Cpath fill='black' d='M9.237 8.855v12.139h3.769v-6.003c0-1.584.298-3.118 2.262-3.118c1.937 0 1.961 1.811 1.961 3.218v5.904H21v-6.657c0-3.27-.704-5.783-4.526-5.783c-1.835 0-3.065 1.007-3.568 1.96h-.051v-1.66zm-6.142 0H6.87v12.139H3.095z'/%3E%3C/svg%3E"); } .bxl-linkedin-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M8.339 18.337H5.667v-8.59h2.672zM7.003 8.574a1.548 1.548 0 1 1 0-3.096a1.548 1.548 0 0 1 0 3.096m11.335 9.763h-2.669V14.16c0-.996-.018-2.277-1.388-2.277c-1.39 0-1.601 1.086-1.601 2.207v4.248h-2.667v-8.59h2.56v1.174h.037c.355-.675 1.227-1.387 2.524-1.387c2.704 0 3.203 1.778 3.203 4.092v4.71z'/%3E%3C/svg%3E"); } .bxl-magento { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 22.019l-3.717-2.146V9.863l2.479-1.43v10.01l1.238.753l1.238-.753V8.434l2.479 1.43v10.01zm8.666-15.014v10.009l-2.475 1.43V8.434L12 4.861L5.807 8.434v10.01l-2.473-1.43V7.005L12 2z'/%3E%3C/svg%3E"); } .bxl-mailchimp { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.279 11.506q.199-.026.373 0c.066-.154.078-.419.019-.708c-.09-.429-.211-.688-.461-.646c-.251.04-.261.35-.17.779c.05.24.14.446.239.575m-2.149.339c.18.078.29.129.331.086c.029-.028.021-.084-.022-.154a1.05 1.05 0 0 0-.464-.371a1.26 1.26 0 0 0-1.228.146c-.119.088-.232.209-.218.283c.007.023.023.042.065.05c.099.011.444-.164.843-.188c.282-.02.513.068.693.148m-.361.205c-.232.037-.361.113-.443.187c-.071.062-.113.128-.113.177l.018.042l.037.014c.053 0 .171-.046.171-.046c.324-.115.539-.102.752-.078c.117.014.172.02.198-.02c.007-.012.018-.035-.007-.074c-.056-.091-.291-.24-.613-.202m1.784.756c.159.078.333.046.39-.069c.059-.115-.024-.272-.183-.349c-.158-.079-.333-.049-.39.066s.026.274.183.352m1.018-.891c-.128-.002-.234.138-.238.316c-.003.177.1.321.229.322s.235-.139.238-.315s-.099-.32-.229-.323m-8.644 3.183c-.032-.04-.085-.029-.136-.015c-.036.007-.076.017-.119.016a.27.27 0 0 1-.221-.111c-.059-.09-.056-.225.01-.378l.03-.069c.104-.231.275-.619.082-.988a.88.88 0 0 0-.671-.488a.86.86 0 0 0-.739.267c-.284.313-.327.741-.273.893c.021.056.053.071.075.074c.048.007.119-.029.164-.15l.014-.038c.02-.064.057-.184.118-.278a.52.52 0 0 1 .717-.15c.2.131.275.375.19.608c-.044.121-.115.351-.1.54c.032.383.27.537.48.556c.206.007.35-.108.387-.193c.021-.053.003-.084-.008-.096'/%3E%3Cpath fill='black' d='M19.821 14.397c-.009-.029-.061-.216-.13-.44l-.144-.384c.281-.423.286-.799.249-1.013a1.3 1.3 0 0 0-.372-.724c-.222-.232-.677-.472-1.315-.651l-.335-.093c-.002-.015-.018-.79-.031-1.123c-.011-.24-.031-.616-.148-.986c-.14-.502-.381-.938-.684-1.221c.835-.864 1.355-1.817 1.354-2.634c-.003-1.571-1.933-2.049-4.312-1.063l-.503.214c-.002-.002-.911-.894-.924-.905c-2.714-2.366-11.192 7.06-8.48 9.349l.593.501a2.9 2.9 0 0 0-.166 1.345c.065.631.389 1.234.915 1.701c.5.442 1.159.724 1.796.723c1.055 2.432 3.465 3.922 6.291 4.007c3.032.09 5.576-1.333 6.644-3.889c.069-.179.365-.987.365-1.7c-.001-.718-.406-1.015-.663-1.014M7.416 16.309a1.4 1.4 0 0 1-.28.021c-.916-.026-1.905-.85-2.003-1.827c-.109-1.08.443-1.912 1.421-2.108c.116-.025.258-.038.41-.031c.548.032 1.354.452 1.539 1.645c.164 1.055-.096 2.132-1.087 2.3m-1.021-4.562a2.33 2.33 0 0 0-1.473.94c-.197-.164-.562-.48-.626-.604c-.524-.994.571-2.928 1.337-4.02c1.889-2.698 4.851-4.739 6.223-4.371c.222.064.96.921.96.921s-1.37.759-2.642 1.819c-1.711 1.32-3.006 3.236-3.779 5.315m9.611 4.158a.05.05 0 0 0 .03-.054a.05.05 0 0 0-.056-.045s-1.434.212-2.789-.283c.147-.479.541-.308 1.134-.259a8.3 8.3 0 0 0 2.735-.296c.613-.177 1.419-.524 2.045-1.018c.212.465.286.975.286.975s.163-.029.3.055c.13.08.224.245.16.671c-.133.798-.471 1.445-1.042 2.041a4.3 4.3 0 0 1-1.249.934a5.3 5.3 0 0 1-.814.346c-2.149.701-4.349-.07-5.058-1.727a3 3 0 0 1-.142-.392c-.302-1.092-.046-2.4.755-3.226v-.001c.051-.052.102-.113.102-.191c0-.064-.042-.133-.077-.183c-.28-.406-1.253-1.099-1.057-2.44c.139-.964.982-1.642 1.768-1.602l.2.012c.34.02.637.063.917.076c.47.019.891-.049 1.391-.465c.169-.142.304-.263.532-.301c.024-.006.084-.025.203-.021a.7.7 0 0 1 .343.109c.4.266.457.912.479 1.385c.012.269.045.922.055 1.108c.026.428.139.489.365.563c.129.044.248.074.423.125c.529.147.845.3 1.043.493a.64.64 0 0 1 .188.372c.065.457-.353 1.021-1.455 1.533c-1.206.559-2.669.701-3.679.588l-.354-.04c-.81-.108-1.269.936-.784 1.651c.313.461 1.164.761 2.017.761c1.953.002 3.455-.832 4.015-1.554l.044-.063c.026-.042.005-.063-.03-.041c-.455.312-2.483 1.552-4.651 1.18c0 0-.264-.044-.504-.138c-.19-.072-.591-.258-.639-.668c1.747.543 2.85.031 2.85.03m-6.12-7.852c.672-.776 1.499-1.452 2.241-1.83c.025-.014.052.015.038.038a2 2 0 0 0-.208.508c-.006.027.023.049.046.032c.462-.314 1.264-.651 1.968-.693a.03.03 0 0 1 .021.055a1.7 1.7 0 0 0-.31.311c-.014.02-.001.049.024.049c.494.003 1.191.175 1.644.43c.03.018.008.077-.025.069c-.688-.157-1.811-.277-2.979.008c-1.044.254-1.84.646-2.419 1.069c-.03.02-.065-.019-.041-.046'/%3E%3C/svg%3E"); } .bxl-markdown { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.553 18.15H3.447a1.443 1.443 0 0 1-1.442-1.441V7.291c0-.795.647-1.441 1.442-1.441h17.105c.795 0 1.442.646 1.442 1.441v9.418a1.44 1.44 0 0 1-1.441 1.441M6.811 15.268V11.52l1.922 2.402l1.922-2.402v3.748h1.922V8.732h-1.922l-1.922 2.403l-1.922-2.403H4.889v6.535h1.922zM19.688 12h-1.922V8.732h-1.923V12h-1.922l2.884 3.364z'/%3E%3C/svg%3E"); } .bxl-mastercard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.454 17.021q.073.062.151.122a6.17 6.17 0 0 1-3.42 1.03A6.17 6.17 0 0 1 2.01 12a6.175 6.175 0 0 1 9.592-5.144c-.05.043-.1.082-.138.126A6.63 6.63 0 0 0 9.166 12c0 1.925.833 3.755 2.288 5.021m4.361-11.195a6.14 6.14 0 0 0-3.416 1.03c.049.043.099.082.137.126c1.462 1.263 2.299 3.094 2.299 5.018s-.835 3.753-2.288 5.021q-.075.062-.151.122a6.16 6.16 0 0 0 3.418 1.03a6.174 6.174 0 1 0 .001-12.347M12 7.15A6.15 6.15 0 0 0 9.644 12A6.15 6.15 0 0 0 12 16.853A6.16 6.16 0 0 0 14.357 12A6.15 6.15 0 0 0 12 7.15'/%3E%3C/svg%3E"); } .bxl-mastodon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 17.24c2.5-.3 4.69-1.84 5-3.25a33.6 33.6 0 0 0 .4-5.42C21.33 4.23 18.48 3 18.48 3A17.6 17.6 0 0 0 12 2a17.6 17.6 0 0 0-6.48 1S2.68 4.23 2.68 8.57v3.44c.1 4.24.78 8.42 4.7 9.46A14.7 14.7 0 0 0 12 22a9.2 9.2 0 0 0 3.54-.81l-.07-1.64A11.4 11.4 0 0 1 12 20c-1.8-.06-3.71-.19-4-2.4a4 4 0 0 1 0-.63a22.7 22.7 0 0 0 4 .54a23.6 23.6 0 0 0 4-.27m-6.54-9.8q-1.35 0-1.35 1.62v5.1H6V8.9a3.78 3.78 0 0 1 .82-2.56a2.85 2.85 0 0 1 2.23-1a2.68 2.68 0 0 1 2.4 1.23l.52.87l.52-.87a2.68 2.68 0 0 1 2.4-1.23a2.85 2.85 0 0 1 2.23 1A3.78 3.78 0 0 1 18 8.9v5.26h-2.11v-5.1q0-1.62-1.35-1.62c-1 0-1.51.64-1.51 1.92v2.79H11V9.36c0-1.28-.54-1.92-1.54-1.92'/%3E%3C/svg%3E"); } .bxl-medium { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.285 7.269a.73.73 0 0 0-.24-.619l-1.77-2.133v-.32h5.498l4.25 9.32l3.736-9.32H21v.319l-1.515 1.451a.45.45 0 0 0-.168.425v10.666a.45.45 0 0 0 .168.425l1.479 1.451v.319h-7.436v-.319l1.529-1.487c.152-.15.152-.195.152-.424V8.401L10.95 19.218h-.575L5.417 8.401v7.249c-.041.305.06.612.275.833L7.684 18.9v.319H2.036V18.9l1.992-2.417a.97.97 0 0 0 .257-.833z'/%3E%3C/svg%3E"); } .bxl-medium-old { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.957 6.73a.073.073 0 0 0-.019-.097l-.012-.01l-.006-.002l-6.033-3.018a.7.7 0 0 0-.292-.067a.69.69 0 0 0-.586.317l-3.474 5.646l4.359 7.083zm-1.064 13.543c.611.306 1.107.092 1.107-.478V8.483l-5.809 9.439zM9.622 8.213v6.426l5.711 2.855zm-7.068 9.558l5.19 2.595a.85.85 0 0 0 .374.098c.323 0 .549-.25.549-.669V6.701a.07.07 0 0 0-.035-.059L2.739 3.697a.7.7 0 0 0-.3-.079c-.258 0-.439.199-.439.534v12.723c0 .341.25.744.554.896'/%3E%3C/svg%3E"); } .bxl-medium-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-2.046 4.265l-.966.925a.28.28 0 0 0-.106.271v6.801a.28.28 0 0 0 .106.271l.942.926v.204h-4.741v-.204l.977-.948c.097-.096.097-.125.097-.271V9.742l-2.716 6.896h-.368L8.018 9.742v4.622a.64.64 0 0 0 .176.531l1.271 1.541v.203H5.861v-.203l1.271-1.541a.62.62 0 0 0 .164-.531V9.02a.47.47 0 0 0-.152-.395l-1.13-1.36v-.203H9.52l2.71 5.943l2.382-5.943h3.343z'/%3E%3C/svg%3E"); } .bxl-messenger { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 3c-4.92 0-8.91 3.729-8.91 8.332c0 2.616 1.291 4.952 3.311 6.479V21l3.041-1.687c.811.228 1.668.35 2.559.35c4.92 0 8.91-3.73 8.91-8.331C20.91 6.729 16.92 3 12 3m.938 11.172l-2.305-2.394l-4.438 2.454l4.865-5.163l2.305 2.395l4.439-2.455z'/%3E%3C/svg%3E"); } .bxl-meta { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.26 7.8a4.82 4.82 0 0 0-3.93-2.44a3.9 3.9 0 0 0-2.54 1.09a10.6 10.6 0 0 0-1.52 1.71a11 11 0 0 0-1.63-1.72a4.4 4.4 0 0 0-2.88-1.08A5 5 0 0 0 3.7 8A11.5 11.5 0 0 0 2 14a7 7 0 0 0 .18 1.64A4.4 4.4 0 0 0 2.71 17a3.23 3.23 0 0 0 3 1.6c1.25 0 2.19-.56 3.3-2a26.4 26.4 0 0 0 2.21-3.6l.63-1.12c.06-.09.11-.18.16-.27l.15.25l1.79 3A14.8 14.8 0 0 0 16 17.63a3.38 3.38 0 0 0 2.55 1a3 3 0 0 0 2.54-1.23a2 2 0 0 0 .18-.28a4 4 0 0 0 .31-.63l.12-.35A6.5 6.5 0 0 0 22 15a9 9 0 0 0 0-1a11.15 11.15 0 0 0-1.74-6.2m-10.12 3.56c-.64 1-1.57 2.51-2.37 3.61c-1 1.37-1.51 1.51-2.07 1.51a1.29 1.29 0 0 1-1.15-.66a3.3 3.3 0 0 1-.39-1.7A9.74 9.74 0 0 1 5.54 9a2.8 2.8 0 0 1 2.19-1.47A3 3 0 0 1 10 8.74a14 14 0 0 1 1 1.31zm8.42 5.12c-.48 0-.85-.19-1.38-.83A35 35 0 0 1 14.82 12l-.52-.86c-.36-.61-.71-1.16-1-1.65a3 3 0 0 1 .17-.27c.94-1.39 1.77-2.17 2.8-2.17a3.12 3.12 0 0 1 2.49 1.66a10.17 10.17 0 0 1 1.37 5.34c-.04 1.31-.34 2.43-1.57 2.43'/%3E%3C/svg%3E"); } .bxl-microsoft { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.55 21H3v-8.55h8.55zM21 21h-8.55v-8.55H21zm-9.45-9.45H3V3h8.55zm9.45 0h-8.55V3H21z'/%3E%3C/svg%3E"); } .bxl-microsoft-teams { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='20.288' cy='8.344' r='1.707' fill='black'/%3E%3Cpath fill='black' d='M18.581 11.513h3.413v3.656c0 .942-.765 1.706-1.707 1.706h-1.706zM2.006 4.2v15.6l11.213 1.979V2.221zm8.288 5.411l-1.95.049v5.752H6.881V9.757l-1.949.098V8.539l5.362-.292zm3.899.439v8.288h1.95c.808 0 1.463-.655 1.463-1.462V10.05zm1.463-4.875c-.586 0-1.105.264-1.463.673v2.555c.357.409.877.673 1.463.673a1.95 1.95 0 0 0 0-3.901'/%3E%3C/svg%3E"); } .bxl-mongodb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.74 4.23c-.84-1-1.57-2-1.71-2.22H12c-.14.21-.87 1.22-1.71 2.22c-7.2 9.19 1.14 15.39 1.14 15.39l.07.05c.06.95.22 2.33.22 2.33h.62s.15-1.37.21-2.33l.07-.06s8.32-6.19 1.12-15.38M12 19.48a3.5 3.5 0 0 1-.48-.48L12 9l.45 10a3.6 3.6 0 0 1-.45.48'/%3E%3C/svg%3E"); } .bxl-netlify { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.13 9.68L22 11.8v-.11c-.07-.24-.28-.45-.7-.87l-2-2l-2.07.87zM12.2 7.24a1.3 1.3 0 0 1 .16.47l3 1.29a1.1 1.1 0 0 1 .29-.14l.48-3l-2-2l-1.95 3.3s0 .05.02.08M10.61 7a1.1 1.1 0 0 1 1-.2h.05l2.16-3.34l-.66-.66c-.42-.42-.63-.63-.87-.7a1 1 0 0 0-.63 0c-.24.07-.45.28-.87.7l-3 3c.31.14 2.5 1.06 2.78 1.19zm-3.12 5.29h.27a1.5 1.5 0 0 1 .29 0l2.38-3.68v-.06a1 1 0 0 1-.27-.95L9 7l-1.7-.73L5 8.61l2.51 3.66zm7.62-2.44v-.08a.6.6 0 0 1 0-.14l-2.86-1.27h-.05a1.05 1.05 0 0 1-.88.47h-.17s-.05 0-.06.05L8.73 12.5v.05l6.33-2.7s.05.02.05 0m1.36-.91a.8.8 0 0 1 .26.19l2-.84l-1.89-1.87l-.4 2.47zm-2.29 5.54A.91.91 0 0 1 15 14v-.05l.54-3.37l-.09-.08L9 13.15a3 3 0 0 1 .08.27zm-.04.65L8.92 14v.06L13.47 21l.42-.43c.15-.92.71-4.33.78-4.72a.9.9 0 0 1-.53-.72m1.65.32a.9.9 0 0 1-.36.27l-.64 3.94L18.43 16zm1.07-5.13a.07.07 0 0 0-.06 0a.92.92 0 0 1-.61.34v.06l-.55 3.4a.88.88 0 0 1 .34.62h.06l2.95.61l2.28-2.28a4.2 4.2 0 0 0 .65-.74zM8.3 14.59a1.27 1.27 0 0 1-.86 0l-1.22 1.9l4.69 4.68a2.7 2.7 0 0 0 .87.71a1 1 0 0 0 .63 0a1.86 1.86 0 0 0 .7-.54l-4.69-6.8zm-1.91-1s.06 0 .06-.05s0 0-.06 0l-4.14-.86a7 7 0 0 0 .51.54l1.36 1.36l2.27-1zm.28-.66a1 1 0 0 1 .2-.27v-.06C6.1 11.4 5.3 10.24 4.5 9.07l-1.75 1.75c-.42.42-.63.63-.7.87A.75.75 0 0 0 2 12l4.67 1zm.17 1.33a.6.6 0 0 1-.07-.1L4.59 15l1.08 1.1l1.17-1.82s.01-.02 0-.02'/%3E%3C/svg%3E"); } .bxl-nodejs { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 21.985c-.275 0-.532-.074-.772-.202l-2.439-1.448c-.365-.203-.182-.277-.072-.314c.496-.165.588-.201 1.101-.493c.056-.037.129-.02.185.017l1.87 1.12c.074.036.166.036.221 0l7.319-4.237c.074-.036.11-.11.11-.202V7.768c0-.091-.036-.165-.11-.201l-7.319-4.219c-.073-.037-.165-.037-.221 0L4.552 7.566c-.073.036-.11.129-.11.201v8.457c0 .073.037.166.11.202l2 1.157c1.082.548 1.762-.095 1.762-.735V8.502c0-.11.091-.221.22-.221h.936c.108 0 .22.092.22.221v8.347c0 1.449-.788 2.294-2.164 2.294c-.422 0-.752 0-1.688-.46l-1.925-1.099a1.55 1.55 0 0 1-.771-1.34V7.786c0-.55.293-1.064.771-1.339l7.316-4.237a1.64 1.64 0 0 1 1.544 0l7.317 4.237c.479.274.771.789.771 1.339v8.458c0 .549-.293 1.063-.771 1.34l-7.317 4.236c-.241.11-.516.165-.773.165m2.256-5.816c-3.21 0-3.87-1.468-3.87-2.714c0-.11.092-.221.22-.221h.954c.11 0 .201.073.201.184c.147.971.568 1.449 2.514 1.449c1.54 0 2.202-.35 2.202-1.175c0-.477-.185-.825-2.587-1.063c-1.999-.2-3.246-.643-3.246-2.238c0-1.485 1.247-2.366 3.339-2.366c2.347 0 3.503.809 3.649 2.568a.3.3 0 0 1-.056.165c-.037.036-.091.073-.146.073h-.953a.21.21 0 0 1-.202-.164c-.221-1.012-.789-1.34-2.292-1.34c-1.689 0-1.891.587-1.891 1.027c0 .531.237.696 2.514.99c2.256.293 3.32.715 3.32 2.294c-.02 1.615-1.339 2.531-3.67 2.531'/%3E%3C/svg%3E"); } .bxl-ok-ru { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.986 12.341c-2.825 0-5.173-2.346-5.173-5.122C6.813 4.347 9.161 2 11.987 2c2.922 0 5.173 2.346 5.173 5.219a5.14 5.14 0 0 1-5.157 5.123zm0-7.324c-1.196 0-2.106 1.005-2.106 2.203c0 1.196.91 2.106 2.107 2.106c1.245 0 2.107-.91 2.107-2.106c.001-1.199-.862-2.203-2.108-2.203m2.06 11.586l2.923 2.825c.575.621.575 1.531 0 2.106c-.622.621-1.581.621-2.06 0l-2.922-2.873l-2.826 2.873c-.287.287-.671.43-1.103.43c-.335 0-.718-.144-1.054-.43c-.575-.575-.575-1.485 0-2.107l2.97-2.825a13.5 13.5 0 0 1-3.063-1.339c-.719-.383-.862-1.34-.479-2.059c.479-.718 1.341-.909 2.108-.43a6.62 6.62 0 0 0 6.897 0c.767-.479 1.676-.288 2.107.43c.432.719.239 1.675-.432 2.059c-.909.575-1.963 1.006-3.065 1.341z'/%3E%3C/svg%3E"); } .bxl-opera { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.71 6.366C7.604 7.67 6.888 9.602 6.838 11.765v.471c.05 2.165.766 4.094 1.872 5.397c1.434 1.865 3.564 3.046 5.948 3.046a7.2 7.2 0 0 0 4.006-1.225a9.94 9.94 0 0 1-7.139 2.533A9.995 9.995 0 0 1 2 12C2 6.477 6.478 2 12 2h.038a9.97 9.97 0 0 1 6.627 2.545c-1.173-.773-2.543-1.225-4.009-1.225c-2.382 0-4.514 1.184-5.95 3.046zM22 12a9.97 9.97 0 0 1-3.335 7.455c-2.564 1.25-4.954.375-5.747-.172c2.52-.553 4.422-3.6 4.422-7.283c0-3.686-1.901-6.73-4.422-7.283c.792-.545 3.183-1.42 5.747-.172A9.97 9.97 0 0 1 22 12'/%3E%3C/svg%3E"); } .bxl-patreon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='14.508' cy='9.831' r='6.496' fill='black'/%3E%3Cpath fill='black' d='M2.996 3.335H6.17v17.33H2.996z'/%3E%3C/svg%3E"); } .bxl-paypal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.554 9.488q.18.844-.04 2.051q-.873 4.467-5.683 4.466h-.442a.67.67 0 0 0-.444.166a.72.72 0 0 0-.239.427l-.041.189l-.553 3.479l-.021.151a.7.7 0 0 1-.247.426a.67.67 0 0 1-.447.166H8.874a.4.4 0 0 1-.331-.15a.46.46 0 0 1-.09-.363q.09-.561.267-1.689q.175-1.126.267-1.689c.092-.563.15-.938.272-1.685q.182-1.122.271-1.685q.05-.371.433-.371h1.316q1.338.02 2.375-.211q1.758-.392 2.886-1.449q1.026-.956 1.56-2.473q.241-.706.352-1.338q.009-.062.025-.074q.014-.016.035-.011a.4.4 0 0 1 .062.035c.524.398.854.941.98 1.632m-1.728-2.836q0 1.075-.465 2.374q-.804 2.343-3.037 3.168q-1.136.401-2.535.425q0 .008-.904.007l-.903-.007q-1.008-.001-1.187.964q-.02.08-.855 5.329q-.012.1-.121.102H4.854a.47.47 0 0 1-.369-.165a.47.47 0 0 1-.115-.39L6.702 3.664a.78.78 0 0 1 .276-.483a.8.8 0 0 1 .519-.19h6.014q.342 0 .979.131c.428.084.801.194 1.123.321q1.077.412 1.645 1.237t.568 1.972'/%3E%3C/svg%3E"); } .bxl-periscope { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.102 21c1.406 0 6.985-6.329 6.985-10.571C19.087 6.368 15.915 3 12.102 3c-4.017 0-7.188 3.366-7.188 7.429C4.913 14.67 10.492 21 12.102 21M10.979 5.885a4.7 4.7 0 0 1 1.143-.139c2.25 0 4.186 1.913 4.186 4.398c0 2.238-1.936 4.151-4.196 4.151c-2.509 0-4.444-1.913-4.444-4.151c0-1.047.338-1.98.922-2.723v.022c0 .934.755 1.676 1.688 1.676c.933.002 1.722-.764 1.722-1.697a1.68 1.68 0 0 0-1.02-1.54z'/%3E%3C/svg%3E"); } .bxl-php { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.15 16.78h1.57a.14.14 0 0 0 .14-.12l.35-1.82h1.22a4.9 4.9 0 0 0 1.51-.2A2.8 2.8 0 0 0 8 14a3.2 3.2 0 0 0 .67-.85a3.4 3.4 0 0 0 .36-1a2.43 2.43 0 0 0-.41-2.16a2.64 2.64 0 0 0-2.09-.78h-3a.16.16 0 0 0-.15.13L2 16.6a.2.2 0 0 0 0 .13a.17.17 0 0 0 .15.05M5 10.62h1a1.45 1.45 0 0 1 1.08.29c.17.18.2.52.11 1a1.8 1.8 0 0 1-.57 1.12a2.17 2.17 0 0 1-1.33.33h-.8zm9.8-.95a2.7 2.7 0 0 0-1.88-.51h-1.19l.33-1.76a.15.15 0 0 0 0-.13a.16.16 0 0 0-.11 0h-1.57a.14.14 0 0 0-.14.12l-1.38 7.27a.13.13 0 0 0 0 .12a.13.13 0 0 0 .11.06h1.54a.14.14 0 0 0 .14-.13l.77-4.07h1.11c.45 0 .61.1.66.16a.8.8 0 0 1 0 .62l-.61 3.24a.13.13 0 0 0 0 .12a.14.14 0 0 0 .11.06h1.56a.16.16 0 0 0 .15-.13l.64-3.4a1.7 1.7 0 0 0-.24-1.64m4.52-.51h-3.13a.14.14 0 0 0-.15.13l-1.46 7.31a.16.16 0 0 0 0 .13a.14.14 0 0 0 .11.05h1.63a.14.14 0 0 0 .15-.12l.37-1.82h1.27a5.3 5.3 0 0 0 1.56-.2a3 3 0 0 0 1.18-.64a3.3 3.3 0 0 0 .7-.85a3.5 3.5 0 0 0 .37-1a2.38 2.38 0 0 0-.42-2.16a2.8 2.8 0 0 0-2.18-.83m.62 2.77a1.83 1.83 0 0 1-.6 1.12a2.28 2.28 0 0 1-1.37.33h-.8l.54-2.76h1a1.6 1.6 0 0 1 1.13.29c.16.18.16.52.1 1.02'/%3E%3C/svg%3E"); } .bxl-pinterest { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.99 2C6.472 2 2 6.473 2 11.99c0 4.232 2.633 7.85 6.35 9.306c-.088-.79-.166-2.006.034-2.868c.182-.78 1.172-4.966 1.172-4.966s-.299-.599-.299-1.484c0-1.388.805-2.425 1.808-2.425c.853 0 1.264.64 1.264 1.407c0 .858-.546 2.139-.827 3.327c-.235.994.499 1.805 1.479 1.805c1.775 0 3.141-1.872 3.141-4.575c0-2.392-1.719-4.064-4.173-4.064c-2.843 0-4.512 2.132-4.512 4.335c0 .858.331 1.779.744 2.28a.3.3 0 0 1 .069.286c-.076.315-.245.994-.277 1.133c-.044.183-.145.222-.335.134c-1.247-.581-2.027-2.405-2.027-3.871c0-3.151 2.289-6.045 6.601-6.045c3.466 0 6.159 2.469 6.159 5.77c0 3.444-2.171 6.213-5.184 6.213c-1.013 0-1.964-.525-2.29-1.146l-.623 2.374c-.225.868-.834 1.956-1.241 2.62a10 10 0 0 0 2.958.445c5.517 0 9.99-4.473 9.99-9.99S17.507 2 11.99 2'/%3E%3C/svg%3E"); } .bxl-pinterest-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.077 9.457q.001-1.169.404-2.199a5.6 5.6 0 0 1 1.121-1.802a7.6 7.6 0 0 1 1.644-1.329a7.5 7.5 0 0 1 2.002-.844a8.6 8.6 0 0 1 2.185-.281q1.708 0 3.182.721a6 6 0 0 1 2.391 2.094q.92 1.373.919 3.104q0 1.038-.207 2.031a8.3 8.3 0 0 1-.646 1.913a6.6 6.6 0 0 1-1.082 1.617a4.7 4.7 0 0 1-1.568 1.114a5 5 0 0 1-2.045.417q-.735 0-1.459-.346q-.723-.344-1.036-.951q-.108.421-.306 1.218q-.194.795-.252 1.027q-.06.232-.222.767a5 5 0 0 1-.281.769l-.344.674a8 8 0 0 1-.498.838q-.271.394-.672.935l-.149.053l-.099-.108q-.161-1.7-.162-2.035q0-.994.235-2.233q.231-1.238.72-3.109q.487-1.87.561-2.196q-.344-.701-.345-1.827q0-.897.562-1.688q.563-.789 1.427-.789q.661 0 1.028.439q.367.437.366 1.109q0 .714-.476 2.066t-.476 2.022c0 .453.162.832.486 1.129a1.68 1.68 0 0 0 1.179.449q.593 0 1.104-.271a2.46 2.46 0 0 0 .849-.733a6.1 6.1 0 0 0 1.017-2.225q.146-.634.216-1.2q.072-.568.07-1.077q-.001-1.87-1.183-2.915q-1.187-1.043-3.088-1.042q-2.163 0-3.611 1.401q-1.45 1.398-1.452 3.554q.001.475.139.919q.133.443.291.704c.104.171.202.338.291.492q.136.231.137.33q0 .303-.16.79q-.165.487-.4.487q-.023 0-.185-.034a2.2 2.2 0 0 1-.979-.605a3.2 3.2 0 0 1-.659-1.022a7 7 0 0 1-.352-1.169a5 5 0 0 1-.132-1.153'/%3E%3C/svg%3E"); } .bxl-play-store { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12.954 11.616l2.957-2.957L6.36 3.291c-.633-.342-1.226-.39-1.746-.016zm3.461 3.462l3.074-1.729c.6-.336.929-.812.929-1.34c0-.527-.329-1.004-.928-1.34l-2.783-1.563l-3.133 3.132zM4.1 4.002c-.064.197-.1.417-.1.658v14.705c0 .381.084.709.236.97l8.097-8.098zm8.854 8.855L4.902 20.91q.232.09.495.09q.47 0 .968-.276l9.255-5.197z'/%3E%3C/svg%3E"); } .bxl-pocket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.327 3.983H4.746c-.947 0-1.736.726-1.736 1.673v5.396c0 4.892 4.04 8.964 9.026 8.964c4.955 0 8.964-4.072 8.964-8.964V5.656c0-.947-.758-1.673-1.673-1.673m-2.178 6.691l-4.293 4.04c-.221.253-.567.348-.82.348c-.315 0-.631-.095-.884-.348l-4.229-4.04c-.441-.473-.504-1.262 0-1.768c.475-.441 1.263-.504 1.736 0l3.377 3.251l3.44-3.251c.441-.504 1.23-.441 1.673 0c.442.506.442 1.295 0 1.768'/%3E%3C/svg%3E"); } .bxl-postgresql { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.74 12.89v-.11c.06-.15.12-.29.19-.43a5.15 5.15 0 0 0 .26-3.74a.86.86 0 0 0-.66-.74a3.12 3.12 0 0 0-2.08.61v.18a11.3 11.3 0 0 1-.06 2.41a2.37 2.37 0 0 0 .62 2a2 2 0 0 0 1.43.63a8 8 0 0 1 .3-.81M10 8.58a.36.36 0 0 1-.09-.23a.2.2 0 0 1 .09-.12a.74.74 0 0 1 .48-.07c.25 0 .5.16.48.34a.51.51 0 0 1-.49.33h-.06a.63.63 0 0 1-.41-.25'/%3E%3Cpath fill='black' d='M7.88 11a12.6 12.6 0 0 0 .06-2.3v-.28a7 7 0 0 1 1.54-4.55c-1-.32-3.4-1-4.87.1c-.9.64-1.32 1.84-1.23 3.55a25 25 0 0 0 1 4.4c.68 2.22 1.45 3.62 2.11 3.85c.1 0 .41.13.86-.41c.64-.76 1.23-1.41 1.5-1.7l-.19-.19A2.89 2.89 0 0 1 7.88 11m3.5 3.4c-.16-.06-.24-.1-.42.11a2.5 2.5 0 0 0-.29.35c-.35.43-.5.58-1.51.79a2 2 0 0 0-.4.11a1 1 0 0 0 .37.16a2.21 2.21 0 0 0 2.5-.8a.41.41 0 0 0 0-.35a.6.6 0 0 0-.25-.37m6.29-5.82a5 5 0 0 0 .08-.79c-.66-.08-1.42-.07-1.72.36c-.58.83.56 2.88 1 3.75a4 4 0 0 1 .26.48a2 2 0 0 0 .15.31a3.7 3.7 0 0 0 .16-2.13a7.5 7.5 0 0 1-.07-1.05a6 6 0 0 1 .14-.93m-.56-.16a.6.6 0 0 1-.32.17h-.06a.47.47 0 0 1-.44-.3c0-.14.2-.24.44-.28s.48 0 .5.15a.38.38 0 0 1-.12.26'/%3E%3Cpath fill='black' d='M17 4.88a6.06 6.06 0 0 1 1.37 2.57a.7.7 0 0 1 0 .15a5.7 5.7 0 0 1-.09 1.06a7 7 0 0 0-.09.86a6.6 6.6 0 0 0 .07 1a4 4 0 0 1-.36 2.71l.07.08c2.22-3.49 3-7.54 2.29-8.43a4.77 4.77 0 0 0-3.81-1.8a7.3 7.3 0 0 0-1.63.16A6.2 6.2 0 0 1 17 4.88'/%3E%3Cpath fill='black' d='M21.65 14c-.07-.2-.37-.85-1.47-.62a6 6 0 0 1-1 .13a19.7 19.7 0 0 0 2.06-4.88c.37-1.45.66-3.39-.11-4.38A5.91 5.91 0 0 0 16.37 2a8.4 8.4 0 0 0-2.46.35a9.4 9.4 0 0 0-1.45-.14a4.8 4.8 0 0 0-2.46.62a12 12 0 0 0-1.77-.44A5.44 5.44 0 0 0 4 3.05c-1.24.87-1.81 2.39-1.71 4.52a26.3 26.3 0 0 0 1 4.67A16 16 0 0 0 4.4 15a3.4 3.4 0 0 0 1.75 1.83a1.71 1.71 0 0 0 1.69-.37a2 2 0 0 0 1 .59a3.65 3.65 0 0 0 2.35-.14v.81a8.5 8.5 0 0 0 .31 2.36a1 1 0 0 1 0 .13a3 3 0 0 0 .71 1.24a2.08 2.08 0 0 0 1.49.56a3 3 0 0 0 .7-.08a3.27 3.27 0 0 0 2.21-1.27a7.34 7.34 0 0 0 .91-4v-.26h.17a5.24 5.24 0 0 0 2.4-.4c.45-.23 1.91-1 1.56-2m-1.81 1.47a4.7 4.7 0 0 1-1.8.34a2.6 2.6 0 0 1-.79-.1c-.1.94-.32 2.69-.45 3.42a2.47 2.47 0 0 1-2.25 2.3a3.2 3.2 0 0 1-.66.07A2 2 0 0 1 12 20a16.8 16.8 0 0 1-.28-4.06a2.56 2.56 0 0 1-1.78.66a4 4 0 0 1-.94-.13c-.09 0-.87-.23-.86-.73s.66-.59.9-.64c.86-.18.92-.25 1.19-.59a3 3 0 0 1 .19-.24a2.56 2.56 0 0 1-1.11-.3c-.23.25-.86.93-1.54 1.74a1.43 1.43 0 0 1-1.11.63a1.2 1.2 0 0 1-.35 0C5.43 16 4.6 14.55 3.84 12a25 25 0 0 1-1-4.53c-.1-1.92.4-3.28 1.47-4c1.92-1.36 5-.31 5.7-.06a4 4 0 0 1 2.41-.66a5.6 5.6 0 0 1 1.4.18a7.5 7.5 0 0 1 2.5-.4a5.35 5.35 0 0 1 4.32 2c.69.88.23 3 0 3.89a18.8 18.8 0 0 1-2.41 5.41c.16.11.65.31 2 0c.46-.1.73 0 .82.25c.22.55-.7 1.13-1.21 1.37z'/%3E%3Cpath fill='black' d='M17.43 13.59a4 4 0 0 1-.62-1c0-.07-.12-.24-.23-.43c-.58-1-1.79-3.22-1-4.34a2.16 2.16 0 0 1 2.12-.61a6.3 6.3 0 0 0-1.13-1.94a5.41 5.41 0 0 0-4.13-2a3.34 3.34 0 0 0-2.55.95A5.82 5.82 0 0 0 8.51 7.8l.15-.08A3.7 3.7 0 0 1 10 7.3a1.45 1.45 0 0 1 1.76 1.19a5.73 5.73 0 0 1-.29 4.09a3 3 0 0 0-.17.39v.11c-.1.27-.19.52-.25.73a.94.94 0 0 1 .57.07a1.16 1.16 0 0 1 .62.74v.16a.3.3 0 0 1 0 .09a22.2 22.2 0 0 0 .22 4.9a1.5 1.5 0 0 0 2 1.09A1.92 1.92 0 0 0 16.25 19c.15-.88.45-3.35.49-3.88c0-1.06.52-1.27.84-1.36z'/%3E%3Cpath fill='black' d='m18 14.33l-.08-.06h-.12c-.26.07-.5.14-.47.8a1.9 1.9 0 0 0 .93.12a4.3 4.3 0 0 0 1.38-.29a3 3 0 0 0 .79-.52a3.47 3.47 0 0 1-2.43-.05'/%3E%3C/svg%3E"); } .bxl-product-hunt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.337 9h-2.838v3h2.838a1.501 1.501 0 1 0 0-3'/%3E%3Cpath fill='black' d='M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10s10-4.477 10-10S17.523 2 12 2m1.337 12h-2.838v3H8.501V7h4.837a3.5 3.5 0 0 1 3.499 3.499a3.5 3.5 0 0 1-3.5 3.501'/%3E%3C/svg%3E"); } .bxl-python { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.585 11.692h4.328s2.432.039 2.432-2.35V5.391S16.714 3 11.936 3C7.362 3 7.647 4.983 7.647 4.983l.006 2.055h4.363v.617H5.92s-2.927-.332-2.927 4.282s2.555 4.45 2.555 4.45h1.524v-2.141s-.083-2.554 2.513-2.554m-.056-5.74a.784.784 0 1 1 0-1.57a.784.784 0 1 1 0 1.57'/%3E%3Cpath fill='black' d='M18.452 7.532h-1.524v2.141s.083 2.554-2.513 2.554h-4.328s-2.432-.04-2.432 2.35v3.951s-.369 2.391 4.409 2.391c4.573 0 4.288-1.983 4.288-1.983l-.006-2.054h-4.363v-.617h6.097s2.927.332 2.927-4.282s-2.555-4.451-2.555-4.451m-3.981 10.436a.784.784 0 1 1 0 1.57a.784.784 0 1 1 0-1.57'/%3E%3C/svg%3E"); } .bxl-quora { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.555 17.025c-.624-1.227-1.354-2.465-2.781-2.465c-.271 0-.546.046-.795.157l-.484-.967c.59-.509 1.544-.911 2.77-.911c1.908 0 2.889.922 3.667 2.094c.459-1.001.678-2.354.678-4.03c0-4.188-1.308-6.336-4.366-6.336c-3.014 0-4.318 2.148-4.318 6.336c0 4.164 1.305 6.291 4.318 6.291c.478 0 .913-.051 1.311-.169m.747 1.461a8 8 0 0 1-2.059.274c-4.014 0-7.941-3.202-7.941-7.858C3.303 6.203 7.229 3 11.243 3c4.081 0 7.972 3.179 7.972 7.903c0 2.628-1.226 4.763-3.007 6.143c.572.861 1.157 1.436 1.988 1.436c.899 0 1.261-.687 1.328-1.236h1.167c.07.73-.301 3.754-3.574 3.754c-1.989 0-3.035-1.146-3.822-2.496z'/%3E%3C/svg%3E"); } .bxl-react { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='11.245' r='1.785' fill='black'/%3E%3Cpath fill='black' d='m7.002 14.794l-.395-.101c-2.934-.741-4.617-2.001-4.617-3.452S3.674 8.53 6.607 7.789l.395-.1l.111.391a19.5 19.5 0 0 0 1.136 2.983l.085.178l-.085.178c-.46.963-.841 1.961-1.136 2.985zm-.577-6.095c-2.229.628-3.598 1.586-3.598 2.542c0 .954 1.368 1.913 3.598 2.54q.41-1.304.985-2.54a20 20 0 0 1-.985-2.542m10.572 6.095l-.11-.392a19.6 19.6 0 0 0-1.137-2.984l-.085-.177l.085-.179c.46-.961.839-1.96 1.137-2.984l.11-.39l.395.1c2.935.741 4.617 2 4.617 3.453s-1.683 2.711-4.617 3.452zm-.41-3.553c.4.866.733 1.718.987 2.54c2.23-.627 3.599-1.586 3.599-2.54c0-.956-1.368-1.913-3.599-2.542a21 21 0 0 1-.987 2.542'/%3E%3Cpath fill='black' d='m6.419 8.695l-.11-.39c-.826-2.908-.576-4.991.687-5.717c1.235-.715 3.222.13 5.303 2.265l.284.292l-.284.291a20 20 0 0 0-2.02 2.474l-.113.162l-.196.016a20 20 0 0 0-3.157.509zm1.582-5.529q-.337 0-.589.145c-.828.477-.974 2.138-.404 4.38q1.337-.297 2.696-.417a21 21 0 0 1 1.713-2.123c-1.303-1.267-2.533-1.985-3.416-1.985m7.997 16.984c-1.188 0-2.714-.896-4.298-2.522l-.283-.291l.283-.29a20 20 0 0 0 2.021-2.477l.112-.16l.194-.019a19.5 19.5 0 0 0 3.158-.507l.395-.1l.111.391c.822 2.906.573 4.992-.688 5.718a2 2 0 0 1-1.005.257m-3.415-2.82c1.302 1.267 2.533 1.986 3.415 1.986q.339-.001.589-.145c.829-.478.976-2.142.404-4.384q-1.335.299-2.698.419a20.5 20.5 0 0 1-1.71 2.124'/%3E%3Cpath fill='black' d='m17.58 8.695l-.395-.099a19.5 19.5 0 0 0-3.158-.509l-.194-.017l-.112-.162A19.6 19.6 0 0 0 11.7 5.434l-.283-.291l.283-.29c2.08-2.134 4.066-2.979 5.303-2.265c1.262.727 1.513 2.81.688 5.717zm-3.287-1.421c.954.085 1.858.228 2.698.417c.571-2.242.425-3.903-.404-4.381c-.824-.477-2.375.253-4.004 1.841q.926 1.005 1.71 2.123M8.001 20.15a2 2 0 0 1-1.005-.257c-1.263-.726-1.513-2.811-.688-5.718l.108-.391l.395.1c.964.243 2.026.414 3.158.507l.194.019l.113.16c.604.878 1.28 1.707 2.02 2.477l.284.29l-.284.291c-1.583 1.627-3.109 2.522-4.295 2.522m-.993-5.362c-.57 2.242-.424 3.906.404 4.384c.825.47 2.371-.255 4.005-1.842a21 21 0 0 1-1.713-2.123a21 21 0 0 1-2.696-.419'/%3E%3Cpath fill='black' d='M12 15.313c-.687 0-1.392-.029-2.1-.088l-.196-.017l-.113-.162a26 26 0 0 1-1.126-1.769a26 26 0 0 1-.971-1.859l-.084-.177l.084-.179q.448-.948.971-1.858c.347-.596.726-1.192 1.126-1.77l.113-.16l.196-.018a25 25 0 0 1 4.198 0l.194.019l.113.16a25 25 0 0 1 2.1 3.628l.083.179l-.083.177a25 25 0 0 1-2.1 3.628l-.113.162l-.194.017c-.706.057-1.412.087-2.098.087m-1.834-.904c1.235.093 2.433.093 3.667 0a24.5 24.5 0 0 0 1.832-3.168a24 24 0 0 0-1.832-3.168a24 24 0 0 0-3.667 0a24 24 0 0 0-1.832 3.168a25 25 0 0 0 1.832 3.168'/%3E%3C/svg%3E"); } .bxl-redbubble { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.002 2.005L12 2.004c-5.52 0-9.996 4.475-9.996 9.995c0 5.521 4.477 9.998 9.996 9.998c5.521 0 9.996-4.475 9.996-9.997c0-5.52-4.475-9.995-9.994-9.995m.162 13.53a.27.27 0 0 1-.174.066v.001H6.455a.27.27 0 0 1-.266-.268V8.646c0-.148.119-.268.266-.268h2.589c1.612 0 2.576.87 2.576 2.327c0 .969-.486 1.729-1.272 2.039l1.842 2.413a.27.27 0 0 1-.026.378m3.695.068h-2.665a.27.27 0 0 1-.266-.269V8.646c0-.148.119-.267.266-.267h2.472c1.853 0 2.242 1.091 2.242 2.007q0 .794-.421 1.258c.681.28 1.047.913 1.047 1.827c0 1.335-1.001 2.132-2.675 2.132'/%3E%3C/svg%3E"); } .bxl-reddit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='9.67' cy='13' r='1.001' fill='black'/%3E%3Cpath fill='black' d='M14.09 15.391A3.28 3.28 0 0 1 12 16a3.27 3.27 0 0 1-2.081-.63a.27.27 0 0 0-.379.38c.71.535 1.582.809 2.471.77a3.8 3.8 0 0 0 2.469-.77v.04a.284.284 0 0 0 .006-.396a.28.28 0 0 0-.396-.003m.209-3.351a1 1 0 0 0 0 2l-.008.039h.051a1 1 0 0 0 .958-1.038a1 1 0 0 0-1.001-1.001'/%3E%3Cpath fill='black' d='M12 2C6.479 2 2 6.477 2 12c0 5.521 4.479 10 10 10s10-4.479 10-10c0-5.523-4.479-10-10-10m5.859 11.33q.018.22 0 .439c0 2.24-2.609 4.062-5.83 4.062s-5.83-1.82-5.83-4.062a3 3 0 0 1 0-.439a1.46 1.46 0 0 1-.455-2.327a1.46 1.46 0 0 1 2.063-.063a7.15 7.15 0 0 1 3.899-1.23l.743-3.47v-.004A.313.313 0 0 1 12.82 6l2.449.49a1.001 1.001 0 1 1-.131.61L13 6.65l-.649 3.12a7.1 7.1 0 0 1 3.85 1.23a1.46 1.46 0 0 1 2.469 1c.01.563-.307 1.08-.811 1.33'/%3E%3C/svg%3E"); } .bxl-redux { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.661 15.549a1.315 1.315 0 0 0 1.185-1.386a1.363 1.363 0 0 0-1.35-1.302h-.048a1.35 1.35 0 0 0-1.303 1.397c.024.379.179.687.391.911c-.827 1.609-2.07 2.794-3.954 3.788c-1.266.663-2.604.912-3.905.734c-1.089-.153-1.94-.64-2.463-1.421c-.78-1.185-.852-2.462-.201-3.74a5.6 5.6 0 0 1 1.658-1.931a8 8 0 0 1-.331-1.218c-3.506 2.51-3.148 5.942-2.084 7.564c.794 1.184 2.415 1.941 4.19 1.941c.474 0 .972-.035 1.457-.154c3.077-.592 5.409-2.438 6.747-5.16z'/%3E%3Cpath fill='black' d='M19.887 12.589c-1.834-2.154-4.533-3.337-7.611-3.337h-.403c-.2-.438-.661-.711-1.183-.711h-.036c-.744 0-1.325.64-1.301 1.385c.023.71.627 1.302 1.35 1.302h.059a1.33 1.33 0 0 0 1.183-.828h.439c1.824 0 3.551.532 5.126 1.574c1.206.792 2.072 1.834 2.557 3.077c.425 1.019.402 2.013-.035 2.843c-.675 1.302-1.812 1.988-3.314 1.988c-.947 0-1.871-.296-2.345-.509c-.283.235-.758.626-1.102.863c1.042.473 2.096.746 3.113.746c2.309 0 4.023-1.302 4.676-2.557c.709-1.422.651-3.813-1.161-5.859z'/%3E%3Cpath fill='black' d='M7.647 15.975c.023.71.626 1.302 1.35 1.302h.048a1.334 1.334 0 0 0 1.302-1.397c0-.71-.616-1.301-1.338-1.301h-.048c-.048 0-.118 0-.178.022c-.982-1.657-1.397-3.434-1.242-5.349c.094-1.445.567-2.7 1.42-3.742c.71-.888 2.048-1.326 2.96-1.35c2.556-.048 3.622 3.138 3.704 4.404l1.184.354C16.536 5.036 14.122 3 11.813 3C9.647 3 7.647 4.574 6.842 6.884c-1.102 3.077-.379 6.036.971 8.404c-.118.154-.189.426-.166.687'/%3E%3C/svg%3E"); } .bxl-sass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2c5.522 0 10 4.478 10 10s-4.478 10-10 10S2 17.522 2 12S6.478 2 12 2m-1.987 13.332c.146.537.13 1.039-.021 1.493l-.054.15a2.8 2.8 0 0 1-.527.821c-.582.633-1.394.872-1.742.671c-.375-.219-.188-1.112.487-1.825c.726-.765 1.766-1.258 1.766-1.258v-.002zm8.258-9.051c-.452-1.777-3.397-2.362-6.185-1.371c-1.656.589-3.453 1.515-4.743 2.723c-1.536 1.434-1.78 2.684-1.68 3.206c.355 1.843 2.881 3.048 3.92 3.942v.005c-.307.149-2.548 1.274-3.072 2.438c-.563 1.225.088 2.101.513 2.212c1.313.363 2.662-.3 3.388-1.374c.699-1.051.638-2.4.337-3.063c.413-.112.899-.162 1.524-.086c1.751.199 2.101 1.3 2.024 1.75c-.074.449-.436.711-.561.786s-.163.101-.151.151c.013.074.076.074.175.063c.138-.025.914-.375.951-1.227c.037-1.074-.988-2.273-2.813-2.25c-.75.014-1.226.076-1.563.214a.3.3 0 0 0-.088-.088c-1.125-1.213-3.213-2.063-3.125-3.675c.025-.588.237-2.137 4-4.012c3.088-1.538 5.551-1.112 5.977-.175c.61 1.336-1.314 3.825-4.526 4.187c-1.225.138-1.862-.337-2.026-.513c-.174-.188-.198-.2-.261-.161c-.101.05-.038.212 0 .313c.1.249.487.688 1.163.912c.587.188 2.024.299 3.75-.375c1.937-.749 3.449-2.838 3.012-4.588z'/%3E%3C/svg%3E"); } .bxl-shopify { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m14.49 20.937l5.381-1.166S17.93 6.633 17.914 6.546s-.086-.144-.158-.144s-1.439-.101-1.439-.101s-.949-.949-1.064-1.05c-.027-.029-.057-.043-.086-.058zm.446-15.772c-.016 0-.043.014-.057.014c-.016 0-.217.059-.533.158c-.318-.919-.879-1.768-1.871-1.768h-.086c-.289-.361-.633-.519-.936-.519c-2.316 0-3.426 2.892-3.77 4.359c-.892.275-1.538.476-1.613.505c-.504.158-.517.172-.574.648c-.057.344-1.367 10.489-1.367 10.489l10.117 1.899zm-2.635.704v.102c-.559.173-1.178.36-1.783.547c.346-1.323.992-1.972 1.553-2.217c.146.375.23.878.23 1.568m-.92-2.2c.1 0 .201.028.303.102c-.732.344-1.539 1.222-1.871 2.978a59 59 0 0 1-1.411.432c.389-1.339 1.325-3.512 2.979-3.512m.402 7.812s-.604-.315-1.322-.315c-1.08 0-1.123.676-1.123.849c0 .921 2.418 1.28 2.418 3.453c0 1.712-1.08 2.806-2.547 2.806c-1.756 0-2.648-1.094-2.648-1.094l.475-1.554s.922.792 1.697.792a.693.693 0 0 0 .721-.69c0-1.209-1.986-1.268-1.986-3.252c0-1.669 1.195-3.295 3.627-3.295c.936 0 1.395.272 1.395.272zm.922-7.281c.518.06.85.648 1.064 1.311c-.258.087-.547.173-.863.273v-.187c0-.561-.072-1.022-.201-1.397'/%3E%3C/svg%3E"); } .bxl-sketch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.42 9.87L12 20.78l5.58-10.91zM5.9 4.01L2 9.24h3.62zm6.1-.59L6.63 9.24h10.74zM2.04 9.87l9.09 10.58L5.72 9.87zM11.53 3h-.15l-4.84.51a.1.1 0 0 1 0 .05l-.27 5.15zm1.34 17.45l9.09-10.58h-3.68zm4.58-16.87a.1.1 0 0 1 0-.05l-4-.42l-1-.11l5.26 5.71zm.65.43l.28 5.23H22l-2.22-2.98z'/%3E%3C/svg%3E"); } .bxl-skype { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.857 17.417c-2.947 0-4.294-1.524-4.294-2.641c0-.266.108-.521.298-.705a.95.95 0 0 1 .71-.264c1.261 0 .931 1.92 3.286 1.92c1.203 0 1.91-.736 1.91-1.425c0-.415-.234-.889-1.028-1.079l-2.629-.673c-2.111-.545-2.479-1.737-2.479-2.842c0-2.293 2.068-3.124 4.036-3.124c1.814 0 3.97 1.016 3.97 2.391c0 .592-.488.91-1.055.91c-1.078 0-.897-1.536-3.063-1.536c-1.077 0-1.645.513-1.645 1.23s.839.96 1.574 1.123l1.941.445c2.126.486 2.691 1.751 2.691 2.963c0 1.865-1.423 3.305-4.226 3.305m8.139-3.942q.129-.736.128-1.482a8.47 8.47 0 0 0-2.952-6.474a8.21 8.21 0 0 0-6.788-1.856A4.8 4.8 0 0 0 7.935 3a4.95 4.95 0 0 0-4.27 2.519a5.1 5.1 0 0 0-.015 5.011a8.51 8.51 0 0 0 2.282 7.453a8.23 8.23 0 0 0 7.333 2.355a4.8 4.8 0 0 0 2.443.662a4.95 4.95 0 0 0 4.269-2.518a5.1 5.1 0 0 0 .016-5.009'/%3E%3C/svg%3E"); } .bxl-slack { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.194 14.644c0 1.16-.943 2.107-2.103 2.107a2.11 2.11 0 0 1-2.104-2.107a2.11 2.11 0 0 1 2.104-2.106h2.103zm1.061 0c0-1.16.944-2.106 2.104-2.106a2.11 2.11 0 0 1 2.103 2.106v5.274a2.11 2.11 0 0 1-2.103 2.106a2.11 2.11 0 0 1-2.104-2.106zm2.104-8.455c-1.16 0-2.104-.948-2.104-2.107s.944-2.106 2.104-2.106a2.11 2.11 0 0 1 2.103 2.106v2.107zm0 1.06a2.11 2.11 0 0 1 2.103 2.107a2.11 2.11 0 0 1-2.103 2.106H4.092a2.11 2.11 0 0 1-2.104-2.106a2.11 2.11 0 0 1 2.104-2.107zm8.447 2.107c0-1.16.943-2.107 2.103-2.107a2.11 2.11 0 0 1 2.104 2.107a2.11 2.11 0 0 1-2.104 2.106h-2.103zm-1.061 0c0 1.16-.944 2.106-2.104 2.106a2.11 2.11 0 0 1-2.103-2.106V4.082a2.11 2.11 0 0 1 2.103-2.106c1.16 0 2.104.946 2.104 2.106zm-2.104 8.455c1.16 0 2.104.948 2.104 2.107s-.944 2.106-2.104 2.106a2.11 2.11 0 0 1-2.103-2.106v-2.107zm0-1.06a2.11 2.11 0 0 1-2.103-2.107a2.11 2.11 0 0 1 2.103-2.106h5.268a2.11 2.11 0 0 1 2.104 2.106a2.11 2.11 0 0 1-2.104 2.107z'/%3E%3C/svg%3E"); } .bxl-slack-old { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.935 12.646a1.617 1.617 0 0 0-2.022-1.034l-1.632.532c-.355-1.099-.735-2.268-1.092-3.365l.006-.002l-.004-.008l1.613-.523a1.62 1.62 0 0 0 1.035-2.023a1.62 1.62 0 0 0-2.025-1.034l-1.621.527l-.519-1.604a1.62 1.62 0 0 0-2.024-1.034a1.62 1.62 0 0 0-1.033 2.024l.522 1.609l-3.368 1.092l-.524-1.611a1.62 1.62 0 0 0-2.022-1.034a1.617 1.617 0 0 0-1.034 2.023l.524 1.616l-1.662.541a1.6 1.6 0 0 0-.988 1.95c.25.856 1.152 1.373 1.979 1.092c.006 0 .658-.209 1.665-.536l1.099 3.386h-.002v.002l-1.67.545a1.6 1.6 0 0 0-.987 1.949c.25.857 1.15 1.374 1.979 1.093c.007 0 .659-.211 1.665-.538l.003.005l.008-.002l.539 1.657a1.6 1.6 0 0 0 1.949.989c.857-.25 1.373-1.151 1.094-1.979c0-.006-.209-.654-.533-1.654l-.003-.009c1.104-.358 2.276-.739 3.376-1.098l.543 1.668a1.6 1.6 0 0 0 1.949.989c.856-.251 1.374-1.152 1.092-1.979c0-.007-.209-.659-.535-1.663l.019-.006l-.003-.007l1.609-.522a1.62 1.62 0 0 0 1.035-2.024M10.86 14.238l-1.097-3.377l.005-.001v-.006c1.098-.356 2.268-.735 3.363-1.092l1.098 3.377z'/%3E%3C/svg%3E"); } .bxl-snapchat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.166 3c.796 0 3.495.223 4.769 3.073c.426.959.324 2.589.24 3.898l-.002.047c-.011.146-.018.278-.024.41a.6.6 0 0 0 .322.072c.241-.013.53-.096.831-.241a.8.8 0 0 1 .373-.084c.146 0 .289.023.409.072c.361.12.59.385.59.674q.019.542-.975.939c-.071.023-.169.061-.276.096c-.363.109-.917.289-1.073.651c-.072.181-.049.421.098.697l.012.013c.048.109 1.228 2.795 3.854 3.229a.4.4 0 0 1 .337.409q0 .089-.036.181c-.193.457-1.023.795-2.53 1.021c-.047.073-.096.302-.132.459c-.022.144-.06.289-.107.444c-.061.218-.217.325-.446.325h-.024a2.5 2.5 0 0 1-.433-.059a4.8 4.8 0 0 0-1.024-.108c-.24 0-.48.012-.732.06c-.483.084-.904.373-1.386.71c-.687.481-1.469 1.036-2.649 1.036c-.048 0-.096-.012-.146-.012h-.119c-1.181 0-1.951-.543-2.637-1.036c-.481-.338-.89-.626-1.373-.711a5.5 5.5 0 0 0-.745-.06c-.435 0-.771.072-1.023.12c-.17.035-.314.059-.435.059a.45.45 0 0 1-.47-.337c-.048-.154-.071-.313-.107-.456c-.038-.146-.085-.396-.133-.458c-1.543-.179-2.373-.517-2.565-.986a.5.5 0 0 1-.044-.181a.4.4 0 0 1 .337-.409c2.625-.434 3.805-3.119 3.854-3.232l.013-.023c.145-.277.18-.52.096-.699c-.156-.349-.711-.529-1.07-.65a2 2 0 0 1-.279-.096c-.89-.35-1.011-.748-.962-1.024c.072-.384.541-.637.939-.637c.117 0 .217.023.308.06c.337.155.635.241.888.241a.74.74 0 0 0 .373-.085l-.041-.458c-.08-1.307-.182-2.935.247-3.889c1.236-2.836 3.929-3.054 4.724-3.054L12.117 3z'/%3E%3C/svg%3E"); } .bxl-soundcloud { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.971 12.188c-.041 0-.078.038-.083.082l-.194 1.797l.194 1.756c.005.049.042.082.083.082s.075-.033.084-.082l.211-1.756l-.225-1.797c0-.046-.037-.082-.074-.082m-.75.691c-.051 0-.076.03-.088.079l-.138 1.109l.138 1.092c0 .046.037.078.075.078c.039 0 .073-.038.087-.087l.176-1.1l-.176-1.112c0-.051-.037-.076-.075-.076m1.526-1.025c-.052 0-.1.039-.1.087l-.176 2.139l.188 2.051c0 .049.037.1.099.1c.052 0 .089-.051.102-.1l.211-2.064l-.211-2.126c-.013-.049-.052-.1-.102-.1m.79-.075c-.063 0-.114.051-.126.113l-.161 2.201l.177 2.123c.012.063.061.114.122.114c.064 0 .113-.051.125-.124l.201-2.113l-.201-2.187a.11.11 0 0 0-.111-.112zm.962.301a.13.13 0 0 0-.133-.125a.134.134 0 0 0-.137.125l-.182 2.026l.169 2.138a.13.13 0 0 0 .132.131c.062 0 .123-.055.123-.132l.189-2.139l-.189-2.036zm.674-1.426a.154.154 0 0 0-.148.15l-.176 3.3l.156 2.139c0 .077.066.137.15.137c.078 0 .145-.074.15-.15l.174-2.137l-.173-3.313c-.007-.088-.074-.152-.15-.152m.8-.762a.18.18 0 0 0-.17.163l-.15 4.063l.138 2.125c0 .1.075.174.163.174c.086 0 .161-.074.174-.174l.162-2.125l-.161-4.052c-.013-.1-.088-.175-.175-.175m.826-.372c-.102 0-.176.073-.188.173l-.139 4.4l.139 2.102c.012.1.086.188.188.188a.193.193 0 0 0 .187-.188l.163-2.102l-.164-4.4c0-.1-.087-.188-.188-.188m1.038.038a.196.196 0 0 0-.199-.199a.205.205 0 0 0-.201.199l-.125 4.538l.124 2.089c.015.111.101.199.214.199s.201-.088.201-.199l.136-2.089l-.136-4.55zm.625-.111c-.113 0-.213.1-.213.211l-.125 4.439l.125 2.063c0 .125.1.213.213.213a.22.22 0 0 0 .214-.224l.125-2.064l-.14-4.428c0-.122-.1-.225-.225-.225m.838.139a.236.236 0 0 0-.237.237l-.086 4.29l.113 2.063c0 .124.1.231.236.231c.125 0 .227-.1.237-.237l.101-2.038l-.112-4.265c-.01-.137-.113-.238-.237-.238m.988-.786a.27.27 0 0 0-.139-.037c-.05 0-.1.013-.137.037a.25.25 0 0 0-.125.214v.05l-.086 5.044l.096 2.043v.007c.006.05.024.112.06.15c.05.051.12.086.196.086a.28.28 0 0 0 .175-.074a.26.26 0 0 0 .076-.188l.013-.201l.097-1.838l-.113-5.075a.24.24 0 0 0-.111-.199zm.837-.457a.16.16 0 0 0-.124-.052a.3.3 0 0 0-.174.052a.27.27 0 0 0-.1.201v.023l-.114 5.513l.063 1.014l.052.988a.274.274 0 0 0 .548-.012l.125-2.013l-.125-5.536a.27.27 0 0 0-.138-.231m7.452 3.15c-.336 0-.663.072-.949.193a4.34 4.34 0 0 0-5.902-3.651c-.188.075-.227.151-.238.301v7.812a.31.31 0 0 0 .275.29h6.827a2.43 2.43 0 0 0 2.45-2.438a2.457 2.457 0 0 0-2.45-2.463'/%3E%3C/svg%3E"); } .bxl-spotify { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.01 2.019c-5.495 0-9.991 4.496-9.991 9.991S6.515 22 12.01 22S22 17.504 22 12.01c0-5.495-4.446-9.991-9.99-9.991m4.595 14.436c-.199.299-.549.4-.85.201c-2.349-1.45-5.296-1.75-8.793-.951c-.348.102-.648-.148-.748-.449c-.101-.35.149-.648.45-.749c3.795-.85 7.093-.499 9.69 1.1c.35.149.4.548.251.848m1.2-2.747c-.251.349-.7.499-1.051.249c-2.697-1.646-6.792-2.148-9.939-1.148c-.398.101-.85-.1-.949-.498c-.101-.402.1-.852.499-.952c3.646-1.098 8.143-.548 11.239 1.351c.3.149.45.648.201.998m.099-2.799c-3.197-1.897-8.542-2.097-11.59-1.146a.94.94 0 0 1-1.148-.6a.937.937 0 0 1 .599-1.151c3.547-1.049 9.392-.85 13.089 1.351c.449.249.599.849.349 1.298c-.25.35-.849.498-1.299.248'/%3E%3C/svg%3E"); } .bxl-spring-boot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.205 16.392c-2.469 3.289-7.741 2.179-11.122 2.338c0 0-.599.034-1.201.133c0 0 .228-.097.519-.198c2.374-.821 3.496-.986 4.939-1.727c2.71-1.388 5.408-4.413 5.957-7.555c-1.032 3.022-4.17 5.623-7.027 6.679c-1.955.722-5.492 1.424-5.493 1.424l-.143-.076c-2.405-1.17-2.475-6.38 1.894-8.059c1.916-.736 3.747-.332 5.818-.825c2.208-.525 4.766-2.18 5.805-4.344c1.165 3.458 2.565 8.866.054 12.21m.042-13.28a9.2 9.2 0 0 1-1.065 1.89a9.98 9.98 0 0 0-7.167-3.031C6.492 1.971 2 6.463 2 11.985a9.98 9.98 0 0 0 3.205 7.334l.22.194a.856.856 0 1 1 .001.001l.149.132A9.96 9.96 0 0 0 12.015 22c5.278 0 9.613-4.108 9.984-9.292c.274-2.539-.476-5.763-1.752-9.596'/%3E%3C/svg%3E"); } .bxl-squarespace { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.886 9.264c-1.502-1.5-3.941-1.5-5.475 0l-6.13 6.131a.98.98 0 0 0 0 1.377a.98.98 0 0 0 1.376 0l6.13-6.131a1.925 1.925 0 0 1 2.722 2.723l-6.037 6.035c.751.75 1.971.75 2.723 0l4.66-4.66c1.531-1.534 1.531-3.973.031-5.475m-2.064 2.033a.98.98 0 0 0-1.376 0l-6.134 6.162c-.751.75-1.97.75-2.72 0c-.376-.375-1.002-.375-1.377 0s-.375 1.002 0 1.375c1.502 1.502 3.942 1.502 5.475 0l6.131-6.129c.375-.406.375-1.033.001-1.408m-2.035-6.129c-1.501-1.502-3.941-1.502-5.475 0l-6.131 6.129a.98.98 0 0 0 0 1.375a.98.98 0 0 0 1.377 0l6.168-6.129a1.934 1.934 0 0 1 2.727 0a.98.98 0 0 0 1.376 0c.352-.406.352-1-.024-1.375zm-2.063 2.031a.98.98 0 0 0-1.376 0l-6.131 6.164a1.933 1.933 0 0 1-2.723 0a1.927 1.927 0 0 1 0-2.723l6.037-6.039a1.93 1.93 0 0 0-2.722 0L3.118 9.264c-1.501 1.502-1.501 3.941 0 5.475c1.501 1.502 3.94 1.502 5.475 0l6.129-6.131c.377-.408.377-1.033 0-1.408z'/%3E%3C/svg%3E"); } .bxl-stack-overflow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.24 19.399v-4.804h1.6V21H4.381v-6.405h1.598v4.804zM7.582 17.8h8.055v-1.604H7.582zm.195-3.64l7.859 1.641l.34-1.552l-7.861-1.642zm1.018-3.794l7.281 3.398l.678-1.463l-7.281-3.399l-.678 1.454zm2.037-3.589l6.166 5.142l1.018-1.216l-6.162-5.14l-1.016 1.213zm3.982-3.778l-1.311.969l4.803 6.454l1.313-.971l-4.807-6.452z'/%3E%3C/svg%3E"); } .bxl-steam { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.21 17.32L7 16.8a2.13 2.13 0 1 0 1.17-2.93l1.28.53a1.58 1.58 0 0 1-1.22 2.92z'/%3E%3Cpath fill='black' d='M12 2a10 10 0 0 0-10 9.34l5.38 2.21a2.3 2.3 0 0 1 .47-.24A2.6 2.6 0 0 1 9 13.1l2.44-3.56a3.8 3.8 0 1 1 3.8 3.8h-.08l-3.51 2.5a2.77 2.77 0 0 1-5.47.68l-3.77-1.6A10 10 0 1 0 12 2'/%3E%3Cpath fill='black' d='M17.79 9.5a2.53 2.53 0 1 0-2.53 2.5a2.54 2.54 0 0 0 2.53-2.5m-4.42 0a1.9 1.9 0 1 1 1.9 1.91a1.9 1.9 0 0 1-1.9-1.92z'/%3E%3C/svg%3E"); } .bxl-stripe { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.479 9.883c-1.626-.604-2.512-1.067-2.512-1.803c0-.622.511-.977 1.423-.977c1.667 0 3.379.642 4.558 1.22l.666-4.111c-.935-.446-2.847-1.177-5.49-1.177c-1.87 0-3.425.489-4.536 1.401c-1.155.954-1.757 2.334-1.757 4c0 3.023 1.847 4.312 4.847 5.403c1.936.688 2.579 1.178 2.579 1.934c0 .732-.629 1.155-1.762 1.155c-1.403 0-3.716-.689-5.231-1.578l-.674 4.157c1.304.732 3.705 1.488 6.197 1.488c1.976 0 3.624-.467 4.735-1.356c1.245-.977 1.89-2.422 1.89-4.289c0-3.091-1.889-4.38-4.935-5.468h.002z'/%3E%3C/svg%3E"); } .bxl-tailwind-css { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 9.51a4.2 4.2 0 0 1-1.91-1.34A5.77 5.77 0 0 0 12 6a4.72 4.72 0 0 0-5 4a3.23 3.23 0 0 1 3.5-1.49a4.3 4.3 0 0 1 1.91 1.35A5.77 5.77 0 0 0 17 12a4.72 4.72 0 0 0 5-4a3.2 3.2 0 0 1-3.5 1.51m-13 4.98a4.2 4.2 0 0 1 1.91 1.34A5.77 5.77 0 0 0 12 18a4.72 4.72 0 0 0 5-4a3.23 3.23 0 0 1-3.5 1.49a4.3 4.3 0 0 1-1.91-1.35A5.8 5.8 0 0 0 7 12a4.72 4.72 0 0 0-5 4a3.2 3.2 0 0 1 3.5-1.51'/%3E%3C/svg%3E"); } .bxl-telegram { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.665 3.717l-17.73 6.837c-1.21.486-1.203 1.161-.222 1.462l4.552 1.42l10.532-6.645c.498-.303.953-.14.579.192l-8.533 7.701h-.002l.002.001l-.314 4.692c.46 0 .663-.211.921-.46l2.211-2.15l4.599 3.397c.848.467 1.457.227 1.668-.785l3.019-14.228c.309-1.239-.473-1.8-1.282-1.434'/%3E%3C/svg%3E"); } .bxl-tiktok { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74a2.89 2.89 0 0 1 2.31-4.64a3 3 0 0 1 .88.13V9.4a7 7 0 0 0-1-.05A6.33 6.33 0 0 0 5 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a5 5 0 0 1-1-.1z'/%3E%3C/svg%3E"); } .bxl-trello { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.75 3H5.25A2.25 2.25 0 0 0 3 5.25v13.5A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V5.25A2.25 2.25 0 0 0 18.75 3m-7.92 13.635a1.08 1.08 0 0 1-1.08 1.08H6.42a1.08 1.08 0 0 1-1.08-1.08V6.42c0-.597.483-1.08 1.08-1.08h3.33c.596 0 1.08.483 1.08 1.08zm7.83-4.5a1.08 1.08 0 0 1-1.08 1.08h-3.33a1.08 1.08 0 0 1-1.08-1.08V6.42c0-.597.484-1.08 1.08-1.08h3.33c.597 0 1.08.483 1.08 1.08z'/%3E%3C/svg%3E"); } .bxl-trip-advisor { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.31 10.28a2.5 2.5 0 1 0 2.5 2.49a2.5 2.5 0 0 0-2.5-2.49m0 3.8a1.31 1.31 0 1 1 0-2.61a1.31 1.31 0 1 1 0 2.61m7.38-3.8a2.5 2.5 0 1 0 2.5 2.49a2.5 2.5 0 0 0-2.5-2.49M17 12.77a1.31 1.31 0 1 1-1.31-1.3a1.31 1.31 0 0 1 1.31 1.3'/%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m7.38 10.77a3.69 3.69 0 0 1-6.2 2.71L12 16.77l-1.18-1.29a3.69 3.69 0 1 1-5-5.44l-1.2-1.3H7.3a8.33 8.33 0 0 1 9.41 0h2.67l-1.2 1.31a3.7 3.7 0 0 1 1.2 2.72'/%3E%3Cpath fill='black' d='M14.77 9.05a7.2 7.2 0 0 0-5.54 0A4.06 4.06 0 0 1 12 12.7a4.08 4.08 0 0 1 2.77-3.65'/%3E%3C/svg%3E"); } .bxl-tumblr { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14.078 20.953c-2.692 0-4.699-1.385-4.699-4.7v-5.308H6.931V8.07c2.694-.699 3.821-3.017 3.95-5.023h2.796v4.558h3.263v3.34h-3.263v4.622c0 1.386.699 1.864 1.813 1.864h1.58v3.522z'/%3E%3C/svg%3E"); } .bxl-tux { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.642 8.084c-.364.189-.79.42-1.242.42s-.81-.209-1.066-.413c-.13-.101-.234-.202-.313-.276c-.137-.108-.12-.259-.064-.254c.094.012.108.136.168.191c.08.075.18.172.302.269c.243.192.567.38.973.38s.878-.238 1.167-.4c.163-.092.371-.256.541-.381c.13-.095.125-.21.232-.198c.107.013.028.127-.122.258a3.4 3.4 0 0 1-.576.404'/%3E%3Cpath fill='black' d='M19.649 17.77c-.142-.16-.209-.456-.281-.771s-.153-.654-.411-.874l-.002-.001a1 1 0 0 0-.317-.192c.359-1.065.219-2.126-.145-3.084c-.444-1.177-1.222-2.202-1.815-2.903c-.664-.838-1.313-1.633-1.301-2.808c.021-1.793.197-5.118-2.958-5.122a5 5 0 0 0-.401.017c-3.526.283-2.59 4.008-2.643 5.255c-.064.912-.249 1.631-.877 2.523c-.736.876-1.774 2.295-2.266 3.771c-.232.697-.342 1.407-.241 2.08a2 2 0 0 0-.091.089c-.216.231-.376.511-.555.699c-.166.167-.403.229-.664.323s-.547.231-.721.565l-.001.002a1 1 0 0 0-.108.484c0 .154.023.311.046.461c.048.313.097.609.032.81c-.206.564-.232.954-.087 1.237s.444.409.783.479c.676.141 1.592.106 2.314.489l.062-.117l-.061.118c.773.404 1.557.547 2.182.405c.454-.104.821-.374 1.011-.789c.489-.002 1.025-.209 1.885-.256c.583-.047 1.312.207 2.149.16a1 1 0 0 0 .099.264c.324.649.928.946 1.571.896s1.329-.43 1.883-1.089l-.102-.085l.102.084c.527-.64 1.403-.905 1.984-1.255c.29-.175.525-.395.544-.713c.018-.318-.169-.675-.599-1.152m-7.79-11.708c-.003-.234.036-.435.126-.639s.201-.351.358-.47s.312-.174.494-.176h.009c.179 0 .332.053.489.167c.159.116.274.261.366.463a1.5 1.5 0 0 1 .141.636c.002.235-.038.435-.127.639a1.2 1.2 0 0 1-.18.299l-.074-.033q-.133-.056-.237-.096c-.104-.04-.124-.044-.181-.064c.041-.049.122-.108.151-.181a1 1 0 0 0 .072-.347l.002-.016a1 1 0 0 0-.05-.337c-.038-.113-.086-.195-.155-.263s-.139-.099-.223-.101h-.011a.32.32 0 0 0-.217.086a.6.6 0 0 0-.174.25a1 1 0 0 0-.072.348l-.001.015a1 1 0 0 0 .014.2a2.5 2.5 0 0 0-.507-.171a2 2 0 0 1-.014-.19zm-2.144.052c-.012-.202.009-.376.064-.556s.13-.311.238-.418a.52.52 0 0 1 .349-.168h.03c.118 0 .225.04.335.127a1 1 0 0 1 .284.389c.076.171.116.343.127.545v.002a1.5 1.5 0 0 1-.002.243l-.068.021c-.128.044-.23.093-.328.158a1 1 0 0 0 .003-.214v-.012a1 1 0 0 0-.068-.274a.5.5 0 0 0-.138-.203c-.052-.044-.1-.065-.153-.064l-.017.001c-.061.005-.11.034-.157.092a.54.54 0 0 0-.101.223a.9.9 0 0 0-.019.293l.001.012c.01.103.031.189.067.275a.53.53 0 0 0 .166.224c-.059.045-.098.078-.146.113l-.11.081a1 1 0 0 1-.229-.342a1.5 1.5 0 0 1-.128-.546zm.155 1.228c.187-.14.315-.234.402-.298c.086-.063.121-.086.148-.112h.001c.14-.132.362-.374.699-.49c.115-.04.245-.065.39-.066c.275-.001.608.089 1.01.348c.247.16.439.174.882.363h.001c.213.087.338.202.399.321q.09.18.012.387c-.103.273-.429.562-.887.705h-.001c-.224.072-.418.233-.647.364a1.45 1.45 0 0 1-.842.217a1.1 1.1 0 0 1-.374-.083a1.2 1.2 0 0 1-.27-.167c-.161-.131-.303-.295-.51-.416h-.002c-.333-.19-.515-.408-.573-.598c-.057-.189-.003-.351.162-.475m.131 13.018c-.047.623-.398.961-.938 1.085c-.539.123-1.27 0-1.999-.381h-.001c-.808-.427-1.768-.385-2.384-.514c-.308-.064-.509-.161-.602-.341s-.094-.494.102-1.028l.001-.002l.001-.002c.097-.299.025-.626-.021-.934c-.047-.307-.07-.586.034-.781l.001-.002c.135-.259.332-.352.576-.439c.245-.088.534-.157.764-.386l.001-.001l.001-.001c.212-.223.371-.503.557-.702c.157-.167.314-.279.551-.28h.009q.061 0 .132.011c.314.047.588.268.853.625l.762 1.389h.001c.202.423.631.89.994 1.365c.362.475.644.952.607 1.317zm-.063-1.01a7 7 0 0 0-.333-.469a14 14 0 0 0-.229-.293q.227 0 .384-.072a.5.5 0 0 0 .266-.274c.09-.242 0-.583-.288-.973c-.29-.39-.778-.83-1.494-1.269c-.527-.328-.821-.729-.959-1.165s-.119-.907-.013-1.373c.204-.894.729-1.762 1.063-2.308c.09-.066.032.123-.339.811c-.332.629-.953 2.081-.103 3.214a6.7 6.7 0 0 1 .538-2.398c.472-1.067 1.456-2.919 1.534-4.395c.041.029.18.123.241.158c.182.106.316.262.492.403c.177.142.396.264.729.283l.093.003c.343 0 .61-.112.833-.239c.242-.138.436-.292.618-.351h.001c.387-.122.694-.335.869-.585c.302 1.186 1.001 2.897 1.45 3.733c.239.443.715 1.385.92 2.52q.195-.005.427.054c.537-1.393-.455-2.892-.909-3.31c-.184-.178-.192-.258-.102-.254c.492.436 1.139 1.311 1.374 2.3c.107.451.13.925.016 1.393q.084.034.171.076c.862.42 1.181.785 1.027 1.283q-.076-.002-.148 0h-.014c.125-.395-.151-.687-.889-1.02c-.764-.336-1.373-.303-1.476.379a1 1 0 0 0-.017.109q-.085.03-.172.076c-.358.197-.555.553-.664.99s-.14.964-.17 1.558c-.019.298-.141.702-.266 1.129c-1.249.897-2.986 1.283-4.461.276m9.628.057c-.524.317-1.456.593-2.05 1.313c-.517.615-1.146.952-1.7.996c-.555.044-1.033-.186-1.315-.752v-.001l-.001-.003c-.175-.333-.102-.858.045-1.412s.359-1.123.388-1.585v-.001c.03-.592.063-1.11.163-1.509s.256-.669.533-.821l.039-.02c.031.513.285 1.036.734 1.149c.491.129 1.199-.292 1.498-.636l.175-.007c.262-.006.481.009.707.205v.001h.001c.173.146.255.423.326.733s.128.647.342.888h.001c.41.456.542.764.531.96c-.011.198-.153.344-.417.502'/%3E%3Cpath fill='black' d='M11.738 6.762c.015.048.093.04.138.063c.04.02.071.065.116.066c.042.001.107-.015.113-.057c.008-.056-.073-.091-.126-.111c-.067-.026-.153-.039-.216-.004c-.014.008-.03.027-.025.043m-.46 0c-.016.048-.094.04-.139.063c-.039.02-.071.065-.115.066c-.042.001-.108-.015-.114-.057c-.007-.056.074-.091.126-.111c.067-.026.153-.039.217-.004c.015.008.03.027.025.043'/%3E%3C/svg%3E"); } .bxl-twitch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.265 3L3 6.236v13.223h4.502V21l2.531.85l2.392-2.391h3.658l4.923-4.924V3zm15.052 10.691l-2.813 2.814h-4.502l-2.391 2.391v-2.391H5.813V4.688h13.504zm-2.812-5.767v4.923h-1.688V7.924zm-4.502 0v4.923h-1.688V7.924z'/%3E%3C/svg%3E"); } .bxl-twitter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.633 7.997c.013.175.013.349.013.523c0 5.325-4.053 11.461-11.46 11.461c-2.282 0-4.402-.661-6.186-1.809c.324.037.636.05.973.05a8.07 8.07 0 0 0 5.001-1.721a4.04 4.04 0 0 1-3.767-2.793c.249.037.499.062.761.062c.361 0 .724-.05 1.061-.137a4.03 4.03 0 0 1-3.23-3.953v-.05c.537.299 1.16.486 1.82.511a4.02 4.02 0 0 1-1.796-3.354c0-.748.199-1.434.548-2.032a11.46 11.46 0 0 0 8.306 4.215c-.062-.3-.1-.611-.1-.923a4.026 4.026 0 0 1 4.028-4.028c1.16 0 2.207.486 2.943 1.272a8 8 0 0 0 2.556-.973a4.02 4.02 0 0 1-1.771 2.22a8 8 0 0 0 2.319-.624a8.7 8.7 0 0 1-2.019 2.083'/%3E%3C/svg%3E"); } .bxl-typescript { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.24 3H4.76A1.76 1.76 0 0 0 3 4.76v14.48A1.76 1.76 0 0 0 4.76 21h14.48A1.76 1.76 0 0 0 21 19.24V4.76A1.76 1.76 0 0 0 19.24 3m-5.8 10h-2.25v6.44H9.4V13H7.15v-1.46h6.29zm5.8 5.28a1.7 1.7 0 0 1-.67.74a3 3 0 0 1-1 .39a6 6 0 0 1-1.2.12a7 7 0 0 1-1.23-.11a4.5 4.5 0 0 1-1-.33v-1.71l-.06-.06h.06v.07a3.4 3.4 0 0 0 1 .54a3.1 3.1 0 0 0 1.13.2a2.6 2.6 0 0 0 .6-.06a1.5 1.5 0 0 0 .42-.17a.75.75 0 0 0 .25-.25a.69.69 0 0 0-.06-.74a1.2 1.2 0 0 0-.35-.33a3 3 0 0 0-.53-.3l-.67-.28a3.6 3.6 0 0 1-1.37-1a2 2 0 0 1-.46-1.33a2.16 2.16 0 0 1 .24-1.06a2.1 2.1 0 0 1 .66-.71a2.9 2.9 0 0 1 1-.42a5 5 0 0 1 1.19-.13a7 7 0 0 1 1.09.07a4.5 4.5 0 0 1 .88.23v1.65a2.4 2.4 0 0 0-.42-.24a4 4 0 0 0-.49-.17a3 3 0 0 0-.49-.1a2.5 2.5 0 0 0-.46 0a2.3 2.3 0 0 0-.56.06a1.5 1.5 0 0 0-.43.16a.8.8 0 0 0-.26.25a.63.63 0 0 0-.09.33a.6.6 0 0 0 .1.35a1.2 1.2 0 0 0 .3.29a2.2 2.2 0 0 0 .46.28l.63.28a7 7 0 0 1 .84.42a2.7 2.7 0 0 1 .64.49a1.8 1.8 0 0 1 .42.63a2.5 2.5 0 0 1 .14.85a2.7 2.7 0 0 1-.25 1.08z'/%3E%3C/svg%3E"); } .bxl-unity { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m10.4 17.8l1.21 2.07L19.77 22L22 14.08L20.72 12L22 10l-2.23-8l-8.16 2.13L10.4 6.2H8L2 12l6 5.81zm9.92-5.8l-1.73 6L15 12l3.59-6zM10.6 6.54L16.84 5l-3.59 6H6.08zM13.27 13l3.59 6l-6.26-1.55L6.1 13z'/%3E%3C/svg%3E"); } .bxl-unsplash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.625 8.063V3h6.75v5.063zm6.75 2.812H21V21H3V10.875h5.625v5.063h6.75z'/%3E%3C/svg%3E"); } .bxl-upwork { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.47 6.07a4.54 4.54 0 0 0-4.38 3.69a20 20 0 0 1-2.28-4.9H8.55v6a2.14 2.14 0 1 1-4.28 0v-6L2 4.91v6a4.4 4.4 0 1 0 8.8-.05v-1a20.6 20.6 0 0 0 1.65 2.7l-1.38 6.61h2.32l1-4.81a5.6 5.6 0 0 0 3.11.89a4.57 4.57 0 0 0 0-9.14zm0 6.83a4.1 4.1 0 0 1-2.55-1l.23-.91v-.05c.16-1 .66-2.6 2.35-2.6a2.25 2.25 0 0 1 2.27 2.24a2.41 2.41 0 0 1-2.27 2.32z'/%3E%3C/svg%3E"); } .bxl-venmo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 3.27a7.5 7.5 0 0 1 .66 3.35c0 2.72-1.93 6.72-3.49 9.27L9.53 2.44l-6.91.65L5.79 22h7.88c3.45-4.54 7.71-11 7.71-16a7.3 7.3 0 0 0-1.06-4z'/%3E%3C/svg%3E"); } .bxl-vimeo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.062 10.414c-2.036 4.349-6.949 10.267-10.054 10.267c-3.06 0-3.501-6.527-5.173-10.869c-.823-2.138-1.354-1.646-2.896-.567L2 8.031c2.248-1.976 4.499-4.272 5.88-4.399q2.339-.222 2.873 3.193c.475 2.994 1.137 7.641 2.291 7.641c.9 0 3.117-3.686 3.232-5.004c.203-1.93-1.421-1.989-2.828-1.387c2.228-7.295 11.494-5.95 7.614 2.339'/%3E%3C/svg%3E"); } .bxl-visa { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.539 9.186a4.2 4.2 0 0 0-1.451-.251c-1.6 0-2.73.806-2.738 1.963c-.01.85.803 1.329 1.418 1.613c.631.292.842.476.84.737c-.004.397-.504.577-.969.577c-.639 0-.988-.089-1.525-.312l-.199-.093l-.227 1.332c.389.162 1.09.301 1.814.313c1.701 0 2.813-.801 2.826-2.032c.014-.679-.426-1.192-1.352-1.616c-.563-.275-.912-.459-.912-.738c0-.247.299-.511.924-.511a2.95 2.95 0 0 1 1.213.229l.15.067l.227-1.287zm4.152-.143h-1.25c-.389 0-.682.107-.852.493l-2.404 5.446h1.701l.34-.893l2.076.002c.049.209.199.891.199.891h1.5zm-10.642-.05h1.621l-1.014 5.942H9.037l1.012-5.944zm-4.115 3.275l.168.825l1.584-4.05h1.717l-2.551 5.931H5.139l-1.4-5.022a.34.34 0 0 0-.149-.199a7 7 0 0 0-1.592-.589l.022-.125h2.609c.354.014.639.125.734.503l.57 2.729v-.003zm12.757.606l.646-1.662c-.008.018.133-.343.215-.566l.111.513l.375 1.714H18.69z'/%3E%3C/svg%3E"); } .bxl-visual-studio { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.29 4.1l-4.12-2a1.4 1.4 0 0 0-.48-.1h-.08a1.18 1.18 0 0 0-.72.24l-.14.12l-7.88 7.19L4.44 7a.83.83 0 0 0-.54-.17a.88.88 0 0 0-.53.17l-1.1 1a.8.8 0 0 0-.27.61a.84.84 0 0 0 .27.62l3 2.71l-3 2.72a.84.84 0 0 0 0 1.23l1.1 1a.9.9 0 0 0 .6.22a.93.93 0 0 0 .47-.17l3.43-2.61l7.88 7.19a1.2 1.2 0 0 0 .76.36h.17a1 1 0 0 0 .49-.12l4.12-2a1.25 1.25 0 0 0 .71-1.1V5.23a1.26 1.26 0 0 0-.71-1.13M17 16.47l-6-4.53l6-4.53z'/%3E%3C/svg%3E"); } .bxl-vk { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.579 6.855c.14-.465 0-.806-.662-.806h-2.193c-.558 0-.813.295-.953.619c0 0-1.115 2.719-2.695 4.482c-.51.513-.743.675-1.021.675c-.139 0-.341-.162-.341-.627V6.855c0-.558-.161-.806-.626-.806H9.642c-.348 0-.558.258-.558.504c0 .528.79.65.871 2.138v3.228c0 .707-.127.836-.407.836c-.743 0-2.551-2.729-3.624-5.853c-.209-.607-.42-.852-.98-.852H2.752c-.627 0-.752.295-.752.619c0 .582.743 3.462 3.461 7.271c1.812 2.601 4.363 4.011 6.687 4.011c1.393 0 1.565-.313 1.565-.853v-1.966c0-.626.133-.752.574-.752c.324 0 .882.164 2.183 1.417c1.486 1.486 1.732 2.153 2.567 2.153h2.192c.626 0 .939-.313.759-.931c-.197-.615-.907-1.51-1.849-2.569c-.512-.604-1.277-1.254-1.51-1.579c-.325-.419-.231-.604 0-.976c.001.001 2.672-3.761 2.95-5.04'/%3E%3C/svg%3E"); } .bxl-vuejs { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 12.765l5.592-9.437h-3.276L12 7.33v.002L9.688 3.328h-3.28z'/%3E%3Cpath fill='black' d='M18.461 3.332L12 14.235L5.539 3.332H1.992L12 20.672l10.008-17.34z'/%3E%3C/svg%3E"); } .bxl-whatsapp { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M18.403 5.633A8.92 8.92 0 0 0 12.053 3c-4.948 0-8.976 4.027-8.978 8.977c0 1.582.413 3.126 1.198 4.488L3 21.116l4.759-1.249a9 9 0 0 0 4.29 1.093h.004c4.947 0 8.975-4.027 8.977-8.977a8.93 8.93 0 0 0-2.627-6.35m-6.35 13.812h-.003a7.45 7.45 0 0 1-3.798-1.041l-.272-.162l-2.824.741l.753-2.753l-.177-.282a7.45 7.45 0 0 1-1.141-3.971c.002-4.114 3.349-7.461 7.465-7.461a7.4 7.4 0 0 1 5.275 2.188a7.42 7.42 0 0 1 2.183 5.279c-.002 4.114-3.349 7.462-7.461 7.462m4.093-5.589c-.225-.113-1.327-.655-1.533-.73s-.354-.112-.504.112s-.58.729-.711.879s-.262.168-.486.056s-.947-.349-1.804-1.113c-.667-.595-1.117-1.329-1.248-1.554s-.014-.346.099-.458c.101-.1.224-.262.336-.393s.149-.224.224-.374s.038-.281-.019-.393c-.056-.113-.505-1.217-.692-1.666c-.181-.435-.366-.377-.504-.383a10 10 0 0 0-.429-.008a.83.83 0 0 0-.599.28c-.206.225-.785.767-.785 1.871s.804 2.171.916 2.321s1.582 2.415 3.832 3.387c.536.231.954.369 1.279.473c.537.171 1.026.146 1.413.089c.431-.064 1.327-.542 1.514-1.066s.187-.973.131-1.067s-.207-.151-.43-.263' clip-rule='evenodd'/%3E%3C/svg%3E"); } .bxl-whatsapp-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.043 6.925a4.985 4.985 0 0 0-4.98 4.979c-.001.94.263 1.856.761 2.649l.118.188l-.503 1.837l1.885-.494l.181.108a4.97 4.97 0 0 0 2.535.693h.001a4.986 4.986 0 0 0 4.979-4.978a4.95 4.95 0 0 0-1.456-3.522a4.95 4.95 0 0 0-3.521-1.46m2.928 7.118c-.125.35-.723.668-1.01.711a2.04 2.04 0 0 1-.943-.059a9 9 0 0 1-.853-.315c-1.502-.648-2.482-2.159-2.558-2.26c-.074-.1-.61-.812-.61-1.548c0-.737.386-1.099.523-1.249a.55.55 0 0 1 .4-.186c.1 0 .199.001.287.005c.092.004.215-.035.336.257c.125.3.425 1.036.462 1.111s.062.162.013.262c-.05.101-.074.162-.15.25c-.074.088-.157.195-.224.263c-.075.074-.153.155-.066.305c.088.149.388.64.832 1.037c.572.51 1.055.667 1.204.743c.15.074.237.063.325-.038c.087-.101.374-.437.474-.586c.1-.15.199-.125.337-.076c.137.051.873.412 1.022.487c.148.074.249.112.287.175c.036.062.036.361-.088.711'/%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-7.96 14.896h-.002a6 6 0 0 1-2.862-.729L6 18l.85-3.104a5.99 5.99 0 0 1 5.19-8.983a5.95 5.95 0 0 1 4.238 1.757a5.95 5.95 0 0 1 1.751 4.237a6 6 0 0 1-5.989 5.989'/%3E%3C/svg%3E"); } .bxl-wikipedia { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.081 12.932c-.78 1.611-1.849 3.792-2.379 4.776c-.513.896-.94.776-1.278.024c-1.172-2.77-3.58-7.625-4.712-10.347c-.209-.502-.367-.823-.516-.95q-.226-.187-.936-.227Q2 6.181 2 6.077v-.379l.043-.038c.771-.004 4.503 0 4.503 0l.042.038v.362q0 .149-.188.147l-.47.024c-.403.026-.605.137-.605.365c0 .112.044.275.139.501c.902 2.206 4.017 8.772 4.017 8.772l.114.039l2.01-4.012l-.402-.89L9.82 8.285s-.265-.545-.357-.727c-.607-1.203-.593-1.265-1.206-1.347c-.173-.02-.261-.042-.261-.125v-.39l.05-.037h3.578l.095.03v.376c0 .088-.063.125-.189.125l-.257.039c-.66.051-.551.318-.113 1.186l1.319 2.712l1.465-2.922c.244-.533.194-.668.093-.789c-.058-.07-.255-.185-.677-.2l-.168-.018a.2.2 0 0 1-.121-.043a.13.13 0 0 1-.056-.107v-.357l.051-.037c1.04-.007 3.371 0 3.371 0l.05.037v.364c0 .101-.05.148-.161.148c-.539.024-.652.079-.854.366c-.1.154-.313.49-.538.865l-1.919 3.563l-.054.112l2.328 4.763l.142.041l3.665-8.704c.129-.352.107-.602-.053-.746c-.165-.144-.289-.228-.716-.246l-.35-.014a.2.2 0 0 1-.127-.037a.13.13 0 0 1-.06-.1v-.361l.049-.038h4.137l.034.038v.364c0 .1-.062.15-.174.15c-.541.024-.94.15-1.203.351c-.263.213-.465.514-.614.89c0 0-3.371 7.72-4.524 10.289c-.438.84-.878.765-1.253-.026c-.477-.977-1.478-3.156-2.206-4.761z'/%3E%3C/svg%3E"); } .bxl-windows { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m3 5.557l7.357-1.002l.004 7.097l-7.354.042zm7.354 6.913l.006 7.103l-7.354-1.011v-6.14zm.892-8.046L21.001 3v8.562l-9.755.077zm9.758 8.113l-.003 8.523l-9.755-1.378l-.014-7.161z'/%3E%3C/svg%3E"); } .bxl-wix { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.444 8.256c-.4.212-.544.562-.544 1.53c0 0 .202-.194.499-.303a2 2 0 0 0 .512-.275c.338-.247.385-.562.385-1.096c0 0-.553-.016-.852.144m-2.349.229c-.32.286-.418.739-.418.739l-1.078 4.141L8.71 9.97c-.087-.355-.246-.808-.495-1.107c-.31-.378-.944-.401-1.015-.401c-.068 0-.709.023-1.026.407c-.246.303-.406.751-.493 1.108l-.889 3.395l-1.066-4.147s-.092-.459-.418-.739c-.529-.465-1.314-.367-1.314-.367l2.048 7.764s.677.052 1.015-.126c.441-.224.659-.401.929-1.463c.241-.94.912-3.704.974-3.905c.029-.098.07-.332.241-.332c.179 0 .214.229.241.332c.064.195.729 2.965.976 3.905c.268 1.055.481 1.227.929 1.463c.338.178 1.015.126 1.015.126l2.048-7.759c-.002 0-.789-.099-1.315.361m3.201.9s-.129.195-.42.367c-.188.104-.367.178-.562.271c-.323.154-.414.332-.414.595v5.266s.522.063.854-.104c.436-.222.533-.435.541-1.404zm5.112 2.632l2.599-3.875s-1.096-.189-1.641.309c-.35.315-.738.885-.738.885l-.952 1.386c-.053.069-.104.15-.2.15c-.099 0-.161-.075-.202-.15l-.962-1.382s-.385-.568-.74-.884c-.54-.499-1.641-.31-1.641-.31l2.603 3.865l-2.603 3.858s1.146.149 1.688-.35c.35-.315.688-.837.688-.837l.95-1.383c.053-.068.104-.147.2-.147c.1 0 .161.075.202.147l.952 1.383s.355.51.7.837c.538.499 1.667.35 1.667.35z'/%3E%3C/svg%3E"); } .bxl-wordpress { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.891 7.788a9 9 0 0 1 1.099 4.313a8.99 8.99 0 0 1-4.47 7.771l2.746-7.939c.513-1.282.684-2.309.684-3.219a7 7 0 0 0-.059-.926m-6.651.087a14 14 0 0 0 1.026-.088c.485-.063.428-.775-.056-.749c0 0-1.463.112-2.4.112c-.887 0-2.375-.125-2.375-.125c-.487-.024-.55.713-.061.738c0 0 .449.052.938.075l1.399 3.838l-1.975 5.899l-3.274-9.724a17 17 0 0 0 1.028-.083c.487-.063.43-.775-.055-.747c0 0-1.455.115-2.395.115c-.167 0-.365-.007-.575-.013C6.093 4.726 8.862 3.113 12 3.113c2.341 0 4.471.894 6.071 2.36c-.038-.002-.076-.008-.117-.008c-.883 0-1.51.77-1.51 1.596c0 .741.427 1.369.883 2.108c.343.601.742 1.37.742 2.481c0 .763-.295 1.662-.685 2.899l-.896 2.987l-3.25-9.675zM12 21.087a9 9 0 0 1-2.54-.364l2.697-7.838l2.763 7.572q.031.066.065.124a9 9 0 0 1-2.985.508m-8.99-8.988a8.9 8.9 0 0 1 .778-3.658l4.287 11.749a8.99 8.99 0 0 1-5.065-8.091m8.99-10c-5.513 0-10 4.487-10 10s4.487 10 10 10s10-4.487 10-10s-4.487-10-10-10'/%3E%3C/svg%3E"); } .bxl-xing { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 6a.4.4 0 0 0-.38.62l2 3.38l-3.06 5.4a.45.45 0 0 0 0 .45a.43.43 0 0 0 .38.19h2.87a.89.89 0 0 0 .79-.55s3-5.31 3.11-5.51l-2-3.46A.91.91 0 0 0 7.92 6zm12.16-4a.84.84 0 0 0-.77.55L10 13.93l4.09 7.52a.91.91 0 0 0 .81.55h2.88a.43.43 0 0 0 .38-.18a.45.45 0 0 0 0-.45l-4.07-7.43l6.36-11.31a.45.45 0 0 0 0-.45a.44.44 0 0 0-.38-.18z'/%3E%3C/svg%3E"); } .bxl-yahoo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.131 21s-.63-.114-1.138-.114c-.457 0-1.142.114-1.142.114l.143-7.646C9.933 11.52 6.814 5.933 4.868 3c.979.223 1.391.209 2.374 0l.015.025c1.239 2.194 3.135 5.254 4.736 7.905C13.575 8.325 16.064 4.258 16.74 3c.765.201 1.536.193 2.392 0c-.9 1.213-4.175 6.88-6.153 10.354L13.125 21z'/%3E%3C/svg%3E"); } .bxl-yelp { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.824 16.675c-.105.726-1.587 2.609-2.269 2.882c-.232.093-.457.07-.637-.068c-.116-.09-.235-.272-1.833-2.866l-.475-.773c-.183-.277-.148-.642.078-.92c.223-.27.549-.37.832-.262c.016.008 1.195.397 1.195.397c2.688.883 2.775.917 2.891 1.002c.17.139.249.356.214.608zm-5.386-3.946c-.19-.289-.187-.63.01-.865l.746-1.019c1.642-2.235 1.732-2.353 1.843-2.431a.64.64 0 0 1 .652-.024c.651.316 1.966 2.269 2.045 3.019v.025a.62.62 0 0 1-.259.587c-.123.079-.235.125-3.291.866c-.483.123-.752.19-.91.247l.021-.023c-.302.091-.64-.055-.831-.357zm-1.875-1.159c-.146.046-.591.185-1.139-.702c0 0-3.694-5.813-3.78-5.992c-.053-.201.011-.429.19-.613c.55-.569 3.534-1.405 4.315-1.215c.255.066.43.227.491.453c.045.25.408 5.646.46 6.854c.051 1.034-.392 1.171-.537 1.215m.487 5.913c-.008 2.827-.015 2.922-.061 3.056c-.079.211-.26.352-.51.398c-.72.122-2.972-.71-3.441-1.267a.74.74 0 0 1-.157-.37c-.013-.09 0-.18.033-.259c.057-.146.135-.259 2.158-2.63l.594-.706c.203-.26.563-.338.899-.204c.325.124.528.405.506.708v1.259zm-6.13-1.808c-.222-.006-.42-.14-.535-.358c-.083-.162-.142-.428-.18-.752c-.102-.974.023-2.444.314-2.911c.138-.214.338-.327.559-.319c.146 0 .276.046 3.167 1.236l.848.337c.302.111.489.427.472.787c-.022.348-.224.616-.521.696l-1.202.382c-2.689.864-2.778.888-2.919.877zm11.22 5.322h-.004l-.003.003z'/%3E%3C/svg%3E"); } .bxl-youtube { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.593 7.203a2.5 2.5 0 0 0-1.762-1.766C18.265 5.007 12 5 12 5s-6.264-.007-7.831.404a2.56 2.56 0 0 0-1.766 1.778c-.413 1.566-.417 4.814-.417 4.814s-.004 3.264.406 4.814c.23.857.905 1.534 1.763 1.765c1.582.43 7.83.437 7.83.437s6.265.007 7.831-.403a2.52 2.52 0 0 0 1.767-1.763c.414-1.565.417-4.812.417-4.812s.02-3.265-.407-4.831M9.996 15.005l.005-6l5.207 3.005z'/%3E%3C/svg%3E"); } .bxl-zoom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M1.984 7.506v6.74c.006 1.524 1.361 2.75 3.014 2.745h10.693c.303 0 .549-.225.549-.498v-6.74c-.008-1.523-1.363-2.75-3.014-2.744H2.531c-.302 0-.547.224-.547.497m14.936 2.63l4.416-2.963c.383-.292.68-.219.68.309v9.036c0 .601-.363.528-.68.309L16.92 13.87z'/%3E%3C/svg%3E"); } .bx { display: inline-block; width: 1em; height: 1em; background-color: currentColor; -webkit-mask-image: var(--svg); mask-image: var(--svg); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; } .bxs-add-to-queue { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 22h12v-2H4V8H2v12c0 1.103.897 2 2 2'/%3E%3Cpath fill='black' d='M20 2H8c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-2 9h-3v3h-2v-3h-3V9h3V6h2v3h3z'/%3E%3C/svg%3E"); } .bxs-adjust { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.579 2 2 6.58 2 12s4.579 10 10 10s10-4.58 10-10S17.421 2 12 2m0 17V5c3.829 0 7 3.169 7 7c0 3.828-3.171 7-7 7'/%3E%3C/svg%3E"); } .bxs-adjust-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.071 19.071c3.833-3.833 3.833-10.31 0-14.143s-10.31-3.833-14.143 0s-3.833 10.31 0 14.143s10.31 3.833 14.143 0M7.051 7.051c2.706-2.707 7.191-2.708 9.898 0l-9.898 9.898c-2.708-2.707-2.71-7.19 0-9.898'/%3E%3C/svg%3E"); } .bxs-alarm { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4c-4.878 0-9 4.122-9 9s4.122 9 9 9s9-4.122 9-9s-4.121-9-9-9m5 10h-6V8h2v4h4zm3.292-7.292l-3.01-3l1.412-1.417l3.01 3zM5.282 2.294L6.7 3.706l-2.99 3l-1.417-1.413z'/%3E%3C/svg%3E"); } .bxs-alarm-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9m4 10h-3v3h-2v-3H8v-2h3V9h2v3h3zm1.284-10.293l1.412-1.416l3.01 3l-1.413 1.417zM5.282 2.294L6.7 3.706l-2.99 3l-1.417-1.413z'/%3E%3C/svg%3E"); } .bxs-alarm-exclamation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m17.284 3.707l1.412-1.416l3.01 3l-1.413 1.417zm-10.586 0l-2.99 2.999L2.29 5.294l2.99-3zM12 4c-4.879 0-9 4.121-9 9s4.121 9 9 9s9-4.121 9-9s-4.121-9-9-9m1 14h-2v-2h2zm0-4h-2V8h2z'/%3E%3C/svg%3E"); } .bxs-alarm-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.292 6.708l-3.01-3l1.412-1.417l3.01 3zm1.415 13.585l-2.287-2.288C20.409 16.563 21 14.837 21 13c0-4.878-4.121-9-9-9c-1.838 0-3.563.59-5.006 1.581L5.91 4.496l.788-.79l-1.416-1.412l-.786.788l-.789-.789l-1.414 1.414l18 18zM17 14h-1.586l-2-2H17zm-6-6h2v3.586l-2-2zm1 14c1.658 0 3.224-.485 4.574-1.305L4.305 8.426A8.8 8.8 0 0 0 3 13c0 4.878 4.122 9 9 9'/%3E%3C/svg%3E"); } .bxs-alarm-snooze { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m17.284 3.707l1.412-1.416l3.01 3l-1.413 1.417zm-10.586 0l-2.99 2.999L2.29 5.294l2.99-3zM12 4c-4.878 0-9 4.121-9 9s4.122 9 9 9s9-4.121 9-9s-4.121-9-9-9m4 13H8.131l4-6H8V9h7.868l-1.035 1.554l-.001.001L11.869 15H16z'/%3E%3C/svg%3E"); } .bxs-album { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-4.607 8.055A5 5 0 0 0 7 12H5a6.98 6.98 0 0 1 2.051-4.95a7 7 0 0 1 2.225-1.5l.779 1.842c-.596.252-1.13.612-1.59 1.072s-.82.995-1.072 1.591m4.6 3.945a2.007 2.007 0 1 1 0-4.014a2.007 2.007 0 0 1 0 4.014'/%3E%3C/svg%3E"); } .bxs-ambulance { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.86 12.48L19.15 8a2 2 0 0 0-1.72-1H15V5a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v10a2 2 0 0 0 1 1.73a3.49 3.49 0 0 0 7 .27h3.1a3.48 3.48 0 0 0 6.9 0a2 2 0 0 0 2-2v-3a1.1 1.1 0 0 0-.14-.52M6.5 19A1.5 1.5 0 1 1 8 17.5A1.5 1.5 0 0 1 6.5 19m5.5-8h-2v2H8v-2H6V9h2V7h2v2h2zm4.5 8a1.5 1.5 0 1 1 1.5-1.5a1.5 1.5 0 0 1-1.5 1.5M15 12V9h2.43l1.8 3z'/%3E%3C/svg%3E"); } .bxs-analyse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.626 8.878a7.9 7.9 0 0 1 1.71-2.541a7.9 7.9 0 0 1 2.542-1.71a8.12 8.12 0 0 1 6.13-.041A2.49 2.49 0 0 0 17.5 7C18.886 7 20 5.886 20 4.5S18.886 2 17.5 2c-.689 0-1.312.276-1.763.725c-2.431-.973-5.223-.958-7.635.059c-1.19.5-2.26 1.22-3.18 2.139A9.98 9.98 0 0 0 2 12h2c0-1.086.211-2.136.626-3.122m14.747 6.244c-.401.952-.977 1.808-1.71 2.541s-1.589 1.309-2.542 1.71a8.12 8.12 0 0 1-6.13.041A2.49 2.49 0 0 0 6.5 17C5.114 17 4 18.114 4 19.5S5.114 22 6.5 22c.689 0 1.312-.276 1.763-.725A10 10 0 0 0 12 22a9.98 9.98 0 0 0 9.217-6.102A10 10 0 0 0 22 12h-2a8 8 0 0 1-.627 3.122'/%3E%3Cpath fill='black' d='M12 7.462c-2.502 0-4.538 2.036-4.538 4.538S9.498 16.538 12 16.538s4.538-2.036 4.538-4.538S14.502 7.462 12 7.462'/%3E%3C/svg%3E"); } .bxs-angry { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-5 8.5l.002-.022l-1.373-.549l.742-1.857l5 2l-.742 1.857l-1.031-.413c-.014.014-.023.031-.037.044A1.499 1.499 0 0 1 7 10.5M8 17s1-3 4-3s4 3 4 3zm8.986-6.507c0 .412-.167.785-.438 1.056a1.49 1.49 0 0 1-2.112 0l-.029-.035l-1.037.415l-.742-1.857l5-2l.742 1.857l-1.386.554z'/%3E%3C/svg%3E"); } .bxs-arch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 8V6H3v14H2v2h6v-7c0-.163.046-4 4-4c3.821 0 3.993 3.602 4 4v7h6v-2h-1zM2 2h20v2H2z'/%3E%3C/svg%3E"); } .bxs-archive { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.704 5.29l-2.997-2.997A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.296 5.29A1 1 0 0 0 2 5.999V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5.999a1 1 0 0 0-.296-.709M6.414 4h11.172l1 1H5.414zM17 13v1H7v-4h2v2h6v-2h2z'/%3E%3C/svg%3E"); } .bxs-archive-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.706 5.292l-2.999-2.999A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.294 5.292A1 1 0 0 0 2 6v13c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6a1 1 0 0 0-.294-.708M6.414 4h11.172l1 1H5.414zM12 18l-5-5h3v-3h4v3h3z'/%3E%3C/svg%3E"); } .bxs-archive-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.706 5.292l-2.999-2.999A1 1 0 0 0 18 2H6a1 1 0 0 0-.707.293L2.294 5.292A1 1 0 0 0 2 6v13c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6a1 1 0 0 0-.294-.708M6.414 4h11.172l1 1H5.414zM14 14v3h-4v-3H7l5-5l5 5z'/%3E%3C/svg%3E"); } .bxs-area { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2zm9-13h6v6h-2V8h-4zm-6 6h2v4h4v2H6z'/%3E%3C/svg%3E"); } .bxs-arrow-from-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 18h12v2H6zm6-14l-6 6h5v6h2v-6h5z'/%3E%3C/svg%3E"); } .bxs-arrow-from-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 6h2v12H4zm10 5H8v2h6v5l6-6l-6-6z'/%3E%3C/svg%3E"); } .bxs-arrow-from-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 6h2v12h-2zm-8 12v-5h6v-2h-6V6l-6 6z'/%3E%3C/svg%3E"); } .bxs-arrow-from-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 4h12v2H6zm5 4v6H6l6 6l6-6h-5V8z'/%3E%3C/svg%3E"); } .bxs-arrow-to-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 18h12v2H6zm5-14v6H6l6 6l6-6h-5V4z'/%3E%3C/svg%3E"); } .bxs-arrow-to-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 6h2v12H4zm10 7h6v-2h-6V6l-6 6l6 6z'/%3E%3C/svg%3E"); } .bxs-arrow-to-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 6h2v12h-2zm-8 5H4v2h6v5l6-6l-6-6z'/%3E%3C/svg%3E"); } .bxs-arrow-to-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 4h12v2H6zm5 10v6h2v-6h5l-6-6l-6 6z'/%3E%3C/svg%3E"); } .bxs-award { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 8.999a6.99 6.99 0 0 0 2.879 5.646l.001.001a7 7 0 0 0 1.881.979l.051.019a7 7 0 0 0 1.163.271a7 7 0 0 0 1.024.085H12c.35 0 .69-.034 1.027-.084l.182-.028q.505-.088.981-.243l.042-.016C17 14.693 19 12.078 19 8.999C19 5.14 15.86 2 12 2S5 5.14 5 8.999M12 4c2.756 0 5 2.242 5 4.999h-2A3.003 3.003 0 0 0 12 6zM7.521 16.795V22L12 20.5l4.479 1.5l.001-5.205a8.93 8.93 0 0 1-8.959 0'/%3E%3C/svg%3E"); } .bxs-baby-carriage { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.666 12.277a8 8 0 0 0 .171-.665l.008-.05c.02-.098.029-.199.045-.298c.025-.157.055-.313.07-.471a7.98 7.98 0 0 0-2.303-6.45A7.98 7.98 0 0 0 14 2v8H6.517l-.858-2H2v2h2.341l1.828 4.266A3.5 3.5 0 0 0 4 17.5C4 19.43 5.57 21 7.5 21c1.759 0 3.204-1.309 3.449-3h2.102c.245 1.691 1.69 3 3.449 3c1.93 0 3.5-1.57 3.5-3.5c0-.63-.181-1.213-.473-1.725c.042-.041.089-.077.131-.119c.36-.361.688-.759.977-1.184c.288-.43.536-.886.736-1.359c.016-.037.026-.076.041-.113h.001l.015-.042q.133-.329.235-.668zM7.5 19c-.827 0-1.5-.673-1.5-1.5S6.673 16 7.5 16s1.5.673 1.5 1.5S8.327 19 7.5 19m9 0c-.827 0-1.5-.673-1.5-1.5s.673-1.5 1.5-1.5s1.5.673 1.5 1.5s-.673 1.5-1.5 1.5'/%3E%3C/svg%3E"); } .bxs-backpack { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 15a1 1 0 0 0-1-1H9c-.551 0-1 .448-1 1v2h8zm-8 4h8v3H8z'/%3E%3Cpath fill='black' d='M21 12c0-2.967-2.167-5.432-5-5.91V5c0-1.654-1.346-3-3-3h-2C9.346 2 8 3.346 8 5v1.09C5.167 6.568 3 9.033 3 12v8c0 1.103.897 2 2 2h1v-7c0-1.654 1.346-3 3-3h6c1.654 0 3 1.346 3 3v7h1c1.103 0 2-.897 2-2zM10 5c0-.552.449-1 1-1h2a1 1 0 0 1 1 1v1h-4z'/%3E%3C/svg%3E"); } .bxs-badge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.965 8.521Q20 8.26 20 8c0-2.379-2.143-4.288-4.521-3.965C14.786 2.802 13.466 2 12 2s-2.786.802-3.479 2.035C6.138 3.712 4 5.621 4 8q0 .26.035.521C2.802 9.215 2 10.535 2 12s.802 2.785 2.035 3.479A4 4 0 0 0 4 16c0 2.379 2.138 4.283 4.521 3.965C9.214 21.198 10.534 22 12 22s2.786-.802 3.479-2.035C17.857 20.283 20 18.379 20 16q0-.26-.035-.521C21.198 14.785 22 13.465 22 12s-.802-2.785-2.035-3.479'/%3E%3C/svg%3E"); } .bxs-badge-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.965 8.521Q20 8.26 20 8c0-2.379-2.143-4.288-4.521-3.965C14.786 2.802 13.466 2 12 2s-2.786.802-3.479 2.035C6.138 3.712 4 5.621 4 8q0 .26.035.521C2.802 9.215 2 10.535 2 12s.802 2.785 2.035 3.479A4 4 0 0 0 4 16c0 2.379 2.138 4.283 4.521 3.965C9.214 21.198 10.534 22 12 22s2.786-.802 3.479-2.035C17.857 20.283 20 18.379 20 16q0-.26-.035-.521C21.198 14.785 22 13.465 22 12s-.802-2.785-2.035-3.479m-9.01 7.895l-3.667-3.714l1.424-1.404l2.257 2.286l4.327-4.294l1.408 1.42z'/%3E%3C/svg%3E"); } .bxs-badge-dollar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.047 14.668a1 1 0 0 0 .465.607l1.91 1.104v2.199a1 1 0 0 0 1 1h2.199l1.104 1.91a1.01 1.01 0 0 0 .866.5c.174 0 .347-.046.501-.135L12 20.75l1.91 1.104a1 1 0 0 0 1.366-.365l1.103-1.91h2.199a1 1 0 0 0 1-1V16.38l1.91-1.104a1 1 0 0 0 .365-1.367L20.75 12l1.104-1.908a1 1 0 0 0-.365-1.366l-1.91-1.104v-2.2a1 1 0 0 0-1-1H16.38l-1.103-1.909a1 1 0 0 0-.607-.466a1 1 0 0 0-.759.1L12 3.25l-1.909-1.104a1 1 0 0 0-1.366.365l-1.104 1.91H5.422a1 1 0 0 0-1 1V7.62l-1.91 1.104a1.003 1.003 0 0 0-.365 1.368L3.251 12l-1.104 1.908a1 1 0 0 0-.1.76M12 13c-3.48 0-4-1.879-4-3c0-1.287 1.029-2.583 3-2.915V6.012h2v1.109c1.734.41 2.4 1.853 2.4 2.879h-1l-1 .018C13.386 9.638 13.185 9 12 9c-1.299 0-2 .515-2 1c0 .374 0 1 2 1c3.48 0 4 1.879 4 3c0 1.287-1.029 2.583-3 2.915V18h-2v-1.08c-2.339-.367-3-2.003-3-2.92h2c.011.143.159 1 2 1c1.38 0 2-.585 2-1c0-.325 0-1-2-1'/%3E%3C/svg%3E"); } .bxs-baguette { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11.13 4.41l4.23 4.23L14.3 9.7l-4.24-4.24l-1.77 1.77l4.24 4.24l-1.06 1.06l-4.24-4.24l-1.77 1.77L9.7 14.3l-1.06 1.06l-4.23-4.23C1.86 14 1.55 18 3.79 20.21a5.38 5.38 0 0 0 3.85 1.5a8 8 0 0 0 5.6-2.47l6-6c2.87-2.87 3.31-7.11 1-9.45s-6.24-1.93-9.11.62'/%3E%3C/svg%3E"); } .bxs-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.247 3.034c-.069-.018-1.742-.433-4.052-.433c-2.842 0-6.868.64-9.91 3.687c-5.34 5.349-3.34 13.61-3.252 13.96a1 1 0 0 0 .728.726c.069.018 1.726.426 4.018.426c2.849 0 6.884-.641 9.932-3.688c5.335-5.335 3.351-13.6 3.264-13.949a1 1 0 0 0-.728-.729m-3.537 9.262l-1.414 1.414l-1.793-1.792l-1.586 1.586l1.792 1.793l-1.414 1.414l-1.792-1.793l-1.793 1.793l-1.414-1.414l1.793-1.793l-1.793-1.794l1.414-1.414l1.793 1.794l1.586-1.586l-1.794-1.793l1.414-1.414l1.794 1.793l1.793-1.793l1.414 1.414l-1.793 1.793z'/%3E%3C/svg%3E"); } .bxs-balloon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 19.91L10 22h4l-1-2.09c4-.65 7-5.28 7-9.91a8 8 0 0 0-16 0c0 4.63 3.08 9.26 7 9.91m1-15.66v1.5A4.26 4.26 0 0 0 7.75 10h-1.5A5.76 5.76 0 0 1 12 4.25'/%3E%3C/svg%3E"); } .bxs-band-aid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11.646 3.868l-7.778 7.778a6.007 6.007 0 0 0 0 8.485a5.98 5.98 0 0 0 4.242 1.754a5.98 5.98 0 0 0 4.243-1.754l7.778-7.778a6.007 6.007 0 0 0 0-8.485a6.01 6.01 0 0 0-8.485 0M9 13a1 1 0 1 1 0-2a1 1 0 0 1 0 2m3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m0-6a1 1 0 1 1 0-2a1 1 0 0 1 0 2m3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bxs-bank { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 8v4.001h1V18H2v3h16l3 .001V21h1v-3h-1v-5.999h1V8L12 2zm4 10v-5.999h2V18zm5 0v-5.999h2V18zm7 0h-2v-5.999h2zM14 8a2 2 0 1 1-4.001-.001A2 2 0 0 1 14 8'/%3E%3C/svg%3E"); } .bxs-bar-chart-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 21H3a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1m7 0h-3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v17a1 1 0 0 1-1 1m7 0h-3a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1'/%3E%3C/svg%3E"); } .bxs-bar-chart-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 19V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2M9 18H7v-6h2zm4 0h-2V7h2zm4 0h-2v-8h2z'/%3E%3C/svg%3E"); } .bxs-barcode { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M8 17H5V7h3zm2 0H9V7h1zm2 0h-1V7h1zm4 0h-3V7h3zm3 0h-2V7h2z'/%3E%3C/svg%3E"); } .bxs-baseball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.984 12.236a9.97 9.97 0 0 0-2.913-7.308a9.97 9.97 0 0 0-7.308-2.913a9.04 9.04 0 0 1-.673 4.313l-1.84-.78a7.04 7.04 0 0 0 .526-3.284a9.93 9.93 0 0 0-4.847 2.665a9.9 9.9 0 0 0-2.666 4.852a7.1 7.1 0 0 0 2.576-.276l.575 1.916c-1.1.33-2.257.443-3.398.344a9.96 9.96 0 0 0 2.913 7.307a9.97 9.97 0 0 0 7.307 2.913a9.1 9.1 0 0 1 .344-3.398l1.916.575a7.1 7.1 0 0 0-.276 2.576a9.93 9.93 0 0 0 4.853-2.666a9.93 9.93 0 0 0 2.665-4.848a7.06 7.06 0 0 0-3.284.526l-.78-1.841a9 9 0 0 1 4.31-.673M9.17 9.173a9 9 0 0 1-2.192 1.612l-.927-1.772a7 7 0 0 0 2.576-2.314l1.663 1.113c-.328.49-.705.948-1.12 1.361m7.074 7.068a7 7 0 0 0-1.257 1.708l-1.772-.927a9 9 0 0 1 2.972-3.312l1.113 1.663a7 7 0 0 0-1.056.868'/%3E%3C/svg%3E"); } .bxs-basket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.132 2.504L4.42 9H3a1 1 0 0 0-.965 1.263l2.799 10.263A2.004 2.004 0 0 0 6.764 22h10.473c.898 0 1.692-.605 1.93-1.475l2.799-10.263A.998.998 0 0 0 21 9h-1.42l-3.712-6.496l-1.736.992L17.277 9H6.723l3.145-5.504zM14 13h2v5h-2zm-6 0h2v5H8z'/%3E%3C/svg%3E"); } .bxs-basketball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.328 4.258a9.95 9.95 0 0 0-5.949-2.235a9 9 0 0 1-1.835 7.107L12 10.586zM7.701 9.115L4.258 5.672a9.94 9.94 0 0 0-2.112 4.704a7 7 0 0 0 5.555-1.261m12.041-3.443L13.414 12l1.456 1.456a9 9 0 0 1 7.107-1.835a9.95 9.95 0 0 0-2.235-5.949m2.112 7.952a7 7 0 0 0-5.555 1.261l3.443 3.443a9.9 9.9 0 0 0 2.112-4.704M9.115 7.701a7 7 0 0 0 1.261-5.555a9.9 9.9 0 0 0-4.704 2.112zm4.509 14.153a9.94 9.94 0 0 0 4.704-2.111L14.885 16.3a7 7 0 0 0-1.261 5.554M12 13.414l-6.328 6.328a9.95 9.95 0 0 0 5.949 2.235a9 9 0 0 1 1.835-7.107zm-7.742 4.914L10.586 12L9.13 10.544a9 9 0 0 1-7.107 1.835a9.95 9.95 0 0 0 2.235 5.949'/%3E%3C/svg%3E"); } .bxs-bath { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 10H7V7.113c0-.997.678-1.923 1.661-2.085A2.003 2.003 0 0 1 11 7h2a4.003 4.003 0 0 0-4.398-3.98C6.523 3.222 5 5.089 5 7.178V10H3a1 1 0 0 0-1 1v2c0 2.606 1.674 4.823 4 5.65V22h2v-3h8v3h2v-3.35c2.326-.827 4-3.044 4-5.65v-2a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bxs-battery { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4h-2z'/%3E%3C/svg%3E"); } .bxs-battery-charging { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 10V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4zM9 17l2-3.89L7 12l6-5l-1 3.89L16 12z'/%3E%3C/svg%3E"); } .bxs-battery-full { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 18h14a2 2 0 0 0 2-2v-2h2v-4h-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2m1-9h12v6H5z'/%3E%3C/svg%3E"); } .bxs-battery-low { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2h2v-4h-2zM5 15V9h3l4 6z'/%3E%3C/svg%3E"); } .bxs-bed { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 9.556V3h-2v2H6V3H4v6.557C2.81 10.25 2 11.526 2 13v4a1 1 0 0 0 1 1h1v4h2v-4h12v4h2v-4h1a1 1 0 0 0 1-1v-4c0-1.474-.811-2.75-2-3.444M11 9H6V7h5zm7 0h-5V7h5z'/%3E%3C/svg%3E"); } .bxs-been-here { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8m-1 13.414l-3.707-3.707l1.414-1.414L11 12.586l5.293-5.293l1.414 1.414z'/%3E%3C/svg%3E"); } .bxs-beer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-2V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v15c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-1h2c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M8 17H6V7h2zm6 0h-2V7h2zm6-1h-2V8h2z'/%3E%3C/svg%3E"); } .bxs-bell { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m7-7.414V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a1 1 0 0 0-.293-.707z'/%3E%3C/svg%3E"); } .bxs-bell-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m8.707-5.707L19 14.586V10c0-3.217-2.185-5.926-5.145-6.743C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a1 1 0 0 0-.293-.707M16 12H8v-2h8z'/%3E%3C/svg%3E"); } .bxs-bell-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.345 18.931A.99.99 0 0 0 21 18v-1a1 1 0 0 0-.293-.707L19 14.586V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258c-1.323.364-2.463 1.128-3.346 2.127L3.707 2.293L2.293 3.707l18 18l1.414-1.414zM12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22M5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h10.879L5.068 9.189C5.037 9.457 5 9.724 5 10'/%3E%3C/svg%3E"); } .bxs-bell-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m8.707-5.707L19 14.586V10c0-3.217-2.185-5.926-5.145-6.743C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.185 4.074 5 6.783 5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a1 1 0 0 0-.293-.707M16 12h-3v3h-2v-3H8v-2h3V7h2v3h3z'/%3E%3C/svg%3E"); } .bxs-bell-ring { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m5.705 3.71l-1.41-1.42C1 5.563 1 7.935 1 11h1l1-.063C3 8.009 3 6.396 5.705 3.71m13.999-1.42l-1.408 1.42C21 6.396 21 8.009 21 11l2-.063c0-3.002 0-5.374-3.296-8.647M12 22a2.98 2.98 0 0 0 2.818-2H9.182A2.98 2.98 0 0 0 12 22m7-7.414V10c0-3.217-2.185-5.927-5.145-6.742C13.562 2.52 12.846 2 12 2s-1.562.52-1.855 1.258C7.184 4.073 5 6.783 5 10v4.586l-1.707 1.707A1 1 0 0 0 3 17v1a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-1a1 1 0 0 0-.293-.707z'/%3E%3C/svg%3E"); } .bxs-bible { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 22h15v-2H6.012C5.55 19.988 5 19.805 5 19s.55-.988 1.012-1H21V4a2 2 0 0 0-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3M8 7h3V5h2v2h3v2h-3v6h-2V9H8z'/%3E%3C/svg%3E"); } .bxs-binoculars { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.447 5.345A3.27 3.27 0 0 0 16.29 3a3.293 3.293 0 0 0-3.277 3h-2.025a3.297 3.297 0 0 0-3.284-3a3.27 3.27 0 0 0-3.151 2.345l-2.511 8.368A1 1 0 0 0 2 14v1a5.006 5.006 0 0 0 5.001 5a5 5 0 0 0 4.576-3h.846a5 5 0 0 0 4.576 3A5.006 5.006 0 0 0 22 14.999V14q0-.147-.042-.287zM7.001 18A3.005 3.005 0 0 1 4 15c0-.076.017-.147.022-.222A2.995 2.995 0 0 1 7 12a3 3 0 0 1 3 3v.009A3.004 3.004 0 0 1 7.001 18m9.998 0A3.004 3.004 0 0 1 14 15.009V15a3 3 0 0 1 6-.001A3.005 3.005 0 0 1 16.999 18'/%3E%3C/svg%3E"); } .bxs-blanket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H7C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h12c1.654 0 3-1.346 3-3s-1.346-3-3-3H6v2h13a1 1 0 0 1 0 2H7c-1.654 0-3-1.346-3-3s1.346-3 3-3h13c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M4 13h.003L4 13.002z'/%3E%3C/svg%3E"); } .bxs-bolt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.168 8H13l.806-4.835A1 1 0 0 0 12.819 2H7.667a1 1 0 0 0-.986.835l-1.667 10A1 1 0 0 0 6 14h4v8l8.01-12.459A1 1 0 0 0 17.168 8'/%3E%3C/svg%3E"); } .bxs-bolt-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-1 16v-5H7l6-7v5h4z'/%3E%3C/svg%3E"); } .bxs-bomb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m18.293 4.293l-1.086 1.086l-1.086-1.086a1 1 0 0 0-1.414 0l-1.249 1.249A8.4 8.4 0 0 0 10.499 5C5.813 5 2 8.813 2 13.5S5.813 22 10.499 22s8.5-3.813 8.5-8.5a8.4 8.4 0 0 0-.431-2.654L19.914 9.5a1 1 0 0 0 0-1.414l-1.293-1.293l1.09-1.09C19.94 5.474 20.556 5 21 5h1V3h-1c-1.4 0-2.584 1.167-2.707 1.293M10.499 10c-.935 0-1.813.364-2.475 1.025A3.48 3.48 0 0 0 7 13.5H5c0-1.468.571-2.849 1.609-3.888A5.46 5.46 0 0 1 10.499 8z'/%3E%3C/svg%3E"); } .bxs-bone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.852 5.148a3.32 3.32 0 0 0-.96-2.183a3.333 3.333 0 1 0-4.713 4.714l-5.499 5.5a3.333 3.333 0 1 0-4.714 4.713c.606.606 1.39.918 2.183.96c.042.793.354 1.576.96 2.183a3.333 3.333 0 1 0 4.713-4.714l5.499-5.499a3.333 3.333 0 1 0 4.714-4.713a3.3 3.3 0 0 0-2.183-.961'/%3E%3C/svg%3E"); } .bxs-bong { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19.293 8.293l-2.069 2.069A7 7 0 0 0 15 8.681V4h1V2H8v2h1v4.681A7.01 7.01 0 0 0 5 15c0 3.859 3.141 7 7 7s7-3.141 7-7a7 7 0 0 0-.652-2.934l2.359-2.359zm-8.959 1.998l.666-.235V4h2v6.056l.666.235A5 5 0 0 1 16.886 14H7.114a5 5 0 0 1 3.22-3.709'/%3E%3C/svg%3E"); } .bxs-book { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.012 18H21V4a2 2 0 0 0-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.805 5 19s.55-.988 1.012-1M8 6h9v2H8z'/%3E%3C/svg%3E"); } .bxs-book-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.012 18H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1M8 9h3V6h2v3h3v2h-3v3h-2v-3H8z'/%3E%3C/svg%3E"); } .bxs-book-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 5v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3'/%3E%3C/svg%3E"); } .bxs-book-bookmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19q0-.15.024-.273c.112-.576.584-.717.988-.727H21V4a2 2 0 0 0-2-2m0 9l-2-1l-2 1V4h4z'/%3E%3C/svg%3E"); } .bxs-book-content { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m-1 4v2h-5V7zm-5 4h5v2h-5zM4 19V5h7v14z'/%3E%3C/svg%3E"); } .bxs-book-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.012 18H21V4c0-1.103-.897-2-2-2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19q0-.15.024-.273c.112-.576.584-.717.988-.727M8.648 7.642a2.224 2.224 0 0 1 3.125 0l.224.219l.223-.219a2.225 2.225 0 0 1 3.126 0a2.13 2.13 0 0 1 0 3.069L11.998 14l-3.349-3.289a2.13 2.13 0 0 1-.001-3.069'/%3E%3C/svg%3E"); } .bxs-book-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 3h-7a2.98 2.98 0 0 0-2 .78A2.98 2.98 0 0 0 10 3H3a1 1 0 0 0-1 1v15a1 1 0 0 0 1 1h5.758a2 2 0 0 1 1.414.586l1.121 1.121c.009.009.021.012.03.021c.086.08.182.15.294.196h.002a1 1 0 0 0 .762 0h.002c.112-.046.208-.117.294-.196c.009-.009.021-.012.03-.021l1.121-1.121A2 2 0 0 1 15.242 20H21a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m-1 15h-4.758a4.03 4.03 0 0 0-2.242.689V6c0-.551.448-1 1-1h6z'/%3E%3C/svg%3E"); } .bxs-book-reader { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 8v11.529S6.621 19.357 12 22c5.379-2.643 10-2.471 10-2.471V8s-5.454 0-10 2.471C7.454 8 2 8 2 8'/%3E%3Ccircle cx='12' cy='5' r='3' fill='black'/%3E%3C/svg%3E"); } .bxs-bookmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 10.132v-6c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2V22l7-4.666L19 22z'/%3E%3C/svg%3E"); } .bxs-bookmark-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2m1.5 9h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z'/%3E%3C/svg%3E"); } .bxs-bookmark-alt-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2M13 11H7V9h6zm7 0h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z'/%3E%3C/svg%3E"); } .bxs-bookmark-alt-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 2h-12C4.57 2 3 3.57 3 5.5V22l7-3.5l7 3.5v-9h5V5.5C22 3.57 20.43 2 18.5 2M13 11h-2v2H9v-2H7V9h2V7h2v2h2zm7 0h-3V5.5c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5z'/%3E%3C/svg%3E"); } .bxs-bookmark-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 22V4c0-1.103-.897-2-2-2H7c-1.103 0-2 .897-2 2v18l7-4.666zM8.006 8.056c0-.568.224-1.083.585-1.456c.361-.372.86-.603 1.412-.603c0 0 .996-.003 1.997 1.029c1.001-1.032 1.997-1.029 1.997-1.029c.552 0 1.051.23 1.412.603s.585.888.585 1.456s-.224 1.084-.585 1.456L12 13.203L8.591 9.512a2.08 2.08 0 0 1-.585-1.456'/%3E%3C/svg%3E"); } .bxs-bookmark-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 2H7a2 2 0 0 0-2 2v18l7-4.848L19 22V4a2 2 0 0 0-2-2m-1 9H8V9h8z'/%3E%3C/svg%3E"); } .bxs-bookmark-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 2H7a2 2 0 0 0-2 2v18l7-4.848L19 22V4a2 2 0 0 0-2-2m-1 9h-3v3h-2v-3H8V9h3V6h2v3h3z'/%3E%3C/svg%3E"); } .bxs-bookmark-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 11.222L14.667 13l-.89-3.111L16 8l-2.667-.333L12 5l-1.333 2.667L8 8l2.223 1.889L9.333 13z'/%3E%3Cpath fill='black' d='M19 21.723V4a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v17.723l7-4.571zM8 8l2.667-.333L12 5l1.333 2.667L16 8l-2.223 1.889l.89 3.111L12 11.222L9.333 13l.89-3.111z'/%3E%3C/svg%3E"); } .bxs-bookmarks { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.999 23V7c0-1.103-.897-2-2-2h-8c-1.103 0-2 .897-2 2v16l6-3.601z'/%3E%3Cpath fill='black' d='M15.585 3h1.414c1.103 0 2 .897 2 2v10.443l2 2.489V3c0-1.103-.897-2-2-2h-8c-1.103 0-2 .897-2 2z'/%3E%3C/svg%3E"); } .bxs-bot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 10.975V8a2 2 0 0 0-2-2h-6V4.688c.305-.274.5-.668.5-1.11a1.5 1.5 0 0 0-3 0c0 .442.195.836.5 1.11V6H5a2 2 0 0 0-2 2v2.998l-.072.005A1 1 0 0 0 2 12v2a1 1 0 0 0 1 1v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a1 1 0 0 0 1-1v-1.938a1 1 0 0 0-.072-.455c-.202-.488-.635-.605-.928-.632M7 12c0-1.104.672-2 1.5-2s1.5.896 1.5 2s-.672 2-1.5 2S7 13.104 7 12m8.998 6c-1.001-.003-7.997 0-7.998 0v-2s7.001-.002 8.002 0zm-.498-4c-.828 0-1.5-.896-1.5-2s.672-2 1.5-2s1.5.896 1.5 2s-.672 2-1.5 2'/%3E%3C/svg%3E"); } .bxs-bowl-hot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 10H3a1 1 0 0 0-1 1a10 10 0 0 0 5 8.66V21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.34A10 10 0 0 0 22 11a1 1 0 0 0-1-1M9 9V7.93a4.5 4.5 0 0 0-1.28-3.15A2.5 2.5 0 0 1 7 3V2H5v1a4.5 4.5 0 0 0 1.28 3.17A2.5 2.5 0 0 1 7 7.93V9zm4 0V7.93a4.5 4.5 0 0 0-1.28-3.15A2.5 2.5 0 0 1 11 3V2H9v1a4.5 4.5 0 0 0 1.28 3.15A2.5 2.5 0 0 1 11 7.93V9zm4 0V7.93a4.5 4.5 0 0 0-1.28-3.15A2.5 2.5 0 0 1 15 3V2h-2v1a4.5 4.5 0 0 0 1.28 3.15A2.5 2.5 0 0 1 15 7.93V9z'/%3E%3C/svg%3E"); } .bxs-bowl-rice { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 10a3.58 3.58 0 0 0-1.8-3a3.66 3.66 0 0 0-3.63-3.13a4 4 0 0 0-1 .13a3.7 3.7 0 0 0-5.11 0a4 4 0 0 0-1-.13A3.66 3.66 0 0 0 4.81 7A3.58 3.58 0 0 0 3 10a1 1 0 0 0-1 1a10 10 0 0 0 5 8.66V21a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-1.34A10 10 0 0 0 22 11a1 1 0 0 0-1-1M5 10a1.59 1.59 0 0 1 1.11-1.39l.83-.26l-.16-.85a1.64 1.64 0 0 1 1.66-1.62a1.8 1.8 0 0 1 .83.2l.81.45l.5-.77a1.71 1.71 0 0 1 2.84 0l.5.77l.81-.45a1.8 1.8 0 0 1 .83-.2a1.65 1.65 0 0 1 1.67 1.6l-.16.85l.82.28A1.59 1.59 0 0 1 19 10z'/%3E%3C/svg%3E"); } .bxs-bowling-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M6.5 12a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 12M9 6.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 9 6.5m2.5 6.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 11.5 13'/%3E%3C/svg%3E"); } .bxs-box { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 3h20v4H2zm17 5H3v11a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8zm-3 6H8v-2h8z'/%3E%3C/svg%3E"); } .bxs-brain { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3.299 17.596c.432 1.332 1.745 2.182 3.146 2.182H6.5A2.78 2.78 0 0 0 9.223 22c.457 0 .884-.115 1.262-.313a.99.99 0 0 0 .515-.882V3.027a1 1 0 0 0-.785-.983a2.32 2.32 0 0 0-1.479.201c-.744.356-1.18 1.151-1.18 1.978v.055a2.778 2.778 0 0 0-2.744 4.433A3.33 3.33 0 0 0 2 12c0 1.178.611 2.211 1.533 2.812c-.43.771-.571 1.746-.234 2.784m15.889-8.885a2.778 2.778 0 0 0-2.744-4.433v-.055c0-.826-.437-1.622-1.181-1.978a2.32 2.32 0 0 0-1.478-.201a1 1 0 0 0-.785.983v17.777c0 .365.192.712.516.882c.378.199.804.314 1.261.314a2.78 2.78 0 0 0 2.723-2.223h.056c1.4 0 2.714-.85 3.146-2.182c.337-1.038.196-2.013-.234-2.784A3.35 3.35 0 0 0 22 12a3.33 3.33 0 0 0-2.812-3.289'/%3E%3C/svg%3E"); } .bxs-briefcase { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v3h20V8c0-1.103-.897-2-2-2M9 4h6v2H9zm5 10h-4v-2H2v7c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-7h-8z'/%3E%3C/svg%3E"); } .bxs-briefcase-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M6 8h2v11H6zm12 11h-2V8h2zM15 4v2H9V4z'/%3E%3C/svg%3E"); } .bxs-briefcase-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-3V4c0-1.103-.897-2-2-2H9c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v4h5v-2h2v2h6v-2h2v2h5V8c0-1.103-.897-2-2-2M9 4h6v2H9zm8 11h-2v-2H9v2H7v-2H2v6c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-6h-5z'/%3E%3C/svg%3E"); } .bxs-brightness { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.546 11.646L19 9.101V5.5a.5.5 0 0 0-.5-.5h-3.601l-2.546-2.546a.5.5 0 0 0-.707 0L9.101 5H5.5a.5.5 0 0 0-.5.5v3.601l-2.546 2.546a.5.5 0 0 0 0 .707L5 14.899V18.5a.5.5 0 0 0 .5.5h3.601l2.546 2.546a.5.5 0 0 0 .707 0L14.899 19H18.5a.5.5 0 0 0 .5-.5v-3.601l2.546-2.546a.5.5 0 0 0 0-.707M12 16a4 4 0 1 1 0-8a4 4 0 0 1 0 8'/%3E%3C/svg%3E"); } .bxs-brightness-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.546 11.646L19 9.101V5.5a.5.5 0 0 0-.5-.5h-3.601l-2.546-2.546a.5.5 0 0 0-.707 0L9.101 5H5.5a.5.5 0 0 0-.5.5v3.601l-2.546 2.546a.5.5 0 0 0 0 .707L5 14.899V18.5a.5.5 0 0 0 .5.5h3.601l2.546 2.546a.5.5 0 0 0 .707 0L14.899 19H18.5a.5.5 0 0 0 .5-.5v-3.601l2.546-2.546a.5.5 0 0 0 0-.707M12 8a4 4 0 0 1 0 8'/%3E%3C/svg%3E"); } .bxs-brush { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.207 11.278l-2.035-2.035l-1.415-1.415l-5.035-5.035a1 1 0 0 0-1.414 0L6.151 7.949L4.736 9.363a3 3 0 0 0-.878 2.122c0 .802.313 1.556.879 2.121l.707.707l-2.122 2.122a2.93 2.93 0 0 0-.873 2.108a2.97 2.97 0 0 0 1.063 2.308a2.92 2.92 0 0 0 1.886.681c.834 0 1.654-.341 2.25-.937l2.039-2.039l.707.706c1.133 1.133 3.107 1.134 4.242.001l.708-.707l.569-.569l.138-.138l5.156-5.157a1 1 0 0 0 0-1.414m-7.277 5.865l-.708.706a1.02 1.02 0 0 1-1.414 0l-1.414-1.413a1 1 0 0 0-1.414 0l-2.746 2.745a1.2 1.2 0 0 1-.836.352a.9.9 0 0 1-.595-.208a.98.98 0 0 1-.354-.782a.96.96 0 0 1 .287-.692l2.829-2.829a1 1 0 0 0 0-1.414l-1.414-1.415c-.189-.188-.293-.438-.293-.706s.104-.519.293-.708l.707-.707l3.536 3.536z'/%3E%3C/svg%3E"); } .bxs-brush-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 8.001h-2V8h-1V4.999a2.92 2.92 0 0 0-.874-2.108a2.94 2.94 0 0 0-2.39-.879C10.202 2.144 9 3.508 9 5.117V8H6c-1.103 0-2 .897-2 2v11a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V10.001c0-1.103-.897-2-2-2M6 12v-2h5V5.117c0-.57.407-1.07 1.002-1.117c.266 0 .512.103.712.307a.96.96 0 0 1 .286.692V10h.995l.005.001h4V12z'/%3E%3C/svg%3E"); } .bxs-bug { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.787 7h10.426c-.108-.158-.201-.331-.318-.481l2.813-2.812l-1.414-1.414l-2.846 2.846a7 7 0 0 0-.723-.454a5.78 5.78 0 0 0-5.45 0c-.25.132-.488.287-.722.453L5.707 2.293L4.293 3.707l2.813 2.812c-.118.151-.21.323-.319.481M5.756 9H2v2h2.307c-.065.495-.107.997-.107 1.5c0 .507.042 1.013.107 1.511H2v2h2.753c.013.039.021.08.034.118c.188.555.421 1.093.695 1.6c.044.081.095.155.141.234l-2.33 2.33l1.414 1.414l2.11-2.111a7.5 7.5 0 0 0 2.068 1.619c.479.253.982.449 1.496.58c.204.052.411.085.618.118V16h2v5.914a6 6 0 0 0 .618-.118a6.8 6.8 0 0 0 1.496-.58c.465-.246.914-.55 1.333-.904c.258-.218.5-.462.734-.716l2.111 2.111l1.414-1.414l-2.33-2.33c.047-.08.098-.155.142-.236c.273-.505.507-1.043.694-1.599c.013-.039.021-.079.034-.118H22v-2h-2.308c.065-.499.107-1.004.107-1.511c0-.503-.042-1.005-.106-1.5H22V9z'/%3E%3C/svg%3E"); } .bxs-bug-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m18 5.414l1.707-1.707l-1.414-1.414l-1.563 1.562C15.483 2.708 13.824 2 12 2s-3.483.708-4.73 1.855L5.707 2.293L4.293 3.707L6 5.414A6.94 6.94 0 0 0 5 9H3v2h2v2H3v2h2c0 3.86 3.141 7 7 7s7-3.14 7-7h2v-2h-2v-2h2V9h-2a6.94 6.94 0 0 0-1-3.586M15 15H9v-2h6zm0-4H9V9h6z'/%3E%3C/svg%3E"); } .bxs-building { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 2H7a2 2 0 0 0-2 2v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4a2 2 0 0 0-2-2m-6 14H8v-2h3zm0-4H8v-2h3zm0-4H8V6h3zm5 8h-3v-2h3zm0-4h-3v-2h3zm0-4h-3V6h3z'/%3E%3C/svg%3E"); } .bxs-building-house { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.991 2H9.01C7.899 2 7 2.899 7 4.01v5.637l-4.702 4.642A1 1 0 0 0 3 16v5a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4.009C21 2.899 20.102 2 18.991 2m-8.069 13.111V20H5v-5.568l2.987-2.949l2.935 3.003zM13 9h-2V7h2zm4 8h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V7h2z'/%3E%3Cpath fill='black' d='M7 15h2v2H7z'/%3E%3C/svg%3E"); } .bxs-buildings { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 14.001h2v2H7z'/%3E%3Cpath fill='black' d='M19 2h-8a2 2 0 0 0-2 2v6H5c-1.103 0-2 .897-2 2v9a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a2 2 0 0 0-2-2M5 20v-8h6v8zm9-12h-2V6h2zm4 8h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V6h2z'/%3E%3C/svg%3E"); } .bxs-bulb { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 20h6v2H9zm7.906-6.288C17.936 12.506 19 11.259 19 9c0-3.859-3.141-7-7-7S5 5.141 5 9c0 2.285 1.067 3.528 2.101 4.73c.358.418.729.851 1.084 1.349c.144.206.38.996.591 1.921h-.792v2h8.032v-2h-.79c.213-.927.45-1.719.593-1.925c.352-.503.726-.94 1.087-1.363'/%3E%3C/svg%3E"); } .bxs-bullseye { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 17c-3.859 0-7-3.14-7-7s3.141-7 7-7s7 3.14 7 7s-3.141 7-7 7'/%3E%3Cpath fill='black' d='M12 7c-2.757 0-5 2.243-5 5s2.243 5 5 5s5-2.243 5-5s-2.243-5-5-5m0 7c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2'/%3E%3C/svg%3E"); } .bxs-buoy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m7.736 8h-3.16A5.02 5.02 0 0 0 14 7.424V4.263A8.02 8.02 0 0 1 19.736 10M12 15c-1.654 0-3-1.346-3-3s1.346-3 3-3s3 1.346 3 3s-1.346 3-3 3M10 4.263v3.161A5.02 5.02 0 0 0 7.424 10h-3.16A8.02 8.02 0 0 1 10 4.263M4.264 14h3.16A5.02 5.02 0 0 0 10 16.576v3.161A8.02 8.02 0 0 1 4.264 14M14 19.737v-3.161A5.02 5.02 0 0 0 16.576 14h3.16A8.02 8.02 0 0 1 14 19.737'/%3E%3C/svg%3E"); } .bxs-bus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 6.021c.003-.146-.007-1.465-1.3-2.735C18.427 2.036 17.143 2 17 2H6.996c-.239 0-1.493.063-2.708 1.302C3.036 4.578 3 5.859 3 6v3H2v3h1v6c0 .734.406 1.373 1 1.721V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h10v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 21 18v-6h1V9h-1zM9 4h6v2H9zM6.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 18m4.5-5H5V8h6zm6.5 5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 17.5 18m1.5-5h-6V8h6z'/%3E%3C/svg%3E"); } .bxs-bus-school { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 11.597V11h1V8h-1V6c0-2.206-1.794-4-4-4H7C4.794 2 3 3.794 3 6v2H2v3h1v.597a3.97 3.97 0 0 0-.999 2.648l.004 3.758c.001.733.404 1.369.995 1.716V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.274a2 2 0 0 0 .421-.313c.377-.378.585-.881.584-1.415l-.004-3.759A3.97 3.97 0 0 0 21 11.597M8 4h8v2H8zM6.5 17a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 6.5 17m4.5-5H5V8h6zm6.5 5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 17.5 17m1.5-5h-6V8h6z'/%3E%3C/svg%3E"); } .bxs-business { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 7h-6a1 1 0 0 0-1 1v3h-2V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1M8 6h2v2H8zM6 16H4v-2h2zm0-4H4v-2h2zm0-4H4V6h2zm4 8H8v-2h2zm0-4H8v-2h2zm9 4h-2v-2h2zm0-4h-2v-2h2z'/%3E%3C/svg%3E"); } .bxs-cabinet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v7h18zm-5 4H8V5h2v1h4V5h2zM5 22h14c1.103 0 2-.897 2-2v-7H3v7c0 1.103.897 2 2 2m3-6h2v1h4v-1h2v3H8z'/%3E%3C/svg%3E"); } .bxs-cable-car { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2 9.76l9-2.45V10H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-4V6.76l9-2.45V2.24L2 7.69zM11 12v3H7v-3zm6 0v3h-4v-3z'/%3E%3C/svg%3E"); } .bxs-cake { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.997 15c-1.601 0-2.446-.676-3.125-1.219c-.567-.453-.977-.781-1.878-.781c-.898 0-1.287.311-1.874.78c-.679.544-1.524 1.22-3.125 1.22s-2.444-.676-3.123-1.22C3.285 13.311 2.897 13 2 13v5c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-5c-.899 0-1.288.311-1.876.781c-.68.543-1.525 1.219-3.127 1.219M19 5h-6V2h-2v3H5C3.346 5 2 6.346 2 8v3c1.6 0 2.443.676 3.122 1.22c.587.469.975.78 1.873.78c.899 0 1.287-.311 1.875-.781c.679-.543 1.524-1.219 3.124-1.219c1.602 0 2.447.676 3.127 1.219c.588.47.977.781 1.876.781c.9 0 1.311-.328 1.878-.781C19.554 11.676 20.399 11 22 11V8c0-1.654-1.346-3-3-3'/%3E%3C/svg%3E"); } .bxs-calculator { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 22h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2m3-3H7v-2h2zm0-4H7v-2h2zm0-4H7V9h2zm4 8h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V9h2zm4 8h-2v-6h2zm0-8h-2V9h2zM6 4h12v3H6z'/%3E%3C/svg%3E"); } .bxs-calendar { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 20V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2M9 18H7v-2h2zm0-4H7v-2h2zm4 4h-2v-2h2zm0-4h-2v-2h2zm4 4h-2v-2h2zm0-4h-2v-2h2zm2-5H5V7h14z'/%3E%3C/svg%3E"); } .bxs-calendar-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M5 7h14v2H5z'/%3E%3C/svg%3E"); } .bxs-calendar-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m6-3.586l-3.707-3.707l1.414-1.414L11 15.586l4.293-4.293l1.414 1.414zM5 7h14v2H5z'/%3E%3C/svg%3E"); } .bxs-calendar-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m4.799-2.013H8v-1.799l4.977-4.97l1.799 1.799zm5.824-5.817l-1.799-1.799L15.196 11l1.799 1.799zM5 7h14v2H5z'/%3E%3C/svg%3E"); } .bxs-calendar-event { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-1 15h-6v-6h6zm1-10H5V7h14z'/%3E%3C/svg%3E"); } .bxs-calendar-exclamation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-6 16h-2v-2h2zm0-4h-2v-5h2zm6-7H5V7h14z'/%3E%3C/svg%3E"); } .bxs-calendar-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-3.648 11.711L12.002 19l-3.349-3.289a2.13 2.13 0 0 1 0-3.069a2.224 2.224 0 0 1 3.125 0l.224.219l.224-.219a2.225 2.225 0 0 1 3.126 0a2.13 2.13 0 0 1 0 3.069M19 9H5V7h14z'/%3E%3C/svg%3E"); } .bxs-calendar-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m11-6H8v-2h8zM5 7h14v2H5z'/%3E%3C/svg%3E"); } .bxs-calendar-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m11-6h-3v3h-2v-3H8v-2h3v-3h2v3h3zM5 7h14v2H5z'/%3E%3C/svg%3E"); } .bxs-calendar-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-4.588 15l-2.449-1.288L9.514 19l.468-2.728L8 14.342l2.738-.398l1.225-2.48l1.225 2.48l2.738.398l-1.981 1.931zM19 9H5V7h14z'/%3E%3C/svg%3E"); } .bxs-calendar-week { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-2 8v2H7v-3h10zm2-3H5V7h14z'/%3E%3C/svg%3E"); } .bxs-calendar-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2h-2V2h-2v2H9V2H7v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m10.707-4.707l-1.414 1.414L12 16.414l-2.293 2.293l-1.414-1.414L10.586 15l-2.293-2.293l1.414-1.414L12 13.586l2.293-2.293l1.414 1.414L13.414 15zM5 7h14v2H5z'/%3E%3C/svg%3E"); } .bxs-camera { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 9c-1.626 0-3 1.374-3 3s1.374 3 3 3s3-1.374 3-3s-1.374-3-3-3'/%3E%3Cpath fill='black' d='M20 5h-2.586l-2.707-2.707A1 1 0 0 0 14 2h-4a1 1 0 0 0-.707.293L6.586 5H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2m-8 12c-2.71 0-5-2.29-5-5s2.29-5 5-5s5 2.29 5 5s-2.29 5-5 5'/%3E%3C/svg%3E"); } .bxs-camera-home { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='10' r='3' fill='black'/%3E%3Cpath fill='black' d='M18.125 2H5.875A1.877 1.877 0 0 0 4 3.875v12.25C4 17.159 4.841 18 5.875 18H11v2H7v2h10v-2h-4v-2h5.125A1.877 1.877 0 0 0 20 16.125V3.875A1.877 1.877 0 0 0 18.125 2M12 15c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5s-2.243 5-5 5'/%3E%3C/svg%3E"); } .bxs-camera-movie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 11c0-.959-.68-1.761-1.581-1.954C16.779 8.445 17 7.75 17 7c0-2.206-1.794-4-4-4c-1.516 0-2.822.857-3.5 2.104C8.822 3.857 7.516 3 6 3C3.794 3 2 4.794 2 7c0 .902.312 1.726.817 2.396A2 2 0 0 0 2 11v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-2.637l4 2v-7l-4 2zm-5-6c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2M6 5c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2'/%3E%3C/svg%3E"); } .bxs-camera-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 20h11.879l-3.083-3.083A5 5 0 0 1 12 17c-2.71 0-5-2.29-5-5c0-.271.039-.535.083-.796L2.144 6.265C2.054 6.493 2 6.74 2 7v11c0 1.103.897 2 2 2M20 5h-2.586l-2.707-2.707A1 1 0 0 0 14 2h-4a1 1 0 0 0-.707.293L6.586 5h-.172L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-.626-.626A1.98 1.98 0 0 0 22 18V7c0-1.103-.897-2-2-2m-5.312 8.274A2.86 2.86 0 0 0 15 12c0-1.626-1.374-3-3-3c-.456 0-.884.12-1.274.312l-1.46-1.46A4.9 4.9 0 0 1 12 7c2.71 0 5 2.29 5 5a4.9 4.9 0 0 1-.852 2.734z'/%3E%3C/svg%3E"); } .bxs-camera-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 5h-2.586l-2.707-2.707A1 1 0 0 0 14 2h-4a1 1 0 0 0-.707.293L6.586 5H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2m-8 12c-2.71 0-5-2.29-5-5s2.29-5 5-5s5 2.289 5 5s-2.29 5-5 5'/%3E%3Cpath fill='black' d='M13 9h-2v2H9v2h2v2h2v-2h2v-2h-2z'/%3E%3C/svg%3E"); } .bxs-capsule { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.434 20.566c1.335 0 2.591-.52 3.535-1.464l7.134-7.133a5.01 5.01 0 0 0-.001-7.072a4.97 4.97 0 0 0-3.536-1.463c-1.335 0-2.59.52-3.534 1.464l-7.134 7.133a5.01 5.01 0 0 0-.001 7.072a4.97 4.97 0 0 0 3.537 1.463m5.011-14.254a2.98 2.98 0 0 1 2.12-.878c.802 0 1.556.312 2.122.878a3.004 3.004 0 0 1 .001 4.243l-2.893 2.892l-4.242-4.244z'/%3E%3C/svg%3E"); } .bxs-captions { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-9 6H8v4h3v2H8c-1.103 0-2-.897-2-2v-4c0-1.103.897-2 2-2h3zm7 0h-3v4h3v2h-3c-1.103 0-2-.897-2-2v-4c0-1.103.897-2 2-2h3z'/%3E%3C/svg%3E"); } .bxs-car { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.772 10.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 4H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 12v5c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2h12v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2.277A1.99 1.99 0 0 0 22 17v-5a2 2 0 0 0-1.228-1.845M7.441 6h9.117c.431 0 .813.274.949.684L18.613 10H5.387l1.105-3.316A1 1 0 0 1 7.441 6M5.5 16a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 16m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 16'/%3E%3C/svg%3E"); } .bxs-car-battery { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M9 14H4v-2h5zm11 0h-2v2h-2v-2h-2v-2h2v-2h2v2h2zM4 3h4v2H4zm12 0h4v2h-4z'/%3E%3C/svg%3E"); } .bxs-car-crash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.634 17.918a1.77 1.77 0 0 0 1.201 1.291l.18.791H4v2h16v-2H6.683a.8.8 0 0 0-.007-.278l-.196-.863l10.357-2.356l.196.863a.886.886 0 0 0 1.06.667l.863-.197a.885.885 0 0 0 .667-1.06l-.251-1.103c.446-.416.67-1.046.525-1.683l-.59-2.59a1.76 1.76 0 0 0-1.262-1.307l-2.049-3.378a2.77 2.77 0 0 0-2.982-1.263l-7.868 1.79a2.77 2.77 0 0 0-2.144 2.43l-.387 3.932a1.76 1.76 0 0 0-.57 1.724zm3.02-.688a1.327 1.327 0 1 1-.59-2.589a1.327 1.327 0 0 1 .59 2.589m11.222-2.552a1.328 1.328 0 1 1-.59-2.587a1.328 1.328 0 0 1 .59 2.587M5.589 9.192l7.869-1.791a.77.77 0 0 1 .83.351l1.585 2.613l-.566.129l-10.046 2.287l-.568.129l.299-3.042a.77.77 0 0 1 .597-.676M18.405 4L17 2l-.5 3L19 9l3 1l-2-2.539l2-.933l-2-.933L22 2z'/%3E%3C/svg%3E"); } .bxs-car-garage { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 19.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 15v3c0 .738.404 1.376 1 1.723M5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18M7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684'/%3E%3Cpath fill='black' d='M22 7.388V5.279l-9.684-3.228a1 1 0 0 0-.658.009L2 5.572V7.7l10.015-3.642z'/%3E%3C/svg%3E"); } .bxs-car-mechanic { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.772 13.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 15v3c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845M7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684M5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18M5.277 5c.347.595.985 1 1.723 1s1.376-.405 1.723-1h6.555c.346.595.984 1 1.722 1s1.376-.405 1.723-1H17V3h1.723c-.347-.595-.985-1-1.723-1s-1.376.405-1.723 1H8.723C8.376 2.405 7.738 2 7 2s-1.376.405-1.723 1H7v2z'/%3E%3C/svg%3E"); } .bxs-car-wash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.772 13.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 7H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 15v3c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h12v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1.277A1.99 1.99 0 0 0 22 18v-3c0-.831-.507-1.542-1.228-1.845M7.441 9h9.117a1 1 0 0 1 .949.684L18.613 13H5.387l1.105-3.316c.137-.409.519-.684.949-.684M5.5 18a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 18m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 18M9 4.378c.005-1.088-1.037-2.051-1.387-2.344a.176.176 0 0 0-.228 0C7.033 2.325 5.995 3.271 6 4.377C6 5.272 6.673 6 7.5 6S9 5.272 9 4.378m4.5 0c.005-1.088-1.037-2.052-1.387-2.344a.176.176 0 0 0-.228 0c-.353.291-1.391 1.238-1.386 2.344C10.5 5.272 11.173 6 12 6s1.5-.728 1.5-1.622m4.5 0c.005-1.088-1.037-2.052-1.387-2.344a.176.176 0 0 0-.228 0c-.352.291-1.39 1.237-1.385 2.343C15 5.272 15.673 6 16.5 6S18 5.272 18 4.378'/%3E%3C/svg%3E"); } .bxs-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 17c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H6c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2zM4 19h16v2H4z'/%3E%3C/svg%3E"); } .bxs-caret-down-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.515 2 12 2m0 14l-5-6h10z'/%3E%3C/svg%3E"); } .bxs-caret-down-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m12-11l-5 6l-5-6z'/%3E%3C/svg%3E"); } .bxs-caret-left-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m2 15l-6-5l6-5z'/%3E%3C/svg%3E"); } .bxs-caret-left-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m9-14v10l-6-5z'/%3E%3C/svg%3E"); } .bxs-caret-right-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10M10 7l6 5l-6 5z'/%3E%3C/svg%3E"); } .bxs-caret-right-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m5-14l6 5l-6 5z'/%3E%3C/svg%3E"); } .bxs-caret-up-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.485 2 2 6.486 2 12s4.485 10 10 10s10-4.486 10-10S17.514 2 12 2M7 14l5-6l5 6z'/%3E%3C/svg%3E"); } .bxs-caret-up-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m7-13l5 6H7z'/%3E%3C/svg%3E"); } .bxs-carousel { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 3H8c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h8c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M2 7v10c0 1.103.897 2 2 2V5c-1.103 0-2 .897-2 2m18-2v14c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bxs-cart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.822 7.431A1 1 0 0 0 21 7H7.333L6.179 4.23A1.99 1.99 0 0 0 4.333 3H2v2h2.333l4.744 11.385A1 1 0 0 0 10 17h8c.417 0 .79-.259.937-.648l3-8a1 1 0 0 0-.115-.921'/%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bxs-cart-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='M21 7H7.334L6.18 4.23A1.995 1.995 0 0 0 4.333 3H2v2h2.334l4.743 11.385c.155.372.52.615.923.615h8c.417 0 .79-.259.937-.648l3-8A1.003 1.003 0 0 0 21 7m-4 6h-2v2h-2v-2h-2v-2h2V9h2v2h2z'/%3E%3C/svg%3E"); } .bxs-cart-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 4H2v2h2.3l3.521 9.683A2 2 0 0 0 9.7 17H18v-2H9.7l-.728-2H18c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 4'/%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='16.5' cy='19.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bxs-cart-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='10.5' cy='19.5' r='1.5' fill='black'/%3E%3Ccircle cx='17.5' cy='19.5' r='1.5' fill='black'/%3E%3Cpath fill='black' d='M21 7H7.334L6.18 4.23A1.995 1.995 0 0 0 4.333 3H2v2h2.334l4.743 11.385c.155.372.52.615.923.615h8c.417 0 .79-.259.937-.648l3-8A1.003 1.003 0 0 0 21 7m-7 8l-3-3h2V9h2v3h2z'/%3E%3C/svg%3E"); } .bxs-castle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 11h-2V6h1V2h-2v2h-1V2h-2v2h-1V2h-2v2h-1V2H8v2H7V2H5v4h1v5H4V9H2v12h7v-5a3 3 0 0 1 6 0v5h7V9h-2zm-10-1H8V7h2zm6 0h-2V7h2z'/%3E%3C/svg%3E"); } .bxs-cat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 14a5 5 0 0 0 2.71-.81L20 13a3 3 0 0 0 .45-.37l.21-.2a4.5 4.5 0 0 0 .48-.58l.06-.08a4.3 4.3 0 0 0 .41-.76a2 2 0 0 0 .09-.23a4 4 0 0 0 .2-.63l.06-.25A5.5 5.5 0 0 0 22 9V2l-3 3h-4l-3-3v7a5 5 0 0 0 5 5m2-7a1 1 0 1 1-1 1a1 1 0 0 1 1-1m-4 0a1 1 0 1 1-1 1a1 1 0 0 1 1-1'/%3E%3Cpath fill='black' d='M11 22v-5H8v5H5V11.9a3.49 3.49 0 0 1-2.48-1.64A3.6 3.6 0 0 1 2 8.5A3.65 3.65 0 0 1 6 5a1.89 1.89 0 0 0 2-2a1 1 0 0 1 1-1a1 1 0 0 1 1 1a3.89 3.89 0 0 1-4 4C4.19 7 4 8.16 4 8.51S4.18 10 6 10h5.09A6 6 0 0 0 19 14.65V22h-3v-5h-2v5z'/%3E%3C/svg%3E"); } .bxs-category { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 11h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m10 0h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1M4 21h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m13 0c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4'/%3E%3C/svg%3E"); } .bxs-category-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m10 10h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1M17 3c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4M7 13c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4'/%3E%3C/svg%3E"); } .bxs-cctv { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.618 7.462L6.403 2.085a1 1 0 0 0-.77-.016a1 1 0 0 0-.552.537l-3 7a1 1 0 0 0 .525 1.313L9.563 13.9L8.323 17H4v-3H2v8h2v-3h4.323c.823 0 1.552-.494 1.856-1.258l1.222-3.054l3.419 1.465a1 1 0 0 0 1.311-.518l3-6.857a1 1 0 0 0-.513-1.316m1.312 8.91l-1.858-.742l1.998-5l1.858.741z'/%3E%3C/svg%3E"); } .bxs-certification { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.047 14.667a1 1 0 0 0 .466.607l1.909 1.104v2.199a1 1 0 0 0 1 1h2.199l1.104 1.91a1 1 0 0 0 1.366.366L12 20.75l1.91 1.104a1 1 0 0 0 1.366-.366l1.103-1.909h2.199a1 1 0 0 0 1-1V16.38l1.909-1.104a1 1 0 0 0 .366-1.366L20.75 12l1.104-1.909a1 1 0 0 0-.366-1.366l-1.909-1.104V5.422a1 1 0 0 0-1-1H16.38l-1.103-1.909a1 1 0 0 0-.607-.466a1 1 0 0 0-.759.1L12 3.25l-1.909-1.104a1 1 0 0 0-1.366.365l-1.104 1.91H5.422a1 1 0 0 0-1 1V7.62L2.513 8.725a1 1 0 0 0-.365 1.366L3.251 12l-1.104 1.909a1 1 0 0 0-.1.758'/%3E%3C/svg%3E"); } .bxs-chalkboard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h4l-1.8 2.4l1.6 1.2l2.7-3.6h3l2.7 3.6l1.6-1.2L16 18h4c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M5 13h4v2H5z'/%3E%3C/svg%3E"); } .bxs-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 21c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2zM9.553 9.658l4 2l1.553-3.105l1.789.895l-2.447 4.895l-4-2l-1.553 3.105l-1.789-.895z'/%3E%3C/svg%3E"); } .bxs-chat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 18h2v4.081L11.101 18H16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2'/%3E%3Cpath fill='black' d='M20 2H8c-1.103 0-2 .897-2 2h12c1.103 0 2 .897 2 2v8c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bxs-check-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-1.999 14.413l-3.713-3.705L7.7 11.292l2.299 2.295l5.294-5.294l1.414 1.414z'/%3E%3C/svg%3E"); } .bxs-check-shield { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.488 21.754c.294.157.663.156.957-.001c8.012-4.304 8.581-12.713 8.574-15.104a.99.99 0 0 0-.596-.903l-8.05-3.566a1 1 0 0 0-.813.001L3.566 5.747a.99.99 0 0 0-.592.892c-.034 2.379.445 10.806 8.514 15.115M8.674 10.293l2.293 2.293l4.293-4.293l1.414 1.414l-5.707 5.707l-3.707-3.707z'/%3E%3C/svg%3E"); } .bxs-check-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m-7.933 13.481l-3.774-3.774l1.414-1.414l2.226 2.226l4.299-5.159l1.537 1.28z'/%3E%3C/svg%3E"); } .bxs-checkbox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2'/%3E%3C/svg%3E"); } .bxs-checkbox-checked { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2zm4 10.414l-2.707-2.707l1.414-1.414L11 12.586l3.793-3.793l1.414 1.414z'/%3E%3C/svg%3E"); } .bxs-checkbox-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 5H7a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-1 8H8v-2h8z'/%3E%3C/svg%3E"); } .bxs-cheese { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.16 2a1 1 0 0 0-.66.13l-12 7a.6.6 0 0 0-.13.1l-.1.08a1.2 1.2 0 0 0-.17.26a.84.84 0 0 0-.1.43v10a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V10a8.08 8.08 0 0 0-6.84-8m0 2.05A6.07 6.07 0 0 1 19.93 9H6.7zM6.5 18A1.5 1.5 0 1 1 8 16.5A1.5 1.5 0 0 1 6.5 18m5-3a1.5 1.5 0 1 1 1.5-1.5a1.5 1.5 0 0 1-1.5 1.5m5.5 3a2 2 0 1 1 2-2a2 2 0 0 1-2 2'/%3E%3C/svg%3E"); } .bxs-chess { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 2H3a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1m-1 6h-4v4h4v4h-4v4h-4v-4H8v4H4v-4h4v-4H4V8h4V4h4v4h4V4h4z'/%3E%3Cpath fill='black' d='M8 8h4v4H8zm4 4h4v4h-4z'/%3E%3C/svg%3E"); } .bxs-chevron-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.939 7.939L12 12.879l-4.939-4.94l-2.122 2.122L12 17.121l7.061-7.06z'/%3E%3C/svg%3E"); } .bxs-chevron-down-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 14.414l-5.707-5.707l1.414-1.414L12 13.586l4.293-4.293l1.414 1.414z'/%3E%3C/svg%3E"); } .bxs-chevron-down-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M7.707 9.293L12 13.586l4.293-4.293l1.414 1.414L12 16.414l-5.707-5.707z'/%3E%3C/svg%3E"); } .bxs-chevron-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.939 4.939L6.879 12l7.06 7.061l2.122-2.122L11.121 12l4.94-4.939z'/%3E%3C/svg%3E"); } .bxs-chevron-left-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m2.707 14.293l-1.414 1.414L7.586 12l5.707-5.707l1.414 1.414L10.414 12z'/%3E%3C/svg%3E"); } .bxs-chevron-left-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 3c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2zm9.707 13.293l-1.414 1.414L7.586 12l5.707-5.707l1.414 1.414L10.414 12z'/%3E%3C/svg%3E"); } .bxs-chevron-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.061 19.061L17.121 12l-7.06-7.061l-2.122 2.122L12.879 12l-4.94 4.939z'/%3E%3C/svg%3E"); } .bxs-chevron-right-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-1.293 15.707l-1.414-1.414L13.586 12L9.293 7.707l1.414-1.414L16.414 12z'/%3E%3C/svg%3E"); } .bxs-chevron-right-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 5v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m6.293 2.707l1.414-1.414L16.414 12l-5.707 5.707l-1.414-1.414L13.586 12z'/%3E%3C/svg%3E"); } .bxs-chevron-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 6.879l-7.061 7.06l2.122 2.122L12 11.121l4.939 4.94l2.122-2.122z'/%3E%3C/svg%3E"); } .bxs-chevron-up-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m4.293 12.707L12 10.414l-4.293 4.293l-1.414-1.414L12 7.586l5.707 5.707z'/%3E%3C/svg%3E"); } .bxs-chevron-up-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2m7-13.414l5.707 5.707l-1.414 1.414L12 10.414l-4.293 4.293l-1.414-1.414z'/%3E%3C/svg%3E"); } .bxs-chevrons-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.939 10.939L12 15.879l-4.939-4.94l-2.122 2.122L12 20.121l7.061-7.06z'/%3E%3Cpath fill='black' d='M16.939 3.939L12 8.879l-4.939-4.94l-2.122 2.122L12 13.121l7.061-7.06z'/%3E%3C/svg%3E"); } .bxs-chevrons-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m8.121 12l4.94-4.939l-2.122-2.122L3.879 12l7.06 7.061l2.122-2.122z'/%3E%3Cpath fill='black' d='M17.939 4.939L10.879 12l7.06 7.061l2.122-2.122L15.121 12l4.94-4.939z'/%3E%3C/svg%3E"); } .bxs-chevrons-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m13.061 4.939l-2.122 2.122L15.879 12l-4.94 4.939l2.122 2.122L20.121 12z'/%3E%3Cpath fill='black' d='M6.061 19.061L13.121 12l-7.06-7.061l-2.122 2.122L8.879 12l-4.94 4.939z'/%3E%3C/svg%3E"); } .bxs-chevrons-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 3.879l-7.061 7.06l2.122 2.122L12 8.121l4.939 4.94l2.122-2.122z'/%3E%3Cpath fill='black' d='m4.939 17.939l2.122 2.122L12 15.121l4.939 4.94l2.122-2.122L12 10.879z'/%3E%3C/svg%3E"); } .bxs-chip { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 7a2 2 0 0 0-2-2h-1V2h-2v3h-4V2H8v3H7a2 2 0 0 0-2 2v1H2v2h3v4H2v2h3v1a2 2 0 0 0 2 2h1v3h2v-3h4v3h2v-3h1a2 2 0 0 0 2-2v-1h3v-2h-3v-4h3V8h-3zm-4 8H9V9h6z'/%3E%3C/svg%3E"); } .bxs-church { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 22v-4a2 2 0 0 1 4 0v4h4V12a1 1 0 0 0-.485-.857L13 8.434V6h2V4h-2V2h-2v2H9v2h2v2.434l-4.515 2.709A1 1 0 0 0 6 12v10zm-7 0h2v-8.118l-2.447 1.224A1 1 0 0 0 2 16v5a1 1 0 0 0 1 1m18.447-6.895L19 13.882V22h2a1 1 0 0 0 1-1v-5c0-.379-.214-.725-.553-.895'/%3E%3C/svg%3E"); } .bxs-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2'/%3E%3C/svg%3E"); } .bxs-circle-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2h-1v20h1a10 10 0 0 0 0-20'/%3E%3C/svg%3E"); } .bxs-circle-quarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2h-1v11h11v-1A10 10 0 0 0 12 2'/%3E%3C/svg%3E"); } .bxs-circle-three-quarter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2h-1v9H2v1a10 10 0 0 0 17.07 7.07A10 10 0 0 0 12 2'/%3E%3C/svg%3E"); } .bxs-city { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 6h-4V3a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1M6 18H4v-2h2zm0-4H4v-2h2zm5 4H9v-2h2zm0-4H9v-2h2zm0-4H9V8h2zm0-4H9V4h2zm4 12h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V8h2zm0-4h-2V4h2zm5 12h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V8h2z'/%3E%3C/svg%3E"); } .bxs-clinic { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.743 12.331l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10a1 1 0 0 0-.17 1.076c.16.361.518.593.913.593h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .743-1.669M16 15h-3v3h-2v-3H8v-2h3v-3h2v3h3z'/%3E%3C/svg%3E"); } .bxs-cloud { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.611 5.757 9.15C3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5h11c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888'/%3E%3C/svg%3E"); } .bxs-cloud-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.61 5.757 9.149C3.609 9.792 2 11.82 2 14c0 2.657 2.089 4.815 4.708 4.971V19H17.99v-.003L18 19c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888M8 12h3V9h2v3h3l-4 5z'/%3E%3C/svg%3E"); } .bxs-cloud-lightning { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.82 2 13c0 2.757 2.243 5 5 5h1.333L10 13h4l-2 3h2.975l-1.325 2H18c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888M11 18H8.333L8 19h3v3l2.649-4H11.5z'/%3E%3C/svg%3E"); } .bxs-cloud-rain { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.944 10.112C18.507 6.67 15.56 4 12 4C9.244 4 6.85 5.611 5.757 8.15C3.609 8.792 2 10.82 2 13c0 2.757 2.243 5 5 5h1v3h2v-3h4v3h2v-3h2c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888'/%3E%3Cpath fill='black' d='M11 19h2v3h-2z'/%3E%3C/svg%3E"); } .bxs-cloud-upload { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.944 11.112C18.507 7.67 15.56 5 12 5C9.244 5 6.85 6.611 5.757 9.15C3.609 9.792 2 11.82 2 14c0 2.757 2.243 5 5 5h11c2.206 0 4-1.794 4-4a4.01 4.01 0 0 0-3.056-3.888M13 14v3h-2v-3H8l4-5l4 5z'/%3E%3C/svg%3E"); } .bxs-coffee { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 2h2v3H5zm4 0h2v3H9zm4 0h2v3h-2zm6 7h-2V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3h2c1.103 0 2-.897 2-2v-5c0-1.103-.897-2-2-2m-2 7v-5h2l.002 5z'/%3E%3C/svg%3E"); } .bxs-coffee-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 5h-1V4a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v9a4 4 0 0 0 4 4h6c1.858 0 3.411-1.279 3.858-3H19a3 3 0 0 0 3-3V8a3 3 0 0 0-3-3m1 6a1 1 0 0 1-1 1h-1V7h1a1 1 0 0 1 1 1zm-2 8H3c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3z'/%3E%3C/svg%3E"); } .bxs-coffee-bean { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 18a6.06 6.06 0 0 0 5.17-6a7.62 7.62 0 0 1 6.52-7.51l2.59-.37c-.07-.08-.13-.16-.21-.24c-3.26-3.26-9.52-2.28-14 2.18C2.28 9.9 1 15 2.76 18.46z'/%3E%3Cpath fill='black' d='M12.73 12a7.63 7.63 0 0 1-6.51 7.52l-2.46.35l.15.17c3.26 3.26 9.52 2.29 14-2.17C21.68 14.11 23 9 21.25 5.59l-3.34.48A6.05 6.05 0 0 0 12.73 12'/%3E%3C/svg%3E"); } .bxs-coffee-togo { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m18.5 5l-1.224-2.447A1 1 0 0 0 16.382 2H7.618a1 1 0 0 0-.894.553L5.5 5H3v2h18V5zM6.734 21.142c.071.492.493.858.991.858h8.551a1 1 0 0 0 .99-.858L19 9H5zM16 12l-.714 5H8.714L8 12z'/%3E%3C/svg%3E"); } .bxs-cog { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2.344 15.271l2 3.46a1 1 0 0 0 1.366.365l1.396-.806c.58.457 1.221.832 1.895 1.112V21a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-1.598a8 8 0 0 0 1.895-1.112l1.396.806c.477.275 1.091.11 1.366-.365l2-3.46a1.004 1.004 0 0 0-.365-1.366l-1.372-.793a7.7 7.7 0 0 0-.002-2.224l1.372-.793c.476-.275.641-.89.365-1.366l-2-3.46a1 1 0 0 0-1.366-.365l-1.396.806A8 8 0 0 0 15 4.598V3a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v1.598A8 8 0 0 0 7.105 5.71L5.71 4.904a1 1 0 0 0-1.366.365l-2 3.46a1.004 1.004 0 0 0 .365 1.366l1.372.793a7.7 7.7 0 0 0 0 2.224l-1.372.793c-.476.275-.641.89-.365 1.366M12 8c2.206 0 4 1.794 4 4s-1.794 4-4 4s-4-1.794-4-4s1.794-4 4-4'/%3E%3C/svg%3E"); } .bxs-coin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 5C7.031 5 2 6.546 2 9.5S7.031 14 12 14s10-1.546 10-4.5S16.97 5 12 5m-5 9.938v3c1.237.299 2.605.482 4 .541v-3a21 21 0 0 1-4-.541m6 .54v3a21 21 0 0 0 4-.541v-3a21 21 0 0 1-4 .541m6-1.181v3c1.801-.755 3-1.857 3-3.297v-3c0 1.44-1.199 2.542-3 3.297m-14 3v-3C3.2 13.542 2 12.439 2 11v3c0 1.439 1.2 2.542 3 3.297'/%3E%3C/svg%3E"); } .bxs-coin-stack { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 10c3.976 0 8-1.374 8-4s-4.024-4-8-4s-8 1.374-8 4s4.024 4 8 4'/%3E%3Cpath fill='black' d='M4 10c0 2.626 4.024 4 8 4s8-1.374 8-4V8c0 2.626-4.024 4-8 4s-8-1.374-8-4z'/%3E%3Cpath fill='black' d='M4 14c0 2.626 4.024 4 8 4s8-1.374 8-4v-2c0 2.626-4.024 4-8 4s-8-1.374-8-4z'/%3E%3Cpath fill='black' d='M4 18c0 2.626 4.024 4 8 4s8-1.374 8-4v-2c0 2.626-4.024 4-8 4s-8-1.374-8-4z'/%3E%3C/svg%3E"); } .bxs-collection { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 10H5c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2M5 6h14v2H5zm2-4h10v2H7z'/%3E%3C/svg%3E"); } .bxs-color { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.08 11.25A4.84 4.84 0 0 1 8 9.05L4.43 5.49A9.88 9.88 0 0 0 2 11.25zM9.05 8a4.84 4.84 0 0 1 2.2-.91V2a9.88 9.88 0 0 0-5.76 2.43zm3.7-6v5A4.84 4.84 0 0 1 15 8l3.56-3.56A9.88 9.88 0 0 0 12.75 2M8 15a4.84 4.84 0 0 1-.91-2.2H2a9.88 9.88 0 0 0 2.39 5.76zm3.25 1.92a4.84 4.84 0 0 1-2.2-.92l-3.56 3.57A9.88 9.88 0 0 0 11.25 22zM16 9.05a4.84 4.84 0 0 1 .91 2.2h5a9.88 9.88 0 0 0-2.39-5.76zM15 16a4.84 4.84 0 0 1-2.2.91v5a9.88 9.88 0 0 0 5.76-2.39zm1.92-3.25A4.84 4.84 0 0 1 16 15l3.56 3.56A9.88 9.88 0 0 0 22 12.75z'/%3E%3C/svg%3E"); } .bxs-color-fill { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 14c-.092.064-2 2.083-2 3.5c0 1.494.949 2.448 2 2.5c.906.044 2-.891 2-2.5c0-1.5-1.908-3.436-2-3.5M9.586 20c.378.378.88.586 1.414.586s1.036-.208 1.414-.586l7-7l-.707-.707L11 4.586L8.707 2.293L7.293 3.707L9.586 6L4 11.586c-.378.378-.586.88-.586 1.414s.208 1.036.586 1.414zM11 7.414L16.586 13H5.414z'/%3E%3C/svg%3E"); } .bxs-comment { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bxs-comment-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-3 9h-4v4h-2v-4H7V9h4V5h2v4h4z'/%3E%3C/svg%3E"); } .bxs-comment-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-9 11.914l-3.707-3.707l1.414-1.414L11 11.086l4.793-4.793l1.414 1.414z'/%3E%3C/svg%3E"); } .bxs-comment-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 1.999H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2v-12c0-1.103-.897-2-2-2m-6 11H7v-2h7zm3-4H7v-2h10z'/%3E%3C/svg%3E"); } .bxs-comment-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M9 12a2 2 0 1 1 .001-4.001A2 2 0 0 1 9 12m6 0a2 2 0 1 1 .001-4.001A2 2 0 0 1 15 12'/%3E%3C/svg%3E"); } .bxs-comment-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M8.999 14.987H7v-1.999l5.53-5.522l1.998 1.999zm6.472-6.464l-1.999-1.999l1.524-1.523L16.995 7z'/%3E%3C/svg%3E"); } .bxs-comment-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-7 13h-2v-2h2zm0-4h-2V5h2z'/%3E%3C/svg%3E"); } .bxs-comment-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-4 9H8V9h8z'/%3E%3C/svg%3E"); } .bxs-comment-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .897-2 2v18l4-4h14c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-3.294 11.543l-1.414 1.414l-3.293-3.292l-3.292 3.292l-1.414-1.414l3.292-3.292l-3.292-3.293l1.414-1.414l3.292 3.292l3.293-3.292l1.414 1.414l-3.292 3.293z'/%3E%3C/svg%3E"); } .bxs-compass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m3 13l-8 2l2-8l8-2z'/%3E%3Ccircle cx='12' cy='12' r='2' fill='black'/%3E%3C/svg%3E"); } .bxs-component { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m3.553 18.895l4 2a1 1 0 0 0 .894 0L12 19.118l3.553 1.776a.99.99 0 0 0 .894.001l4-2c.339-.17.553-.516.553-.895v-5c0-.379-.214-.725-.553-.895L17 10.382V6c0-.379-.214-.725-.553-.895l-4-2a1 1 0 0 0-.895 0l-4 2C7.214 5.275 7 5.621 7 6v4.382l-3.447 1.724A1 1 0 0 0 3 13v5c0 .379.214.725.553.895M8 12.118l2.264 1.132l-2.913 1.457l-2.264-1.132zm4-2.5l3-1.5v2.264l-3 1.5zm6.264 3.632l-2.882 1.441l-2.264-1.132L16 12.118zM8 18.882l-.062-.031V16.65L11 15.118v2.264zm8 0v-2.264l3-1.5v2.264zM12 5.118l2.264 1.132l-2.882 1.441l-2.264-1.132z'/%3E%3C/svg%3E"); } .bxs-confused { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5m1.124 6.492l-.248-1.984l8-1l.248 1.984zm7.369-5.006a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987'/%3E%3C/svg%3E"); } .bxs-contact { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 2H6a2 2 0 0 0-2 2v3H2v2h2v2H2v2h2v2H2v2h2v3a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1m-8 2.999c1.648 0 3 1.351 3 3A3.01 3.01 0 0 1 13 11c-1.647 0-3-1.353-3-3.001c0-1.649 1.353-3 3-3M19 18H7v-.75c0-2.219 2.705-4.5 6-4.5s6 2.281 6 4.5z'/%3E%3C/svg%3E"); } .bxs-conversation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 14h3.5c.827 0 1.5-.673 1.5-1.5v-9c0-.827-.673-1.5-1.5-1.5h-13C2.673 2 2 2.673 2 3.5V18l5.333-4zm-9-.1l.154-.016L4 14z'/%3E%3Cpath fill='black' d='M20.5 8H20v6.001c0 1.1-.893 1.993-1.99 1.999H8v.5c0 .827.673 1.5 1.5 1.5h7.167L22 22V9.5c0-.827-.673-1.5-1.5-1.5'/%3E%3C/svg%3E"); } .bxs-cookie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.598 11.064a1 1 0 0 0-.854-.172A3 3 0 0 1 20 11c-1.654 0-3-1.346-3.003-2.938c.005-.034.016-.134.017-.168a.998.998 0 0 0-1.254-1.006A3 3 0 0 1 15 7c-1.654 0-3-1.346-3-3c0-.217.031-.444.099-.716a1 1 0 0 0-1.067-1.236A9.956 9.956 0 0 0 2 12c0 5.514 4.486 10 10 10s10-4.486 10-10c0-.049-.003-.097-.007-.16a1 1 0 0 0-.395-.776M8.5 6a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3m-2 8a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3m3 4a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3m2.5-6.5a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m3.5 6.5a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3'/%3E%3C/svg%3E"); } .bxs-cool { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m4.095 14.244a6 6 0 0 1-3.034 1.634a6.05 6.05 0 0 1-2.414 0a5.9 5.9 0 0 1-2.148-.903a6.1 6.1 0 0 1-1.621-1.622l1.658-1.117q.216.318.488.59a4 4 0 0 0 1.273.86q.366.154.749.232a4.1 4.1 0 0 0 1.616 0q.381-.079.75-.233c.234-.1.464-.224.679-.368q.313-.214.591-.489q.275-.274.489-.592l1.658 1.117c-.215.32-.462.62-.734.891M19 10a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2h-2a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V8h14z'/%3E%3C/svg%3E"); } .bxs-copy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 8H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2V10c0-1.103-.897-2-2-2'/%3E%3Cpath fill='black' d='M20 2H10a2 2 0 0 0-2 2v2h8a2 2 0 0 1 2 2v8h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2'/%3E%3C/svg%3E"); } .bxs-copy-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H10a2 2 0 0 0-2 2v2h8a2 2 0 0 1 2 2v8h2a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2'/%3E%3Cpath fill='black' d='M4 22h10c1.103 0 2-.897 2-2V10c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2m2-10h6v2H6zm0 4h6v2H6z'/%3E%3C/svg%3E"); } .bxs-copyright { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.579 2 2 6.58 2 12s4.579 10 10 10s10-4.58 10-10S17.421 2 12 2m0 13c.992 0 1.85-.265 2.293-.708l1.414 1.415C14.581 16.832 12.901 17 12 17c-2.757 0-5-2.243-5-5s2.243-5 5-5c.901 0 2.582.168 3.707 1.293l-1.414 1.414C13.851 9.264 12.993 9 12 9c-1.626 0-3 1.374-3 3s1.374 3 3 3'/%3E%3C/svg%3E"); } .bxs-coupon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 5H3a1 1 0 0 0-1 1v4h.893c.996 0 1.92.681 2.08 1.664A2 2 0 0 1 3 14H2v4a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-4h-1a2 2 0 0 1-1.973-2.336c.16-.983 1.084-1.664 2.08-1.664H22V6a1 1 0 0 0-1-1M11 17H9v-2h2zm0-4H9v-2h2zm0-4H9V7h2z'/%3E%3C/svg%3E"); } .bxs-credit-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v2h20V6c0-1.103-.897-2-2-2M2 18c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2v-6H2zm3-3h6v2H5z'/%3E%3C/svg%3E"); } .bxs-credit-card-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-7.5 12a2.5 2.5 0 1 1 0-5a2.47 2.47 0 0 1 1.5.512c-.604.456-1 1.173-1 1.988s.396 1.532 1 1.988a2.47 2.47 0 0 1-1.5.512m4 0a2.5 2.5 0 1 1 0-5a2.5 2.5 0 0 1 0 5'/%3E%3C/svg%3E"); } .bxs-credit-card-front { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M5 8.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5zm6 7.5H5v-2h6zm8 0h-6v-2h6z'/%3E%3C/svg%3E"); } .bxs-cricket-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m3.67 16.26l.54.53l-.62.61a9 9 0 0 0 .84 1.11L18.51 4.42a11 11 0 0 0-1.1-.83l-.62.61l-.53-.53l.48-.48A10 10 0 0 0 3.2 16.74zM14.86 5.07l.53.53L14 7l-.53-.53zm-2.79 2.8l.52.53l-1.39 1.4l-.53-.53zm-2.8 2.8l.53.53l-1.4 1.39l-.53-.53zm-2.8 2.79L7 14l-1.4 1.4l-.53-.53zm.12 6.95l.62-.61l.53.53l-.48.48A10 10 0 0 0 20.8 7.26l-.47.48l-.54-.53l.62-.61a9 9 0 0 0-.84-1.11L5.49 19.58a11 11 0 0 0 1.1.83M18.4 8.61l.53.53l-1.4 1.4L17 10zm-2.8 2.8l.53.53l-1.4 1.39l-.53-.53zm-2.8 2.79l.53.53l-1.39 1.4l-.54-.53zM10 17l.53.53l-1.4 1.4l-.53-.53z'/%3E%3C/svg%3E"); } .bxs-crop { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 7.5C19 6.121 17.879 5 16.5 5H8V2H5v3H2v3h14v14h3v-3h3v-3h-3z'/%3E%3Cpath fill='black' d='M8 10H5v6.5C5 17.879 6.121 19 7.5 19H14v-3H8z'/%3E%3C/svg%3E"); } .bxs-crown { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21 2l-5 5l-4-5l-4 5l-5-5v13h18zM5 21h14a2 2 0 0 0 2-2v-2H3v2a2 2 0 0 0 2 2'/%3E%3C/svg%3E"); } .bxs-cube { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.406 6.086l-9-4a1 1 0 0 0-.813 0l-9 4c-.02.009-.034.024-.054.035c-.028.014-.058.023-.084.04c-.022.015-.039.034-.06.05a.9.9 0 0 0-.19.194q-.031.04-.059.081a1 1 0 0 0-.076.165c-.009.027-.023.052-.031.079A1 1 0 0 0 2 7v10c0 .396.232.753.594.914l9 4c.13.058.268.086.406.086a1 1 0 0 0 .402-.096l.004.01l9-4A1 1 0 0 0 22 17V7a1 1 0 0 0-.594-.914M12 4.095L18.538 7L12 9.905l-1.308-.581L5.463 7zm1 15.366V11.65l7-3.111v7.812z'/%3E%3C/svg%3E"); } .bxs-cube-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.895 3.553A1 1 0 0 0 17 3H7c-.379 0-.725.214-.895.553l-4 8a1 1 0 0 0 0 .895l4 8c.17.338.516.552.895.552h10c.379 0 .725-.214.895-.553l4-8a1 1 0 0 0 0-.895zM19.382 11h-7.764l-3-6h7.764zm-3 8H8.618l3-6h7.764z'/%3E%3C/svg%3E"); } .bxs-cuboid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.707 2.293A1 1 0 0 0 16 2H8c-.414 0-.785.255-.934.641l-5 13a1 1 0 0 0 .227 1.066l5 5A1 1 0 0 0 8 22h8c.414 0 .785-.255.934-.641l5-13a1 1 0 0 0-.227-1.066zM18.585 7h-5.171l-3-3h5.172zm-3.272 13h-6.23l4.583-11h5.878z'/%3E%3C/svg%3E"); } .bxs-customize { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m10 0h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1M10 13H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1m8 1h-2v2h-2v2h2v2h2v-2h2v-2h-2z'/%3E%3C/svg%3E"); } .bxs-cylinder { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c5.131 0 9-1.935 9-4.5V7c0-.051-.024-.097-.033-.146c.016-.117.033-.234.033-.354C21 3.935 17.131 2 12 2S3 3.935 3 6.5v11c0 2.565 3.869 4.5 9 4.5m0-18c4.273 0 7 1.48 7 2.5a.7.7 0 0 1-.025.158c-.004.01-.012.018-.015.027c-.274.848-2.29 1.98-5.496 2.253l-.05.003Q12.741 8.999 12 9C7.727 9 5 7.52 5 6.5S7.727 4 12 4'/%3E%3C/svg%3E"); } .bxs-dashboard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 13h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1m-1 7a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1zm10 0a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1zm1-10h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1'/%3E%3C/svg%3E"); } .bxs-data { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6c0-2.168-3.663-4-8-4S4 3.832 4 6v2c0 2.168 3.663 4 8 4s8-1.832 8-4zm-8 13c-4.337 0-8-1.832-8-4v3c0 2.168 3.663 4 8 4s8-1.832 8-4v-3c0 2.168-3.663 4-8 4'/%3E%3Cpath fill='black' d='M20 10c0 2.168-3.663 4-8 4s-8-1.832-8-4v3c0 2.168 3.663 4 8 4s8-1.832 8-4z'/%3E%3C/svg%3E"); } .bxs-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-9 14H5v-2h6zm8-4H5v-2h14zm0-4H5V7h14z'/%3E%3C/svg%3E"); } .bxs-devices { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H7c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h6c1.103 0 2-.897 2-2h8c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M6 9h4l-.003 9H4V9zm6 8V9c0-1.103-.897-2-2-2H7V5h11v12z'/%3E%3C/svg%3E"); } .bxs-diamond { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.445 3h-8.89c-.345 0-.666.178-.849.47L3.25 9h17.5l-3.456-5.53a1 1 0 0 0-.849-.47M11.26 21.186a1 1 0 0 0 1.48 0L22 11H2z'/%3E%3C/svg%3E"); } .bxs-dice-1 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m-7 10.5a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3'/%3E%3C/svg%3E"); } .bxs-dice-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M9.5 13.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 9.5 13.5m5 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 14.5 13.5'/%3E%3C/svg%3E"); } .bxs-dice-3 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M8 9.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5m4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 12 13.5m4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5'/%3E%3C/svg%3E"); } .bxs-dice-4 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5m0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5m8 8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5m0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5'/%3E%3C/svg%3E"); } .bxs-dice-5 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5m0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5m4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 12 13.5m4 4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5m0-8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5'/%3E%3C/svg%3E"); } .bxs-dice-6 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M8 17.5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 17.5m0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 13.5m0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8 9.5m8 8a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 17.5m0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 13.5m0-4a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16 9.5'/%3E%3C/svg%3E"); } .bxs-direction-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.707 11.294l-8.978-9a1 1 0 0 0-1.415-.002l-9.021 9a1 1 0 0 0 0 1.416l9.021 9c.39.389 1.026.388 1.415-.002l8.978-9a1 1 0 0 0 0-1.412M15 16h-2v-4h-3v2l-3-3l3-3v2h5z'/%3E%3C/svg%3E"); } .bxs-direction-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2.295 12.707l8.978 9c.389.39 1.025.391 1.414.002l9.021-9a1 1 0 0 0 0-1.416l-9.021-9a1 1 0 0 0-1.414.002l-8.978 9a1 1 0 0 0 0 1.412m6.707-2.706h5v-2l3 3l-3 3v-2h-3v4h-2z'/%3E%3C/svg%3E"); } .bxs-directions { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 11h-6V8h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H5L2 5l3 3h6v3H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h6v5h2v-5h6l3-3z'/%3E%3C/svg%3E"); } .bxs-disc { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 14c-2.206 0-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4s-1.794 4-4 4'/%3E%3Ccircle cx='11.998' cy='11.998' r='2.002' fill='black'/%3E%3C/svg%3E"); } .bxs-discount { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 5H3a1 1 0 0 0-1 1v4h.893c.996 0 1.92.681 2.08 1.664A2 2 0 0 1 3 14H2v4a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-4h-1a2 2 0 0 1-1.973-2.336c.16-.983 1.084-1.664 2.08-1.664H22V6a1 1 0 0 0-1-1M9 9a1 1 0 1 1 0 2a1 1 0 1 1 0-2m-.8 6.4l6-8l1.6 1.2l-6 8zM15 15a1 1 0 1 1 0-2a1 1 0 1 1 0 2'/%3E%3C/svg%3E"); } .bxs-dish { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 15c0-4.625-3.507-8.441-8-8.941V4h-2v2.059c-4.493.5-8 4.316-8 8.941v2h18zM2 18h20v2H2z'/%3E%3C/svg%3E"); } .bxs-dislike { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3h-1v13h1a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M4 16h7l-1.122 3.368A2 2 0 0 0 11.775 22H12l5-5.438V3H6l-3.937 8.649l-.063.293V14a2 2 0 0 0 2 2'/%3E%3C/svg%3E"); } .bxs-dizzy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M8 12.414l-1.293 1.293l-1.414-1.414L6.586 11L5.293 9.707l1.414-1.414L8 9.586l1.293-1.293l1.414 1.414L9.414 11l1.293 1.293l-1.414 1.414zM14 18h-4v-2h4zm4.707-5.707l-1.414 1.414L16 12.414l-1.293 1.293l-1.414-1.414L14.586 11l-1.293-1.293l1.414-1.414L16 9.586l1.293-1.293l1.414 1.414L17.414 11z'/%3E%3C/svg%3E"); } .bxs-dock-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2M19 5l.001 9H5V5z'/%3E%3C/svg%3E"); } .bxs-dock-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 19V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2m-11 0V5h9l.002 14z'/%3E%3C/svg%3E"); } .bxs-dock-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2zM5 5h9v14H5z'/%3E%3C/svg%3E"); } .bxs-dock-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 5v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m2 14v-9h14.001l.001 9z'/%3E%3C/svg%3E"); } .bxs-dog { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 6h-2l-1.27-1.27A2.5 2.5 0 0 0 16 4h-2.5A2.64 2.64 0 0 0 11 2v6.36a4.38 4.38 0 0 0 1.13 2.72a6.57 6.57 0 0 0 4.13 1.82l3.45-1.38a3 3 0 0 0 1.73-1.84L22 8.15a1 1 0 0 0 0-.31V7a1 1 0 0 0-1-1m-5 2a1 1 0 1 1 1-1a1 1 0 0 1-1 1'/%3E%3Cpath fill='black' d='M11.38 11.74A5.24 5.24 0 0 1 10.07 9H6a1.88 1.88 0 0 1-2-2a1 1 0 0 0-2 0a4.7 4.7 0 0 0 .48 2A3.6 3.6 0 0 0 4 10.53V22h3v-5h6v5h3v-8.13a7.35 7.35 0 0 1-4.62-2.13'/%3E%3C/svg%3E"); } .bxs-dollar-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m1 14.915V18h-2v-1.08c-2.339-.367-3-2.002-3-2.92h2c.011.143.159 1 2 1c1.38 0 2-.585 2-1c0-.324 0-1-2-1c-3.48 0-4-1.88-4-3c0-1.288 1.029-2.584 3-2.915V6.012h2v1.109c1.734.41 2.4 1.853 2.4 2.879h-1l-1 .018C13.386 9.638 13.185 9 12 9c-1.299 0-2 .516-2 1c0 .374 0 1 2 1c3.48 0 4 1.88 4 3c0 1.288-1.029 2.584-3 2.915'/%3E%3C/svg%3E"); } .bxs-donate-blood { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.726 13.02L14 16H9v-1h4.065a.5.5 0 0 0 .416-.777l-.888-1.332A2 2 0 0 0 10.93 12H3a1 1 0 0 0-1 1v6a2 2 0 0 0 2 2h9.639a3 3 0 0 0 2.258-1.024L22 13l-1.452-.484a3 3 0 0 0-2.822.504M15.403 12a3 3 0 0 0 3-3c0-2.708-3-6-3-6s-3 3.271-3 6a3 3 0 0 0 3 3'/%3E%3C/svg%3E"); } .bxs-donate-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.726 13.02L14 16H9v-1h4.065a.5.5 0 0 0 .416-.777l-.888-1.332A2 2 0 0 0 10.93 12H3a1 1 0 0 0-1 1v6a2 2 0 0 0 2 2h9.639a3 3 0 0 0 2.258-1.024L22 13l-1.452-.484a3 3 0 0 0-2.822.504m1.532-5.63c.451-.465.73-1.108.73-1.818s-.279-1.353-.73-1.818A2.45 2.45 0 0 0 17.494 3S16.25 2.997 15 4.286C13.75 2.997 12.506 3 12.506 3a2.45 2.45 0 0 0-1.764.753c-.451.466-.73 1.108-.73 1.818s.279 1.354.73 1.818L15 12z'/%3E%3C/svg%3E"); } .bxs-door-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 5v14a1 1 0 0 0 1 1h3v-2H7V6h2V4H6a1 1 0 0 0-1 1m14.242-.97l-8-2A1 1 0 0 0 10 3v18a.998.998 0 0 0 1.242.97l8-2A1 1 0 0 0 20 19V5a1 1 0 0 0-.758-.97M15 12.188a1.001 1.001 0 0 1-2 0v-.377a1 1 0 1 1 2 .001z'/%3E%3C/svg%3E"); } .bxs-doughnut-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 6c2.507.423 4.577 2.493 5 5h4c-.471-4.717-4.283-8.529-9-9z'/%3E%3Cpath fill='black' d='M18 13c-.478 2.833-2.982 4.949-5.949 4.949c-3.309 0-6-2.691-6-6C6.051 8.982 8.167 6.478 11 6V2c-5.046.504-8.949 4.773-8.949 9.949c0 5.514 4.486 10 10 10c5.176 0 9.445-3.903 9.949-8.949z'/%3E%3C/svg%3E"); } .bxs-down-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.178 19.569a.998.998 0 0 0 1.644 0l9-13A.999.999 0 0 0 21 5H3a1.002 1.002 0 0 0-.822 1.569z'/%3E%3C/svg%3E"); } .bxs-down-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 12h-5V6h-2v6H6l6 7z'/%3E%3C/svg%3E"); } .bxs-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 15l-5-5h4V7h2v5h4z'/%3E%3C/svg%3E"); } .bxs-down-arrow-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 21a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2zm-8-9V7h2v5h4l-5 5l-5-5z'/%3E%3C/svg%3E"); } .bxs-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 9h-4V3H9v6H5l7 8zM4 19h16v2H4z'/%3E%3C/svg%3E"); } .bxs-downvote { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.901 10.566A1 1 0 0 0 20 10h-4V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v7H4a1.001 1.001 0 0 0-.781 1.625l8 10a1 1 0 0 0 1.562 0l8-10c.24-.301.286-.712.12-1.059'/%3E%3C/svg%3E"); } .bxs-drink { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.832 4.555A1 1 0 0 0 20 3H4a1 1 0 0 0-.832 1.554L11 16.303V20H8v2h8v-2h-3v-3.697zm-2.7.445l-2 3H7.868l-2-3z'/%3E%3C/svg%3E"); } .bxs-droplet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.6 2.4c-.4-.3-.9-.3-1.2 0C9.5 3.9 4 8.5 4 14c0 4.4 3.6 8 8 8s8-3.6 8-8c0-5.4-5.5-10.1-7.4-11.6'/%3E%3C/svg%3E"); } .bxs-droplet-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.578 2.184a1 1 0 0 0-1.156 0C11.119 2.398 4 7.513 4 13.75C4 18.53 7.364 22 12 22s8-3.468 8-8.246c0-6.241-7.119-11.356-7.422-11.57M6 13.75c0-4.283 4.395-8.201 6-9.49V20c-3.533 0-6-2.57-6-6.25'/%3E%3C/svg%3E"); } .bxs-dryer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 22h16a1 1 0 0 0 1-1V5c0-1.654-1.346-3-3-3H6C4.346 2 3 3.346 3 5v16a1 1 0 0 0 1 1M18 3.924a1 1 0 1 1 0 2a1 1 0 0 1 0-2m-3 0a1 1 0 1 1 0 2a1 1 0 0 1 0-2m-3 3.117c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6'/%3E%3Cpath fill='black' d='M9.32 12.265c-.415.384-1.041.964-1.041 2.067s.626 1.684 1.041 2.068c.352.325.4.398.4.6h2c0-1.104-.626-1.684-1.041-2.068c-.352-.325-.4-.398-.4-.6s.048-.275.4-.6c.414-.384 1.041-.964 1.041-2.068c0-1.103-.626-1.683-1.041-2.066c-.351-.325-.399-.397-.399-.598h-2c0 1.104.627 1.683 1.042 2.066c.351.324.399.396.399.597c-.001.203-.05.276-.401.602m4 0c-.414.384-1.04.964-1.04 2.067s.626 1.684 1.04 2.067c.351.325.399.398.399.601h2c0-1.104-.626-1.684-1.04-2.067c-.351-.325-.399-.398-.399-.601s.049-.275.399-.601c.414-.384 1.04-.964 1.04-2.068c0-1.103-.626-1.682-1.04-2.065c-.35-.324-.399-.397-.399-.598h-2c0 1.103.626 1.683 1.041 2.066c.35.324.398.397.398.598c.001.202-.048.275-.399.601'/%3E%3C/svg%3E"); } .bxs-duplicate { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 22h12a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2m2-9h3v-3h2v3h3v2h-3v3H9v-3H6z'/%3E%3Cpath fill='black' d='M20 2H8v2h12v12h2V4c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bxs-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m18.988 2.012l3 3L19.701 7.3l-3-3zM8 16h3l7.287-7.287l-3-3L8 13z'/%3E%3Cpath fill='black' d='M19 19H8.158c-.026 0-.053.01-.079.01c-.033 0-.066-.009-.1-.01H5V5h6.847l2-2H5c-1.103 0-2 .896-2 2v14c0 1.104.897 2 2 2h14a2 2 0 0 0 2-2v-8.668l-2 2z'/%3E%3C/svg%3E"); } .bxs-edit-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m16 2.012l3 3L16.713 7.3l-3-3zM4 14v3h3l8.299-8.287l-3-3zm0 6h16v2H4z'/%3E%3C/svg%3E"); } .bxs-edit-location { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8M9.799 14.987H8v-1.799l4.977-4.97l1.799 1.799zm5.824-5.817l-1.799-1.799L15.196 6l1.799 1.799z'/%3E%3C/svg%3E"); } .bxs-eject { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 6l-6 8h12zM6 16h12v2H6z'/%3E%3C/svg%3E"); } .bxs-envelope { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 4.7l-8 5.334L4 8.7V6.297l8 5.333l8-5.333z'/%3E%3C/svg%3E"); } .bxs-envelope-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.555 8.168l-9-6a1 1 0 0 0-1.109 0l-9 6A1 1 0 0 0 2.004 9H2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9h-.004a1 1 0 0 0-.441-.832M20 12.7L12 17l-8-4.3v-2.403l8 4.299l8-4.299z'/%3E%3C/svg%3E"); } .bxs-eraser { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.48 3L7.73 7.75L3 12.59a2 2 0 0 0 0 2.82l4.3 4.3A1 1 0 0 0 8 20h12v-2h-7l7.22-7.22a2 2 0 0 0 0-2.83L15.31 3a2 2 0 0 0-2.83 0M8.41 18l-4-4l4.75-4.84l.74-.75l4.95 4.95l-4.56 4.56l-.07.08z'/%3E%3C/svg%3E"); } .bxs-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.884 2.532c-.346-.654-1.422-.654-1.768 0l-9 17A1 1 0 0 0 3 21h18a.998.998 0 0 0 .883-1.467zM13 18h-2v-2h2zm-2-4V9h2l.001 5z'/%3E%3C/svg%3E"); } .bxs-error-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.707 2.293A1 1 0 0 0 16 2H8a1 1 0 0 0-.707.293l-5 5A1 1 0 0 0 2 8v8c0 .266.105.52.293.707l5 5A1 1 0 0 0 8 22h8c.266 0 .52-.105.707-.293l5-5A1 1 0 0 0 22 16V8a1 1 0 0 0-.293-.707zM13 17h-2v-2h2zm0-4h-2V7h2z'/%3E%3C/svg%3E"); } .bxs-error-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.953 2C6.465 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.493 2 11.953 2M13 17h-2v-2h2zm0-4h-2V7h2z'/%3E%3C/svg%3E"); } .bxs-ev-station { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19.616 6.48l.014-.017l-4-3.24l-1.26 1.554l2.067 1.674a2.99 2.99 0 0 0-1.394 3.062c.15.899.769 1.676 1.57 2.111c.895.487 1.68.442 2.378.194L18.976 18a.996.996 0 0 1-1.39.922a1 1 0 0 1-.318-.217a1 1 0 0 1-.291-.705L17 16a2.98 2.98 0 0 0-.877-2.119A3 3 0 0 0 14 13h-1V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-4h1q.205 0 .391.078a1.03 1.03 0 0 1 .531.533A1 1 0 0 1 15 16l-.024 2c0 .406.079.799.236 1.168c.151.359.368.68.641.951a2.97 2.97 0 0 0 2.123.881q.611 0 1.168-.236c.358-.15.68-.367.951-.641A2.98 2.98 0 0 0 20.976 18L21 9a3 3 0 0 0-1.384-2.52M6 18l1-5H4l5-7l-1 5h3zm12-8a1 1 0 1 1 0-2a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bxs-exit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.002 21h14c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2h-14c-1.103 0-2 .897-2 2v6.001H10V7l6 5l-6 5v-3.999H3.002V19c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bxs-extension { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 10V7c0-1.103-.897-2-2-2h-3c0-1.654-1.346-3-3-3S8 3.346 8 5H5c-1.103 0-2 .897-2 2v4h1a2 2 0 0 1 0 4H3v4c0 1.103.897 2 2 2h4v-1a2 2 0 0 1 4 0v1h4c1.103 0 2-.897 2-2v-3c1.654 0 3-1.346 3-3s-1.346-3-3-3'/%3E%3C/svg%3E"); } .bxs-eyedropper { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m4 15.76l-1 4A1 1 0 0 0 3.75 21a1 1 0 0 0 .49 0l4-1a1 1 0 0 0 .47-.26L17 11.41l1.29 1.3l1.42-1.42l-1.3-1.29L21 7.41a2 2 0 0 0 0-2.82L19.41 3a2 2 0 0 0-2.82 0L14 5.59l-1.3-1.3l-1.42 1.42L12.58 7l-8.29 8.29a1 1 0 0 0-.29.47m1.87.75L14 8.42L15.58 10l-8.09 8.1l-2.12.53z'/%3E%3C/svg%3E"); } .bxs-face { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 18c-4.411 0-8-3.589-8-8c0-1.168.258-2.275.709-3.276q.232.135.456.276c.396.25.791.5 1.286.688c.494.187 1.088.312 1.879.312c.792 0 1.386-.125 1.881-.313s.891-.437 1.287-.687s.792-.5 1.287-.688S13.873 8 14.665 8s1.386.125 1.88.313c.495.187.891.437 1.287.687s.792.5 1.287.688q.269.099.581.171c.191.682.3 1.398.3 2.141c0 4.411-3.589 8-8 8'/%3E%3Ccircle cx='8.5' cy='12.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.5' cy='12.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bxs-face-mask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12c0 2.521.945 4.82 2.49 6.582c1.24 1.52 3.266 3.066 6.439 3.358a9.7 9.7 0 0 0 2.141 0c3.174-.292 5.199-1.839 6.439-3.358A9.95 9.95 0 0 0 22 12c0-5.514-4.486-10-10-10M4.709 8.724q.232.135.456.276c.396.25.791.5 1.286.688c.494.187 1.088.312 1.879.312c.792 0 1.386-.125 1.881-.313s.891-.437 1.287-.687s.792-.5 1.287-.688S13.873 8 14.665 8s1.386.125 1.88.313c.495.187.891.437 1.287.687s.792.5 1.287.688q.269.099.581.171c.191.682.3 1.398.3 2.141c0 .843-.133 1.654-.375 2.417c-.261.195-.733.474-1.577.756c-.769.256-1.672.458-2.685.602a25.3 25.3 0 0 1-6.727 0c-1.013-.144-1.916-.346-2.685-.602c-.844-.282-1.316-.561-1.577-.756a7.95 7.95 0 0 1 .335-5.693'/%3E%3Ccircle cx='8.5' cy='12.5' r='1.5' fill='black'/%3E%3Ccircle cx='15.5' cy='12.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bxs-factory { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 10V6l-5 4V6l-5 4V4H2v16h20V6zm-8 7H7v-3h2zm5 0h-2v-3h2zm5 0h-2v-3h2z'/%3E%3C/svg%3E"); } .bxs-fast-forward-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.485 2 2 6.485 2 12s4.485 10 10 10s10-4.485 10-10S17.514 2 12 2m1 14v-4l-6 4V8l6 4V8l6 4z'/%3E%3C/svg%3E"); } .bxs-file { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 22a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zM13 4l5 5h-5zM7 8h3v2H7zm0 4h10v2H7zm0 4h10v2H7z'/%3E%3C/svg%3E"); } .bxs-file-archive { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6h-3v2H9v2h2v2H9v2h2v8H7v-6h2v-2H7V8h2V6H7V4h2V2zm7 2l5 5h-5z'/%3E%3Cpath fill='black' d='M8 15h2v2H8z'/%3E%3C/svg%3E"); } .bxs-file-blank { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm8 7h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-file-css { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.446 17.412c.275 0 .581-.061.762-.132l.138.713c-.168.084-.546.174-1.037.174c-1.397 0-2.117-.869-2.117-2.021C7.191 14.768 8.175 14 9.398 14c.474 0 .833.096.995.18l-.186.726a2 2 0 0 0-.768-.149c-.726 0-1.29.438-1.29 1.337c.001.808.482 1.318 1.297 1.318m2.491.755c-.461 0-.917-.119-1.145-.245l.186-.756c.246.126.624.252 1.014.252c.42 0 .642-.174.642-.438c0-.252-.192-.396-.678-.57c-.672-.234-1.109-.605-1.109-1.193c0-.689.575-1.217 1.529-1.217c.455 0 .791.096 1.031.203l-.204.738a1.9 1.9 0 0 0-.846-.192c-.396 0-.587.181-.587.39c0 .258.228.372.749.57c.714.264 1.05.636 1.05 1.205c-.001.678-.523 1.253-1.632 1.253m3.24 0c-.461 0-.917-.119-1.145-.245l.186-.756c.246.126.624.252 1.014.252c.42 0 .642-.174.642-.438c0-.252-.192-.396-.678-.57c-.672-.234-1.109-.605-1.109-1.193c0-.689.575-1.217 1.529-1.217c.455 0 .791.096 1.031.203l-.204.738a1.9 1.9 0 0 0-.846-.192c-.396 0-.587.181-.587.39c0 .258.228.372.749.57c.714.264 1.05.636 1.05 1.205c0 .678-.523 1.253-1.632 1.253M14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-file-doc { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.186 14.552c-.617 0-.977.587-.977 1.373c0 .791.371 1.35.983 1.35c.617 0 .971-.588.971-1.374c0-.726-.348-1.349-.977-1.349'/%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.155 17.454c-.426.354-1.073.521-1.864.521c-.475 0-.81-.03-1.038-.06v-3.971a8 8 0 0 1 1.235-.083c.768 0 1.266.138 1.655.432c.42.312.684.81.684 1.522c0 .775-.282 1.309-.672 1.639m2.99.546c-1.2 0-1.901-.906-1.901-2.058c0-1.211.773-2.116 1.967-2.116c1.241 0 1.919.929 1.919 2.045c-.001 1.325-.805 2.129-1.985 2.129m4.655-.762c.275 0 .581-.061.762-.132l.138.713c-.168.084-.546.174-1.037.174c-1.397 0-2.117-.869-2.117-2.021c0-1.379.983-2.146 2.207-2.146c.474 0 .833.096.995.18l-.186.726a2 2 0 0 0-.768-.15c-.726 0-1.29.438-1.29 1.338c0 .809.48 1.318 1.296 1.318M14 9h-1V4l5 5z'/%3E%3Cpath fill='black' d='M7.584 14.563c-.203 0-.335.018-.413.036v2.645c.078.018.204.018.317.018c.828.006 1.367-.449 1.367-1.415c.006-.84-.485-1.284-1.271-1.284'/%3E%3C/svg%3E"); } .bxs-file-export { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 22a2 2 0 0 0 2-2v-5l-5 4v-3H8v-2h7v-3l5 4V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zM13 4l5 5h-5z'/%3E%3C/svg%3E"); } .bxs-file-find { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 22h12c.178 0 .348-.03.512-.074l-3.759-3.759A4.97 4.97 0 0 1 12 19c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5a4.96 4.96 0 0 1-.833 2.753l3.759 3.759c.044-.164.074-.334.074-.512V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2'/%3E%3Ccircle cx='12' cy='14' r='3' fill='black'/%3E%3C/svg%3E"); } .bxs-file-gif { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-2.667 15.772A4.5 4.5 0 0 1 9.984 18c-.737 0-1.271-.186-1.644-.546c-.371-.348-.575-.875-.569-1.469c.006-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.498-.174-.941-.174c-.762 0-1.338.432-1.338 1.308c0 .833.522 1.325 1.271 1.325c.21 0 .378-.024.45-.061v-.846h-.624v-.713h1.505zm1.634.186h-.918v-4.042h.918zm3.262-3.292h-1.553v.923h1.451v.744h-1.451v1.625h-.918v-4.042h2.471zM14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-file-html { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-1 2l5 5h-5zM8.531 18h-.76v-1.411H6.515V18h-.767v-3.373h.767v1.296h1.257v-1.296h.76zm3-2.732h-.921V18h-.766v-2.732h-.905v-.641h2.592zM14.818 18l-.05-1.291c-.017-.405-.03-.896-.03-1.387h-.016c-.104.431-.245.911-.375 1.307l-.41 1.316h-.597l-.359-1.307a15 15 0 0 1-.306-1.316h-.011c-.021.456-.034.976-.059 1.396L12.545 18h-.705l.216-3.373h1.015l.331 1.126c.104.391.21.811.284 1.206h.017c.095-.391.209-.836.32-1.211l.359-1.121h.996L15.563 18zm3.434 0h-2.108v-3.373h.767v2.732h1.342z'/%3E%3C/svg%3E"); } .bxs-file-image { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 22h12a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2m7-18l5 5h-5zm-4.5 7a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 11m.5 5l1.597 1.363L13 13l4 6H7z'/%3E%3C/svg%3E"); } .bxs-file-import { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 14V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4h-7v3l-5-4l5-4v3zM13 4l5 5h-5z'/%3E%3C/svg%3E"); } .bxs-file-jpg { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.239 16.446c0 1.152-.551 1.554-1.438 1.554c-.21 0-.486-.036-.665-.097l.101-.737c.127.042.289.072.469.072c.384 0 .623-.174.623-.804v-2.543h.911zm3.294-.365c-.313.293-.773.426-1.313.426c-.12 0-.228-.007-.312-.019v1.445h-.906v-3.988a7.5 7.5 0 0 1 1.236-.083c.563 0 .965.107 1.234.323c.259.204.433.54.433.936s-.133.732-.372.96m4.331 1.667c-.28.096-.815.228-1.349.228c-.737 0-1.271-.186-1.643-.546c-.371-.348-.575-.875-.57-1.469c.007-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.497-.174-.941-.174c-.761 0-1.338.432-1.338 1.308c0 .833.523 1.325 1.271 1.325c.211 0 .378-.024.451-.061v-.846h-.624v-.713h1.504zM14 9h-1V4l5 5z'/%3E%3Cpath fill='black' d='M11.285 14.552c-.186 0-.312.018-.377.036v1.193c.077.018.174.023.307.023c.484 0 .784-.246.784-.659c0-.372-.257-.593-.714-.593'/%3E%3C/svg%3E"); } .bxs-file-js { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-2.745 14.186c0 1.345-.644 1.814-1.681 1.814c-.245 0-.567-.042-.777-.112l.119-.861c.147.049.336.084.546.084c.448 0 .729-.203.729-.938v-2.97h1.064zm2.043 1.807c-.539 0-1.071-.141-1.337-.287l.217-.883c.287.147.729.294 1.184.294c.491 0 .749-.203.749-.511c0-.295-.224-.463-.791-.666c-.784-.272-1.295-.707-1.295-1.394c0-.806.672-1.422 1.786-1.422c.533 0 .925.112 1.205.238l-.238.861c-.189-.091-.525-.224-.987-.224s-.687.21-.687.455c0 .301.267.435.875.665c.834.309 1.226.742 1.226 1.408c-.002.793-.61 1.466-1.907 1.466M14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-file-json { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.823 15.122c-.517 0-.816.491-.816 1.146c0 .661.311 1.126.82 1.126c.517 0 .812-.49.812-1.146c0-.604-.291-1.126-.816-1.126'/%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM8.022 16.704c0 .961-.461 1.296-1.2 1.296c-.176 0-.406-.029-.557-.08l.086-.615c.104.035.239.06.391.06c.319 0 .52-.145.52-.67v-2.122h.761zm1.459 1.291c-.385 0-.766-.1-.955-.205l.155-.631c.204.105.521.211.846.211c.35 0 .534-.146.534-.365c0-.211-.159-.331-.564-.476c-.562-.195-.927-.506-.927-.996c0-.576.481-1.017 1.277-1.017c.38 0 .659.08.861.171l-.172.615c-.135-.065-.375-.16-.705-.16s-.491.15-.491.325c0 .215.19.311.627.476c.596.22.876.53.876 1.006c.001.566-.436 1.046-1.362 1.046m3.306.005c-1.001 0-1.586-.755-1.586-1.716c0-1.012.646-1.768 1.642-1.768c1.035 0 1.601.776 1.601 1.707C14.443 17.33 13.773 18 12.787 18m4.947-.055h-.802l-.721-1.302a13 13 0 0 1-.585-1.19l-.016.005c.021.445.031.921.031 1.472v1.016h-.701v-3.373h.891l.701 1.236c.2.354.4.775.552 1.155h.014c-.05-.445-.065-.9-.065-1.406v-.985h.702zM14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-file-md { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14.481 14.015c-.238 0-.393.021-.483.042v3.089c.091.021.237.021.371.021c.966.007 1.597-.525 1.597-1.653c.007-.981-.568-1.499-1.485-1.499'/%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zm-2.934 15.951l-.07-1.807a53 53 0 0 1-.042-1.94h-.021a26 26 0 0 1-.525 1.828l-.574 1.842H9l-.504-1.828a22 22 0 0 1-.428-1.842h-.013c-.028.638-.049 1.366-.084 1.954l-.084 1.793h-.988L7.2 13.23h1.422l.462 1.576c.147.546.295 1.135.399 1.688h.021a40 40 0 0 1 .448-1.694l.504-1.569h1.394l.26 4.721h-1.044zm5.25-.56c-.498.413-1.253.609-2.178.609a9 9 0 0 1-1.212-.07v-4.636a9.5 9.5 0 0 1 1.443-.099c.896 0 1.478.161 1.933.505c.49.364.799.945.799 1.778c0 .904-.33 1.528-.785 1.913M14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-file-pdf { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.267 14.68c-.184 0-.308.018-.372.036v1.178c.076.018.171.023.302.023c.479 0 .774-.242.774-.651c0-.366-.254-.586-.704-.586m3.487.012c-.2 0-.33.018-.407.036v2.61c.077.018.201.018.313.018c.817.006 1.349-.444 1.349-1.396c.006-.83-.479-1.268-1.255-1.268'/%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.498 16.19c-.309.29-.765.42-1.296.42a2 2 0 0 1-.308-.018v1.426H7v-3.936A7.6 7.6 0 0 1 8.219 14c.557 0 .953.106 1.22.319c.254.202.426.533.426.923c-.001.392-.131.723-.367.948m3.807 1.355c-.42.349-1.059.515-1.84.515c-.468 0-.799-.03-1.024-.06v-3.917A8 8 0 0 1 11.66 14c.757 0 1.249.136 1.633.426c.415.308.675.799.675 1.504c0 .763-.279 1.29-.663 1.615M17 14.77h-1.532v.911H16.9v.734h-1.432v1.604h-.906V14.03H17zM14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-file-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 22h12a2 2 0 0 0 2-2V8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2m7-18l5 5h-5zM8 14h3v-3h2v3h3v2h-3v3h-2v-3H8z'/%3E%3C/svg%3E"); } .bxs-file-png { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.782 14.576c-.186 0-.312.018-.377.036v1.193c.077.018.174.023.306.023c.485 0 .785-.246.785-.659c0-.371-.258-.593-.714-.593'/%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.03 16.105c-.313.293-.774.426-1.313.426c-.12 0-.229-.007-.312-.019v1.445h-.906V13.97a7.5 7.5 0 0 1 1.235-.083c.563 0 .966.107 1.235.323c.258.204.432.54.432.936s-.131.731-.371.959m4.302 1.853h-.96l-.863-1.56c-.24-.432-.504-.953-.701-1.427l-.019.006c.024.534.036 1.104.036 1.763v1.218h-.84v-4.042h1.067l.84 1.481c.24.426.479.93.659 1.385h.019a15 15 0 0 1-.078-1.685v-1.182h.84zm4.169-.186a4.5 4.5 0 0 1-1.349.228c-.737 0-1.271-.186-1.644-.546c-.371-.348-.575-.875-.569-1.469c.006-1.344.983-2.111 2.309-2.111c.521 0 .924.103 1.121.198l-.191.731c-.222-.096-.498-.174-.941-.174c-.762 0-1.338.432-1.338 1.308c0 .833.522 1.325 1.271 1.325c.21 0 .378-.024.45-.061v-.846h-.624v-.713h1.505zM14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-file-txt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM9.998 14.768H8.895v3.274h-.917v-3.274H6.893V14h3.105zm2.725 3.274l-.365-.731c-.15-.282-.246-.492-.359-.726h-.013c-.083.233-.185.443-.312.726l-.335.731h-1.045l1.171-2.045L10.336 14h1.05l.354.738c.121.245.21.443.306.671h.013c.096-.258.174-.438.276-.671l.341-.738h1.043l-1.139 1.973l1.198 2.069zm4.384-3.274h-1.104v3.274h-.917v-3.274h-1.085V14h3.105zM14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-film { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4v1h-2V3H7v2H5V3H3v18h2v-2h2v2h10v-2h2v2h2V3h-2zM5 7h2v2H5zm0 4h2v2H5zm0 6v-2h2v2zm12 0v-2h2v2zm2-4h-2v-2h2zm-2-4V7h2v2z'/%3E%3C/svg%3E"); } .bxs-filter-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 20v-4.586L20.414 8c.375-.375.586-.884.586-1.415V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v2.585c0 .531.211 1.04.586 1.415L11 15.414V22z'/%3E%3C/svg%3E"); } .bxs-first-aid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-3V4a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2M9 4h6v2H9zm7 10h-3v3h-2v-3H8v-2h3V9h2v3h3z'/%3E%3C/svg%3E"); } .bxs-flag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4H6V2H4v18H3v2h4v-2H6v-5h13a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bxs-flag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m14.303 6l-3-2H6V2H4v20h2v-8h4.697l3 2H20V6z'/%3E%3C/svg%3E"); } .bxs-flag-checkered { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 2v18H3v2h4v-2H6v-5h13a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H6V2zm4 3v2h2V5h2v2h2V5h2v2h2v2h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H8v-2H6V9h2V7H6V5z'/%3E%3Cpath fill='black' d='M8 9h2v2H8zm4 0h2v2h-2zm-2-2h2v2h-2zm4 0h2v2h-2z'/%3E%3C/svg%3E"); } .bxs-flame { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.579 2.393a.98.98 0 0 0-1.153.006C9.592 3.728 4 8.252 4 14c0 3.247 1.948 6.043 4.734 7.296A3.97 3.97 0 0 1 8 19c-.017-3.221 3.558-6.893 3.71-7a.5.5 0 0 1 .579 0c.152.107 3.711 2.974 3.711 7.002c0 .854-.275 1.643-.733 2.294C18.052 20.043 20 17.248 20 14.005c0-5.861-5.582-10.307-7.421-11.612'/%3E%3C/svg%3E"); } .bxs-flask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 9.783V4h1V2H8v2h1v5.783l-4.268 9.389a1.99 1.99 0 0 0 .14 1.911A1.99 1.99 0 0 0 6.553 22h10.895a1.99 1.99 0 0 0 1.681-.917c.37-.574.423-1.289.14-1.911zm-4.09.631c.06-.13.09-.271.09-.414V4h2v6c0 .143.03.284.09.414L15.177 15H8.825z'/%3E%3C/svg%3E"); } .bxs-florist { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.84 21.871L12 22a10.22 10.22 0 0 0-9.013-8.891L2 13l.021.173a10 10 0 0 0 8.819 8.698m11.139-8.698L22 13l-.987.109c-4.7.523-8.427 4.2-9.013 8.891l1.16-.129a10 10 0 0 0 8.819-8.698M18.063 5.5a2.5 2.5 0 0 0-3.415-.915c-.062.035-.111.081-.168.121c.005-.069.02-.136.02-.206a2.5 2.5 0 1 0-5 0c0 .07.015.137.021.206c-.057-.04-.107-.086-.168-.121a2.5 2.5 0 0 0-2.5 4.33c.061.035.126.056.188.085c-.062.029-.127.05-.188.085a2.5 2.5 0 0 0 2.5 4.33c.062-.035.111-.081.168-.121c-.006.069-.021.136-.021.206a2.5 2.5 0 1 0 5 0c0-.07-.015-.137-.021-.206c.057.04.106.086.168.121a2.5 2.5 0 0 0 2.5-4.33c-.061-.035-.126-.056-.188-.085c.063-.029.127-.05.188-.085a2.5 2.5 0 0 0 .916-3.415M12 12a3 3 0 1 1 0-6a3 3 0 0 1 0 6'/%3E%3C/svg%3E"); } .bxs-folder { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 5h-9.586L8.707 3.293A1 1 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bxs-folder-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 5h-9.586L8.707 3.293A1 1 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2m-4 9H8v-2h8z'/%3E%3C/svg%3E"); } .bxs-folder-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.165 19.551c.186.28.499.449.835.449h15c.4 0 .762-.238.919-.606l3-7A.998.998 0 0 0 21 11h-1V8c0-1.103-.897-2-2-2h-6.655L8.789 4H4c-1.103 0-2 .897-2 2v13h.007a1 1 0 0 0 .158.551M18 8v3H6c-.4 0-.762.238-.919.606L4 14.129V8z'/%3E%3C/svg%3E"); } .bxs-folder-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 5h-9.586L8.707 3.293A1 1 0 0 0 8 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V7c0-1.103-.897-2-2-2m-4 9h-3v3h-2v-3H8v-2h3V9h2v3h3z'/%3E%3C/svg%3E"); } .bxs-food-menu { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 2h2v20H3zm16 0H6v20h13c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2m-1 10H9v-2h9zm0-4H9V6h9z'/%3E%3C/svg%3E"); } .bxs-fridge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 2H6c-1.103 0-2 .897-2 2v5h4V6h2v3h10V4c0-1.103-.897-2-2-2m-8 13H8v-5H4v10c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V10H10z'/%3E%3C/svg%3E"); } .bxs-game { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c3.719 0 7.063-2.035 8.809-5.314L13 12l7.809-4.686C19.063 4.035 15.719 2 12 2C6.486 2 2 6.486 2 12s4.486 10 10 10m-.5-16a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 11.5 6'/%3E%3C/svg%3E"); } .bxs-gas-pump { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19.616 6.48l.014-.017l-4-3.24l-1.26 1.554l2.067 1.674a2.99 2.99 0 0 0-1.394 3.062c.15.899.769 1.676 1.57 2.111c.895.487 1.68.442 2.378.194L18.976 18a.996.996 0 0 1-1.39.922a1 1 0 0 1-.318-.217a1 1 0 0 1-.291-.705L17 16a2.98 2.98 0 0 0-.877-2.119A3 3 0 0 0 14 13h-1V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-4h1q.205 0 .391.078a1.03 1.03 0 0 1 .531.533A1 1 0 0 1 15 16l-.024 2c0 .406.079.799.236 1.168c.151.359.368.68.641.951a2.97 2.97 0 0 0 2.123.881q.611 0 1.168-.236c.358-.15.68-.367.951-.641A2.98 2.98 0 0 0 20.976 18L21 9a3 3 0 0 0-1.384-2.52M11 8H4V5h7zm7 2a1 1 0 1 1 0-2a1 1 0 0 1 0 2'/%3E%3C/svg%3E"); } .bxs-ghost { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 11v8h.051c.245 1.692 1.69 3 3.449 3c1.174 0 2.074-.417 2.672-1.174a3.99 3.99 0 0 0 5.668-.014c.601.762 1.504 1.188 2.66 1.188c1.93 0 3.5-1.57 3.5-3.5V11c0-4.962-4.037-9-9-9s-9 4.038-9 9m6 1c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2m6-4c1.103 0 2 .897 2 2s-.897 2-2 2s-2-.897-2-2s.897-2 2-2'/%3E%3C/svg%3E"); } .bxs-gift { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 12H4v8a2 2 0 0 0 2 2h5V12zm13 0h-5v10h5a2 2 0 0 0 2-2v-8zm.791-5A5 5 0 0 0 19 5.5C19 3.57 17.43 2 15.5 2c-1.622 0-2.705 1.482-3.404 3.085C11.407 3.57 10.269 2 8.5 2C6.57 2 5 3.57 5 5.5c0 .596.079 1.089.209 1.5H2v4h9V9h2v2h9V7zM7 5.5C7 4.673 7.673 4 8.5 4c.888 0 1.714 1.525 2.198 3H8c-.374 0-1 0-1-1.5M15.5 4c.827 0 1.5.673 1.5 1.5C17 7 16.374 7 16 7h-2.477c.51-1.576 1.251-3 1.977-3'/%3E%3C/svg%3E"); } .bxs-graduation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 7v1l11 4l9-4V7L11 4z'/%3E%3Cpath fill='black' d='M4 11v4.267c0 1.621 4.001 3.893 9 3.734c4-.126 6.586-1.972 7-3.467q.037-.133.037-.268V11L13 14l-5-1.667v3.213l-1-.364V12z'/%3E%3C/svg%3E"); } .bxs-grid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 4h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4zM4 10h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4zM4 16h4v4H4zm6 0h4v4h-4zm6 0h4v4h-4z'/%3E%3C/svg%3E"); } .bxs-grid-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 11h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m10 0h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1M4 21h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m10 0h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1'/%3E%3C/svg%3E"); } .bxs-group { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.5 12c2.206 0 4-1.794 4-4s-1.794-4-4-4s-4 1.794-4 4s1.794 4 4 4m1.5 1H8c-3.309 0-6 2.691-6 6v1h15v-1c0-3.309-2.691-6-6-6'/%3E%3Cpath fill='black' d='M16.604 11.048a5.67 5.67 0 0 0 .751-3.44c-.179-1.784-1.175-3.361-2.803-4.44l-1.105 1.666c1.119.742 1.8 1.799 1.918 2.974a3.7 3.7 0 0 1-1.072 2.986l-1.192 1.192l1.618.475C18.951 13.701 19 17.957 19 18h2c0-1.789-.956-5.285-4.396-6.952'/%3E%3C/svg%3E"); } .bxs-guitar-amp { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-2V4c0-1.103-.897-2-2-2H8c-1.103 0-2 .897-2 2v2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2M8 4h8v2H8zM6 19a1 1 0 1 1 0-2a1 1 0 0 1 0 2m0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m3 3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m0-3a1 1 0 1 1 0-2a1 1 0 0 1 0 2m2-4H4V8h16z'/%3E%3Cpath fill='black' d='M14 9h2v2h-2zm3 0h2v2h-2z'/%3E%3C/svg%3E"); } .bxs-hand { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.5 5A1.5 1.5 0 0 0 19 6.5V11h-1V4.5a1.5 1.5 0 0 0-3 0V11h-1V3.5a1.5 1.5 0 0 0-3 0V11h-1V5.5a1.5 1.5 0 0 0-3 0v10.81l-2.22-3.6a1.5 1.5 0 0 0-2.56 1.58l3.31 5.34A5 5 0 0 0 9.78 22H17a5 5 0 0 0 5-5V6.5A1.5 1.5 0 0 0 20.5 5'/%3E%3C/svg%3E"); } .bxs-hand-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.278 2.231a1 1 0 0 0-.64-.231H5a2 2 0 0 0-2 2v7.21a2 2 0 0 0 1.779 1.987L12 14v6a2 2 0 0 0 4 0V8l3.03 1.212a2 2 0 0 0 2.641-1.225l.113-.34a1 1 0 0 0-.309-1.084z'/%3E%3C/svg%3E"); } .bxs-hand-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3h-7.21a2 2 0 0 0-1.987 1.779L10 12H4a2 2 0 0 0 0 4h12l-1.212 3.03a2 2 0 0 0 1.225 2.641l.34.113a1 1 0 0 0 1.084-.309l4.332-5.197c.149-.179.231-.406.231-.64V5a2 2 0 0 0-2-2'/%3E%3C/svg%3E"); } .bxs-hand-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 8H8l1.212-3.03a2 2 0 0 0-1.225-2.641l-.34-.113a1 1 0 0 0-1.084.309L2.231 7.722a1 1 0 0 0-.231.64V19a2 2 0 0 0 2 2h7.21a2 2 0 0 0 1.987-1.779L14 12h6a2 2 0 0 0 0-4'/%3E%3C/svg%3E"); } .bxs-hand-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.221 10.803L12 10V4a2 2 0 0 0-4 0v12l-3.031-1.212a2 2 0 0 0-2.64 1.225l-.113.34a1 1 0 0 0 .309 1.084l5.197 4.332c.179.149.406.231.64.231H19a2 2 0 0 0 2-2v-7.21a2 2 0 0 0-1.779-1.987'/%3E%3C/svg%3E"); } .bxs-happy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m3.493 7a1.494 1.494 0 1 1-.001 2.987A1.494 1.494 0 0 1 15.493 9M8.5 9a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 9m3.5 9c-4 0-5-4-5-4h10s-1 4-5 4'/%3E%3C/svg%3E"); } .bxs-happy-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m3.493 6a1.494 1.494 0 1 1-.001 2.987A1.494 1.494 0 0 1 15.493 8M8.5 8a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 8M12 18c-5 0-6-5-6-5h12s-1 5-6 5'/%3E%3C/svg%3E"); } .bxs-happy-beaming { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M8 9c2.201 0 3 1.794 3 3H9c-.012-.45-.194-1-1-1s-.988.55-1 1.012L5 12c0-1.206.799-3 3-3m4 9c-4 0-5-4-5-4h10s-1 4-5 4m5-6c-.012-.45-.194-1-1-1s-.988.55-1 1.012L13 12c0-1.206.799-3 3-3s3 1.794 3 3z'/%3E%3C/svg%3E"); } .bxs-happy-heart-eyes { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M6.435 8.467A1.49 1.49 0 0 1 8.502 8.4a1.49 1.49 0 0 1 2.065.033c.597.592.604 1.521.018 2.118l-2.05 2.083l-2.082-2.05a1.484 1.484 0 0 1-.018-2.117M12 18c-4 0-5-4-5-4h10s-1 4-5 4m5.585-7.449l-2.05 2.083l-2.082-2.05a1.485 1.485 0 0 1-.019-2.117a1.49 1.49 0 0 1 2.068-.067a1.49 1.49 0 0 1 2.065.033c.597.591.605 1.521.018 2.118'/%3E%3C/svg%3E"); } .bxs-hard-hat { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 18v-3a8 8 0 0 0-5-7.4V13h-1V5h-4v8H9V7.6A8 8 0 0 0 4 15v3H2v2h20v-2z'/%3E%3C/svg%3E"); } .bxs-hdd { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 13H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2m-4 5h-2v-2h2zm4 0h-2v-2h2zm.775-7H21l-1.652-7.434A2 2 0 0 0 17.396 2H6.604a2 2 0 0 0-1.952 1.566L3 11z'/%3E%3C/svg%3E"); } .bxs-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.205 4.791a5.94 5.94 0 0 0-4.209-1.754A5.9 5.9 0 0 0 12 4.595a5.9 5.9 0 0 0-3.996-1.558a5.94 5.94 0 0 0-4.213 1.758c-2.353 2.363-2.352 6.059.002 8.412L12 21.414l8.207-8.207c2.354-2.353 2.355-6.049-.002-8.416'/%3E%3C/svg%3E"); } .bxs-heart-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m4.186 10.74L12 16.926L7.814 12.74a2.745 2.745 0 0 1 0-3.907a2.745 2.745 0 0 1 3.906 0l.28.279l.279-.279a2.745 2.745 0 0 1 3.906 0a2.745 2.745 0 0 1 .001 3.907'/%3E%3C/svg%3E"); } .bxs-heart-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 21h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1M7.812 8.907a2.746 2.746 0 0 1 3.907 0l.279.279l.278-.279a2.746 2.746 0 0 1 3.907 0a2.745 2.745 0 0 1 0 3.907L11.998 17l-4.187-4.186a2.747 2.747 0 0 1 .001-3.907'/%3E%3C/svg%3E"); } .bxs-help-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m1 16h-2v-2h2zm.976-4.885c-.196.158-.385.309-.535.459c-.408.407-.44.777-.441.793v.133h-2v-.167c0-.118.029-1.177 1.026-2.174c.195-.195.437-.393.691-.599c.734-.595 1.216-1.029 1.216-1.627a1.934 1.934 0 0 0-3.867.001h-2C8.066 7.765 9.831 6 12 6s3.934 1.765 3.934 3.934c0 1.597-1.179 2.55-1.958 3.181'/%3E%3C/svg%3E"); } .bxs-hide { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.073 12.194L4.212 8.333c-1.52 1.657-2.096 3.317-2.106 3.351L2 12l.105.316C2.127 12.383 4.421 19 12.054 19c.929 0 1.775-.102 2.552-.273l-2.746-2.746a3.987 3.987 0 0 1-3.787-3.787M12.054 5c-1.855 0-3.375.404-4.642.998L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-3.298-3.298c2.638-1.953 3.579-4.637 3.593-4.679l.105-.316l-.105-.316C21.98 11.617 19.687 5 12.054 5m1.906 7.546c.187-.677.028-1.439-.492-1.96s-1.283-.679-1.96-.492L10 8.586A3.96 3.96 0 0 1 12.054 8c2.206 0 4 1.794 4 4a3.94 3.94 0 0 1-.587 2.053z'/%3E%3C/svg%3E"); } .bxs-home { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.743 12.331l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10a1 1 0 0 0-.17 1.076c.16.361.518.593.913.593h2v7a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-4h4v4a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .743-1.669'/%3E%3C/svg%3E"); } .bxs-home-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.74 2.32a1 1 0 0 0-1.48 0l-9 10A1 1 0 0 0 3 14h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a1 1 0 0 0 1-1a1 1 0 0 0-.26-.68z'/%3E%3C/svg%3E"); } .bxs-home-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.743 12.331l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10A1 1 0 0 0 3 14h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a.998.998 0 0 0 .743-1.669M12 16a3 3 0 1 1 0-6a3 3 0 0 1 0 6'/%3E%3C/svg%3E"); } .bxs-home-heart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 14h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a1 1 0 0 0 .913-.593a1 1 0 0 0-.17-1.076l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10A1 1 0 0 0 3 14m5.653-2.359a2.224 2.224 0 0 1 3.125 0l.224.22l.223-.22a2.225 2.225 0 0 1 3.126 0a2.13 2.13 0 0 1 0 3.07L12.002 18l-3.349-3.289a2.13 2.13 0 0 1 0-3.07'/%3E%3C/svg%3E"); } .bxs-home-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 14h2v7a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-7h2a1 1 0 0 0 .913-.593a1 1 0 0 0-.17-1.076l-9-10c-.379-.422-1.107-.422-1.486 0l-9 10A1 1 0 0 0 3 14m5.949-.316C8.98 13.779 9.762 16 12 16c2.269 0 3.042-2.287 3.05-2.311l1.9.621C16.901 14.461 15.703 18 12 18s-4.901-3.539-4.95-3.689z'/%3E%3C/svg%3E"); } .bxs-hot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.5 8c0 1.5-.5 3.5-2.9 4.3c.7-1.7.8-3.4.3-5c-.7-2.1-3-3.7-4.6-4.6c-.4-.3-1.1.1-1 .7c0 1.1-.3 2.7-2 4.4C4.1 10 3 12.3 3 14.5C3 17.4 5 21 9 21c-4-4-1-7.5-1-7.5c.8 5.9 5 7.5 7 7.5c1.7 0 5-1.2 5-6.4c0-3.1-1.3-5.5-2.4-6.9c-.3-.5-1-.2-1.1.3'/%3E%3C/svg%3E"); } .bxs-hotel { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='8' cy='11' r='3' fill='black'/%3E%3Cpath fill='black' d='M18.205 7H12v8H4V6H2v14h2v-3h16v3h2v-4c0-.009-.005-.016-.005-.024H22V11c0-2.096-1.698-4-3.795-4'/%3E%3C/svg%3E"); } .bxs-hourglass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 22h1v-2h-1v-1a7.01 7.01 0 0 0-3.433-6.02c-.355-.21-.567-.547-.567-.901v-.158c0-.354.212-.691.566-.9A7.02 7.02 0 0 0 19 5V4h1V2H4v2h1v1a7.02 7.02 0 0 0 3.434 6.021c.354.209.566.545.566.9v.158c0 .354-.212.691-.566.9A7.02 7.02 0 0 0 5 19v1H4v2zM17 4v1a5 5 0 0 1-1.004 3H8.004A5 5 0 0 1 7 5V4zM9.45 14.702c.971-.574 1.55-1.554 1.55-2.623V12h2v.079c0 1.068.579 2.049 1.551 2.623A4.98 4.98 0 0 1 16.573 17H7.427a4.98 4.98 0 0 1 2.023-2.298'/%3E%3C/svg%3E"); } .bxs-hourglass-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 2H4v2h1v1a7.01 7.01 0 0 0 3.433 6.02c.355.21.567.547.567.901v.158c0 .354-.212.691-.566.9A7.02 7.02 0 0 0 5 19v1H4v2h16v-2h-1v-1a7.02 7.02 0 0 0-3.434-6.021c-.354-.208-.566-.545-.566-.9v-.158c0-.354.212-.69.566-.9A7.02 7.02 0 0 0 19 5V4h1V2zm12 3a5.01 5.01 0 0 1-2.45 4.299A3.1 3.1 0 0 0 13.166 11h-2.332a3.1 3.1 0 0 0-1.385-1.702A5.01 5.01 0 0 1 7 5V4h10z'/%3E%3C/svg%3E"); } .bxs-hourglass-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.566 11.021A7.02 7.02 0 0 0 19 5V4h1V2H4v2h1v1a7.02 7.02 0 0 0 3.434 6.021c.354.208.566.545.566.9v.158c0 .354-.212.69-.566.9A7.02 7.02 0 0 0 5 19v1H4v2h16v-2h-1v-1a7.01 7.01 0 0 0-3.433-6.02c-.355-.21-.567-.547-.567-.901v-.158c0-.355.212-.692.566-.9M17 19v1H7v-1a5.01 5.01 0 0 1 2.45-4.299A3.1 3.1 0 0 0 10.834 13h2.332c.23.691.704 1.3 1.385 1.702A5.01 5.01 0 0 1 17 19'/%3E%3C/svg%3E"); } .bxs-id-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2M8.715 8c1.151 0 2 .849 2 2s-.849 2-2 2s-2-.849-2-2s.848-2 2-2m3.715 8H5v-.465c0-1.373 1.676-2.785 3.715-2.785s3.715 1.412 3.715 2.785zM19 15h-4v-2h4zm0-4h-5V9h5z'/%3E%3C/svg%3E"); } .bxs-image { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.999 4h-16c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-13.5 3a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3m5.5 10h-7l4-5l1.5 2l3-4l5.5 7z'/%3E%3C/svg%3E"); } .bxs-image-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m9 13l3-4l3 4.5V12h4V5c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h8v-4H5l3-4z'/%3E%3Cpath fill='black' d='M19 14h-2v3h-3v2h3v3h2v-3h3v-2h-3z'/%3E%3C/svg%3E"); } .bxs-image-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2m3-7l2.363 2.363L14 11l5 7H5z'/%3E%3C/svg%3E"); } .bxs-inbox { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5c0-1.103-.897-2-2-2m-1 9h-3.142c-.446 1.722-1.997 3-3.858 3s-3.412-1.278-3.858-3H4V5h16v7z'/%3E%3C/svg%3E"); } .bxs-info-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m1 15h-2v-6h2zm0-8h-2V7h2z'/%3E%3C/svg%3E"); } .bxs-info-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 4v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1m8 3h2v2h-2zm0 4h2v6h-2z'/%3E%3C/svg%3E"); } .bxs-injection { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 5.61L9.24 8.35l3.31 3.31l-1.06 1.06l-3.31-3.31l-1.77 1.77l3.31 3.31l-1.06 1.06l-3.31-3.31l-2 2A2 2 0 0 0 3 16.66l1 1.89l-2.25 2.29l1.41 1.41L5.45 20l1.89 1a2 2 0 0 0 1 .26a2 2 0 0 0 1.42-.59L18.39 12zm7.8 3.59l-1.79-1.8l1.42-1.41l1.41 1.41l1.41-1.41l-4.24-4.24l-1.41 1.41l1.41 1.42l-1.41 1.41l-1.8-1.79l-1.74-1.75l-1.41 1.42l1.03 1.03v.01l6.41 6.41h.01l1.03 1.03l1.42-1.41l-1.74-1.74z'/%3E%3C/svg%3E"); } .bxs-institution { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.857 8.485l-3-5A1 1 0 0 0 18 3h-4.586l-.707-.707a1 1 0 0 0-1.414 0L10.586 3H6a1 1 0 0 0-.857.485l-3 5A1 1 0 0 0 2.002 9H2v10a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9h-.002c0-.178-.046-.356-.141-.515M20 18h-6v-4h-4v4H4v-8h2.414l.293-.293l2-2L12 4.414l4.293 4.293l1 1l.293.293H20z'/%3E%3Ccircle cx='11.895' cy='9.895' r='2.105' fill='black'/%3E%3Cpath fill='black' d='M6 12h2v3H6zm10 0h2v3h-2z'/%3E%3C/svg%3E"); } .bxs-invader { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 3h2v2H6zm2 16h3v2H8zm8-16h2v2h-2zm-3 16h3v2h-3zm7-8V9h-2V7h-2V5h-2v2h-4V5H8v2H6v2H4v2H2v8h2v-4h2v4h2v-3h8v3h2v-4h2v4h2v-8zm-10 1H8V9h2zm6 0h-2V9h2z'/%3E%3C/svg%3E"); } .bxs-joystick { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.986 9.74l-.008-.088A5.003 5.003 0 0 0 17 5H7a4.97 4.97 0 0 0-4.987 4.737q-.014.117-.013.253v6.51c0 .925.373 1.828 1.022 2.476A3.52 3.52 0 0 0 5.5 20c1.8 0 2.504-1 3.5-3c.146-.292.992-2 3-2c1.996 0 2.853 1.707 3 2c1.004 2 1.7 3 3.5 3c.925 0 1.828-.373 2.476-1.022A3.52 3.52 0 0 0 22 16.5V10q0-.141-.014-.26M7 12.031a2 2 0 1 1-.001-3.999A2 2 0 0 1 7 12.031m10-5a1 1 0 1 1 0 2a1 1 0 1 1 0-2m-2 4a1 1 0 1 1 0-2a1 1 0 1 1 0 2m2 2a1 1 0 1 1 0-2a1 1 0 1 1 0 2m2-2a1 1 0 1 1 0-2a1 1 0 1 1 0 2'/%3E%3C/svg%3E"); } .bxs-joystick-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 6H8a6 6 0 0 0 0 12h8a6 6 0 0 0 0-12m-5 7H9v2H7v-2H5v-2h2V9h2v2h2zm3.5 2a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3m3-3a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3'/%3E%3C/svg%3E"); } .bxs-joystick-button { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 8h-4V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v4H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h4v4a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2M7 14l-3-2l3-2zm5 6l-2-3h4zm0-6a2 2 0 1 1 .001-4.001A2 2 0 0 1 12 14m-2-7l2-3l2 3zm7 7v-4l3 2z'/%3E%3C/svg%3E"); } .bxs-key { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3.433 17.325L3.079 19.8a1 1 0 0 0 1.131 1.131l2.475-.354C7.06 20.524 8 18 8 18s.472.405.665.466c.412.13.813-.274.948-.684L10 16.01s.577.292.786.335c.266.055.524-.109.707-.293a1 1 0 0 0 .241-.391L12 14.01s.675.187.906.214c.263.03.519-.104.707-.293l1.138-1.137a5.5 5.5 0 0 0 5.581-1.338a5.507 5.507 0 0 0 0-7.778a5.507 5.507 0 0 0-7.778 0a5.5 5.5 0 0 0-1.338 5.581l-7.501 7.5a1 1 0 0 0-.282.566M18.504 5.506a2.92 2.92 0 0 1 0 4.122l-4.122-4.122a2.92 2.92 0 0 1 4.122 0'/%3E%3C/svg%3E"); } .bxs-keyboard { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 5H3a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-8 2h2v2h-2zm0 4h2v2h-2zM9 7h2v2H9zm0 4h2v2H9zM5 7h2v2H5zm0 4h2v2H5zm12 6H7v-2h10zm2-4h-2v-2h2zm0-4h-2V7h2z'/%3E%3C/svg%3E"); } .bxs-label { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.813 4.419A1 1 0 0 0 16 4H3a1 1 0 0 0-.813 1.581L6.771 12l-4.585 6.419A1 1 0 0 0 3 20h13a1 1 0 0 0 .813-.419l5-7a1 1 0 0 0 0-1.162z'/%3E%3C/svg%3E"); } .bxs-landmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 17h-2V9h2V7a1 1 0 0 0-.594-.914l-9.432-4.191l-8.421 4.21A1 1 0 0 0 2 7v2h2v8H2v4h19zm-5-8v8h-3V9zM7 9h3v8H7z'/%3E%3C/svg%3E"); } .bxs-landscape { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='6.5' cy='6.5' r='2.5' fill='black'/%3E%3Cpath fill='black' d='m14 7l-5.223 8.487L7 13l-5 7h20z'/%3E%3C/svg%3E"); } .bxs-laugh { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-6.447 9.105l2.459-1.229l-1.567-1.044l1.109-1.664l3 2a1 1 0 0 1-.108 1.727l-4 2zM12 18c-4 0-5-4-5-4h10s-1 4-5 4m5.553-5.105l-4-2a1 1 0 0 1-.108-1.727l3-2l1.109 1.664l-1.566 1.044l2.459 1.229z'/%3E%3C/svg%3E"); } .bxs-layer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.484 7.125l-9.022-5a1 1 0 0 0-.968 0l-8.978 4.96a1 1 0 0 0-.003 1.748l9.022 5.04a1 1 0 0 0 .973.001l8.978-5a1 1 0 0 0-.002-1.749'/%3E%3Cpath fill='black' d='m12 15.856l-8.515-4.73l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5l-.971-1.748z'/%3E%3Cpath fill='black' d='m12 19.856l-8.515-4.73l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5l-.971-1.748z'/%3E%3C/svg%3E"); } .bxs-layer-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.484 11.125l-9.022-5a1 1 0 0 0-.968-.001l-8.978 4.96a1 1 0 0 0-.003 1.749l9.022 5.04a1 1 0 0 0 .973.001l8.978-5a1 1 0 0 0-.002-1.749'/%3E%3Cpath fill='black' d='M20.515 15.126L12 19.856l-8.515-4.73l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5zM16 4h6v2h-6z'/%3E%3C/svg%3E"); } .bxs-layer-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2.513 12.833l9.022 5.04a1 1 0 0 0 .973.001l8.978-5a1 1 0 0 0-.002-1.749l-9.022-5a1 1 0 0 0-.968-.001l-8.978 4.96a1 1 0 0 0-.003 1.749'/%3E%3Cpath fill='black' d='m3.485 15.126l-.971 1.748l9 5a1 1 0 0 0 .971 0l9-5l-.971-1.748L12 19.856zM20 8V6h2V4h-2V2h-2v2h-2v2h2v2z'/%3E%3C/svg%3E"); } .bxs-layout { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5c-1.103 0-2 .897-2 2v4h18V5c0-1.103-.897-2-2-2M3 19c0 1.103.897 2 2 2h8V11H3zm12 2h4c1.103 0 2-.897 2-2v-8h-6z'/%3E%3C/svg%3E"); } .bxs-leaf { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m22 3.41l-.12-1.26l-1.2.4a13.84 13.84 0 0 1-6.41.64a11.87 11.87 0 0 0-6.68.9A7.23 7.23 0 0 0 3.3 9.5a9 9 0 0 0 .39 4.58a16.6 16.6 0 0 1 1.18-2.2a9.85 9.85 0 0 1 4.07-3.43a11.16 11.16 0 0 1 5.06-1A12.1 12.1 0 0 0 9.34 9.2a9.5 9.5 0 0 0-1.86 1.53a11.4 11.4 0 0 0-1.39 1.91a16.4 16.4 0 0 0-1.57 4.54A26.4 26.4 0 0 0 4 22h2a31 31 0 0 1 .59-4.32a9.25 9.25 0 0 0 4.52 1.11a11 11 0 0 0 4.28-.87C23 14.67 22 3.86 22 3.41'/%3E%3C/svg%3E"); } .bxs-left-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m4.431 12.822l13 9A1 1 0 0 0 19 21V3a1 1 0 0 0-1.569-.823l-13 9a1.003 1.003 0 0 0 0 1.645'/%3E%3C/svg%3E"); } .bxs-left-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m5 12l7 6v-5h6v-2h-6V6z'/%3E%3C/svg%3E"); } .bxs-left-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m5 11h-5v4l-5-5l5-5v4h5z'/%3E%3C/svg%3E"); } .bxs-left-arrow-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 21a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2zM12 7v4h5v2h-5v4l-5-5z'/%3E%3C/svg%3E"); } .bxs-left-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.071 19.071c3.898-3.899 3.898-10.244 0-14.143s-10.244-3.898-14.143 0c-3.898 3.899-3.899 10.243 0 14.143c3.9 3.899 10.244 3.899 14.143 0M8.464 8.464l2.829 2.829l3.535-3.536l1.414 1.414l-3.535 3.536l2.828 2.829H8.464z'/%3E%3C/svg%3E"); } .bxs-left-top-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.071 19.071c3.898-3.899 3.898-10.244 0-14.143c-3.899-3.898-10.243-3.898-14.143 0c-3.898 3.899-3.898 10.244 0 14.143c3.9 3.899 10.244 3.899 14.143 0M8.465 8.464h7.07l-2.828 2.829l3.535 3.536l-1.414 1.414l-3.535-3.536l-2.828 2.829z'/%3E%3C/svg%3E"); } .bxs-lemon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.45 8.74A2.23 2.23 0 0 1 21.64 7a3.5 3.5 0 0 0 .24-2.47a3.55 3.55 0 0 0-2.45-2.45a3.5 3.5 0 0 0-2.43.28a2.23 2.23 0 0 1-1.7.19a10.07 10.07 0 0 0-6.53 0a9.87 9.87 0 0 0-6.23 6.18a10.07 10.07 0 0 0 0 6.53A2.23 2.23 0 0 1 2.36 17a3.5 3.5 0 0 0-.24 2.47a3.55 3.55 0 0 0 2.45 2.45A3.5 3.5 0 0 0 7 21.64a2.23 2.23 0 0 1 1.7-.19A9.8 9.8 0 0 0 12 22a10.3 10.3 0 0 0 3.27-.54a9.87 9.87 0 0 0 6.19-6.19a10.07 10.07 0 0 0-.01-6.53M12 7a5 5 0 0 0-5 5H5a7 7 0 0 1 7-7z'/%3E%3C/svg%3E"); } .bxs-like { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 21h1V8H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2M20 8h-7l1.122-3.368A2 2 0 0 0 12.225 2H12L7 7.438V21h11l3.912-8.596L22 12v-2a2 2 0 0 0-2-2'/%3E%3C/svg%3E"); } .bxs-location-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22s8.029-5.56 8-12c0-4.411-3.589-8-8-8S4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22M8 9h3V6h2v3h3v2h-3v3h-2v-3H8z'/%3E%3C/svg%3E"); } .bxs-lock { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C9.243 2 7 4.243 7 7v3H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-1V7c0-2.757-2.243-5-5-5M9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v3H9zm4 10.723V20h-2v-2.277a1.993 1.993 0 0 1 .567-3.677A2 2 0 0 1 14 16a1.99 1.99 0 0 1-1 1.723'/%3E%3C/svg%3E"); } .bxs-lock-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 12c0-1.103-.897-2-2-2h-1V7c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2zM9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v3H9z'/%3E%3C/svg%3E"); } .bxs-lock-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 10H9V7c0-1.654 1.346-3 3-3s3 1.346 3 3h2c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2m-7.939 5.499A2.002 2.002 0 0 1 14 16a1.99 1.99 0 0 1-1 1.723V20h-2v-2.277a1.99 1.99 0 0 1-.939-2.224'/%3E%3C/svg%3E"); } .bxs-lock-open-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 8V7c0-2.757-2.243-5-5-5S7 4.243 7 7v3H6c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-8c0-1.103-.897-2-2-2H9V7c0-1.654 1.346-3 3-3s3 1.346 3 3v1z'/%3E%3C/svg%3E"); } .bxs-log-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 2h-13a.5.5 0 0 0-.5.5V11h6V8l5 4l-5 4v-3H5v8.5a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-19a.5.5 0 0 0-.5-.5'/%3E%3C/svg%3E"); } .bxs-log-in-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 3c-4.625 0-8.442 3.507-8.941 8.001H10v-3l5 4l-5 4v-3H3.06C3.56 17.494 7.376 21 12 21c4.963 0 9-4.037 9-9s-4.037-9-9-9'/%3E%3C/svg%3E"); } .bxs-log-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 2H6a1 1 0 0 0-1 1v9l5-4v3h6v2h-6v3l-5-4v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bxs-log-out-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 3c-4.963 0-9 4.037-9 9v.001l5-4v3h7v2H8v3l-5-4C3.001 16.964 7.037 21 12 21s9-4.037 9-9s-4.037-9-9-9'/%3E%3C/svg%3E"); } .bxs-low-vision { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4.998c-1.836 0-3.356.389-4.617.971L3.707 2.293L2.293 3.707l3.315 3.315c-2.613 1.952-3.543 4.618-3.557 4.66l-.105.316l.105.316C2.073 12.382 4.367 19 12 19c1.835 0 3.354-.389 4.615-.971l3.678 3.678l1.414-1.414l-3.317-3.317c2.614-1.952 3.545-4.618 3.559-4.66l.105-.316l-.105-.316c-.022-.068-2.316-6.686-9.949-6.686M12.043 7H12a5 5 0 0 1 5 5a4.9 4.9 0 0 1-.852 2.734l-.721-.721A3.9 3.9 0 0 0 16 11.999c0-.474-.099-.925-.255-1.349A1 1 0 0 1 15 11a1 1 0 0 1-1-1c0-.439.288-.802.682-.936A3.97 3.97 0 0 0 12 7.999c-.735 0-1.419.218-2.015.572l-.72-.72C10.053 7.326 10.982 7 12 7h-.043L12 6.998zm-7.969 4.999c.103-.235.274-.586.521-.989l5.867 5.867c-4.213-.647-5.939-3.842-6.388-4.878m9.247 4.908l-7.48-7.48a8 8 0 0 1 1.188-.984l8.055 8.055a9 9 0 0 1-1.763.409'/%3E%3C/svg%3E"); } .bxs-magic-wand { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m11 4l-.5-1l-.5 1l-1 .125l.834.708L9.5 6l1-.666l1 .666l-.334-1.167l.834-.708zm8.334 10.666L18.5 13l-.834 1.666l-1.666.209l1.389 1.181L16.834 18l1.666-1.111L20.166 18l-.555-1.944L21 14.875zM6.667 6.333L6 5l-.667 1.333L4 6.5l1.111.944L4.667 9L6 8.111L7.333 9l-.444-1.556L8 6.5zM3.414 17c0 .534.208 1.036.586 1.414L5.586 20c.378.378.88.586 1.414.586s1.036-.208 1.414-.586L20 8.414c.378-.378.586-.88.586-1.414S20.378 5.964 20 5.586L18.414 4c-.756-.756-2.072-.756-2.828 0L4 15.586c-.378.378-.586.88-.586 1.414M17 5.414L18.586 7L15 10.586L13.414 9z'/%3E%3C/svg%3E"); } .bxs-magnet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 3H5a1 1 0 0 0-1 1v3h5V4a1 1 0 0 0-1-1m7 1v3h5V4a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1m0 10a3 3 0 0 1-6 0V9H4v5a8 8 0 0 0 16 0V9h-5z'/%3E%3C/svg%3E"); } .bxs-map { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8m0 12c-2.21 0-4-1.79-4-4s1.79-4 4-4s4 1.79 4 4s-1.79 4-4 4'/%3E%3C/svg%3E"); } .bxs-map-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m9 6.882l-7-3.5v13.236l7 3.5l6-3l7 3.5V7.382l-7-3.5zM15 15l-6 3V9l6-3z'/%3E%3C/svg%3E"); } .bxs-map-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m12 17l1-2V9.858c1.721-.447 3-2 3-3.858c0-2.206-1.794-4-4-4S8 3.794 8 6c0 1.858 1.279 3.411 3 3.858V15z'/%3E%3Cpath fill='black' d='m16.267 10.563l-.533 1.928C18.325 13.207 20 14.584 20 16c0 1.892-3.285 4-8 4s-8-2.108-8-4c0-1.416 1.675-2.793 4.267-3.51l-.533-1.928C4.197 11.54 2 13.623 2 16c0 3.364 4.393 6 10 6s10-2.636 10-6c0-2.377-2.197-4.46-5.733-5.437'/%3E%3C/svg%3E"); } .bxs-mask { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 6H5C3.346 6 2 7.346 2 9v5c0 2.206 1.794 4 4 4h1.637c1.166 0 2.28-.557 2.981-1.491c.66-.879 2.104-.88 2.764.001A3.74 3.74 0 0 0 16.363 18H18c2.206 0 4-1.794 4-4V9c0-1.654-1.346-3-3-3M7.5 13C6.119 13 5 12.328 5 11.5S6.119 10 7.5 10s2.5.672 2.5 1.5S8.881 13 7.5 13m9 0c-1.381 0-2.5-.672-2.5-1.5s1.119-1.5 2.5-1.5s2.5.672 2.5 1.5s-1.119 1.5-2.5 1.5'/%3E%3C/svg%3E"); } .bxs-medal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 2h-4v4.059a8.95 8.95 0 0 1 4 1.459zm-6 0H7v5.518a8.95 8.95 0 0 1 4-1.459zm1 20a7 7 0 1 0 0-14a7 7 0 0 0 0 14m-1.225-8.519L12 11l1.225 2.481l2.738.397l-1.981 1.932l.468 2.727L12 17.25l-2.449 1.287l.468-2.727l-1.981-1.932z'/%3E%3C/svg%3E"); } .bxs-megaphone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.664 3.478L8 8v7l.748.267l-1.127 2.254a2 2 0 0 0 1.156 2.792l4.084 1.361a2.015 2.015 0 0 0 2.421-1.003l1.303-2.606l4.079 1.457A1 1 0 0 0 22 18.581V4.419a1 1 0 0 0-1.336-.941m-7.171 16.299L9.41 18.416l1.235-2.471l4.042 1.444zM4 15h2V8H4c-1.103 0-2 .897-2 2v3c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bxs-meh { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5m9 6.5H7.974v-2H16zm-.507-5.014a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987'/%3E%3C/svg%3E"); } .bxs-meh-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-6 8h4v2H6zm10 7H7.974v-2H16zm2-5h-4v-2h4z'/%3E%3C/svg%3E"); } .bxs-meh-blank { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M8.5 12a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8.5 12m6.993-.014a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987'/%3E%3C/svg%3E"); } .bxs-memory-card { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 2H6c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2V7zm-6 8H7V6h2zm3 0h-2V6h2zm3 0h-2V6h2z'/%3E%3C/svg%3E"); } .bxs-message { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2'/%3E%3C/svg%3E"); } .bxs-message-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2m-3 9h-4v4h-2v-4H7V9h4V5h2v4h4z'/%3E%3C/svg%3E"); } .bxs-message-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.999 2h-14c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4h3.5c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bxs-message-alt-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m8.5 18l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2zM7 9h4V5h2v4h4v2h-4v4h-2v-4H7z'/%3E%3C/svg%3E"); } .bxs-message-alt-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 4v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m5.707 4.293L11 10.586l4.793-4.793l1.414 1.414L11 13.414L7.293 9.707z'/%3E%3C/svg%3E"); } .bxs-message-alt-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m8.5 18l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2zM7 7h10v2H7zm0 4h7v2H7z'/%3E%3C/svg%3E"); } .bxs-message-alt-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2M9 12a2 2 0 1 1 .001-4.001A2 2 0 0 1 9 12m6 0a2 2 0 1 1 .001-4.001A2 2 0 0 1 15 12'/%3E%3C/svg%3E"); } .bxs-message-alt-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 2c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm4.302 11.987h-1.8v-1.799l4.978-4.97l1.798 1.799zm5.823-5.817l-1.798-1.799L14.698 5l1.8 1.799z'/%3E%3C/svg%3E"); } .bxs-message-alt-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 4v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2m8 1h2v6h-2zm0 8h2v2h-2z'/%3E%3C/svg%3E"); } .bxs-message-alt-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 2c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h3.5l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2zm11 9H8V9h8z'/%3E%3C/svg%3E"); } .bxs-message-alt-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m8.5 18l3.5 4l3.5-4H19c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H5c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2zM7.293 6.707l1.414-1.414L12 8.586l3.293-3.293l1.414 1.414L13.414 10l3.293 3.293l-1.414 1.414L12 11.414l-3.293 3.293l-1.414-1.414L10.586 10z'/%3E%3C/svg%3E"); } .bxs-message-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2m-9 11.914l-3.707-3.707l1.414-1.414L11 11.086l4.793-4.793l1.414 1.414z'/%3E%3C/svg%3E"); } .bxs-message-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2m-6 11H7v-2h7zm3-4H7V7h10z'/%3E%3C/svg%3E"); } .bxs-message-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.017C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2m-9 8a2 2 0 1 1-2-2c.086 0 .167.015.25.025c.082-.014.164-.025.25-.025A1.5 1.5 0 0 1 11 9.5c0 .086-.012.168-.025.25c.01.083.025.165.025.25m4 2a2 2 0 0 1-2-2c0-.086.015-.167.025-.25A2 2 0 0 1 13 9.5A1.5 1.5 0 0 1 14.5 8q.128.002.25.025c.083-.01.164-.025.25-.025a2 2 0 0 1 0 4'/%3E%3C/svg%3E"); } .bxs-message-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2M8.999 14.999H7V13l5.53-5.522l1.998 1.999zm6.472-6.464l-1.999-1.999l1.524-1.523l1.999 1.999z'/%3E%3C/svg%3E"); } .bxs-message-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2m-7 13h-2v-2h2zm0-4h-2V5h2z'/%3E%3C/svg%3E"); } .bxs-message-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2m-4 9H8V9h8z'/%3E%3C/svg%3E"); } .bxs-message-rounded { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.515 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8'/%3E%3C/svg%3E"); } .bxs-message-rounded-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8m4 9h-3v3h-2v-3H8V9h3V6h2v3h3z'/%3E%3C/svg%3E"); } .bxs-message-rounded-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8m-1 12.414l-3.707-3.707l1.414-1.414L11 11.586l4.793-4.793l1.414 1.414z'/%3E%3C/svg%3E"); } .bxs-message-rounded-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8m2 11H7v-2h7zm3-4H7V7h10z'/%3E%3C/svg%3E"); } .bxs-message-rounded-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.897 5.516 5 6.934V22l5.34-4.004C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8m-2.5 9a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3m5 0a1.5 1.5 0 1 1 0-3a1.5 1.5 0 0 1 0 3'/%3E%3C/svg%3E"); } .bxs-message-rounded-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.516 5 6.934V22l5.34-4.005C17.697 17.854 22 14.32 22 10c0-4.411-4.486-8-10-8M9.302 13.986H7.503v-1.798l4.976-4.97l1.798 1.799zm5.823-5.816l-1.799-1.798l1.372-1.371l1.799 1.798z'/%3E%3C/svg%3E"); } .bxs-message-rounded-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.516 5 6.934V22l5.34-4.005C17.697 17.854 22 14.32 22 10c0-4.411-4.486-8-10-8m1 12h-2v-2h2zm0-4h-2V5h2z'/%3E%3C/svg%3E"); } .bxs-message-rounded-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8m4 9H8V9h8z'/%3E%3C/svg%3E"); } .bxs-message-rounded-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 5.589 2 10c0 2.907 1.897 5.515 5 6.934V22l5.34-4.005C17.697 17.853 22 14.32 22 10c0-4.411-4.486-8-10-8m3.707 10.293l-1.414 1.414L12 11.414l-2.293 2.293l-1.414-1.414L10.586 10L8.293 7.707l1.414-1.414L12 8.586l2.293-2.293l1.414 1.414L13.414 10z'/%3E%3C/svg%3E"); } .bxs-message-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6'/%3E%3C/svg%3E"); } .bxs-message-square-add { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m1 11h-4v4h-2v-4H7v-2h4V7h2v4h4z'/%3E%3C/svg%3E"); } .bxs-message-square-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m-5 14.414l-3.707-3.707l1.414-1.414L11 13.586l4.793-4.793l1.414 1.414z'/%3E%3C/svg%3E"); } .bxs-message-square-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m-2 13H7v-2h7zm3-4H7V9h10z'/%3E%3C/svg%3E"); } .bxs-message-square-dots { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m-5 10.5A1.5 1.5 0 0 1 9.5 14c-.086 0-.168-.011-.25-.025c-.083.01-.164.025-.25.025a2 2 0 1 1 2-2c0 .085-.015.167-.025.25c.013.082.025.164.025.25m4 1.5c-.086 0-.167-.015-.25-.025a1.5 1.5 0 0 1-.25.025a1.5 1.5 0 0 1-1.5-1.5c0-.085.012-.168.025-.25c-.01-.083-.025-.164-.025-.25a2 2 0 1 1 2 2'/%3E%3C/svg%3E"); } .bxs-message-square-edit { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6M8.999 17H7v-1.999l5.53-5.522l1.999 1.999zm6.473-6.465l-1.999-1.999l1.524-1.523l1.999 1.999z'/%3E%3C/svg%3E"); } .bxs-message-square-error { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m-3 16h-2v-2h2zm0-4h-2V6h2z'/%3E%3C/svg%3E"); } .bxs-message-square-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m0 11H8v-2h8z'/%3E%3C/svg%3E"); } .bxs-message-square-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 2H8C4.691 2 2 4.691 2 8v13a1 1 0 0 0 1 1h13c3.309 0 6-2.691 6-6V8c0-3.309-2.691-6-6-6m.706 13.293l-1.414 1.414L12 13.415l-3.292 3.292l-1.414-1.414l3.292-3.292l-3.292-3.292l1.414-1.414L12 10.587l3.292-3.292l1.414 1.414l-3.292 3.292z'/%3E%3C/svg%3E"); } .bxs-message-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H4c-1.103 0-2 .894-2 1.992v12.016C2 17.106 2.897 18 4 18h3v4l6.351-4H20c1.103 0 2-.894 2-1.992V3.992A2 2 0 0 0 20 2m-3.293 11.293l-1.414 1.414L12 11.414l-3.293 3.293l-1.414-1.414L10.586 10L7.293 6.707l1.414-1.414L12 8.586l3.293-3.293l1.414 1.414L13.414 10z'/%3E%3C/svg%3E"); } .bxs-meteor { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.507 2.138a1 1 0 0 0-1.155.102L4.196 9.197c-2.924 2.924-2.924 7.682 0 10.606a7.47 7.47 0 0 0 5.3 2.192c1.924 0 3.85-.734 5.317-2.202l6.903-7.096A1 1 0 0 0 21 11h-3.301l4.175-7.514a1.001 1.001 0 0 0-1.359-1.36l-7.11 3.95l.576-2.879a1 1 0 0 0-.474-1.059M14 14.5a4.5 4.5 0 0 1-9 0c0-1.57.807-2.949 2.025-3.754c-.01.084-.025.167-.025.254a2 2 0 1 0 3.845-.772C12.669 10.802 14 12.486 14 14.5'/%3E%3C/svg%3E"); } .bxs-microchip { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.999 22h8c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2h-8c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2m-5-15h2V5h-2v.5h-1v1h1zm18-2h-2v2h2v-.5h1v-1h-1zm-18 6h2V9h-2v.5h-1v1h1zm18-2h-2v2h2v-.5h1v-1h-1zm-18 6h2v-2h-2v.5h-1v1h1zm18-2h-2v2h2v-.5h1v-1h-1zm-18 6h2v-2h-2v.5h-1v1h1zm18-2h-2v2h2v-.5h1v-1h-1z'/%3E%3C/svg%3E"); } .bxs-microphone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 16c2.206 0 4-1.794 4-4V6c0-2.217-1.785-4.021-3.979-4.021a1 1 0 0 0-.209.025A4.006 4.006 0 0 0 8 6v6c0 2.206 1.794 4 4 4'/%3E%3Cpath fill='black' d='M11 19.931V22h2v-2.069c3.939-.495 7-3.858 7-7.931h-2c0 3.309-2.691 6-6 6s-6-2.691-6-6H4c0 4.072 3.061 7.436 7 7.931'/%3E%3C/svg%3E"); } .bxs-microphone-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 12H4c0 4.072 3.061 7.436 7 7.931V22h2v-2.069c3.939-.495 7-3.858 7-7.931h-2c0 3.309-2.691 6-6 6s-6-2.691-6-6'/%3E%3Cpath fill='black' d='M8 12c0 2.206 1.794 4 4 4s4-1.794 4-4h-2v-2h2V8h-2V6h2c0-2.217-1.785-4.021-3.979-4.021a1 1 0 0 0-.209.025A4.006 4.006 0 0 0 8 6h4v2H8v2h4v2z'/%3E%3C/svg%3E"); } .bxs-microphone-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.707 20.293l-3.4-3.4A7.93 7.93 0 0 0 20 12h-2a5.95 5.95 0 0 1-1.119 3.467l-1.449-1.45A3.9 3.9 0 0 0 16 12V6c0-2.217-1.785-4.021-3.979-4.021q-.105 0-.209.025A4.006 4.006 0 0 0 8 6v.586L3.707 2.293L2.293 3.707l18 18zM6 12H4c0 4.072 3.06 7.436 7 7.931V22h2v-2.069a8 8 0 0 0 2.241-.63l-1.549-1.548A6 6 0 0 1 12 18c-3.309 0-6-2.691-6-6'/%3E%3Cpath fill='black' d='M8.007 12.067a3.996 3.996 0 0 0 3.926 3.926z'/%3E%3C/svg%3E"); } .bxs-minus-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m5 11H7v-2h10z'/%3E%3C/svg%3E"); } .bxs-minus-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm12 10H7v-2h10z'/%3E%3C/svg%3E"); } .bxs-mobile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 22c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2H8c-1.103 0-2 .897-2 2v16c0 1.103.897 2 2 2zm-5-5a1 1 0 1 1 0 2a1 1 0 1 1 0-2'/%3E%3C/svg%3E"); } .bxs-mobile-vibration { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.535 2.808a2.003 2.003 0 0 0-2.828 0l-9.899 9.899a2 2 0 0 0 0 2.828l5.657 5.657c.39.39.902.585 1.414.585s1.024-.195 1.414-.585l9.899-9.899c.78-.779.78-2.049 0-2.828zM8.707 16.707a.999.999 0 1 1-1.414-1.414a.999.999 0 1 1 1.414 1.414m7 5l-1.414-1.414l6-6l1.414 1.415zM8.293 2.293l1.414 1.414l-6 6l-1.414-1.415z'/%3E%3C/svg%3E"); } .bxs-moon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 11.807A9 9 0 0 1 10.049 2a9.94 9.94 0 0 0-5.12 2.735c-3.905 3.905-3.905 10.237 0 14.142c3.906 3.906 10.237 3.905 14.143 0a9.95 9.95 0 0 0 2.735-5.119A9 9 0 0 1 12 11.807'/%3E%3C/svg%3E"); } .bxs-mouse { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.975 22H12c3.859 0 7-3.14 7-7V9c0-3.841-3.127-6.974-6.981-7h-.06C8.119 2.022 5 5.157 5 9v6c0 3.86 3.129 7 6.975 7M11 6h2v6h-2z'/%3E%3C/svg%3E"); } .bxs-mouse-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 2v8h6V8c0-3.309-2.691-6-6-6M5 16c0 3.309 2.691 6 6 6h2c3.309 0 6-2.691 6-6v-4H5zm0-8v2h6V2C7.691 2 5 4.691 5 8'/%3E%3C/svg%3E"); } .bxs-movie { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m.001 6q-.002 0 0 0h-.466l-2.667-4H20zm-5.466 0l-2.667-4h2.596l2.667 4zm-2.404 0H9.535L6.869 5h2.596zM4 5h.465l2.667 4H4z'/%3E%3C/svg%3E"); } .bxs-movie-play { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m.001 6q-.002 0 0 0h-.465l-2.667-4H20zM15.5 15L10 18v-6zm-.964-6l-2.667-4h2.596l2.667 4zm-2.404 0H9.536L6.869 5h2.596zM4 5h.465l2.667 4H4z'/%3E%3C/svg%3E"); } .bxs-music { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 18.573c2.206 0 4-1.794 4-4V4.428L19 7.7v7.43a3.95 3.95 0 0 0-2-.557c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4V7a1 1 0 0 0-.658-.939l-11-4A1 1 0 0 0 8 3v8.13a3.95 3.95 0 0 0-2-.557c-2.206 0-4 1.794-4 4s1.794 4 4 4'/%3E%3C/svg%3E"); } .bxs-navigation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2.002 9.538c-.023.411.207.794.581.966l7.504 3.442l3.442 7.503c.164.356.52.583.909.583l.057-.002a1 1 0 0 0 .894-.686l5.595-17.032c.117-.358.023-.753-.243-1.02s-.66-.358-1.02-.243L2.688 8.645a1 1 0 0 0-.686.893'/%3E%3C/svg%3E"); } .bxs-network-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.5 3A2.5 2.5 0 0 0 17 5.5c0 .357.078.696.214 1.005l-1.955 2.199A4 4 0 0 0 13 8c-.74 0-1.424.216-2.019.566L8.707 6.293l-.023.023C8.88 5.918 9 5.475 9 5a3 3 0 1 0-3 3c.475 0 .917-.12 1.316-.316l-.023.023L9.567 9.98A3.96 3.96 0 0 0 9 12c0 .997.38 1.899.985 2.601l-2.577 2.576A2.5 2.5 0 0 0 6.5 17C5.122 17 4 18.121 4 19.5S5.122 22 6.5 22S9 20.879 9 19.5c0-.321-.066-.626-.177-.909l2.838-2.838c.421.15.867.247 1.339.247c2.206 0 4-1.794 4-4c0-.636-.163-1.229-.428-1.764l2.117-2.383c.256.088.526.147.811.147C20.879 8 22 6.879 22 5.5S20.879 3 19.5 3M13 14c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2'/%3E%3C/svg%3E"); } .bxs-news { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 17a1 1 0 0 1-2 0V5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v13a2 2 0 0 0 2 2h15c1.654 0 3-1.346 3-3V7h-2zM12 7h3v2h-3zm0 4h3v2h-3zM5 7h5v6H5zm0 10v-2h10v2z'/%3E%3C/svg%3E"); } .bxs-no-entry { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m5 12H7v-4h10z'/%3E%3C/svg%3E"); } .bxs-note { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8l8-8V5a2 2 0 0 0-2-2m-7 16v-7h7z'/%3E%3C/svg%3E"); } .bxs-notepad { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 4h-3V2h-2v2h-4V2H8v2H5c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h14c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2m-7 10H7v-2h5zm5-4H7V8h10z'/%3E%3C/svg%3E"); } .bxs-notification { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='18' cy='6' r='3' fill='black'/%3E%3Cpath fill='black' d='M13 6c0-.712.153-1.387.422-2H6c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-7.422A5 5 0 0 1 18 11a5 5 0 0 1-5-5'/%3E%3C/svg%3E"); } .bxs-notification-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='18' cy='6' r='3' fill='black'/%3E%3Cpath fill='black' d='M20 18v-7.422A5 5 0 0 1 18 11a5 5 0 0 1-5-5c0-.712.153-1.387.422-2H6c-.178 0-.347.031-.51.076L3.707 2.293L2.293 3.707l18 18l1.414-1.414l-1.783-1.783c.045-.163.076-.332.076-.51M4 18c0 1.103.897 2 2 2h9.879L4 8.121z'/%3E%3C/svg%3E"); } .bxs-objects-horizontal-center { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 13h-6v-2h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-4V2h-2v3H7a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4v2H5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h6v3h2v-3h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bxs-objects-horizontal-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 2h2v20H2z'/%3E%3Crect width='16' height='6' x='6' y='13' fill='black' rx='1'/%3E%3Crect width='12' height='6' x='6' y='5' fill='black' rx='1'/%3E%3C/svg%3E"); } .bxs-objects-horizontal-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2h2v20h-2z'/%3E%3Crect width='16' height='6' x='2' y='13' fill='black' rx='1'/%3E%3Crect width='12' height='6' x='6' y='5' fill='black' rx='1'/%3E%3C/svg%3E"); } .bxs-objects-vertical-bottom { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 20h20v2H2z'/%3E%3Crect width='6' height='16' x='5' y='2' fill='black' rx='1'/%3E%3Crect width='6' height='12' x='13' y='6' fill='black' rx='1'/%3E%3C/svg%3E"); } .bxs-objects-vertical-center { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 7a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v4h-2V5a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v6H2v2h3v6a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-6h2v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4h3v-2h-3z'/%3E%3C/svg%3E"); } .bxs-objects-vertical-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M2 2h20v2H2z'/%3E%3Crect width='6' height='16' x='5' y='6' fill='black' rx='1'/%3E%3Crect width='6' height='12' x='13' y='6' fill='black' rx='1'/%3E%3C/svg%3E"); } .bxs-offer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.749 12l1.104-1.908a1 1 0 0 0-.365-1.366l-1.91-1.104v-2.2a1 1 0 0 0-1-1h-2.199l-1.103-1.909a1 1 0 0 0-.607-.466a1 1 0 0 0-.759.1L12 3.251l-1.91-1.105a1 1 0 0 0-1.366.366L7.62 4.422H5.421a1 1 0 0 0-1 1v2.199l-1.91 1.104a1 1 0 0 0-.365 1.367L3.25 12l-1.104 1.908a1.004 1.004 0 0 0 .364 1.367l1.91 1.104v2.199a1 1 0 0 0 1 1h2.2l1.104 1.91a1.01 1.01 0 0 0 .866.5c.174 0 .347-.046.501-.135l1.908-1.104l1.91 1.104a1 1 0 0 0 1.366-.365l1.103-1.91h2.199a1 1 0 0 0 1-1v-2.199l1.91-1.104a1 1 0 0 0 .365-1.367zM9.499 6.99a1.5 1.5 0 1 1-.001 3.001a1.5 1.5 0 0 1 .001-3.001m.3 9.6l-1.6-1.199l6-8l1.6 1.199zm4.7.4a1.5 1.5 0 1 1 .001-3.001a1.5 1.5 0 0 1-.001 3.001'/%3E%3C/svg%3E"); } .bxs-package { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.993 7.95a1 1 0 0 0-.029-.214c-.007-.025-.021-.049-.03-.074c-.021-.057-.04-.113-.07-.165c-.016-.027-.038-.049-.057-.075c-.032-.045-.063-.091-.102-.13c-.023-.022-.053-.04-.078-.061c-.039-.032-.075-.067-.12-.094l-.014-.006l-.008-.006l-8.979-4.99a1 1 0 0 0-.97-.001l-9.021 4.99q-.004.005-.011.01l-.01.004c-.035.02-.061.049-.094.073c-.036.027-.074.051-.106.082c-.03.031-.053.067-.079.102s-.057.066-.079.104c-.026.043-.04.092-.059.139c-.014.033-.032.064-.041.1a1 1 0 0 0-.029.21c-.001.017-.007.032-.007.05V16c0 .363.197.698.515.874l8.978 4.987l.001.001l.002.001l.02.011c.043.024.09.037.135.054c.032.013.063.03.097.039a1 1 0 0 0 .506 0c.033-.009.064-.026.097-.039c.045-.017.092-.029.135-.054l.02-.011l.002-.001l.001-.001l8.978-4.987c.316-.176.513-.511.513-.874V7.998c0-.017-.006-.031-.007-.048m-10.021 3.922L5.058 8.005L7.82 6.477l6.834 3.905zm.048-7.719L18.941 8l-2.244 1.247l-6.83-3.903zM13 19.301l.002-5.679L16 11.944V15l2-1v-3.175l2-1.119v5.705z'/%3E%3C/svg%3E"); } .bxs-paint { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.084 2.914c-1.178-1.179-3.234-1.179-4.412 0l-8.379 8.379a1 1 0 0 0 0 1.414l3 3a.997.997 0 0 0 1.414 0l8.379-8.379a3.123 3.123 0 0 0-.002-4.414m-1.412 3L12 13.586L10.414 12l7.672-7.672a1.146 1.146 0 0 1 1.586.002a1.123 1.123 0 0 1 0 1.584M8 15c-1.265-.634-3.5 0-3.5 2c0 1.197.5 2-1.5 3c0 0 3.25 2.25 5.5 0c1.274-1.274 1.494-4-.5-5'/%3E%3C/svg%3E"); } .bxs-paint-roll { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 2H7c-1.103 0-2 .897-2 2v3c0 1.103.897 2 2 2h11c1.103 0 2-.897 2-2V4c0-1.103-.897-2-2-2'/%3E%3Cpath fill='black' d='M13 15v-2c0-1.103-.897-2-2-2H4V5c-1.103 0-2 .897-2 2v4c0 1.103.897 2 2 2h7v2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bxs-palette { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.38 21.646A10 10 0 0 0 12 22l.141-.001a3 3 0 0 0 2.515-1.425c.542-.876.6-1.953.153-2.88l-.198-.415c-.453-.942-.097-1.796.388-2.281s1.341-.841 2.28-.388h.001l.413.199a2.99 2.99 0 0 0 2.881-.153A3 3 0 0 0 22 12.141a10 10 0 0 0-.353-2.76c-1.038-3.827-4.353-6.754-8.246-7.285c-3.149-.427-6.241.602-8.471 2.833S1.666 10.247 2.096 13.4c.53 3.894 3.458 7.208 7.284 8.246M15.5 6a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3m-5-1a1.5 1.5 0 1 1 0 3a1.5 1.5 0 0 1 0-3M9 15.506a1.5 1.5 0 1 1-3 0a1.5 1.5 0 0 1 3 0m-2.5-6.5a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 6.5 9.006'/%3E%3C/svg%3E"); } .bxs-paper-plane { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2.6 13.083l3.452 1.511L16 9.167l-6 7l8.6 3.916a1 1 0 0 0 1.399-.85l1-15a1.002 1.002 0 0 0-1.424-.972l-17 8a1.002 1.002 0 0 0 .025 1.822M8 22.167l4.776-2.316L8 17.623z'/%3E%3C/svg%3E"); } .bxs-parking { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.5 3H5v18h4v-5h4.5c3.584 0 6.5-2.916 6.5-6.5S17.084 3 13.5 3m0 9H9V7h4.5C14.879 7 16 8.121 16 9.5S14.879 12 13.5 12'/%3E%3C/svg%3E"); } .bxs-party { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M23 7a8.44 8.44 0 0 0-5 1.31c-.36-.41-.73-.82-1.12-1.21l-.29-.27l.14-.12a3.15 3.15 0 0 0 .9-3.49A3.9 3.9 0 0 0 14 1v2a2 2 0 0 1 1.76 1c.17.4 0 .84-.47 1.31l-.23.21a16.7 16.7 0 0 0-3.41-2.2c-2.53-1.14-3.83-.61-4.47 0a2.2 2.2 0 0 0-.46.68l-.18.53L5.1 8.87C6.24 11.71 9 16.76 15 18.94l5-1.66a1 1 0 0 0 .43-.31l.21-.18c1.43-1.44.51-4.21-1.41-6.9A6.63 6.63 0 0 1 23 9zm-3.79 8.37h-.06c-.69.37-3.55-.57-6.79-3.81c-.34-.34-.66-.67-.95-1c-.1-.11-.19-.23-.29-.35l-.53-.64l-.28-.39c-.14-.19-.28-.38-.4-.56s-.16-.26-.24-.39s-.22-.34-.31-.51s-.13-.24-.19-.37s-.17-.28-.23-.42s-.09-.23-.14-.34s-.11-.27-.15-.4S8.6 6 8.58 5.9s-.06-.24-.08-.34a2 2 0 0 1 0-.24a1.2 1.2 0 0 1 0-.26l.11-.31c.17-.18.91-.23 2.23.37a14 14 0 0 1 2.49 1.54A4.2 4.2 0 0 1 12 7v2a6.4 6.4 0 0 0 3-.94l.49.46c.44.43.83.86 1.19 1.27A5.3 5.3 0 0 0 16 13.2l2-.39a3.2 3.2 0 0 1 0-1.14c1.29 1.97 1.53 3.39 1.21 3.7M4.4 11l-2.23 6.7A3.28 3.28 0 0 0 5.28 22a3.2 3.2 0 0 0 1-.17l6.52-2.17A18.7 18.7 0 0 1 4.4 11'/%3E%3C/svg%3E"); } .bxs-paste { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 4h6v2H9zm11 7h-7a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-7a2 2 0 0 0-2-2'/%3E%3Cpath fill='black' d='M21 9V6a2 2 0 0 0-2-2h-2a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4v-9a2 2 0 0 1 2-2zM9 6V4h6v2z'/%3E%3C/svg%3E"); } .bxs-pear { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10.12 22a7.71 7.71 0 0 0 6.57-5a7.2 7.2 0 0 0 .46-3.21a3.26 3.26 0 0 1 1-2.57l.61-.61A3.89 3.89 0 0 0 19.43 6l2.28-2.28l-1.42-1.43L18 4.55a3.82 3.82 0 0 0-4.66.57l-.75.75a3.22 3.22 0 0 1-2.52 1a7.05 7.05 0 0 0-3.32.57A7.75 7.75 0 0 0 2 14.11A7.59 7.59 0 0 0 10.12 22M9.5 9.25v1.5a3.75 3.75 0 0 0-3.75 3.75h-1.5A5.26 5.26 0 0 1 9.5 9.25'/%3E%3C/svg%3E"); } .bxs-pen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.587 6.999H7.702a2 2 0 0 0-1.88 1.316l-3.76 10.342c-.133.365-.042.774.232 1.049l.293.293l6.422-6.422c-.001-.026-.008-.052-.008-.078a1.5 1.5 0 1 1 1.5 1.5c-.026 0-.052-.007-.078-.008l-6.422 6.422l.293.293a1 1 0 0 0 1.049.232l10.342-3.761a2 2 0 0 0 1.316-1.88v-3.885L19 10.414L13.586 5zm8.353 2.062l-5-5l2.12-2.121l5 5z'/%3E%3C/svg%3E"); } .bxs-pencil { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.707 19.707L18 10.414L13.586 6l-9.293 9.293a1 1 0 0 0-.263.464L3 21l5.242-1.03c.176-.044.337-.135.465-.263M21 7.414a2 2 0 0 0 0-2.828L19.414 3a2 2 0 0 0-2.828 0L15 4.586L19.414 9z'/%3E%3C/svg%3E"); } .bxs-phone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.487 17.14l-4.065-3.696a1 1 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66c-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1 1 0 0 0-.29.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.323 21 17.705 21c.202 0 .326-.006.359-.008a1 1 0 0 0 .648-.291l1.86-2.171a.997.997 0 0 0-.085-1.39'/%3E%3C/svg%3E"); } .bxs-phone-call { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 10.999h2C22 5.869 18.127 2 12.99 2v2C17.052 4 20 6.943 20 10.999'/%3E%3Cpath fill='black' d='M13 8c2.103 0 3 .897 3 3h2c0-3.225-1.775-5-5-5zm3.422 5.443a1 1 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66c-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1 1 0 0 0-.29.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.323 21 17.705 21c.202 0 .326-.006.359-.008a1 1 0 0 0 .648-.291l1.86-2.171a1 1 0 0 0-.086-1.391z'/%3E%3C/svg%3E"); } .bxs-phone-incoming { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.793 6.793L13 4v7h7l-2.793-2.793l4.5-4.5l-1.414-1.414z'/%3E%3Cpath fill='black' d='M16.422 13.443a1 1 0 0 0-1.391.043l-2.392 2.461c-.576-.11-1.734-.471-2.926-1.66c-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.86 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1 1 0 0 0-.291.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.324 21 17.705 21c.203 0 .326-.006.359-.008a1 1 0 0 0 .648-.291l1.861-2.171a1 1 0 0 0-.086-1.391z'/%3E%3C/svg%3E"); } .bxs-phone-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.17 13.42a5.2 5.2 0 0 1-.93-2.06L10.7 9a1 1 0 0 0 0-1.39l-3.65-4.1a1 1 0 0 0-1.4-.08L3.48 5.29a1 1 0 0 0-.29.65a15.25 15.25 0 0 0 3.54 9.92l-4.44 4.43l1.42 1.42l18-18l-1.42-1.42zm7.44.02a1 1 0 0 0-1.39.05L12.82 16a4 4 0 0 1-.51-.14l-2.66 2.61A15.46 15.46 0 0 0 17.89 21h.36a1 1 0 0 0 .65-.29l1.86-2.17a1 1 0 0 0-.09-1.39z'/%3E%3C/svg%3E"); } .bxs-phone-outgoing { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m16.793 5.793l-4.5 4.5l1.414 1.414l4.5-4.5L21 10V3h-7z'/%3E%3Cpath fill='black' d='M16.422 13.446a1 1 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66c-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.516a1 1 0 0 0-1.391-.087L3.299 5.29a1 1 0 0 0-.291.648c-.015.25-.301 6.172 4.291 10.766c4.006 4.006 9.024 4.299 10.406 4.299c.202 0 .326-.006.359-.008a1 1 0 0 0 .648-.291l1.86-2.171a1 1 0 0 0-.086-1.391z'/%3E%3C/svg%3E"); } .bxs-photo-album { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H6c-1.206 0-3 .799-3 3v14c0 2.201 1.794 3 3 3h15v-2H6.012C5.55 19.988 5 19.806 5 19s.55-.988 1.012-1H21V3a1 1 0 0 0-1-1M9.503 5a1.503 1.503 0 1 1 0 3.006a1.503 1.503 0 0 1 0-3.006M12 13H7l3-3l1.5 1.399L14.5 8l3.5 5z'/%3E%3C/svg%3E"); } .bxs-piano { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 3H5C3.346 3 2 4.346 2 6v12c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3V6c0-1.654-1.346-3-3-3m0 16H5a1 1 0 0 1-1-1v-6h2v4h2v-4h1v4h2v-4h1v4h2v-4h2v4h2v-4h2v6a1 1 0 0 1-1 1'/%3E%3C/svg%3E"); } .bxs-pie-chart { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 10V5c4 0 7 3 7 7z'/%3E%3C/svg%3E"); } .bxs-pie-chart-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.071 4.929A9.97 9.97 0 0 0 12 2a9.94 9.94 0 0 0-7.071 2.929C3.04 6.818 2 9.33 2 12s1.04 5.182 2.929 7.071S9.33 22 12 22s5.182-1.04 7.071-2.929A9.94 9.94 0 0 0 22 12a9.97 9.97 0 0 0-2.929-7.071m-1.414 12.728C16.146 19.168 14.137 20 12 20s-4.146-.832-5.657-2.343S4 14.137 4 12s.832-4.146 2.343-5.657A7.95 7.95 0 0 1 12 4v8h8a7.95 7.95 0 0 1-2.343 5.657'/%3E%3C/svg%3E"); } .bxs-pie-chart-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 2.051V11h8.949c-.47-4.717-4.232-8.479-8.949-8.949m4.969 17.953c2.189-1.637 3.694-4.14 3.98-7.004h-8.183z'/%3E%3Cpath fill='black' d='M11 12V2.051C5.954 2.555 2 6.824 2 12c0 5.514 4.486 10 10 10a9.9 9.9 0 0 0 4.255-.964s-5.253-8.915-5.254-9.031z'/%3E%3C/svg%3E"); } .bxs-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 11.586V6h2V4a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v2h2v5.586l-2.707 1.707A1 1 0 0 0 6 14v2a1 1 0 0 0 1 1h4v3l1 2l1-2v-3h4a1 1 0 0 0 1-1v-2a1 1 0 0 0-.293-.707z'/%3E%3C/svg%3E"); } .bxs-pizza { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.76 2.021a.995.995 0 0 0-.989.703L3.579 19.166a1 1 0 0 0 1.255 1.255l16.442-5.192a.99.99 0 0 0 .702-.988C21.6 7.666 16.334 2.4 9.76 2.021M10 16a2 2 0 1 1 .001-4.001A2 2 0 0 1 10 16m6-2a2 2 0 1 1 .001-4.001A2 2 0 0 1 16 14'/%3E%3C/svg%3E"); } .bxs-plane { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M22 16.21v-1.895L14 8V4a2 2 0 0 0-4 0v4.105L2 14.42v1.789l8-2.81V18l-3 2v2l5-2l5 2v-2l-3-2v-4.685z'/%3E%3C/svg%3E"); } .bxs-plane-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3.414 13.778L2 15.192l4.949 2.121l2.122 4.95l1.414-1.414l-.707-3.536L13.091 14l3.61 7.704l1.339-1.339l-1.19-10.123l2.828-2.829a2 2 0 1 0-2.828-2.828l-2.903 2.903L3.824 6.297L2.559 7.563l7.644 3.67l-3.253 3.253z'/%3E%3C/svg%3E"); } .bxs-plane-land { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.842 15.296a1.61 1.61 0 0 0 1.892-1.189v-.001a1.61 1.61 0 0 0-1.177-1.949l-4.576-1.133L9.825 4.21l-2.224-.225l2.931 6.589l-4.449-.449l-2.312-3.829l-1.38.31l1.24 5.52zM3 18h18v2H3z'/%3E%3C/svg%3E"); } .bxs-plane-take-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 18h18v2H3zm18.509-9.473a1.61 1.61 0 0 0-2.036-1.019L15 9L7 6L5 7l6 4l-4 2l-4-2l-1 1l4 4l14.547-5.455a1.61 1.61 0 0 0 .962-2.018'/%3E%3C/svg%3E"); } .bxs-planet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.165 15.582c4.587-4.073 8.141-9.424 6.057-11.771c-.661-.744-1.584-1.089-2.575-.983c-.832.091-1.687.502-2.549 1.192a8.92 8.92 0 0 0-8.712.282a8.92 8.92 0 0 0-4.109 5.515a8.9 8.9 0 0 0 .306 5.325c-1.065 1.203-2.054 3.677-.823 5.063c.517.581 1.257.841 2.147.841c2.707 0 6.808-2.399 10.258-5.464m3.699-10.767c.358-.034.632.064.861.323c.231.261.169.946-.252 1.929a9 9 0 0 0-1.617-1.853c.431-.262.776-.373 1.008-.399M4.633 17.118a9 9 0 0 0 1.568 1.737c-1.025.303-1.714.283-1.945.021c-.217-.243.002-1.069.377-1.758m16.31-5.869c-1.215 1.797-2.906 3.671-4.778 5.333c-1.934 1.719-4.066 3.208-6.05 4.202a9 9 0 0 0 1.874.212a9 9 0 0 0 4.616-1.282a8.91 8.91 0 0 0 4.338-8.465'/%3E%3C/svg%3E"); } .bxs-playlist { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 16.493C13 18.427 14.573 20 16.507 20s3.507-1.573 3.507-3.507c0-.177-.027-.347-.053-.517H20V6h2V4h-3a1 1 0 0 0-1 1v8.333a3.5 3.5 0 0 0-1.493-.346A3.51 3.51 0 0 0 13 16.493M2 5h14v2H2z'/%3E%3Cpath fill='black' d='M2 9h14v2H2zm0 4h9v2H2zm0 4h9v2H2z'/%3E%3C/svg%3E"); } .bxs-plug { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 8h2v5c0 2.206 1.794 4 4 4h2v5h2v-5h2c2.206 0 4-1.794 4-4V8h2V6H3zm4-6h2v3H7zm8 0h2v3h-2z'/%3E%3C/svg%3E"); } .bxs-plus-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m5 11h-4v4h-2v-4H7v-2h4V7h2v4h4z'/%3E%3C/svg%3E"); } .bxs-plus-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2m2-10h4V7h2v4h4v2h-4v4h-2v-4H7z'/%3E%3C/svg%3E"); } .bxs-pointer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.978 13.21a1 1 0 0 0-.396-1.024l-14-10a.999.999 0 0 0-1.575.931l2 17a1 1 0 0 0 1.767.516l3.612-4.416l3.377 5.46l1.701-1.052l-3.357-5.428l6.089-1.218a1 1 0 0 0 .782-.769'/%3E%3C/svg%3E"); } .bxs-polygon { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.707 7.293l-5-5A1 1 0 0 0 16 2H8a1 1 0 0 0-.707.293l-5 5A1 1 0 0 0 2 8v8c0 .266.105.52.293.707l5 5A1 1 0 0 0 8 22h8c.266 0 .52-.105.707-.293l5-5A1 1 0 0 0 22 16V8a1 1 0 0 0-.293-.707'/%3E%3C/svg%3E"); } .bxs-popsicle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4a7 7 0 0 0-9.9 0l-7.82 7.82a1 1 0 0 0 0 1.41l3.54 3.54l-3.54 3.53l1.42 1.42l3.53-3.54l3.54 3.54a1 1 0 0 0 1.41 0L20 13.94A7 7 0 0 0 20 4m-2.7 2.7a3.33 3.33 0 0 0-4.6 0l-1.06-1.06a4.76 4.76 0 0 1 6.72 0z'/%3E%3C/svg%3E"); } .bxs-printer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 7h-1V2H6v5H5a3 3 0 0 0-3 3v7a2 2 0 0 0 2 2h2v3h12v-3h2a2 2 0 0 0 2-2v-7a3 3 0 0 0-3-3M8 4h8v3H8zm0 16v-4h8v4zm11-8h-4v-2h4z'/%3E%3C/svg%3E"); } .bxs-purchase-tag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8 8a2 2 0 0 0 2.828 0l7.172-7.172a2 2 0 0 0 0-2.828zM7 9a2 2 0 1 1 .001-4.001A2 2 0 0 1 7 9'/%3E%3C/svg%3E"); } .bxs-purchase-tag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.707 2.293A1 1 0 0 0 11 2H6a1 1 0 0 0-.707.293l-3 3A1 1 0 0 0 2 6v5c0 .266.105.52.293.707l10 10a.997.997 0 0 0 1.414 0l8-8a1 1 0 0 0 0-1.414zM8.353 10a1.647 1.647 0 1 1-.001-3.293A1.647 1.647 0 0 1 8.353 10'/%3E%3C/svg%3E"); } .bxs-pyramid { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.445 21.832a1 1 0 0 0 1.11 0l9-6A1 1 0 0 0 21.8 14.4l-9-12c-.377-.504-1.223-.504-1.6 0l-9 12a1 1 0 0 0 .245 1.432zm8.12-7.078L12 19.798V4.667z'/%3E%3C/svg%3E"); } .bxs-quote-alt-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.5 10c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.318.142-.686.238-1.028.466c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.945c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 6.5 10m11 0c-.223 0-.437.034-.65.065c.069-.232.14-.468.254-.68c.114-.308.292-.575.469-.844c.148-.291.409-.488.601-.737c.201-.242.475-.403.692-.604c.213-.21.492-.315.714-.463c.232-.133.434-.28.65-.35l.539-.222l.474-.197l-.485-1.938l-.597.144c-.191.048-.424.104-.689.171c-.271.05-.56.187-.882.312c-.317.143-.686.238-1.028.467c-.344.218-.741.4-1.091.692c-.339.301-.748.562-1.05.944c-.33.358-.656.734-.909 1.162c-.293.408-.492.856-.702 1.299c-.19.443-.343.896-.468 1.336c-.237.882-.343 1.72-.384 2.437c-.034.718-.014 1.315.028 1.747c.015.204.043.402.063.539l.025.168l.026-.006A4.5 4.5 0 1 0 17.5 10'/%3E%3C/svg%3E"); } .bxs-quote-alt-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.95 8.721l-.025-.168l-.026.006A4.5 4.5 0 1 0 17.5 14c.223 0 .437-.034.65-.065c-.069.232-.14.468-.254.68c-.114.308-.292.575-.469.844c-.148.291-.409.488-.601.737c-.201.242-.475.403-.692.604c-.213.21-.492.315-.714.463c-.232.133-.434.28-.65.35l-.539.222l-.474.197l.484 1.939l.597-.144c.191-.048.424-.104.689-.171c.271-.05.56-.187.882-.312c.317-.143.686-.238 1.028-.467c.344-.218.741-.4 1.091-.692c.339-.301.748-.562 1.05-.944c.33-.358.656-.734.909-1.162c.293-.408.492-.856.702-1.299c.19-.443.343-.896.468-1.336c.237-.882.343-1.72.384-2.437c.034-.718.014-1.315-.028-1.747a7 7 0 0 0-.063-.539m-11 0l-.025-.168l-.026.006A4.5 4.5 0 1 0 6.5 14c.223 0 .437-.034.65-.065c-.069.232-.14.468-.254.68c-.114.308-.292.575-.469.844c-.148.291-.409.488-.601.737c-.201.242-.475.403-.692.604c-.213.21-.492.315-.714.463c-.232.133-.434.28-.65.35l-.539.222c-.301.123-.473.195-.473.195l.484 1.939l.597-.144c.191-.048.424-.104.689-.171c.271-.05.56-.187.882-.312c.317-.143.686-.238 1.028-.467c.344-.218.741-.4 1.091-.692c.339-.301.748-.562 1.05-.944c.33-.358.656-.734.909-1.162c.293-.408.492-.856.702-1.299c.19-.443.343-.896.468-1.336c.237-.882.343-1.72.384-2.437c.034-.718.014-1.315-.028-1.747a8 8 0 0 0-.064-.537'/%3E%3C/svg%3E"); } .bxs-quote-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3.691 6.292C5.094 4.771 7.217 4 10 4h1v2.819l-.804.161c-1.37.274-2.323.813-2.833 1.604A2.9 2.9 0 0 0 6.925 10H10a1 1 0 0 1 1 1v7c0 1.103-.897 2-2 2H3a1 1 0 0 1-1-1v-5l.003-2.919c-.009-.111-.199-2.741 1.688-4.789M20 20h-6a1 1 0 0 1-1-1v-5l.003-2.919c-.009-.111-.199-2.741 1.688-4.789C16.094 4.771 18.217 4 21 4h1v2.819l-.804.161c-1.37.274-2.323.813-2.833 1.604A2.9 2.9 0 0 0 17.925 10H21a1 1 0 0 1 1 1v7c0 1.103-.897 2-2 2'/%3E%3C/svg%3E"); } .bxs-quote-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.309 17.708C22.196 15.66 22.006 13.03 22 13V5a1 1 0 0 0-1-1h-6c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h3.078a2.9 2.9 0 0 1-.429 1.396c-.508.801-1.465 1.348-2.846 1.624l-.803.16V20h1c2.783 0 4.906-.771 6.309-2.292m-11.007 0C11.19 15.66 10.999 13.03 10.993 13V5a1 1 0 0 0-1-1h-6c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h3.078a2.9 2.9 0 0 1-.429 1.396c-.508.801-1.465 1.348-2.846 1.624l-.803.16V20h1c2.783 0 4.906-.771 6.309-2.292'/%3E%3C/svg%3E"); } .bxs-quote-single-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m15.203 6.98l.804-.161V4h-1c-2.784 0-4.906.771-6.309 2.292C6.81 8.34 7 10.97 7.006 11v8a1 1 0 0 0 1 1h7c1.103 0 2-.897 2-2v-7a1 1 0 0 0-1-1h-4.079c.022-.402.123-.912.429-1.396c.509-.801 1.466-1.347 2.847-1.624'/%3E%3C/svg%3E"); } .bxs-quote-single-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8.804 17.02L8 17.18V20h1c2.783 0 4.906-.771 6.309-2.292C17.196 15.66 17.006 13.03 17 13V5a1 1 0 0 0-1-1H9c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h4.078a2.9 2.9 0 0 1-.429 1.396c-.507.801-1.464 1.347-2.845 1.624'/%3E%3C/svg%3E"); } .bxs-radiation { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9.912 8.531L7.121 3.877a.5.5 0 0 0-.704-.166a9.98 9.98 0 0 0-4.396 7.604a.505.505 0 0 0 .497.528l5.421.09a4.04 4.04 0 0 1 1.973-3.402m8.109-4.51a.504.504 0 0 0-.729.151L14.499 8.83a4.03 4.03 0 0 1 1.546 3.112l5.419-.09a.507.507 0 0 0 .499-.53a10 10 0 0 0-3.942-7.301m-4.067 11.511a4 4 0 0 1-1.962.526a4 4 0 0 1-1.963-.526l-2.642 4.755a.5.5 0 0 0 .207.692A9.95 9.95 0 0 0 11.992 22a9.94 9.94 0 0 0 4.396-1.021a.5.5 0 0 0 .207-.692z'/%3E%3Ccircle cx='12' cy='12' r='3' fill='black'/%3E%3C/svg%3E"); } .bxs-radio { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.249 5.025l-7.897-2.962l-.703 1.873L14.484 5H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7c0-1.02-.766-1.851-1.751-1.975M10 17H6v-2h4zm6.5 1a2.5 2.5 0 1 1 0-5a2.5 2.5 0 0 1 0 5m3.5-7H4V7h16z'/%3E%3C/svg%3E"); } .bxs-receipt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 12v6a1 1 0 0 1-2 0V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v14c0 1.654 1.346 3 3 3h14c1.654 0 3-1.346 3-3v-6zm-6-1v2H6v-2zM6 9V7h8v2zm8 6v2h-3v-2z'/%3E%3C/svg%3E"); } .bxs-rectangle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 20h18a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1'/%3E%3C/svg%3E"); } .bxs-registered { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 9h-3v2h3a1 1 0 0 0 0-2'/%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m2.13 15l-2.67-4H10v4H8V7h5a3 3 0 0 1 .79 5.88L16.54 17z'/%3E%3C/svg%3E"); } .bxs-rename { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 5.995h-1v12h1c1.103 0 2-.897 2-2v-8c0-1.102-.897-2-2-2'/%3E%3Cpath fill='black' d='M17 17.995V4h2.995V2h-8v2H15v1.995H4c-1.103 0-2 .897-2 2v8c0 1.103.897 2 2 2h11V20h-3.005v2h8v-2H17zm-11-4v-4h9v4z'/%3E%3C/svg%3E"); } .bxs-report { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20 8l-6-6H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2zM9 19H7v-9h2zm4 0h-2v-6h2zm4 0h-2v-3h2zM14 9h-1V4l5 5z'/%3E%3C/svg%3E"); } .bxs-rewind-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.485 2 12s4.486 10 10 10s10-4.485 10-10S17.515 2 12 2m5 14l-6-4v4l-6-4l6-4v4l6-4z'/%3E%3C/svg%3E"); } .bxs-right-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.536 21.886a1 1 0 0 0 1.033-.064l13-9a1 1 0 0 0 0-1.644l-13-9A1 1 0 0 0 5 3v18a1 1 0 0 0 .536.886'/%3E%3C/svg%3E"); } .bxs-right-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m19 12l-7-6v5H6v2h6v5z'/%3E%3C/svg%3E"); } .bxs-right-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m0 15v-4H7v-2h5V7l5 5z'/%3E%3C/svg%3E"); } .bxs-right-arrow-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2m4 6h5V7l5 5l-5 5v-4H7z'/%3E%3C/svg%3E"); } .bxs-right-down-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.929 4.929c-3.898 3.899-3.898 10.244 0 14.143c3.899 3.898 10.243 3.898 14.143 0c3.898-3.899 3.898-10.244 0-14.143c-3.9-3.899-10.244-3.899-14.143 0m10.606 10.607h-7.07l2.828-2.829l-3.535-3.536l1.414-1.414l3.535 3.536l2.828-2.829z'/%3E%3C/svg%3E"); } .bxs-right-top-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.071 4.929c-3.899-3.898-10.243-3.898-14.143 0c-3.898 3.899-3.898 10.244 0 14.143c3.899 3.898 10.243 3.898 14.143 0c3.899-3.9 3.899-10.244 0-14.143m-3.536 10.607l-2.828-2.829l-3.535 3.536l-1.414-1.414l3.535-3.536l-2.828-2.829h7.07z'/%3E%3C/svg%3E"); } .bxs-rocket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15.78 15.84S18.64 13 19.61 12c3.07-3 1.54-9.18 1.54-9.18S15 1.29 12 4.36C9.66 6.64 8.14 8.22 8.14 8.22S4.3 7.42 2 9.72L14.25 22c2.3-2.33 1.53-6.16 1.53-6.16m-1.5-9a2 2 0 0 1 2.83 0a2 2 0 1 1-2.83 0M3 21a7.8 7.8 0 0 0 5-2l-3-3c-2 1-2 5-2 5'/%3E%3C/svg%3E"); } .bxs-ruler { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.875 7H3.125C1.953 7 1 7.897 1 9v6c0 1.103.953 2 2.125 2h17.75C22.047 17 23 16.103 23 15V9c0-1.103-.953-2-2.125-2M7 12H5V9h2zm4 1H9V9h2zm4-1h-2V9h2zm4 1h-2V9h2z'/%3E%3C/svg%3E"); } .bxs-sad { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5M8 17s1-3 4-3s4 3 4 3zm7.493-5.014a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987'/%3E%3C/svg%3E"); } .bxs-save { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14a2 2 0 0 0 2-2V8l-5-5H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2M7 5h4v2h2V5h2v4H7zm0 8h10v6H7z'/%3E%3C/svg%3E"); } .bxs-school { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 10h-2V4h1V2H4v2h1v6H3a1 1 0 0 0-1 1v9h20v-9a1 1 0 0 0-1-1m-7 8v-4h-4v4H7V4h10v14z'/%3E%3Cpath fill='black' d='M9 6h2v2H9zm4 0h2v2h-2zm-4 4h2v2H9zm4 0h2v2h-2z'/%3E%3C/svg%3E"); } .bxs-search { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 2c-4.411 0-8 3.589-8 8s3.589 8 8 8a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8'/%3E%3C/svg%3E"); } .bxs-search-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 16c1.763 0 3.37-.66 4.603-1.739l1.337 2.8s.275.224.653.596c.387.363.896.854 1.384 1.367l1.358 1.392l.604.646l2.121-2.121l-.646-.604l-1.392-1.358a35 35 0 0 1-1.367-1.384c-.372-.378-.596-.653-.596-.653l-2.8-1.337A6.97 6.97 0 0 0 16 9c0-3.859-3.141-7-7-7S2 5.141 2 9s3.141 7 7 7'/%3E%3C/svg%3E"); } .bxs-select-multiple { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-6.933 12.481l-3.274-3.274l1.414-1.414l1.726 1.726l4.299-5.159l1.537 1.281z'/%3E%3Cpath fill='black' d='M4 22h11v-2H4V8H2v12c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bxs-send { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.426 11.095l-17-8A1 1 0 0 0 3.03 4.242l1.212 4.849L12 12l-7.758 2.909l-1.212 4.849a.998.998 0 0 0 1.396 1.147l17-8a1 1 0 0 0 0-1.81'/%3E%3C/svg%3E"); } .bxs-server { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5 5h-2V6h2zm4 0h-2V6h2zm1 5H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2m-5 5h-2v-2h2zm4 0h-2v-2h2z'/%3E%3C/svg%3E"); } .bxs-shapes { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.867 2.504c-.355-.624-1.381-.623-1.736 0l-3.999 7A1 1 0 0 0 13 11h8a1 1 0 0 0 .868-1.496zM3 22h7a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1m14.5-9c-2.481 0-4.5 2.019-4.5 4.5s2.019 4.5 4.5 4.5s4.5-2.019 4.5-4.5s-2.019-4.5-4.5-4.5'/%3E%3C/svg%3E"); } .bxs-share { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 6.914V2.586L6.293 7.293l-3.774 3.774l3.841 3.201L11 18.135V13.9c8.146-.614 11 4.1 11 4.1c0-2.937-.242-5.985-2.551-8.293C16.765 7.022 12.878 6.832 11 6.914'/%3E%3C/svg%3E"); } .bxs-share-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 12c0 1.654 1.346 3 3 3c.794 0 1.512-.315 2.049-.82l5.991 3.424c-.018.13-.04.26-.04.396c0 1.654 1.346 3 3 3s3-1.346 3-3s-1.346-3-3-3c-.794 0-1.512.315-2.049.82L8.96 12.397c.018-.131.04-.261.04-.397s-.022-.266-.04-.397l5.991-3.423c.537.505 1.255.82 2.049.82c1.654 0 3-1.346 3-3s-1.346-3-3-3s-3 1.346-3 3c0 .136.022.266.04.397L8.049 9.82A2.98 2.98 0 0 0 6 9c-1.654 0-3 1.346-3 3'/%3E%3C/svg%3E"); } .bxs-shield { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.496 6.106l-7.973-4a1 1 0 0 0-.895-.002l-8.027 4c-.297.15-.502.437-.544.767c-.013.097-1.145 9.741 8.541 15.008a1 1 0 0 0 .969-.009c9.307-5.259 8.514-14.573 8.476-14.967a1 1 0 0 0-.547-.797'/%3E%3C/svg%3E"); } .bxs-shield-alt-2 { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.881 5.223a.496.496 0 0 0-.747-.412c-.672.392-1.718.898-2.643.898q-.63.002-1.289-.198a6 6 0 0 1-.808-.309c-1.338-.639-2.567-1.767-3.696-2.889a1 1 0 0 0-.698-.29a1 1 0 0 0-.698.29c-1.129 1.122-2.358 2.25-3.696 2.889h-.001a6 6 0 0 1-.807.309q-.66.2-1.289.198c-.925 0-1.971-.507-2.643-.898a.496.496 0 0 0-.747.412c-.061 1.538-.077 4.84.688 7.444c1.399 4.763 4.48 7.976 8.91 9.292l.14.041l.14-.014V22v-.014H12l.143.014l.14-.041c4.43-1.316 7.511-4.529 8.91-9.292c.765-2.604.748-5.906.688-7.444'/%3E%3C/svg%3E"); } .bxs-shield-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.43 5.76l-8-3.56a1 1 0 0 0-.82 0l-8 3.56a1 1 0 0 0-.59.9c0 2.37.44 10.8 8.51 15.11a1 1 0 0 0 1 0c8-4.3 8.58-12.71 8.57-15.1a1 1 0 0 0-.67-.91m-4.43 7H8v-2h8z'/%3E%3C/svg%3E"); } .bxs-shield-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.43 5.76l-8-3.56a1 1 0 0 0-.82 0l-8 3.56a1 1 0 0 0-.59.9c0 2.37.44 10.8 8.51 15.11a1 1 0 0 0 1 0c8-4.3 8.58-12.71 8.57-15.1a1 1 0 0 0-.67-.91m-4.43 7h-3v3h-2v-3H8v-2h3v-3h2v3h3z'/%3E%3C/svg%3E"); } .bxs-shield-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11.492 21.771c.294.157.663.157.957-.001c8.012-4.304 8.581-12.713 8.574-15.104a.99.99 0 0 0-.596-.903l-8.051-3.565a1 1 0 0 0-.813.001L3.57 5.765a.99.99 0 0 0-.592.891c-.034 2.379.445 10.806 8.514 15.115M8.293 9.707l1.414-1.414L12 10.586l2.293-2.293l1.414 1.414L13.414 12l2.293 2.293l-1.414 1.414L12 13.414l-2.293 2.293l-1.414-1.414L10.586 12z'/%3E%3C/svg%3E"); } .bxs-ship { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.997 20c-.899 0-1.288-.311-1.876-.781c-.68-.543-1.525-1.219-3.127-1.219s-2.446.676-3.125 1.22c-.587.469-.975.78-1.874.78c-.897 0-1.285-.311-1.872-.78C4.444 18.676 3.601 18 2 18v2c.898 0 1.286.311 1.873.78c.679.544 1.523 1.22 3.122 1.22c1.601 0 2.445-.676 3.124-1.219c.588-.47.976-.781 1.875-.781c.9 0 1.311.328 1.878.781c.679.543 1.524 1.219 3.125 1.219s2.446-.676 3.125-1.219C20.689 20.328 21.1 20 22 20v-2c-1.602 0-2.447.676-3.127 1.219c-.588.47-.977.781-1.876.781M6 8.5L4 9l2 8h.995c1.601 0 2.445-.676 3.124-1.219c.588-.47.976-.781 1.875-.781c.9 0 1.311.328 1.878.781c.679.543 1.524 1.219 3.125 1.219H18l.027-.107l.313-1.252L20 9l-2-.5V5.001a1 1 0 0 0-.804-.981L13 3.181V2h-2v1.181l-4.196.839A1 1 0 0 0 6 5.001zm2-2.681l4-.8l4 .8V8l-4-1l-4 1z'/%3E%3C/svg%3E"); } .bxs-shocked { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-5 8.5a1.5 1.5 0 1 1 3.001.001A1.5 1.5 0 0 1 7 10.5m5 7.5c-1.657 0-3-1.119-3-2.5s1.343-2.5 3-2.5s3 1.119 3 2.5s-1.343 2.5-3 2.5m3.493-6.014a1.494 1.494 0 1 1 .001-2.987a1.494 1.494 0 0 1-.001 2.987'/%3E%3C/svg%3E"); } .bxs-shopping-bag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 22h14a2 2 0 0 0 2-2V9a1 1 0 0 0-1-1h-3v-.777c0-2.609-1.903-4.945-4.5-5.198A5.005 5.005 0 0 0 7 7v1H4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2m12-12v2h-2v-2zM9 7c0-1.654 1.346-3 3-3s3 1.346 3 3v1H9zm-2 3h2v2H7z'/%3E%3C/svg%3E"); } .bxs-shopping-bag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 4H3a1 1 0 0 0-1 1v14a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a1 1 0 0 0-1-1m-9 9c-3.309 0-6-2.691-6-6h2c0 2.206 1.794 4 4 4s4-1.794 4-4h2c0 3.309-2.691 6-6 6'/%3E%3C/svg%3E"); } .bxs-shopping-bags { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 20h2V10a1 1 0 0 1 1-1h12V7a1 1 0 0 0-1-1h-3.051c-.252-2.244-2.139-4-4.449-4S6.303 3.756 6.051 6H3a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2m6.5-16c1.207 0 2.218.86 2.45 2h-4.9c.232-1.14 1.243-2 2.45-2'/%3E%3Cpath fill='black' d='M21 11H9a1 1 0 0 0-1 1v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a1 1 0 0 0-1-1m-6 7c-2.757 0-5-2.243-5-5h2c0 1.654 1.346 3 3 3s3-1.346 3-3h2c0 2.757-2.243 5-5 5'/%3E%3C/svg%3E"); } .bxs-show { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 5c-7.633 0-9.927 6.617-9.948 6.684L1.946 12l.105.316C2.073 12.383 4.367 19 12 19s9.927-6.617 9.948-6.684l.106-.316l-.105-.316C21.927 11.617 19.633 5 12 5m0 11c-2.206 0-4-1.794-4-4s1.794-4 4-4s4 1.794 4 4s-1.794 4-4 4'/%3E%3Cpath fill='black' d='M12 10c-1.084 0-2 .916-2 2s.916 2 2 2s2-.916 2-2s-.916-2-2-2'/%3E%3C/svg%3E"); } .bxs-shower { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 18.33A6.8 6.8 0 0 0 19.5 15a6.73 6.73 0 0 0-1.5 3.33a1.51 1.51 0 1 0 3 0m-10 2A6.8 6.8 0 0 0 9.5 17A6.73 6.73 0 0 0 8 20.33A1.59 1.59 0 0 0 9.5 22a1.59 1.59 0 0 0 1.5-1.67m5 0A6.8 6.8 0 0 0 14.5 17a6.73 6.73 0 0 0-1.5 3.33A1.59 1.59 0 0 0 14.5 22a1.59 1.59 0 0 0 1.5-1.67m-10-2A6.8 6.8 0 0 0 4.5 15A6.73 6.73 0 0 0 3 18.33A1.59 1.59 0 0 0 4.5 20A1.59 1.59 0 0 0 6 18.33M2 12h20v2H2zm11-7.93V2h-2v2.07A8 8 0 0 0 4.07 11h15.86A8 8 0 0 0 13 4.07'/%3E%3C/svg%3E"); } .bxs-skip-next-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m4 14h-2v-4l-6 4V8l6 4V8h2z'/%3E%3C/svg%3E"); } .bxs-skip-previous-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.515 2 12 2m4 14l-6-4v4H8V8h2v4l6-4z'/%3E%3C/svg%3E"); } .bxs-skull { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C5.505 2 2 6.637 2 11c0 2.129 1.009 3.979 3 5.508V21h3v-3h2v3h4v-3h2v3h3v-4.493c1.991-1.528 3-3.379 3-5.507c0-4.363-3.505-9-10-9M8 13c-1.121 0-2-1.098-2-2.5S6.879 8 8 8s2 1.098 2 2.5S9.121 13 8 13m8 0c-1.121 0-2-1.098-2-2.5S14.879 8 16 8s2 1.098 2 2.5s-.879 2.5-2 2.5'/%3E%3C/svg%3E"); } .bxs-sleepy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-4 9.01l-2-.02C6.017 9.386 7.095 7 10 7v2c-1.924 0-1.998 1.805-2 2.01M12 18c-1.657 0-3-1.119-3-2.5s1.343-2.5 3-2.5s3 1.119 3 2.5s-1.343 2.5-3 2.5m5-7l-1 .008C15.992 10.536 15.826 9 14 9V7c2.935 0 4 2.393 4 4z'/%3E%3C/svg%3E"); } .bxs-slideshow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h7v3H8v2h8v-2h-3v-3h7c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2M10 13V7l5 3z'/%3E%3C/svg%3E"); } .bxs-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10m3.493-13a1.494 1.494 0 1 1-.001 2.987A1.494 1.494 0 0 1 15.493 9m-4.301 6.919a4.1 4.1 0 0 0 1.616 0q.381-.079.75-.233c.234-.1.464-.224.679-.368q.313-.214.591-.489q.275-.274.489-.592l1.658 1.117a6 6 0 0 1-1.619 1.621a6 6 0 0 1-2.149.904a6.1 6.1 0 0 1-2.414-.001a5.9 5.9 0 0 1-2.148-.903a6.1 6.1 0 0 1-1.621-1.622l1.658-1.117q.216.318.488.59a4 4 0 0 0 2.022 1.093M8.5 9a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 9'/%3E%3C/svg%3E"); } .bxs-sort-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.227 11h11.547c.862 0 1.32-1.02.747-1.665L12.748 2.84a.998.998 0 0 0-1.494 0L5.479 9.335C4.906 9.98 5.364 11 6.227 11m5.026 10.159a.998.998 0 0 0 1.494 0l5.773-6.495c.574-.644.116-1.664-.747-1.664H6.227c-.862 0-1.32 1.02-.747 1.665z'/%3E%3C/svg%3E"); } .bxs-spa { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 16.114c-3.998-5.951-8.574-7.043-8.78-7.09L2 8.75V10c0 7.29 3.925 12 10 12c5.981 0 10-4.822 10-12V8.75l-1.22.274c-.206.047-4.782 1.139-8.78 7.09'/%3E%3Cpath fill='black' d='M11.274 3.767c-1.799 1.898-2.84 3.775-3.443 5.295c1.329.784 2.781 1.943 4.159 3.685c1.364-1.76 2.826-2.925 4.17-3.709c-.605-1.515-1.646-3.383-3.435-5.271L12 3z'/%3E%3C/svg%3E"); } .bxs-speaker { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='15' r='3' fill='black'/%3E%3Cpath fill='black' d='M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-6 2a2 2 0 1 1-2 2a2 2 0 0 1 2-2m0 16a5 5 0 1 1 5-5a5 5 0 0 1-5 5'/%3E%3C/svg%3E"); } .bxs-spray-can { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13.003 3h2v2h-2zM16 3h2v2h-2zm0 3h2v2h-2zm3-3h2v2h-2zm0 3h2v2h-2zm0 3h2v2h-2zM4.012 12v9a1 1 0 0 0 1 1H13a1 1 0 0 0 1-1v-9a4 4 0 0 0-4-4H8.012a4 4 0 0 0-4 4M7.003 2h4v4h-4z'/%3E%3C/svg%3E"); } .bxs-spreadsheet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 5v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2m7 2h8v2h-8zm0 4h8v2h-8zm0 4h8v2h-8zM6 7h2v2H6zm0 4h2v2H6zm0 4h2v2H6z'/%3E%3C/svg%3E"); } .bxs-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1'/%3E%3C/svg%3E"); } .bxs-square-rounded { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17 2H7C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5'/%3E%3C/svg%3E"); } .bxs-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.947 9.179a1 1 0 0 0-.868-.676l-5.701-.453l-2.467-5.461a.998.998 0 0 0-1.822-.001L8.622 8.05l-5.701.453a1 1 0 0 0-.619 1.713l4.213 4.107l-1.49 6.452a1 1 0 0 0 1.53 1.057L12 18.202l5.445 3.63a1.001 1.001 0 0 0 1.517-1.106l-1.829-6.4l4.536-4.082c.297-.268.406-.686.278-1.065'/%3E%3C/svg%3E"); } .bxs-star-half { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5.025 20.775A.998.998 0 0 0 6 22a1 1 0 0 0 .555-.168L12 18.202l5.445 3.63a1.001 1.001 0 0 0 1.517-1.106l-1.829-6.4l4.536-4.082a1 1 0 0 0-.59-1.74l-5.701-.454l-2.467-5.461a.998.998 0 0 0-1.822-.001L8.622 8.05l-5.701.453a1 1 0 0 0-.619 1.713l4.214 4.107zM12 5.429l2.042 4.521l.588.047h.001l3.972.315l-3.271 2.944l-.001.002l-.463.416l.171.597v.003l1.253 4.385L12 15.798z'/%3E%3C/svg%3E"); } .bxs-sticker { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.5 11c-4.136 0-7.5 3.364-7.5 7.5c0 .871.157 1.704.432 2.482l9.551-9.551A7.5 7.5 0 0 0 18.5 11'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12c0 4.583 3.158 8.585 7.563 9.69A9.4 9.4 0 0 1 9 18.5C9 13.262 13.262 9 18.5 9c1.12 0 2.191.205 3.19.563C20.585 5.158 16.583 2 12 2'/%3E%3C/svg%3E"); } .bxs-stopwatch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 5c-4.411 0-8 3.589-8 8s3.589 8 8 8s8-3.589 8-8s-3.589-8-8-8m1 8h-2V8h2zM9 2h6v2H9zm9.707 2.293l2 2l-1.414 1.414l-2-2z'/%3E%3C/svg%3E"); } .bxs-store { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.999 8a1 1 0 0 0-.143-.515L19.147 2.97A2.01 2.01 0 0 0 17.433 2H6.565c-.698 0-1.355.372-1.714.971L2.142 7.485A1 1 0 0 0 1.999 8c0 1.005.386 1.914 1 2.618V20a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-5h4v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-9.382c.614-.704 1-1.613 1-2.618m-2.016.251A2 2 0 0 1 17.999 10c-1.103 0-2-.897-2-2c0-.068-.025-.128-.039-.192l.02-.004L15.219 4h2.214zm-9.977-.186L10.818 4h2.361l.813 4.065C13.957 9.138 13.079 10 11.999 10s-1.958-.862-1.993-1.935M6.565 4h2.214l-.76 3.804l.02.004c-.015.064-.04.124-.04.192c0 1.103-.897 2-2 2a2 2 0 0 1-1.984-1.749zm3.434 12h-4v-3h4z'/%3E%3C/svg%3E"); } .bxs-store-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H5C3.346 2 2 3.346 2 5v2.831c0 1.053.382 2.01 1 2.746V20a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-5h4v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-9.424c.618-.735 1-1.692 1-2.746V5c0-1.654-1.346-3-3-3m1 3v2.831c0 1.14-.849 2.112-1.891 2.167L18 10c-1.103 0-2-.897-2-2V4h3c.552 0 1 .449 1 1M10 8V4h4v4c0 1.103-.897 2-2 2s-2-.897-2-2M4 5c0-.551.448-1 1-1h3v4c0 1.103-.897 2-2 2l-.109-.003C4.849 9.943 4 8.971 4 7.831zm6 11H6v-3h4z'/%3E%3C/svg%3E"); } .bxs-sun { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6.995 12c0 2.761 2.246 5.007 5.007 5.007s5.007-2.246 5.007-5.007s-2.246-5.007-5.007-5.007S6.995 9.239 6.995 12M11 19h2v3h-2zm0-17h2v3h-2zm-9 9h3v2H2zm17 0h3v2h-3zM5.637 19.778l-1.414-1.414l2.121-2.121l1.414 1.414zM16.242 6.344l2.122-2.122l1.414 1.414l-2.122 2.122zM6.344 7.759L4.223 5.637l1.415-1.414l2.12 2.122zm13.434 10.605l-1.414 1.414l-2.122-2.122l1.414-1.414z'/%3E%3C/svg%3E"); } .bxs-sushi { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cellipse cx='12.07' cy='7' fill='black' rx='3' ry='1.71'/%3E%3Cpath fill='black' d='M12.07 22c4.48 0 8-2.2 8-5V7c0-2.8-3.52-5-8-5s-8 2.2-8 5v10c0 2.8 3.51 5 8 5m0-18c3.53 0 6 1.58 6 3a2 2 0 0 1-.29.87c-.68 1-2.53 2-5 2.12h-1.39C8.88 9.83 7 8.89 6.35 7.84a2.2 2.2 0 0 1-.28-.76V7c0-1.42 2.46-3 6-3'/%3E%3C/svg%3E"); } .bxs-t-shirt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.316 4.055C19.556 3.478 15 1.985 15 2a3 3 0 1 1-6 0c0-.015-4.556 1.478-6.317 2.055A.99.99 0 0 0 2 5.003v3.716a1 1 0 0 0 1.242.97L6 9v12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V9l2.758.689A1 1 0 0 0 22 8.719V5.003a.99.99 0 0 0-.684-.948'/%3E%3C/svg%3E"); } .bxs-tachometer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 4C6.486 4 2 8.486 2 14a9.9 9.9 0 0 0 1.051 4.445c.17.34.516.555.895.555h16.107c.379 0 .726-.215.896-.555A9.9 9.9 0 0 0 22 14c0-5.514-4.486-10-10-10m5.022 5.022L13.06 15.06a1.53 1.53 0 0 1-2.121.44a1.53 1.53 0 0 1 0-2.561l6.038-3.962a.033.033 0 0 1 .045.01a.03.03 0 0 1 0 .035'/%3E%3C/svg%3E"); } .bxs-tag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.842 6.218a2 2 0 0 0-.424-.628A2 2 0 0 0 20 5H8c-.297 0-.578.132-.769.359l-5 6c-.309.371-.309.91 0 1.281l5 6c.191.228.472.36.769.36h12a1.98 1.98 0 0 0 1.41-.582A2 2 0 0 0 22 17V7q0-.398-.158-.782'/%3E%3C/svg%3E"); } .bxs-tag-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.868 11.504l-4-7A1 1 0 0 0 17 4H3a1 1 0 0 0-.868 1.496L5.849 12l-3.717 6.504A1 1 0 0 0 3 20h14a1 1 0 0 0 .868-.504l4-7a1 1 0 0 0 0-.992'/%3E%3C/svg%3E"); } .bxs-tag-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21.842 6.218a2 2 0 0 0-.424-.628A2 2 0 0 0 20 5H8c-.297 0-.578.132-.769.359l-5 6c-.309.371-.309.91 0 1.281l5 6c.191.228.472.36.769.36h12a1.98 1.98 0 0 0 1.41-.582A2 2 0 0 0 22 17V7q0-.398-.158-.782m-4.135 8.075l-1.414 1.414L14 13.414l-2.293 2.293l-1.414-1.414L12.586 12l-2.293-2.293l1.414-1.414L14 10.586l2.293-2.293l1.414 1.414L15.414 12z'/%3E%3C/svg%3E"); } .bxs-taxi { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20.772 10.155l-1.368-4.104A2.995 2.995 0 0 0 16.559 4H14V2h-4v2H7.441a2.995 2.995 0 0 0-2.845 2.051l-1.368 4.104A2 2 0 0 0 2 12v5c0 .738.404 1.376 1 1.723V21a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2h12v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2.277A1.99 1.99 0 0 0 22 17v-5a2 2 0 0 0-1.228-1.845M7.441 6h9.117c.431 0 .813.274.949.684L18.613 10H5.387l1.105-3.316A1 1 0 0 1 7.441 6M5.5 16a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 5.5 16m13 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 18.5 16'/%3E%3C/svg%3E"); } .bxs-tennis-ball { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.929 19.071a9.95 9.95 0 0 0 6.692 2.906c-.463-2.773.365-5.721 2.5-7.856c2.136-2.135 5.083-2.963 7.856-2.5c-.092-2.433-1.053-4.839-2.906-6.692s-4.26-2.814-6.692-2.906c.463 2.773-.365 5.721-2.5 7.856c-2.136 2.135-5.083 2.963-7.856 2.5a9.94 9.94 0 0 0 2.906 6.692'/%3E%3Cpath fill='black' d='M15.535 15.535a7 7 0 0 0-1.911 6.318a9.93 9.93 0 0 0 8.229-8.229a7 7 0 0 0-6.318 1.911m-7.07-7.07a7 7 0 0 0 1.911-6.318a9.93 9.93 0 0 0-8.23 8.229a7 7 0 0 0 6.319-1.911'/%3E%3C/svg%3E"); } .bxs-terminal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M6.414 15.707L5 14.293L7.293 12L5 9.707l1.414-1.414L10.121 12zM19 16h-7v-2h7z'/%3E%3C/svg%3E"); } .bxs-thermometer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M9 16a3.001 3.001 0 0 0 6 0c0-.353-.072-.686-.184-1H9.184A3 3 0 0 0 9 16'/%3E%3Cpath fill='black' d='M18 6V4h-3.185A2.995 2.995 0 0 0 12 2c-1.654 0-3 1.346-3 3v5.8A6.03 6.03 0 0 0 6 16c0 3.309 2.691 6 6 6s6-2.691 6-6a6.03 6.03 0 0 0-3-5.2V10h3V8h-3V6zm-4.405 6.324A4.03 4.03 0 0 1 16 16c0 2.206-1.794 4-4 4s-4-1.794-4-4c0-1.585.944-3.027 2.405-3.676l.595-.263V5a1 1 0 0 1 2 0v7.061z'/%3E%3C/svg%3E"); } .bxs-time { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12.25 2c-5.514 0-10 4.486-10 10s4.486 10 10 10s10-4.486 10-10s-4.486-10-10-10M18 13h-6.75V6h2v5H18z'/%3E%3C/svg%3E"); } .bxs-time-five { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m3.293 14.707L11 12.414V6h2v5.586l3.707 3.707z'/%3E%3C/svg%3E"); } .bxs-timer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 3h4v2h-4zM3 8h4v2H3zm0 8h4v2H3zm-1-4h3.99v2H2zm19.707-5.293l-1.414-1.414L18.586 7A6.94 6.94 0 0 0 15 6c-3.859 0-7 3.141-7 7s3.141 7 7 7s7-3.141 7-7a6.97 6.97 0 0 0-1.855-4.73zM16 14h-2V8.958h2z'/%3E%3C/svg%3E"); } .bxs-tired { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-6.447 9.105l2.459-1.229l-1.567-1.044l1.109-1.664l3 2a1 1 0 0 1-.108 1.727l-4 2zM8 17s1-3 4-3s4 3 4 3zm9.553-4.105l-4-2a1 1 0 0 1-.108-1.727l3-2l1.109 1.664l-1.566 1.044l2.459 1.229z'/%3E%3C/svg%3E"); } .bxs-to-top { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 15h4v6h6v-6h4l-7-8zM4 3h16v2H4z'/%3E%3C/svg%3E"); } .bxs-toggle-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 6H8c-3.296 0-5.982 2.682-6 5.986v.042A6.01 6.01 0 0 0 8 18h8a6.01 6.01 0 0 0 6-5.994v-.018C21.985 8.685 19.297 6 16 6m-8 9c-1.627 0-3-1.373-3-3s1.373-3 3-3s3 1.373 3 3s-1.373 3-3 3'/%3E%3C/svg%3E"); } .bxs-toggle-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 6H8c-3.296 0-5.982 2.682-6 5.986v.042A6.01 6.01 0 0 0 8 18h8c3.309 0 6-2.691 6-6s-2.691-6-6-6m0 9c-1.627 0-3-1.373-3-3s1.373-3 3-3s3 1.373 3 3s-1.373 3-3 3'/%3E%3C/svg%3E"); } .bxs-tone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m-1 9H4.069a8 8 0 0 1 .52-2H11zm0 4H4.589a8 8 0 0 1-.52-2H11zm0-10.931V7H5.765A8 8 0 0 1 11 4.069M5.765 17H11v2.931A8 8 0 0 1 5.765 17'/%3E%3C/svg%3E"); } .bxs-torch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 11.648V20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-8.352c1.067-.552 3-1.928 3-4.648V5H5v2c0 2.72 1.933 4.096 3 4.648M11 11h2v3h-2zM5 2h14v2H5z'/%3E%3C/svg%3E"); } .bxs-traffic { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m2.958 16l.043 1.042c.005.12.142 2.255 2.999 3.338v1.12a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5v-1.12c2.857-1.083 2.994-3.218 2.999-3.338L21.043 16H18v-1.62c2.857-1.083 2.994-3.218 2.999-3.338L21.043 10H18V8.38c2.857-1.083 2.994-3.218 2.999-3.338L21.043 4H18V2.5a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5V4H2.958l.043 1.042c.005.12.142 2.255 2.999 3.338V10H2.958l.043 1.042c.005.12.142 2.255 2.999 3.338V16zM12 4a2 2 0 1 1-.001 4.001A2 2 0 0 1 12 4m0 6a2 2 0 1 1-.001 4.001A2 2 0 0 1 12 10m0 6a2 2 0 1 1-.001 4.001A2 2 0 0 1 12 16'/%3E%3C/svg%3E"); } .bxs-traffic-barrier { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 6h-2V3h-2v3H7V3H5v3H3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h2v6h2v-6h10v6h2v-6h2a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1M4.42 13l2.857-5H9.58l-2.857 5zm7.857-5h2.303l-2.857 5H9.42zm5 0h2.303l-2.857 5H14.42z'/%3E%3C/svg%3E"); } .bxs-traffic-cone { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.649 16H5.352l-1.06 3H2v2h20v-2h-2.292zM6.057 14h11.886l-1.412-4H7.469zM13 2h-2a1 1 0 0 0-.943.667L8.175 8h7.65l-1.882-5.333A1 1 0 0 0 13 2'/%3E%3C/svg%3E"); } .bxs-train { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16.375 2H7.621c-.224 0-1.399.065-2.503 1.351C4.031 4.616 4 5.862 4 6v11a2 2 0 0 0 2 2h1l-2 3h2.353l.667-1h8l.677 1H19l-2-3h1a2 2 0 0 0 2-2V6c.001-.188-.032-1.434-1.129-2.665C17.715 2.037 16.509 2 16.375 2M10 4h4v2h-4zM7.5 17a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 7.5 17m9 0a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 16.5 17m1.5-5H6V8h12z'/%3E%3C/svg%3E"); } .bxs-trash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 7H5v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7zm4 12H8v-9h2zm6 0h-2v-9h2zm.618-15L15 2H9L7.382 4H3v2h18V4z'/%3E%3C/svg%3E"); } .bxs-trash-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 7H5v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7zm10.618-3L15 2H9L7.382 4H3v2h18V4z'/%3E%3C/svg%3E"); } .bxs-tree { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m20 18l-4-5h3l-4-5h2l-5-6l-5 6h2l-4 5h3l-4 5h7v4h2v-4z'/%3E%3C/svg%3E"); } .bxs-tree-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m18 10l-6-8l-6 8h3l-5 8h7v4h2v-4h7l-5-8z'/%3E%3C/svg%3E"); } .bxs-trophy { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 4h-3V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v1H3a1 1 0 0 0-1 1v3c0 4.31 1.8 6.91 4.82 7A6 6 0 0 0 11 17.91V20H9v2h6v-2h-2v-2.09A6 6 0 0 0 17.18 15c3-.1 4.82-2.7 4.82-7V5a1 1 0 0 0-1-1M4 8V6h2v6.83C4.22 12.08 4 9.3 4 8m14 4.83V6h2v2c0 1.3-.22 4.08-2 4.83'/%3E%3C/svg%3E"); } .bxs-truck { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.15 8a2 2 0 0 0-1.72-1H15V5a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v10a2 2 0 0 0 1 1.73a3.49 3.49 0 0 0 7 .27h3.1a3.48 3.48 0 0 0 6.9 0a2 2 0 0 0 2-2v-3a1.1 1.1 0 0 0-.14-.52zM15 9h2.43l1.8 3H15zM6.5 19A1.5 1.5 0 1 1 8 17.5A1.5 1.5 0 0 1 6.5 19m10 0a1.5 1.5 0 1 1 1.5-1.5a1.5 1.5 0 0 1-1.5 1.5'/%3E%3C/svg%3E"); } .bxs-tv { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 6h-5.586l2.293-2.293l-1.414-1.414L12 5.586L8.707 2.293L7.293 3.707L9.586 6H4c-1.103 0-2 .897-2 2v11c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V8c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bxs-universal-access { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2m0 3.33A1.67 1.67 0 1 1 10.33 7A1.67 1.67 0 0 1 12 5.33m3.33 12.5l-1.66.84l-1.39-3.89h-.56l-1.39 3.89l-1.66-.84l1.66-4.72v-1.66L7 10.33l.56-1.66l3.33 1.11h2.22l3.33-1.11l.56 1.66l-3.33 1.12v1.66z'/%3E%3C/svg%3E"); } .bxs-up-arrow { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M3 19h18a1.002 1.002 0 0 0 .823-1.569l-9-13c-.373-.539-1.271-.539-1.645 0l-9 13A.999.999 0 0 0 3 19'/%3E%3C/svg%3E"); } .bxs-up-arrow-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 18v-6h5l-6-7l-6 7h5v6z'/%3E%3C/svg%3E"); } .bxs-up-arrow-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2S2 6.486 2 12s4.486 10 10 10m0-15l5 5h-4v5h-2v-5H7z'/%3E%3C/svg%3E"); } .bxs-up-arrow-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M5 21h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2m7-14l5 5h-4v5h-2v-5H7z'/%3E%3C/svg%3E"); } .bxs-upside-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M8.507 15a1.494 1.494 0 1 1 .001-2.987A1.494 1.494 0 0 1 8.507 15m4.301-6.919a4.1 4.1 0 0 0-1.616 0a4 4 0 0 0-.751.233c-.234.1-.463.224-.678.368a4.1 4.1 0 0 0-1.08 1.082L7.024 8.646a6.03 6.03 0 0 1 2.639-2.175a6 6 0 0 1 1.128-.35a6.1 6.1 0 0 1 2.415 0a5.9 5.9 0 0 1 2.148.903a6.1 6.1 0 0 1 1.621 1.622l-1.658 1.117a4 4 0 0 0-.488-.59a4 4 0 0 0-2.021-1.092M15.5 15a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 15.5 15'/%3E%3C/svg%3E"); } .bxs-upvote { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 14h4v7a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-7h4a1.001 1.001 0 0 0 .781-1.625l-8-10c-.381-.475-1.181-.475-1.562 0l-8 10A1.001 1.001 0 0 0 4 14'/%3E%3C/svg%3E"); } .bxs-user { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7.5 6.5C7.5 8.981 9.519 11 12 11s4.5-2.019 4.5-4.5S14.481 2 12 2S7.5 4.019 7.5 6.5M20 21h1v-1c0-3.859-3.141-7-7-7h-4c-3.86 0-7 3.141-7 7v1z'/%3E%3C/svg%3E"); } .bxs-user-account { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-6 2.5a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5M19 15H9v-.25C9 12.901 11.254 11 14 11s5 1.901 5 3.75z'/%3E%3Cpath fill='black' d='M4 8H2v12c0 1.103.897 2 2 2h12v-2H4z'/%3E%3C/svg%3E"); } .bxs-user-badge { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M17.988 22a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zM9 5h6v2H9zm5.25 6.25A2.26 2.26 0 0 1 12 13.501c-1.235 0-2.25-1.015-2.25-2.251S10.765 9 12 9a2.26 2.26 0 0 1 2.25 2.25M7.5 18.188c0-1.664 2.028-3.375 4.5-3.375s4.5 1.711 4.5 3.375v.563h-9z'/%3E%3C/svg%3E"); } .bxs-user-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 12.052c1.995 0 3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5s1.505 3.5 3.5 3.5M9 13H7c-2.757 0-5 2.243-5 5v1h12v-1c0-2.757-2.243-5-5-5m11.294-4.708l-4.3 4.292l-1.292-1.292l-1.414 1.414l2.706 2.704l5.712-5.702z'/%3E%3C/svg%3E"); } .bxs-user-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.579 2 2 6.579 2 12s4.579 10 10 10s10-4.579 10-10S17.421 2 12 2m0 5c1.727 0 3 1.272 3 3s-1.273 3-3 3c-1.726 0-3-1.272-3-3s1.274-3 3-3m-5.106 9.772c.897-1.32 2.393-2.2 4.106-2.2h2c1.714 0 3.209.88 4.106 2.2C15.828 18.14 14.015 19 12 19s-3.828-.86-5.106-2.228'/%3E%3C/svg%3E"); } .bxs-user-detail { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M15 11h7v2h-7zm1 4h6v2h-6zm-2-8h8v2h-8zM4 19h10v-1c0-2.757-2.243-5-5-5H7c-2.757 0-5 2.243-5 5v1zm4-7c1.995 0 3.5-1.505 3.5-3.5S9.995 5 8 5S4.5 6.505 4.5 8.5S6.005 12 8 12'/%3E%3C/svg%3E"); } .bxs-user-minus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 11h8v2h-8zM4.5 8.552c0 1.995 1.505 3.5 3.5 3.5s3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5M4 19h10v-1c0-2.757-2.243-5-5-5H7c-2.757 0-5 2.243-5 5v1z'/%3E%3C/svg%3E"); } .bxs-user-pin { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19 2H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h4l3 3l3-3h4a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-7 3c1.727 0 3 1.272 3 3s-1.273 3-3 3c-1.726 0-3-1.272-3-3s1.274-3 3-3M7.177 16c.558-1.723 2.496-3 4.823-3s4.266 1.277 4.823 3z'/%3E%3C/svg%3E"); } .bxs-user-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4.5 8.552c0 1.995 1.505 3.5 3.5 3.5s3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5M19 8h-2v3h-3v2h3v3h2v-3h3v-2h-3zM4 19h10v-1c0-2.757-2.243-5-5-5H7c-2.757 0-5 2.243-5 5v1z'/%3E%3C/svg%3E"); } .bxs-user-rectangle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M6 22h13a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zm6-17.001c1.647 0 3 1.351 3 3C15 9.647 13.647 11 12 11S9 9.647 9 7.999c0-1.649 1.353-3 3-3M6 17.25c0-2.219 2.705-4.5 6-4.5s6 2.281 6 4.5V18H6z'/%3E%3C/svg%3E"); } .bxs-user-voice { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 12.052c1.995 0 3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5s1.505 3.5 3.5 3.5M9 13H7c-2.757 0-5 2.243-5 5v1h12v-1c0-2.757-2.243-5-5-5m9.364-10.364L16.95 4.05C18.271 5.373 19 7.131 19 9s-.729 3.627-2.05 4.95l1.414 1.414C20.064 13.663 21 11.403 21 9s-.936-4.663-2.636-6.364'/%3E%3Cpath fill='black' d='M15.535 5.464L14.121 6.88C14.688 7.445 15 8.198 15 9s-.312 1.555-.879 2.12l1.414 1.416C16.479 11.592 17 10.337 17 9s-.521-2.592-1.465-3.536'/%3E%3C/svg%3E"); } .bxs-user-x { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M8 12.052c1.995 0 3.5-1.505 3.5-3.5s-1.505-3.5-3.5-3.5s-3.5 1.505-3.5 3.5s1.505 3.5 3.5 3.5M9 13H7c-2.757 0-5 2.243-5 5v1h12v-1c0-2.757-2.243-5-5-5m11.293-4.707L18 10.586l-2.293-2.293l-1.414 1.414l2.292 2.292l-2.293 2.293l1.414 1.414l2.293-2.293l2.294 2.294l1.414-1.414L19.414 12l2.293-2.293z'/%3E%3C/svg%3E"); } .bxs-vector { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.277 8c.347.596.985 1 1.723 1a2 2 0 0 0 0-4c-.738 0-1.376.404-1.723 1H16V4a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v2H5.723C5.376 5.404 4.738 5 4 5a2 2 0 0 0 0 4c.738 0 1.376-.404 1.723-1H8v.368C5.134 9.839 4.319 12.534 4.092 14H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-.877c.197-.959.718-2.406 2.085-3.418A.98.98 0 0 0 9 11h6a.98.98 0 0 0 .792-.419c1.373 1.013 1.895 2.458 2.089 3.419H17a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1h-1.092c-.227-1.466-1.042-4.161-3.908-5.632V8zM14 9h-4V5h4z'/%3E%3C/svg%3E"); } .bxs-vial { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M7 22a4.97 4.97 0 0 0 3.535-1.465l9.193-9.193l.707.708l1.414-1.414l-8.485-8.486l-1.414 1.414l.708.707l-9.193 9.193C2.521 14.408 2 15.664 2 17s.521 2.592 1.465 3.535A4.97 4.97 0 0 0 7 22M18.314 9.928L15.242 13H6.758l7.314-7.314z'/%3E%3C/svg%3E"); } .bxs-video { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 7c0-1.103-.897-2-2-2H4c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-3.333L22 17V7l-4 3.333z'/%3E%3C/svg%3E"); } .bxs-video-off { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 19h10.879L2.145 6.265A2 2 0 0 0 2 7v10c0 1.103.897 2 2 2M18 7c0-1.103-.897-2-2-2H6.414L3.707 2.293L2.293 3.707l18 18l1.414-1.414L18 16.586v-2.919L22 17V7l-4 3.333z'/%3E%3C/svg%3E"); } .bxs-video-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-3.333L22 17V7l-4 3.333zm-4 6h-3v3H9v-3H6v-2h3V8h2v3h3z'/%3E%3C/svg%3E"); } .bxs-video-recording { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 9c0-1.103-.897-2-2-2h-1.434l-2.418-4.029A2.01 2.01 0 0 0 10.434 2H5v2h5.434l1.8 3H4c-1.103 0-2 .897-2 2v9c0 1.103.897 2 2 2h12c1.103 0 2-.897 2-2v-3l4 2v-7l-4 2zm-7 8H5v-2h6z'/%3E%3C/svg%3E"); } .bxs-videos { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 8H2v12a2 2 0 0 0 2 2h12v-2H4z'/%3E%3Cpath fill='black' d='M20 2H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-9 12V6l7 4z'/%3E%3C/svg%3E"); } .bxs-virus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 11h-.17c-1.053 0-1.958-.669-2.357-1.644l-.021-.049c-.408-.977-.249-2.097.5-2.846l.119-.119a.999.999 0 1 0-1.414-1.414l-.119.119c-.749.749-1.869.908-2.846.5l-.049-.021C13.669 5.128 13 4.218 13 3.165v-.081C13 2.447 12.553 2 12 2s-1 .447-1 1v.036c0 1.096-.66 2.084-1.673 2.503l-.006.003a2.71 2.71 0 0 1-2.953-.588l-.025-.025a.999.999 0 1 0-1.414 1.414l.036.036a2.69 2.69 0 0 1 .583 2.929l-.027.064A2.64 2.64 0 0 1 3.085 11h-.001C2.447 11 2 11.447 2 12s.447 1 1 1h.068a2.66 2.66 0 0 1 2.459 1.644l.021.049a2.69 2.69 0 0 1-.583 2.929l-.036.036a.999.999 0 1 0 1.414 1.414l.036-.036a2.69 2.69 0 0 1 2.929-.583l.143.06A2.505 2.505 0 0 1 11 20.83v.085c0 .638.447 1.085 1 1.085s1-.448 1-1v-.17c0-1.015.611-1.93 1.55-2.318l.252-.104a2.51 2.51 0 0 1 2.736.545l.119.119a.999.999 0 1 0 1.414-1.414l-.119-.119c-.749-.749-.908-1.869-.5-2.846l.021-.049c.399-.975 1.309-1.644 2.362-1.644h.08c.638 0 1.085-.447 1.085-1s-.447-1-1-1M8 13a1 1 0 1 1 0-2a1 1 0 0 1 0 2m5 3.5a1 1 0 1 1 0-2a1 1 0 0 1 0 2m1-4.5a2 2 0 1 1 .001-4.001A2 2 0 0 1 14 12'/%3E%3C/svg%3E"); } .bxs-virus-block { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18.952 17.538c-.749-.749-.908-1.869-.5-2.846l.021-.049c.399-.974 1.309-1.643 2.362-1.643h.08c.638 0 1.085-.447 1.085-1s-.447-1-1-1h-.17c-1.053 0-1.958-.669-2.357-1.644l-.021-.049c-.408-.977-.249-2.097.5-2.846l.119-.119a.999.999 0 1 0-1.414-1.414l-.119.119c-.749.749-1.869.908-2.846.5l-.049-.021C13.669 5.128 13 4.218 13 3.165v-.081C13 2.447 12.553 2 12 2s-1 .447-1 1v.036c0 1.096-.66 2.084-1.673 2.503l-.006.003a2.71 2.71 0 0 1-2.953-.588l-.025-.025l-2.636-2.636l-1.414 1.414l18 18l1.414-1.414l-2.636-2.636zM12 10a2 2 0 1 1 2 2c-.257 0-.501-.053-.728-.142l-1.131-1.131A2 2 0 0 1 12 10m-4 3a1 1 0 0 1-1-1a1 1 0 0 1 .244-.635L5.431 9.552A2.63 2.63 0 0 1 3.085 11h-.001C2.447 11 2 11.447 2 12s.447 1 1 1h.068a2.66 2.66 0 0 1 2.459 1.644l.021.049a2.69 2.69 0 0 1-.583 2.929l-.036.036a.999.999 0 1 0 1.414 1.414l.036-.036a2.69 2.69 0 0 1 2.929-.583l.143.06A2.505 2.505 0 0 1 11 20.83v.085c0 .638.447 1.085 1 1.085s1-.448 1-1v-.17c0-.976.568-1.853 1.443-2.266l-5.809-5.809A.98.98 0 0 1 8 13'/%3E%3C/svg%3E"); } .bxs-volume { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 17h2.697L14 21.868V2.132L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bxs-volume-full { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M16 21c3.527-1.547 5.999-4.909 5.999-9S19.527 4.547 16 3v2c2.387 1.386 3.999 4.047 3.999 7S18.387 17.614 16 19z'/%3E%3Cpath fill='black' d='M16 7v10c1.225-1.1 2-3.229 2-5s-.775-3.9-2-5M4 17h2.697L14 21.868V2.132L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bxs-volume-low { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 17h2.697L14 21.868V2.132L6.697 7H4c-1.103 0-2 .897-2 2v6c0 1.103.897 2 2 2M16 7v10c1.225-1.1 2-3.229 2-5s-.775-3.9-2-5'/%3E%3C/svg%3E"); } .bxs-volume-mute { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m7.727 6.313l-4.02-4.02l-1.414 1.414l18 18l1.414-1.414l-2.02-2.02A9.58 9.58 0 0 0 21.999 12c0-4.091-2.472-7.453-5.999-9v2c2.387 1.386 3.999 4.047 3.999 7a8.13 8.13 0 0 1-1.671 4.914l-1.286-1.286C17.644 14.536 18 13.19 18 12c0-1.771-.775-3.9-2-5v7.586l-2-2V2.132zM4 17h2.697L14 21.868v-3.747L3.102 7.223A2 2 0 0 0 2 9v6c0 1.103.897 2 2 2'/%3E%3C/svg%3E"); } .bxs-wallet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 7V5c0-1.103-.897-2-2-2H5C3.346 3 2 4.346 2 6v12c0 2.201 1.794 3 3 3h15c1.103 0 2-.897 2-2V9c0-1.103-.897-2-2-2m-2 9h-2v-4h2zM5 7a1.001 1.001 0 0 1 0-2h13v2z'/%3E%3C/svg%3E"); } .bxs-wallet-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 9h8v6h-8z'/%3E%3Cpath fill='black' d='M20 3H5C3.346 3 2 4.346 2 6v12c0 1.654 1.346 3 3 3h15c1.103 0 2-.897 2-2v-2h-8c-1.103 0-2-.897-2-2V9c0-1.103.897-2 2-2h8V5c0-1.103-.897-2-2-2'/%3E%3C/svg%3E"); } .bxs-washer { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 22h16a1 1 0 0 0 1-1V5c0-1.654-1.346-3-3-3H6C4.346 2 3 3.346 3 5v16a1 1 0 0 0 1 1M18 3.924a1 1 0 1 1 0 2a1 1 0 0 1 0-2m-3 0a1 1 0 1 1 0 2a1 1 0 0 1 0-2M12 7c3.309 0 6 2.691 6 6s-2.691 6-6 6s-6-2.691-6-6s2.691-6 6-6'/%3E%3Cpath fill='black' d='M12.766 16.929c1.399-.261 2.571-1.315 3.023-2.665a3.85 3.85 0 0 0-.153-2.893a.48.48 0 0 0-.544-.266c-.604.149-1.019.448-1.5.801c-.786.577-1.765 1.294-3.592 1.294c-.813 0-1.45-.146-1.984-.354l-.013.009a4.006 4.006 0 0 0 4.763 4.074'/%3E%3C/svg%3E"); } .bxs-watch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M13 8h-2v5h5v-2h-3z'/%3E%3Cpath fill='black' d='M19.999 12c0-2.953-1.612-5.53-3.999-6.916V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v2.083C5.613 6.469 4.001 9.047 4.001 12a8 8 0 0 0 4.136 7H8v2.041a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V19h-.139a8 8 0 0 0 4.138-7m-8 5.999A6.005 6.005 0 0 1 6.001 12a6.005 6.005 0 0 1 5.998-5.999c3.31 0 6 2.691 6 5.999a6.005 6.005 0 0 1-6 5.999'/%3E%3C/svg%3E"); } .bxs-watch-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M18 8c0-.909-.613-1.67-1.445-1.912l-1.31-3.443A1 1 0 0 0 14.311 2H8.689a1 1 0 0 0-.934.645l-1.31 3.443A2 2 0 0 0 5 8v8c0 .909.613 1.67 1.445 1.912l1.31 3.443a1 1 0 0 0 .934.645h5.621c.415 0 .787-.257.935-.645l1.31-3.443A2 2 0 0 0 18 16v-2h1v-4h-1zm-1.998 8H7V8h9z'/%3E%3C/svg%3E"); } .bxs-webcam { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2c-4.963 0-9 4.037-9 9c0 3.328 1.82 6.232 4.513 7.79l-2.067 1.378A1 1 0 0 0 6 22h12a1 1 0 0 0 .555-1.832l-2.067-1.378C19.18 17.232 21 14.328 21 11c0-4.963-4.037-9-9-9m0 16c-3.859 0-7-3.141-7-7s3.141-7 7-7s7 3.141 7 7s-3.141 7-7 7'/%3E%3Cpath fill='black' d='M12 6c-2.757 0-5 2.243-5 5s2.243 5 5 5s5-2.243 5-5s-2.243-5-5-5m-1.5 5a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 10.5 11'/%3E%3C/svg%3E"); } .bxs-widget { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M4 11h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m0 10h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m10 0h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1m7.293-14.707l-3.586-3.586a1 1 0 0 0-1.414 0l-3.586 3.586a1 1 0 0 0 0 1.414l3.586 3.586a1 1 0 0 0 1.414 0l3.586-3.586a1 1 0 0 0 0-1.414'/%3E%3C/svg%3E"); } .bxs-window-alt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20 3H4c-1.103 0-2 .897-2 2v14c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V5c0-1.103-.897-2-2-2m-3 3h2v2h-2zm-3 0h2v2h-2zM4 19v-9h16.001l.001 9z'/%3E%3C/svg%3E"); } .bxs-wine { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M11 17.916V20H9v2h6v-2h-2v-2.084c3.162-.402 5.849-2.66 6.713-5.793c.264-.952.312-2.03.143-3.206l-.866-6.059A1 1 0 0 0 18 2H6a1 1 0 0 0-.99.858l-.865 6.058c-.169 1.177-.121 2.255.143 3.206c.863 3.134 3.55 5.392 6.712 5.794M17.133 4l.57 4H6.296l.571-4z'/%3E%3C/svg%3E"); } .bxs-wink-smile { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2M8.5 9a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 8.5 9m7.741 7.244a6 6 0 0 1-3.034 1.634a6.04 6.04 0 0 1-3.541-.349a6 6 0 0 1-2.642-2.176l1.658-1.117q.216.318.488.59a4 4 0 0 0 1.273.86q.366.154.749.232a4.1 4.1 0 0 0 1.616 0q.381-.079.75-.233c.234-.1.464-.224.679-.368q.313-.214.591-.489q.275-.274.489-.592l1.658 1.117c-.214.32-.461.62-.734.891M13 12s.5-2 2.5-2s2.5 2 2.5 2z'/%3E%3C/svg%3E"); } .bxs-wink-tongue { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M14 19v-4h-4v4c0 1.103.897 2 2 2s2-.897 2-2'/%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12c0 4.434 2.903 8.198 6.906 9.505A3.97 3.97 0 0 1 8 19v-2.499C6.412 15.027 6 13 6 13h12s-.411 2.027-2 3.501V19c0 .953-.349 1.816-.906 2.504C19.097 20.197 22 16.434 22 12c0-5.514-4.486-10-10-10m-3.5 9a1.5 1.5 0 1 1 .001-3.001A1.5 1.5 0 0 1 8.5 11m4.5 0s.5-2 2.5-2s2.5 2 2.5 2z'/%3E%3C/svg%3E"); } .bxs-wrench { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='m21.512 6.112l-3.89 3.889l-3.535-3.536l3.889-3.889a6.501 6.501 0 0 0-8.484 8.486l-6.276 6.275a1 1 0 0 0 0 1.414l2.122 2.122a1 1 0 0 0 1.414 0l6.275-6.276a6.5 6.5 0 0 0 7.071-1.414a6.5 6.5 0 0 0 1.414-7.071'/%3E%3C/svg%3E"); } .bxs-x-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10s10-4.486 10-10S17.514 2 12 2m4.207 12.793l-1.414 1.414L12 13.414l-2.793 2.793l-1.414-1.414L10.586 12L7.793 9.207l1.414-1.414L12 10.586l2.793-2.793l1.414 1.414L13.414 12z'/%3E%3C/svg%3E"); } .bxs-x-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M21 5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2zm-4.793 9.793l-1.414 1.414L12 13.414l-2.793 2.793l-1.414-1.414L10.586 12L7.793 9.207l1.414-1.414L12 10.586l2.793-2.793l1.414 1.414L13.414 12z'/%3E%3C/svg%3E"); } .bxs-yin-yang { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M19.062 4.938A9.94 9.94 0 0 0 12.016 2h-.026a9.94 9.94 0 0 0-7.071 2.938c-3.898 3.898-3.898 10.243 0 14.143c1.895 1.895 4.405 2.938 7.071 2.938s5.177-1.043 7.071-2.938c3.9-3.899 3.9-10.243.001-14.143M13.5 15a1.5 1.5 0 1 1-.001 3.001A1.5 1.5 0 0 1 13.5 15M6.333 6.353A7.95 7.95 0 0 1 11.99 4l.026.001c1.652.008 3.242 1.066 3.55 2.371c.366 1.552-1.098 3.278-4.018 4.737c-5.113 2.555-5.312 5.333-4.975 6.762l.008.021c-.082-.075-.169-.146-.249-.226c-3.118-3.119-3.118-8.194.001-11.313'/%3E%3Ccircle cx='10.5' cy='7.5' r='1.5' fill='black'/%3E%3C/svg%3E"); } .bxs-zap { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M20.98 11.802a1 1 0 0 0-.738-.771l-6.86-1.716l2.537-5.921a1 1 0 0 0-.317-1.192a.996.996 0 0 0-1.234.024l-11 9a1 1 0 0 0 .39 1.744l6.719 1.681l-3.345 5.854A1 1 0 0 0 8 22a1 1 0 0 0 .6-.2l12-9a1 1 0 0 0 .38-.998'/%3E%3C/svg%3E"); } .bxs-zoom-in { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 2c-4.411 0-8 3.589-8 8s3.589 8 8 8a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8m4 9h-3v3H9v-3H6V9h3V6h2v3h3z'/%3E%3C/svg%3E"); } .bxs-zoom-out { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='black' d='M10 18a7.95 7.95 0 0 0 4.897-1.688l4.396 4.396l1.414-1.414l-4.396-4.396A7.95 7.95 0 0 0 18 10c0-4.411-3.589-8-8-8s-8 3.589-8 8s3.589 8 8 8M6 9h8v2H6z'/%3E%3C/svg%3E"); } ================================================ FILE: assets/vendor/js/bootstrap.js ================================================ !function(e,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n();else if("function"==typeof define&&define.amd)define([],n);else{var t=n();for(var r in t)("object"==typeof exports?exports:e)[r]=t[r]}}(self,(function(){return function(){"use strict";var __webpack_modules__={"./node_modules/@popperjs/core/lib/createPopper.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ createPopper: function() { return /* binding */ createPopper; },\n/* harmony export */ detectOverflow: function() { return /* reexport safe */ _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_8__["default"]; },\n/* harmony export */ popperGenerator: function() { return /* binding */ popperGenerator; }\n/* harmony export */ });\n/* harmony import */ var _dom_utils_getCompositeRect_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./dom-utils/getCompositeRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js");\n/* harmony import */ var _dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./dom-utils/getLayoutRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js");\n/* harmony import */ var _dom_utils_listScrollParents_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./dom-utils/listScrollParents.js */ "./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js");\n/* harmony import */ var _dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./dom-utils/getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js");\n/* harmony import */ var _utils_orderModifiers_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/orderModifiers.js */ "./node_modules/@popperjs/core/lib/utils/orderModifiers.js");\n/* harmony import */ var _utils_debounce_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./utils/debounce.js */ "./node_modules/@popperjs/core/lib/utils/debounce.js");\n/* harmony import */ var _utils_mergeByName_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/mergeByName.js */ "./node_modules/@popperjs/core/lib/utils/mergeByName.js");\n/* harmony import */ var _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./utils/detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js");\n/* harmony import */ var _dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dom-utils/instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n\n\n\n\n\n\n\n\n\nvar DEFAULT_OPTIONS = {\n placement: \'bottom\',\n modifiers: [],\n strategy: \'absolute\'\n};\n\nfunction areValidElements() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return !args.some(function (element) {\n return !(element && typeof element.getBoundingClientRect === \'function\');\n });\n}\n\nfunction popperGenerator(generatorOptions) {\n if (generatorOptions === void 0) {\n generatorOptions = {};\n }\n\n var _generatorOptions = generatorOptions,\n _generatorOptions$def = _generatorOptions.defaultModifiers,\n defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def,\n _generatorOptions$def2 = _generatorOptions.defaultOptions,\n defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;\n return function createPopper(reference, popper, options) {\n if (options === void 0) {\n options = defaultOptions;\n }\n\n var state = {\n placement: \'bottom\',\n orderedModifiers: [],\n options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),\n modifiersData: {},\n elements: {\n reference: reference,\n popper: popper\n },\n attributes: {},\n styles: {}\n };\n var effectCleanupFns = [];\n var isDestroyed = false;\n var instance = {\n state: state,\n setOptions: function setOptions(setOptionsAction) {\n var options = typeof setOptionsAction === \'function\' ? setOptionsAction(state.options) : setOptionsAction;\n cleanupModifierEffects();\n state.options = Object.assign({}, defaultOptions, state.options, options);\n state.scrollParents = {\n reference: (0,_dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isElement)(reference) ? (0,_dom_utils_listScrollParents_js__WEBPACK_IMPORTED_MODULE_1__["default"])(reference) : reference.contextElement ? (0,_dom_utils_listScrollParents_js__WEBPACK_IMPORTED_MODULE_1__["default"])(reference.contextElement) : [],\n popper: (0,_dom_utils_listScrollParents_js__WEBPACK_IMPORTED_MODULE_1__["default"])(popper)\n }; // Orders the modifiers based on their dependencies and `phase`\n // properties\n\n var orderedModifiers = (0,_utils_orderModifiers_js__WEBPACK_IMPORTED_MODULE_2__["default"])((0,_utils_mergeByName_js__WEBPACK_IMPORTED_MODULE_3__["default"])([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers\n\n state.orderedModifiers = orderedModifiers.filter(function (m) {\n return m.enabled;\n });\n runModifierEffects();\n return instance.update();\n },\n // Sync update – it will always be executed, even if not necessary. This\n // is useful for low frequency updates where sync behavior simplifies the\n // logic.\n // For high frequency updates (e.g. `resize` and `scroll` events), always\n // prefer the async Popper#update method\n forceUpdate: function forceUpdate() {\n if (isDestroyed) {\n return;\n }\n\n var _state$elements = state.elements,\n reference = _state$elements.reference,\n popper = _state$elements.popper; // Don\'t proceed if `reference` or `popper` are not valid elements\n // anymore\n\n if (!areValidElements(reference, popper)) {\n return;\n } // Store the reference and popper rects to be read by modifiers\n\n\n state.rects = {\n reference: (0,_dom_utils_getCompositeRect_js__WEBPACK_IMPORTED_MODULE_4__["default"])(reference, (0,_dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_5__["default"])(popper), state.options.strategy === \'fixed\'),\n popper: (0,_dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_6__["default"])(popper)\n }; // Modifiers have the ability to reset the current update cycle. The\n // most common use case for this is the `flip` modifier changing the\n // placement, which then needs to re-run all the modifiers, because the\n // logic was previously ran for the previous placement and is therefore\n // stale/incorrect\n\n state.reset = false;\n state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier\n // is filled with the initial data specified by the modifier. This means\n // it doesn\'t persist and is fresh on each update.\n // To ensure persistent data, use `${name}#persistent`\n\n state.orderedModifiers.forEach(function (modifier) {\n return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);\n });\n\n for (var index = 0; index < state.orderedModifiers.length; index++) {\n if (state.reset === true) {\n state.reset = false;\n index = -1;\n continue;\n }\n\n var _state$orderedModifie = state.orderedModifiers[index],\n fn = _state$orderedModifie.fn,\n _state$orderedModifie2 = _state$orderedModifie.options,\n _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2,\n name = _state$orderedModifie.name;\n\n if (typeof fn === \'function\') {\n state = fn({\n state: state,\n options: _options,\n name: name,\n instance: instance\n }) || state;\n }\n }\n },\n // Async and optimistically optimized update – it will not be executed if\n // not necessary (debounced to run at most once-per-tick)\n update: (0,_utils_debounce_js__WEBPACK_IMPORTED_MODULE_7__["default"])(function () {\n return new Promise(function (resolve) {\n instance.forceUpdate();\n resolve(state);\n });\n }),\n destroy: function destroy() {\n cleanupModifierEffects();\n isDestroyed = true;\n }\n };\n\n if (!areValidElements(reference, popper)) {\n return instance;\n }\n\n instance.setOptions(options).then(function (state) {\n if (!isDestroyed && options.onFirstUpdate) {\n options.onFirstUpdate(state);\n }\n }); // Modifiers have the ability to execute arbitrary code before the first\n // update cycle runs. They will be executed in the same order as the update\n // cycle. This is useful when a modifier adds some persistent data that\n // other modifiers need to use, but the modifier is run after the dependent\n // one.\n\n function runModifierEffects() {\n state.orderedModifiers.forEach(function (_ref) {\n var name = _ref.name,\n _ref$options = _ref.options,\n options = _ref$options === void 0 ? {} : _ref$options,\n effect = _ref.effect;\n\n if (typeof effect === \'function\') {\n var cleanupFn = effect({\n state: state,\n name: name,\n instance: instance,\n options: options\n });\n\n var noopFn = function noopFn() {};\n\n effectCleanupFns.push(cleanupFn || noopFn);\n }\n });\n }\n\n function cleanupModifierEffects() {\n effectCleanupFns.forEach(function (fn) {\n return fn();\n });\n effectCleanupFns = [];\n }\n\n return instance;\n };\n}\nvar createPopper = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules\n\n\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/createPopper.js?')},"./node_modules/@popperjs/core/lib/dom-utils/contains.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ contains; }\n/* harmony export */ });\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n\nfunction contains(parent, child) {\n var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method\n\n if (parent.contains(child)) {\n return true;\n } // then fallback to custom implementation with Shadow DOM support\n else if (rootNode && (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isShadowRoot)(rootNode)) {\n var next = child;\n\n do {\n if (next && parent.isSameNode(next)) {\n return true;\n } // $FlowFixMe[prop-missing]: need a better way to handle this...\n\n\n next = next.parentNode || next.host;\n } while (next);\n } // Give up, the result is false\n\n\n return false;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/contains.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getBoundingClientRect; }\n/* harmony export */ });\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n/* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js");\n/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");\n/* harmony import */ var _isLayoutViewport_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isLayoutViewport.js */ "./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js");\n\n\n\n\nfunction getBoundingClientRect(element, includeScale, isFixedStrategy) {\n if (includeScale === void 0) {\n includeScale = false;\n }\n\n if (isFixedStrategy === void 0) {\n isFixedStrategy = false;\n }\n\n var clientRect = element.getBoundingClientRect();\n var scaleX = 1;\n var scaleY = 1;\n\n if (includeScale && (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(element)) {\n scaleX = element.offsetWidth > 0 ? (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_1__.round)(clientRect.width) / element.offsetWidth || 1 : 1;\n scaleY = element.offsetHeight > 0 ? (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_1__.round)(clientRect.height) / element.offsetHeight || 1 : 1;\n }\n\n var _ref = (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isElement)(element) ? (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_2__["default"])(element) : window,\n visualViewport = _ref.visualViewport;\n\n var addVisualOffsets = !(0,_isLayoutViewport_js__WEBPACK_IMPORTED_MODULE_3__["default"])() && isFixedStrategy;\n var x = (clientRect.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX;\n var y = (clientRect.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY;\n var width = clientRect.width / scaleX;\n var height = clientRect.height / scaleY;\n return {\n width: width,\n height: height,\n top: y,\n right: x + width,\n bottom: y + height,\n left: x,\n x: x,\n y: y\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getClippingRect; }\n/* harmony export */ });\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n/* harmony import */ var _getViewportRect_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getViewportRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js");\n/* harmony import */ var _getDocumentRect_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./getDocumentRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js");\n/* harmony import */ var _listScrollParents_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./listScrollParents.js */ "./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js");\n/* harmony import */ var _getOffsetParent_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js");\n/* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js");\n/* harmony import */ var _getComputedStyle_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js");\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n/* harmony import */ var _getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js");\n/* harmony import */ var _getParentNode_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./getParentNode.js */ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js");\n/* harmony import */ var _contains_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./contains.js */ "./node_modules/@popperjs/core/lib/dom-utils/contains.js");\n/* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js");\n/* harmony import */ var _utils_rectToClientRect_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/rectToClientRect.js */ "./node_modules/@popperjs/core/lib/utils/rectToClientRect.js");\n/* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js");\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction getInnerBoundingClientRect(element, strategy) {\n var rect = (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element, false, strategy === \'fixed\');\n rect.top = rect.top + element.clientTop;\n rect.left = rect.left + element.clientLeft;\n rect.bottom = rect.top + element.clientHeight;\n rect.right = rect.left + element.clientWidth;\n rect.width = element.clientWidth;\n rect.height = element.clientHeight;\n rect.x = rect.left;\n rect.y = rect.top;\n return rect;\n}\n\nfunction getClientRectFromMixedType(element, clippingParent, strategy) {\n return clippingParent === _enums_js__WEBPACK_IMPORTED_MODULE_1__.viewport ? (0,_utils_rectToClientRect_js__WEBPACK_IMPORTED_MODULE_2__["default"])((0,_getViewportRect_js__WEBPACK_IMPORTED_MODULE_3__["default"])(element, strategy)) : (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isElement)(clippingParent) ? getInnerBoundingClientRect(clippingParent, strategy) : (0,_utils_rectToClientRect_js__WEBPACK_IMPORTED_MODULE_2__["default"])((0,_getDocumentRect_js__WEBPACK_IMPORTED_MODULE_5__["default"])((0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_6__["default"])(element)));\n} // A "clipping parent" is an overflowable container with the characteristic of\n// clipping (or hiding) overflowing elements with a position different from\n// `initial`\n\n\nfunction getClippingParents(element) {\n var clippingParents = (0,_listScrollParents_js__WEBPACK_IMPORTED_MODULE_7__["default"])((0,_getParentNode_js__WEBPACK_IMPORTED_MODULE_8__["default"])(element));\n var canEscapeClipping = [\'absolute\', \'fixed\'].indexOf((0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_9__["default"])(element).position) >= 0;\n var clipperElement = canEscapeClipping && (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isHTMLElement)(element) ? (0,_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_10__["default"])(element) : element;\n\n if (!(0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isElement)(clipperElement)) {\n return [];\n } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414\n\n\n return clippingParents.filter(function (clippingParent) {\n return (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isElement)(clippingParent) && (0,_contains_js__WEBPACK_IMPORTED_MODULE_11__["default"])(clippingParent, clipperElement) && (0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_12__["default"])(clippingParent) !== \'body\';\n });\n} // Gets the maximum area that the element is visible in due to any number of\n// clipping parents\n\n\nfunction getClippingRect(element, boundary, rootBoundary, strategy) {\n var mainClippingParents = boundary === \'clippingParents\' ? getClippingParents(element) : [].concat(boundary);\n var clippingParents = [].concat(mainClippingParents, [rootBoundary]);\n var firstClippingParent = clippingParents[0];\n var clippingRect = clippingParents.reduce(function (accRect, clippingParent) {\n var rect = getClientRectFromMixedType(element, clippingParent, strategy);\n accRect.top = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_13__.max)(rect.top, accRect.top);\n accRect.right = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_13__.min)(rect.right, accRect.right);\n accRect.bottom = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_13__.min)(rect.bottom, accRect.bottom);\n accRect.left = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_13__.max)(rect.left, accRect.left);\n return accRect;\n }, getClientRectFromMixedType(element, firstClippingParent, strategy));\n clippingRect.width = clippingRect.right - clippingRect.left;\n clippingRect.height = clippingRect.bottom - clippingRect.top;\n clippingRect.x = clippingRect.left;\n clippingRect.y = clippingRect.top;\n return clippingRect;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getCompositeRect; }\n/* harmony export */ });\n/* harmony import */ var _getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js");\n/* harmony import */ var _getNodeScroll_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./getNodeScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js");\n/* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js");\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n/* harmony import */ var _getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./getWindowScrollBarX.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js");\n/* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js");\n/* harmony import */ var _isScrollParent_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isScrollParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js");\n/* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js");\n\n\n\n\n\n\n\n\n\nfunction isElementScaled(element) {\n var rect = element.getBoundingClientRect();\n var scaleX = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_0__.round)(rect.width) / element.offsetWidth || 1;\n var scaleY = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_0__.round)(rect.height) / element.offsetHeight || 1;\n return scaleX !== 1 || scaleY !== 1;\n} // Returns the composite rect of an element relative to its offsetParent.\n// Composite means it takes into account transforms as well as layout.\n\n\nfunction getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {\n if (isFixed === void 0) {\n isFixed = false;\n }\n\n var isOffsetParentAnElement = (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(offsetParent);\n var offsetParentIsScaled = (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(offsetParent) && isElementScaled(offsetParent);\n var documentElement = (0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(offsetParent);\n var rect = (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_3__["default"])(elementOrVirtualElement, offsetParentIsScaled, isFixed);\n var scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n var offsets = {\n x: 0,\n y: 0\n };\n\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if ((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_4__["default"])(offsetParent) !== \'body\' || // https://github.com/popperjs/popper-core/issues/1078\n (0,_isScrollParent_js__WEBPACK_IMPORTED_MODULE_5__["default"])(documentElement)) {\n scroll = (0,_getNodeScroll_js__WEBPACK_IMPORTED_MODULE_6__["default"])(offsetParent);\n }\n\n if ((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(offsetParent)) {\n offsets = (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_3__["default"])(offsetParent, true);\n offsets.x += offsetParent.clientLeft;\n offsets.y += offsetParent.clientTop;\n } else if (documentElement) {\n offsets.x = (0,_getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_7__["default"])(documentElement);\n }\n }\n\n return {\n x: rect.left + scroll.scrollLeft - offsets.x,\n y: rect.top + scroll.scrollTop - offsets.y,\n width: rect.width,\n height: rect.height\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getComputedStyle; }\n/* harmony export */ });\n/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");\n\nfunction getComputedStyle(element) {\n return (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element).getComputedStyle(element);\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getDocumentElement; }\n/* harmony export */ });\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n\nfunction getDocumentElement(element) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return (((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isElement)(element) ? element.ownerDocument : // $FlowFixMe[prop-missing]\n element.document) || window.document).documentElement;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getDocumentRect; }\n/* harmony export */ });\n/* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js");\n/* harmony import */ var _getComputedStyle_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js");\n/* harmony import */ var _getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getWindowScrollBarX.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js");\n/* harmony import */ var _getWindowScroll_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getWindowScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js");\n/* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js");\n\n\n\n\n // Gets the entire size of the scrollable document area, even extending outside\n// of the `` and `` rect bounds if horizontally scrollable\n\nfunction getDocumentRect(element) {\n var _element$ownerDocumen;\n\n var html = (0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element);\n var winScroll = (0,_getWindowScroll_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element);\n var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body;\n var width = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_2__.max)(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0);\n var height = (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_2__.max)(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0);\n var x = -winScroll.scrollLeft + (0,_getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_3__["default"])(element);\n var y = -winScroll.scrollTop;\n\n if ((0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_4__["default"])(body || html).direction === \'rtl\') {\n x += (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_2__.max)(html.clientWidth, body ? body.clientWidth : 0) - width;\n }\n\n return {\n width: width,\n height: height,\n x: x,\n y: y\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getHTMLElementScroll; }\n/* harmony export */ });\nfunction getHTMLElementScroll(element) {\n return {\n scrollLeft: element.scrollLeft,\n scrollTop: element.scrollTop\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getLayoutRect; }\n/* harmony export */ });\n/* harmony import */ var _getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js");\n // Returns the layout rect of an element relative to its offsetParent. Layout\n// means it doesn\'t take into account transforms.\n\nfunction getLayoutRect(element) {\n var clientRect = (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element); // Use the clientRect sizes if it\'s not been transformed.\n // Fixes https://github.com/popperjs/popper-core/issues/1223\n\n var width = element.offsetWidth;\n var height = element.offsetHeight;\n\n if (Math.abs(clientRect.width - width) <= 1) {\n width = clientRect.width;\n }\n\n if (Math.abs(clientRect.height - height) <= 1) {\n height = clientRect.height;\n }\n\n return {\n x: element.offsetLeft,\n y: element.offsetTop,\n width: width,\n height: height\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ getNodeName; }\n/* harmony export */ });\nfunction getNodeName(element) {\n return element ? (element.nodeName || '').toLowerCase() : null;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js?")},"./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getNodeScroll; }\n/* harmony export */ });\n/* harmony import */ var _getWindowScroll_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getWindowScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js");\n/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n/* harmony import */ var _getHTMLElementScroll_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getHTMLElementScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js");\n\n\n\n\nfunction getNodeScroll(node) {\n if (node === (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node) || !(0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(node)) {\n return (0,_getWindowScroll_js__WEBPACK_IMPORTED_MODULE_2__["default"])(node);\n } else {\n return (0,_getHTMLElementScroll_js__WEBPACK_IMPORTED_MODULE_3__["default"])(node);\n }\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getOffsetParent; }\n/* harmony export */ });\n/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");\n/* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js");\n/* harmony import */ var _getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js");\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n/* harmony import */ var _isTableElement_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./isTableElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js");\n/* harmony import */ var _getParentNode_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getParentNode.js */ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js");\n/* harmony import */ var _utils_userAgent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/userAgent.js */ "./node_modules/@popperjs/core/lib/utils/userAgent.js");\n\n\n\n\n\n\n\n\nfunction getTrueOffsetParent(element) {\n if (!(0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(element) || // https://github.com/popperjs/popper-core/issues/837\n (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element).position === \'fixed\') {\n return null;\n }\n\n return element.offsetParent;\n} // `.offsetParent` reports `null` for fixed elements, while absolute elements\n// return the containing block\n\n\nfunction getContainingBlock(element) {\n var isFirefox = /firefox/i.test((0,_utils_userAgent_js__WEBPACK_IMPORTED_MODULE_2__["default"])());\n var isIE = /Trident/i.test((0,_utils_userAgent_js__WEBPACK_IMPORTED_MODULE_2__["default"])());\n\n if (isIE && (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(element)) {\n // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport\n var elementCss = (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element);\n\n if (elementCss.position === \'fixed\') {\n return null;\n }\n }\n\n var currentNode = (0,_getParentNode_js__WEBPACK_IMPORTED_MODULE_3__["default"])(element);\n\n if ((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isShadowRoot)(currentNode)) {\n currentNode = currentNode.host;\n }\n\n while ((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(currentNode) && [\'html\', \'body\'].indexOf((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_4__["default"])(currentNode)) < 0) {\n var css = (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(currentNode); // This is non-exhaustive but covers the most common CSS properties that\n // create a containing block.\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n\n if (css.transform !== \'none\' || css.perspective !== \'none\' || css.contain === \'paint\' || [\'transform\', \'perspective\'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === \'filter\' || isFirefox && css.filter && css.filter !== \'none\') {\n return currentNode;\n } else {\n currentNode = currentNode.parentNode;\n }\n }\n\n return null;\n} // Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\n\n\nfunction getOffsetParent(element) {\n var window = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_5__["default"])(element);\n var offsetParent = getTrueOffsetParent(element);\n\n while (offsetParent && (0,_isTableElement_js__WEBPACK_IMPORTED_MODULE_6__["default"])(offsetParent) && (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(offsetParent).position === \'static\') {\n offsetParent = getTrueOffsetParent(offsetParent);\n }\n\n if (offsetParent && ((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_4__["default"])(offsetParent) === \'html\' || (0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_4__["default"])(offsetParent) === \'body\' && (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_1__["default"])(offsetParent).position === \'static\')) {\n return window;\n }\n\n return offsetParent || getContainingBlock(element) || window;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getParentNode; }\n/* harmony export */ });\n/* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js");\n/* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js");\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n\n\n\nfunction getParentNode(element) {\n if ((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element) === \'html\') {\n return element;\n }\n\n return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle\n // $FlowFixMe[incompatible-return]\n // $FlowFixMe[prop-missing]\n element.assignedSlot || // step into the shadow DOM of the parent of a slotted node\n element.parentNode || ( // DOM Element detected\n (0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isShadowRoot)(element) ? element.host : null) || // ShadowRoot detected\n // $FlowFixMe[incompatible-call]: HTMLElement is a Node\n (0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(element) // fallback\n\n );\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getScrollParent; }\n/* harmony export */ });\n/* harmony import */ var _getParentNode_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getParentNode.js */ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js");\n/* harmony import */ var _isScrollParent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isScrollParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js");\n/* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getNodeName.js */ "./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js");\n/* harmony import */ var _instanceOf_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n\n\n\n\nfunction getScrollParent(node) {\n if ([\'html\', \'body\', \'#document\'].indexOf((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node)) >= 0) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return node.ownerDocument.body;\n }\n\n if ((0,_instanceOf_js__WEBPACK_IMPORTED_MODULE_1__.isHTMLElement)(node) && (0,_isScrollParent_js__WEBPACK_IMPORTED_MODULE_2__["default"])(node)) {\n return node;\n }\n\n return getScrollParent((0,_getParentNode_js__WEBPACK_IMPORTED_MODULE_3__["default"])(node));\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getViewportRect; }\n/* harmony export */ });\n/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");\n/* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js");\n/* harmony import */ var _getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getWindowScrollBarX.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js");\n/* harmony import */ var _isLayoutViewport_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isLayoutViewport.js */ "./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js");\n\n\n\n\nfunction getViewportRect(element, strategy) {\n var win = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element);\n var html = (0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element);\n var visualViewport = win.visualViewport;\n var width = html.clientWidth;\n var height = html.clientHeight;\n var x = 0;\n var y = 0;\n\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height;\n var layoutViewport = (0,_isLayoutViewport_js__WEBPACK_IMPORTED_MODULE_2__["default"])();\n\n if (layoutViewport || !layoutViewport && strategy === \'fixed\') {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n\n return {\n width: width,\n height: height,\n x: x + (0,_getWindowScrollBarX_js__WEBPACK_IMPORTED_MODULE_3__["default"])(element),\n y: y\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getWindow.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ getWindow; }\n/* harmony export */ });\nfunction getWindow(node) {\n if (node == null) {\n return window;\n }\n\n if (node.toString() !== '[object Window]') {\n var ownerDocument = node.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView || window : window;\n }\n\n return node;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getWindow.js?")},"./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getWindowScroll; }\n/* harmony export */ });\n/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");\n\nfunction getWindowScroll(node) {\n var win = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node);\n var scrollLeft = win.pageXOffset;\n var scrollTop = win.pageYOffset;\n return {\n scrollLeft: scrollLeft,\n scrollTop: scrollTop\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js?')},"./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getWindowScrollBarX; }\n/* harmony export */ });\n/* harmony import */ var _getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js");\n/* harmony import */ var _getDocumentElement_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js");\n/* harmony import */ var _getWindowScroll_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getWindowScroll.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js");\n\n\n\nfunction getWindowScrollBarX(element) {\n // If has a CSS width greater than the viewport, then this will be\n // incorrect for RTL.\n // Popper 1 is broken in this case and never had a bug report so let\'s assume\n // it\'s not an issue. I don\'t think anyone ever specifies width on \n // anyway.\n // Browsers where the left scrollbar doesn\'t cause an issue report `0` for\n // this (e.g. Edge 2019, IE11, Safari)\n return (0,_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_0__["default"])((0,_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_1__["default"])(element)).left + (0,_getWindowScroll_js__WEBPACK_IMPORTED_MODULE_2__["default"])(element).scrollLeft;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js?')},"./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ isElement: function() { return /* binding */ isElement; },\n/* harmony export */ isHTMLElement: function() { return /* binding */ isHTMLElement; },\n/* harmony export */ isShadowRoot: function() { return /* binding */ isShadowRoot; }\n/* harmony export */ });\n/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");\n\n\nfunction isElement(node) {\n var OwnElement = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node).Element;\n return node instanceof OwnElement || node instanceof Element;\n}\n\nfunction isHTMLElement(node) {\n var OwnElement = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node).HTMLElement;\n return node instanceof OwnElement || node instanceof HTMLElement;\n}\n\nfunction isShadowRoot(node) {\n // IE 11 has no ShadowRoot\n if (typeof ShadowRoot === \'undefined\') {\n return false;\n }\n\n var OwnElement = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(node).ShadowRoot;\n return node instanceof OwnElement || node instanceof ShadowRoot;\n}\n\n\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js?')},"./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ isLayoutViewport; }\n/* harmony export */ });\n/* harmony import */ var _utils_userAgent_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/userAgent.js */ "./node_modules/@popperjs/core/lib/utils/userAgent.js");\n\nfunction isLayoutViewport() {\n return !/^((?!chrome|android).)*safari/i.test((0,_utils_userAgent_js__WEBPACK_IMPORTED_MODULE_0__["default"])());\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js?')},"./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ isScrollParent; }\n/* harmony export */ });\n/* harmony import */ var _getComputedStyle_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getComputedStyle.js */ "./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js");\n\nfunction isScrollParent(element) {\n // Firefox wants us to check `-x` and `-y` variations as well\n var _getComputedStyle = (0,_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element),\n overflow = _getComputedStyle.overflow,\n overflowX = _getComputedStyle.overflowX,\n overflowY = _getComputedStyle.overflowY;\n\n return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js?')},"./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ isTableElement; }\n/* harmony export */ });\n/* harmony import */ var _getNodeName_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getNodeName.js */ \"./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js\");\n\nfunction isTableElement(element) {\n return ['table', 'td', 'th'].indexOf((0,_getNodeName_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(element)) >= 0;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js?")},"./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ listScrollParents; }\n/* harmony export */ });\n/* harmony import */ var _getScrollParent_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getScrollParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js");\n/* harmony import */ var _getParentNode_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getParentNode.js */ "./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js");\n/* harmony import */ var _getWindow_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getWindow.js */ "./node_modules/@popperjs/core/lib/dom-utils/getWindow.js");\n/* harmony import */ var _isScrollParent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isScrollParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js");\n\n\n\n\n/*\ngiven a DOM element, return the list of all scroll parents, up the list of ancesors\nuntil we get to the top window object. This list is what we attach scroll listeners\nto, because if any of these parent elements scroll, we\'ll need to re-calculate the\nreference element\'s position.\n*/\n\nfunction listScrollParents(element, list) {\n var _element$ownerDocumen;\n\n if (list === void 0) {\n list = [];\n }\n\n var scrollParent = (0,_getScrollParent_js__WEBPACK_IMPORTED_MODULE_0__["default"])(element);\n var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body);\n var win = (0,_getWindow_js__WEBPACK_IMPORTED_MODULE_1__["default"])(scrollParent);\n var target = isBody ? [win].concat(win.visualViewport || [], (0,_isScrollParent_js__WEBPACK_IMPORTED_MODULE_2__["default"])(scrollParent) ? scrollParent : []) : scrollParent;\n var updatedList = list.concat(target);\n return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here\n updatedList.concat(listScrollParents((0,_getParentNode_js__WEBPACK_IMPORTED_MODULE_3__["default"])(target)));\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js?')},"./node_modules/@popperjs/core/lib/enums.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ afterMain: function() { return /* binding */ afterMain; },\n/* harmony export */ afterRead: function() { return /* binding */ afterRead; },\n/* harmony export */ afterWrite: function() { return /* binding */ afterWrite; },\n/* harmony export */ auto: function() { return /* binding */ auto; },\n/* harmony export */ basePlacements: function() { return /* binding */ basePlacements; },\n/* harmony export */ beforeMain: function() { return /* binding */ beforeMain; },\n/* harmony export */ beforeRead: function() { return /* binding */ beforeRead; },\n/* harmony export */ beforeWrite: function() { return /* binding */ beforeWrite; },\n/* harmony export */ bottom: function() { return /* binding */ bottom; },\n/* harmony export */ clippingParents: function() { return /* binding */ clippingParents; },\n/* harmony export */ end: function() { return /* binding */ end; },\n/* harmony export */ left: function() { return /* binding */ left; },\n/* harmony export */ main: function() { return /* binding */ main; },\n/* harmony export */ modifierPhases: function() { return /* binding */ modifierPhases; },\n/* harmony export */ placements: function() { return /* binding */ placements; },\n/* harmony export */ popper: function() { return /* binding */ popper; },\n/* harmony export */ read: function() { return /* binding */ read; },\n/* harmony export */ reference: function() { return /* binding */ reference; },\n/* harmony export */ right: function() { return /* binding */ right; },\n/* harmony export */ start: function() { return /* binding */ start; },\n/* harmony export */ top: function() { return /* binding */ top; },\n/* harmony export */ variationPlacements: function() { return /* binding */ variationPlacements; },\n/* harmony export */ viewport: function() { return /* binding */ viewport; },\n/* harmony export */ write: function() { return /* binding */ write; }\n/* harmony export */ });\nvar top = 'top';\nvar bottom = 'bottom';\nvar right = 'right';\nvar left = 'left';\nvar auto = 'auto';\nvar basePlacements = [top, bottom, right, left];\nvar start = 'start';\nvar end = 'end';\nvar clippingParents = 'clippingParents';\nvar viewport = 'viewport';\nvar popper = 'popper';\nvar reference = 'reference';\nvar variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) {\n return acc.concat([placement + \"-\" + start, placement + \"-\" + end]);\n}, []);\nvar placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) {\n return acc.concat([placement, placement + \"-\" + start, placement + \"-\" + end]);\n}, []); // modifiers that need to read the DOM\n\nvar beforeRead = 'beforeRead';\nvar read = 'read';\nvar afterRead = 'afterRead'; // pure-logic modifiers\n\nvar beforeMain = 'beforeMain';\nvar main = 'main';\nvar afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state)\n\nvar beforeWrite = 'beforeWrite';\nvar write = 'write';\nvar afterWrite = 'afterWrite';\nvar modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite];\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/enums.js?")},"./node_modules/@popperjs/core/lib/index.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ afterMain: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.afterMain; },\n/* harmony export */ afterRead: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.afterRead; },\n/* harmony export */ afterWrite: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.afterWrite; },\n/* harmony export */ applyStyles: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.applyStyles; },\n/* harmony export */ arrow: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.arrow; },\n/* harmony export */ auto: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.auto; },\n/* harmony export */ basePlacements: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.basePlacements; },\n/* harmony export */ beforeMain: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.beforeMain; },\n/* harmony export */ beforeRead: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.beforeRead; },\n/* harmony export */ beforeWrite: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.beforeWrite; },\n/* harmony export */ bottom: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.bottom; },\n/* harmony export */ clippingParents: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.clippingParents; },\n/* harmony export */ computeStyles: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.computeStyles; },\n/* harmony export */ createPopper: function() { return /* reexport safe */ _popper_js__WEBPACK_IMPORTED_MODULE_4__.createPopper; },\n/* harmony export */ createPopperBase: function() { return /* reexport safe */ _createPopper_js__WEBPACK_IMPORTED_MODULE_2__.createPopper; },\n/* harmony export */ createPopperLite: function() { return /* reexport safe */ _popper_lite_js__WEBPACK_IMPORTED_MODULE_5__.createPopper; },\n/* harmony export */ detectOverflow: function() { return /* reexport safe */ _createPopper_js__WEBPACK_IMPORTED_MODULE_3__["default"]; },\n/* harmony export */ end: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.end; },\n/* harmony export */ eventListeners: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.eventListeners; },\n/* harmony export */ flip: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.flip; },\n/* harmony export */ hide: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.hide; },\n/* harmony export */ left: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.left; },\n/* harmony export */ main: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.main; },\n/* harmony export */ modifierPhases: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.modifierPhases; },\n/* harmony export */ offset: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.offset; },\n/* harmony export */ placements: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.placements; },\n/* harmony export */ popper: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper; },\n/* harmony export */ popperGenerator: function() { return /* reexport safe */ _createPopper_js__WEBPACK_IMPORTED_MODULE_2__.popperGenerator; },\n/* harmony export */ popperOffsets: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.popperOffsets; },\n/* harmony export */ preventOverflow: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__.preventOverflow; },\n/* harmony export */ read: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.read; },\n/* harmony export */ reference: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.reference; },\n/* harmony export */ right: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.right; },\n/* harmony export */ start: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.start; },\n/* harmony export */ top: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.top; },\n/* harmony export */ variationPlacements: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.variationPlacements; },\n/* harmony export */ viewport: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.viewport; },\n/* harmony export */ write: function() { return /* reexport safe */ _enums_js__WEBPACK_IMPORTED_MODULE_0__.write; }\n/* harmony export */ });\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n/* harmony import */ var _modifiers_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./modifiers/index.js */ "./node_modules/@popperjs/core/lib/modifiers/index.js");\n/* harmony import */ var _createPopper_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./createPopper.js */ "./node_modules/@popperjs/core/lib/createPopper.js");\n/* harmony import */ var _createPopper_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./createPopper.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js");\n/* harmony import */ var _popper_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./popper.js */ "./node_modules/@popperjs/core/lib/popper.js");\n/* harmony import */ var _popper_lite_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./popper-lite.js */ "./node_modules/@popperjs/core/lib/popper-lite.js");\n\n // eslint-disable-next-line import/no-unused-modules\n\n // eslint-disable-next-line import/no-unused-modules\n\n // eslint-disable-next-line import/no-unused-modules\n\n\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/index.js?')},"./node_modules/@popperjs/core/lib/modifiers/applyStyles.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _dom_utils_getNodeName_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../dom-utils/getNodeName.js */ \"./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js\");\n/* harmony import */ var _dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../dom-utils/instanceOf.js */ \"./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js\");\n\n // This modifier takes the styles prepared by the `computeStyles` modifier\n// and applies them to the HTMLElements such as popper and arrow\n\nfunction applyStyles(_ref) {\n var state = _ref.state;\n Object.keys(state.elements).forEach(function (name) {\n var style = state.styles[name] || {};\n var attributes = state.attributes[name] || {};\n var element = state.elements[name]; // arrow is optional + virtual elements\n\n if (!(0,_dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(element) || !(0,_dom_utils_getNodeName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(element)) {\n return;\n } // Flow doesn't support to extend this property, but it's the most\n // effective way to apply styles to an HTMLElement\n // $FlowFixMe[cannot-write]\n\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (name) {\n var value = attributes[name];\n\n if (value === false) {\n element.removeAttribute(name);\n } else {\n element.setAttribute(name, value === true ? '' : value);\n }\n });\n });\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state;\n var initialStyles = {\n popper: {\n position: state.options.strategy,\n left: '0',\n top: '0',\n margin: '0'\n },\n arrow: {\n position: 'absolute'\n },\n reference: {}\n };\n Object.assign(state.elements.popper.style, initialStyles.popper);\n state.styles = initialStyles;\n\n if (state.elements.arrow) {\n Object.assign(state.elements.arrow.style, initialStyles.arrow);\n }\n\n return function () {\n Object.keys(state.elements).forEach(function (name) {\n var element = state.elements[name];\n var attributes = state.attributes[name] || {};\n var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]); // Set all values to an empty string to unset them\n\n var style = styleProperties.reduce(function (style, property) {\n style[property] = '';\n return style;\n }, {}); // arrow is optional + virtual elements\n\n if (!(0,_dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_0__.isHTMLElement)(element) || !(0,_dom_utils_getNodeName_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(element)) {\n return;\n }\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (attribute) {\n element.removeAttribute(attribute);\n });\n });\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'applyStyles',\n enabled: true,\n phase: 'write',\n fn: applyStyles,\n effect: effect,\n requires: ['computeStyles']\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/applyStyles.js?")},"./node_modules/@popperjs/core/lib/modifiers/arrow.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js");\n/* harmony import */ var _dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../dom-utils/getLayoutRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js");\n/* harmony import */ var _dom_utils_contains_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../dom-utils/contains.js */ "./node_modules/@popperjs/core/lib/dom-utils/contains.js");\n/* harmony import */ var _dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../dom-utils/getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js");\n/* harmony import */ var _utils_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils/getMainAxisFromPlacement.js */ "./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js");\n/* harmony import */ var _utils_within_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utils/within.js */ "./node_modules/@popperjs/core/lib/utils/within.js");\n/* harmony import */ var _utils_mergePaddingObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/mergePaddingObject.js */ "./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js");\n/* harmony import */ var _utils_expandToHashMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/expandToHashMap.js */ "./node_modules/@popperjs/core/lib/utils/expandToHashMap.js");\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n\n\n\n\n\n\n\n\n // eslint-disable-next-line import/no-unused-modules\n\nvar toPaddingObject = function toPaddingObject(padding, state) {\n padding = typeof padding === \'function\' ? padding(Object.assign({}, state.rects, {\n placement: state.placement\n })) : padding;\n return (0,_utils_mergePaddingObject_js__WEBPACK_IMPORTED_MODULE_0__["default"])(typeof padding !== \'number\' ? padding : (0,_utils_expandToHashMap_js__WEBPACK_IMPORTED_MODULE_1__["default"])(padding, _enums_js__WEBPACK_IMPORTED_MODULE_2__.basePlacements));\n};\n\nfunction arrow(_ref) {\n var _state$modifiersData$;\n\n var state = _ref.state,\n name = _ref.name,\n options = _ref.options;\n var arrowElement = state.elements.arrow;\n var popperOffsets = state.modifiersData.popperOffsets;\n var basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(state.placement);\n var axis = (0,_utils_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_4__["default"])(basePlacement);\n var isVertical = [_enums_js__WEBPACK_IMPORTED_MODULE_2__.left, _enums_js__WEBPACK_IMPORTED_MODULE_2__.right].indexOf(basePlacement) >= 0;\n var len = isVertical ? \'height\' : \'width\';\n\n if (!arrowElement || !popperOffsets) {\n return;\n }\n\n var paddingObject = toPaddingObject(options.padding, state);\n var arrowRect = (0,_dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_5__["default"])(arrowElement);\n var minProp = axis === \'y\' ? _enums_js__WEBPACK_IMPORTED_MODULE_2__.top : _enums_js__WEBPACK_IMPORTED_MODULE_2__.left;\n var maxProp = axis === \'y\' ? _enums_js__WEBPACK_IMPORTED_MODULE_2__.bottom : _enums_js__WEBPACK_IMPORTED_MODULE_2__.right;\n var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len];\n var startDiff = popperOffsets[axis] - state.rects.reference[axis];\n var arrowOffsetParent = (0,_dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_6__["default"])(arrowElement);\n var clientSize = arrowOffsetParent ? axis === \'y\' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0;\n var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn\'t overflow the popper if the center point is\n // outside of the popper bounds\n\n var min = paddingObject[minProp];\n var max = clientSize - arrowRect[len] - paddingObject[maxProp];\n var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference;\n var offset = (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_7__.within)(min, center, max); // Prevents breaking syntax highlighting...\n\n var axisProp = axis;\n state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$);\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state,\n options = _ref2.options;\n var _options$element = options.element,\n arrowElement = _options$element === void 0 ? \'[data-popper-arrow]\' : _options$element;\n\n if (arrowElement == null) {\n return;\n } // CSS selector\n\n\n if (typeof arrowElement === \'string\') {\n arrowElement = state.elements.popper.querySelector(arrowElement);\n\n if (!arrowElement) {\n return;\n }\n }\n\n if (!(0,_dom_utils_contains_js__WEBPACK_IMPORTED_MODULE_8__["default"])(state.elements.popper, arrowElement)) {\n return;\n }\n\n state.elements.arrow = arrowElement;\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__["default"] = ({\n name: \'arrow\',\n enabled: true,\n phase: \'main\',\n fn: arrow,\n effect: effect,\n requires: [\'popperOffsets\'],\n requiresIfExists: [\'preventOverflow\']\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/arrow.js?')},"./node_modules/@popperjs/core/lib/modifiers/computeStyles.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ mapToStyles: function() { return /* binding */ mapToStyles; }\n/* harmony export */ });\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../enums.js */ \"./node_modules/@popperjs/core/lib/enums.js\");\n/* harmony import */ var _dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../dom-utils/getOffsetParent.js */ \"./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js\");\n/* harmony import */ var _dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../dom-utils/getWindow.js */ \"./node_modules/@popperjs/core/lib/dom-utils/getWindow.js\");\n/* harmony import */ var _dom_utils_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../dom-utils/getDocumentElement.js */ \"./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js\");\n/* harmony import */ var _dom_utils_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../dom-utils/getComputedStyle.js */ \"./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js\");\n/* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ \"./node_modules/@popperjs/core/lib/utils/getBasePlacement.js\");\n/* harmony import */ var _utils_getVariation_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utils/getVariation.js */ \"./node_modules/@popperjs/core/lib/utils/getVariation.js\");\n/* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/math.js */ \"./node_modules/@popperjs/core/lib/utils/math.js\");\n\n\n\n\n\n\n\n // eslint-disable-next-line import/no-unused-modules\n\nvar unsetSides = {\n top: 'auto',\n right: 'auto',\n bottom: 'auto',\n left: 'auto'\n}; // Round the offsets to the nearest suitable subpixel based on the DPR.\n// Zooming can change the DPR, but it seems to report a value that will\n// cleanly divide the values into the appropriate subpixels.\n\nfunction roundOffsetsByDPR(_ref, win) {\n var x = _ref.x,\n y = _ref.y;\n var dpr = win.devicePixelRatio || 1;\n return {\n x: (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_0__.round)(x * dpr) / dpr || 0,\n y: (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_0__.round)(y * dpr) / dpr || 0\n };\n}\n\nfunction mapToStyles(_ref2) {\n var _Object$assign2;\n\n var popper = _ref2.popper,\n popperRect = _ref2.popperRect,\n placement = _ref2.placement,\n variation = _ref2.variation,\n offsets = _ref2.offsets,\n position = _ref2.position,\n gpuAcceleration = _ref2.gpuAcceleration,\n adaptive = _ref2.adaptive,\n roundOffsets = _ref2.roundOffsets,\n isFixed = _ref2.isFixed;\n var _offsets$x = offsets.x,\n x = _offsets$x === void 0 ? 0 : _offsets$x,\n _offsets$y = offsets.y,\n y = _offsets$y === void 0 ? 0 : _offsets$y;\n\n var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({\n x: x,\n y: y\n }) : {\n x: x,\n y: y\n };\n\n x = _ref3.x;\n y = _ref3.y;\n var hasX = offsets.hasOwnProperty('x');\n var hasY = offsets.hasOwnProperty('y');\n var sideX = _enums_js__WEBPACK_IMPORTED_MODULE_1__.left;\n var sideY = _enums_js__WEBPACK_IMPORTED_MODULE_1__.top;\n var win = window;\n\n if (adaptive) {\n var offsetParent = (0,_dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(popper);\n var heightProp = 'clientHeight';\n var widthProp = 'clientWidth';\n\n if (offsetParent === (0,_dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(popper)) {\n offsetParent = (0,_dom_utils_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_4__[\"default\"])(popper);\n\n if ((0,_dom_utils_getComputedStyle_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"])(offsetParent).position !== 'static' && position === 'absolute') {\n heightProp = 'scrollHeight';\n widthProp = 'scrollWidth';\n }\n } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it\n\n\n offsetParent = offsetParent;\n\n if (placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.top || (placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.left || placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.right) && variation === _enums_js__WEBPACK_IMPORTED_MODULE_1__.end) {\n sideY = _enums_js__WEBPACK_IMPORTED_MODULE_1__.bottom;\n var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing]\n offsetParent[heightProp];\n y -= offsetY - popperRect.height;\n y *= gpuAcceleration ? 1 : -1;\n }\n\n if (placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.left || (placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.top || placement === _enums_js__WEBPACK_IMPORTED_MODULE_1__.bottom) && variation === _enums_js__WEBPACK_IMPORTED_MODULE_1__.end) {\n sideX = _enums_js__WEBPACK_IMPORTED_MODULE_1__.right;\n var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing]\n offsetParent[widthProp];\n x -= offsetX - popperRect.width;\n x *= gpuAcceleration ? 1 : -1;\n }\n }\n\n var commonStyles = Object.assign({\n position: position\n }, adaptive && unsetSides);\n\n var _ref4 = roundOffsets === true ? roundOffsetsByDPR({\n x: x,\n y: y\n }, (0,_dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(popper)) : {\n x: x,\n y: y\n };\n\n x = _ref4.x;\n y = _ref4.y;\n\n if (gpuAcceleration) {\n var _Object$assign;\n\n return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? \"translate(\" + x + \"px, \" + y + \"px)\" : \"translate3d(\" + x + \"px, \" + y + \"px, 0)\", _Object$assign));\n }\n\n return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + \"px\" : '', _Object$assign2[sideX] = hasX ? x + \"px\" : '', _Object$assign2.transform = '', _Object$assign2));\n}\n\nfunction computeStyles(_ref5) {\n var state = _ref5.state,\n options = _ref5.options;\n var _options$gpuAccelerat = options.gpuAcceleration,\n gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat,\n _options$adaptive = options.adaptive,\n adaptive = _options$adaptive === void 0 ? true : _options$adaptive,\n _options$roundOffsets = options.roundOffsets,\n roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets;\n var commonStyles = {\n placement: (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_6__[\"default\"])(state.placement),\n variation: (0,_utils_getVariation_js__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(state.placement),\n popper: state.elements.popper,\n popperRect: state.rects.popper,\n gpuAcceleration: gpuAcceleration,\n isFixed: state.options.strategy === 'fixed'\n };\n\n if (state.modifiersData.popperOffsets != null) {\n state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.popperOffsets,\n position: state.options.strategy,\n adaptive: adaptive,\n roundOffsets: roundOffsets\n })));\n }\n\n if (state.modifiersData.arrow != null) {\n state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.arrow,\n position: 'absolute',\n adaptive: false,\n roundOffsets: roundOffsets\n })));\n }\n\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-placement': state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'computeStyles',\n enabled: true,\n phase: 'beforeWrite',\n fn: computeStyles,\n data: {}\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/computeStyles.js?")},"./node_modules/@popperjs/core/lib/modifiers/eventListeners.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../dom-utils/getWindow.js */ \"./node_modules/@popperjs/core/lib/dom-utils/getWindow.js\");\n // eslint-disable-next-line import/no-unused-modules\n\nvar passive = {\n passive: true\n};\n\nfunction effect(_ref) {\n var state = _ref.state,\n instance = _ref.instance,\n options = _ref.options;\n var _options$scroll = options.scroll,\n scroll = _options$scroll === void 0 ? true : _options$scroll,\n _options$resize = options.resize,\n resize = _options$resize === void 0 ? true : _options$resize;\n var window = (0,_dom_utils_getWindow_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(state.elements.popper);\n var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper);\n\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.addEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.addEventListener('resize', instance.update, passive);\n }\n\n return function () {\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.removeEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.removeEventListener('resize', instance.update, passive);\n }\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'eventListeners',\n enabled: true,\n phase: 'write',\n fn: function fn() {},\n effect: effect,\n data: {}\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/eventListeners.js?")},"./node_modules/@popperjs/core/lib/modifiers/flip.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/getOppositePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js");\n/* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js");\n/* harmony import */ var _utils_getOppositeVariationPlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/getOppositeVariationPlacement.js */ "./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js");\n/* harmony import */ var _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utils/detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js");\n/* harmony import */ var _utils_computeAutoPlacement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils/computeAutoPlacement.js */ "./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js");\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n/* harmony import */ var _utils_getVariation_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../utils/getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js");\n\n\n\n\n\n\n // eslint-disable-next-line import/no-unused-modules\n\nfunction getExpandedFallbackPlacements(placement) {\n if ((0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement) === _enums_js__WEBPACK_IMPORTED_MODULE_1__.auto) {\n return [];\n }\n\n var oppositePlacement = (0,_utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(placement);\n return [(0,_utils_getOppositeVariationPlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(placement), oppositePlacement, (0,_utils_getOppositeVariationPlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(oppositePlacement)];\n}\n\nfunction flip(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n\n if (state.modifiersData[name]._skip) {\n return;\n }\n\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis,\n specifiedFallbackPlacements = options.fallbackPlacements,\n padding = options.padding,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n _options$flipVariatio = options.flipVariations,\n flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio,\n allowedAutoPlacements = options.allowedAutoPlacements;\n var preferredPlacement = state.options.placement;\n var basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(preferredPlacement);\n var isBasePlacement = basePlacement === preferredPlacement;\n var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [(0,_utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement));\n var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) {\n return acc.concat((0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement) === _enums_js__WEBPACK_IMPORTED_MODULE_1__.auto ? (0,_utils_computeAutoPlacement_js__WEBPACK_IMPORTED_MODULE_4__["default"])(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n flipVariations: flipVariations,\n allowedAutoPlacements: allowedAutoPlacements\n }) : placement);\n }, []);\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var checksMap = new Map();\n var makeFallbackChecks = true;\n var firstFittingPlacement = placements[0];\n\n for (var i = 0; i < placements.length; i++) {\n var placement = placements[i];\n\n var _basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement);\n\n var isStartVariation = (0,_utils_getVariation_js__WEBPACK_IMPORTED_MODULE_5__["default"])(placement) === _enums_js__WEBPACK_IMPORTED_MODULE_1__.start;\n var isVertical = [_enums_js__WEBPACK_IMPORTED_MODULE_1__.top, _enums_js__WEBPACK_IMPORTED_MODULE_1__.bottom].indexOf(_basePlacement) >= 0;\n var len = isVertical ? \'width\' : \'height\';\n var overflow = (0,_utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_6__["default"])(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n altBoundary: altBoundary,\n padding: padding\n });\n var mainVariationSide = isVertical ? isStartVariation ? _enums_js__WEBPACK_IMPORTED_MODULE_1__.right : _enums_js__WEBPACK_IMPORTED_MODULE_1__.left : isStartVariation ? _enums_js__WEBPACK_IMPORTED_MODULE_1__.bottom : _enums_js__WEBPACK_IMPORTED_MODULE_1__.top;\n\n if (referenceRect[len] > popperRect[len]) {\n mainVariationSide = (0,_utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(mainVariationSide);\n }\n\n var altVariationSide = (0,_utils_getOppositePlacement_js__WEBPACK_IMPORTED_MODULE_2__["default"])(mainVariationSide);\n var checks = [];\n\n if (checkMainAxis) {\n checks.push(overflow[_basePlacement] <= 0);\n }\n\n if (checkAltAxis) {\n checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0);\n }\n\n if (checks.every(function (check) {\n return check;\n })) {\n firstFittingPlacement = placement;\n makeFallbackChecks = false;\n break;\n }\n\n checksMap.set(placement, checks);\n }\n\n if (makeFallbackChecks) {\n // `2` may be desired in some cases – research later\n var numberOfChecks = flipVariations ? 3 : 1;\n\n var _loop = function _loop(_i) {\n var fittingPlacement = placements.find(function (placement) {\n var checks = checksMap.get(placement);\n\n if (checks) {\n return checks.slice(0, _i).every(function (check) {\n return check;\n });\n }\n });\n\n if (fittingPlacement) {\n firstFittingPlacement = fittingPlacement;\n return "break";\n }\n };\n\n for (var _i = numberOfChecks; _i > 0; _i--) {\n var _ret = _loop(_i);\n\n if (_ret === "break") break;\n }\n }\n\n if (state.placement !== firstFittingPlacement) {\n state.modifiersData[name]._skip = true;\n state.placement = firstFittingPlacement;\n state.reset = true;\n }\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__["default"] = ({\n name: \'flip\',\n enabled: true,\n phase: \'main\',\n fn: flip,\n requiresIfExists: [\'offset\'],\n data: {\n _skip: false\n }\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/flip.js?')},"./node_modules/@popperjs/core/lib/modifiers/hide.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../enums.js */ \"./node_modules/@popperjs/core/lib/enums.js\");\n/* harmony import */ var _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/detectOverflow.js */ \"./node_modules/@popperjs/core/lib/utils/detectOverflow.js\");\n\n\n\nfunction getSideOffsets(overflow, rect, preventedOffsets) {\n if (preventedOffsets === void 0) {\n preventedOffsets = {\n x: 0,\n y: 0\n };\n }\n\n return {\n top: overflow.top - rect.height - preventedOffsets.y,\n right: overflow.right - rect.width + preventedOffsets.x,\n bottom: overflow.bottom - rect.height + preventedOffsets.y,\n left: overflow.left - rect.width - preventedOffsets.x\n };\n}\n\nfunction isAnySideFullyClipped(overflow) {\n return [_enums_js__WEBPACK_IMPORTED_MODULE_0__.top, _enums_js__WEBPACK_IMPORTED_MODULE_0__.right, _enums_js__WEBPACK_IMPORTED_MODULE_0__.bottom, _enums_js__WEBPACK_IMPORTED_MODULE_0__.left].some(function (side) {\n return overflow[side] >= 0;\n });\n}\n\nfunction hide(_ref) {\n var state = _ref.state,\n name = _ref.name;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var preventedOffsets = state.modifiersData.preventOverflow;\n var referenceOverflow = (0,_utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(state, {\n elementContext: 'reference'\n });\n var popperAltOverflow = (0,_utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(state, {\n altBoundary: true\n });\n var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect);\n var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets);\n var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets);\n var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets);\n state.modifiersData[name] = {\n referenceClippingOffsets: referenceClippingOffsets,\n popperEscapeOffsets: popperEscapeOffsets,\n isReferenceHidden: isReferenceHidden,\n hasPopperEscaped: hasPopperEscaped\n };\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-reference-hidden': isReferenceHidden,\n 'data-popper-escaped': hasPopperEscaped\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'hide',\n enabled: true,\n phase: 'main',\n requiresIfExists: ['preventOverflow'],\n fn: hide\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/hide.js?")},"./node_modules/@popperjs/core/lib/modifiers/index.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ applyStyles: function() { return /* reexport safe */ _applyStyles_js__WEBPACK_IMPORTED_MODULE_0__["default"]; },\n/* harmony export */ arrow: function() { return /* reexport safe */ _arrow_js__WEBPACK_IMPORTED_MODULE_1__["default"]; },\n/* harmony export */ computeStyles: function() { return /* reexport safe */ _computeStyles_js__WEBPACK_IMPORTED_MODULE_2__["default"]; },\n/* harmony export */ eventListeners: function() { return /* reexport safe */ _eventListeners_js__WEBPACK_IMPORTED_MODULE_3__["default"]; },\n/* harmony export */ flip: function() { return /* reexport safe */ _flip_js__WEBPACK_IMPORTED_MODULE_4__["default"]; },\n/* harmony export */ hide: function() { return /* reexport safe */ _hide_js__WEBPACK_IMPORTED_MODULE_5__["default"]; },\n/* harmony export */ offset: function() { return /* reexport safe */ _offset_js__WEBPACK_IMPORTED_MODULE_6__["default"]; },\n/* harmony export */ popperOffsets: function() { return /* reexport safe */ _popperOffsets_js__WEBPACK_IMPORTED_MODULE_7__["default"]; },\n/* harmony export */ preventOverflow: function() { return /* reexport safe */ _preventOverflow_js__WEBPACK_IMPORTED_MODULE_8__["default"]; }\n/* harmony export */ });\n/* harmony import */ var _applyStyles_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./applyStyles.js */ "./node_modules/@popperjs/core/lib/modifiers/applyStyles.js");\n/* harmony import */ var _arrow_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./arrow.js */ "./node_modules/@popperjs/core/lib/modifiers/arrow.js");\n/* harmony import */ var _computeStyles_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./computeStyles.js */ "./node_modules/@popperjs/core/lib/modifiers/computeStyles.js");\n/* harmony import */ var _eventListeners_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./eventListeners.js */ "./node_modules/@popperjs/core/lib/modifiers/eventListeners.js");\n/* harmony import */ var _flip_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./flip.js */ "./node_modules/@popperjs/core/lib/modifiers/flip.js");\n/* harmony import */ var _hide_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hide.js */ "./node_modules/@popperjs/core/lib/modifiers/hide.js");\n/* harmony import */ var _offset_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./offset.js */ "./node_modules/@popperjs/core/lib/modifiers/offset.js");\n/* harmony import */ var _popperOffsets_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./popperOffsets.js */ "./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js");\n/* harmony import */ var _preventOverflow_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./preventOverflow.js */ "./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js");\n\n\n\n\n\n\n\n\n\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/index.js?')},"./node_modules/@popperjs/core/lib/modifiers/offset.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ distanceAndSkiddingToXY: function() { return /* binding */ distanceAndSkiddingToXY; }\n/* harmony export */ });\n/* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ \"./node_modules/@popperjs/core/lib/utils/getBasePlacement.js\");\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../enums.js */ \"./node_modules/@popperjs/core/lib/enums.js\");\n\n // eslint-disable-next-line import/no-unused-modules\n\nfunction distanceAndSkiddingToXY(placement, rects, offset) {\n var basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(placement);\n var invertDistance = [_enums_js__WEBPACK_IMPORTED_MODULE_1__.left, _enums_js__WEBPACK_IMPORTED_MODULE_1__.top].indexOf(basePlacement) >= 0 ? -1 : 1;\n\n var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, {\n placement: placement\n })) : offset,\n skidding = _ref[0],\n distance = _ref[1];\n\n skidding = skidding || 0;\n distance = (distance || 0) * invertDistance;\n return [_enums_js__WEBPACK_IMPORTED_MODULE_1__.left, _enums_js__WEBPACK_IMPORTED_MODULE_1__.right].indexOf(basePlacement) >= 0 ? {\n x: distance,\n y: skidding\n } : {\n x: skidding,\n y: distance\n };\n}\n\nfunction offset(_ref2) {\n var state = _ref2.state,\n options = _ref2.options,\n name = _ref2.name;\n var _options$offset = options.offset,\n offset = _options$offset === void 0 ? [0, 0] : _options$offset;\n var data = _enums_js__WEBPACK_IMPORTED_MODULE_1__.placements.reduce(function (acc, placement) {\n acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset);\n return acc;\n }, {});\n var _data$state$placement = data[state.placement],\n x = _data$state$placement.x,\n y = _data$state$placement.y;\n\n if (state.modifiersData.popperOffsets != null) {\n state.modifiersData.popperOffsets.x += x;\n state.modifiersData.popperOffsets.y += y;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'offset',\n enabled: true,\n phase: 'main',\n requires: ['popperOffsets'],\n fn: offset\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/offset.js?")},"./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utils_computeOffsets_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/computeOffsets.js */ \"./node_modules/@popperjs/core/lib/utils/computeOffsets.js\");\n\n\nfunction popperOffsets(_ref) {\n var state = _ref.state,\n name = _ref.name;\n // Offsets are the actual position the popper needs to have to be\n // properly positioned near its reference element\n // This is the most basic placement, and will be adjusted by\n // the modifiers in the next step\n state.modifiersData[name] = (0,_utils_computeOffsets_js__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({\n reference: state.rects.reference,\n element: state.rects.popper,\n strategy: 'absolute',\n placement: state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n name: 'popperOffsets',\n enabled: true,\n phase: 'read',\n fn: popperOffsets,\n data: {}\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js?")},"./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n/* harmony import */ var _utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils/getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js");\n/* harmony import */ var _utils_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/getMainAxisFromPlacement.js */ "./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js");\n/* harmony import */ var _utils_getAltAxis_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils/getAltAxis.js */ "./node_modules/@popperjs/core/lib/utils/getAltAxis.js");\n/* harmony import */ var _utils_within_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../utils/within.js */ "./node_modules/@popperjs/core/lib/utils/within.js");\n/* harmony import */ var _dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../dom-utils/getLayoutRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js");\n/* harmony import */ var _dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../dom-utils/getOffsetParent.js */ "./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js");\n/* harmony import */ var _utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils/detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js");\n/* harmony import */ var _utils_getVariation_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils/getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js");\n/* harmony import */ var _utils_getFreshSideObject_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utils/getFreshSideObject.js */ "./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js");\n/* harmony import */ var _utils_math_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../utils/math.js */ "./node_modules/@popperjs/core/lib/utils/math.js");\n\n\n\n\n\n\n\n\n\n\n\n\nfunction preventOverflow(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n padding = options.padding,\n _options$tether = options.tether,\n tether = _options$tether === void 0 ? true : _options$tether,\n _options$tetherOffset = options.tetherOffset,\n tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset;\n var overflow = (0,_utils_detectOverflow_js__WEBPACK_IMPORTED_MODULE_0__["default"])(state, {\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n altBoundary: altBoundary\n });\n var basePlacement = (0,_utils_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_1__["default"])(state.placement);\n var variation = (0,_utils_getVariation_js__WEBPACK_IMPORTED_MODULE_2__["default"])(state.placement);\n var isBasePlacement = !variation;\n var mainAxis = (0,_utils_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(basePlacement);\n var altAxis = (0,_utils_getAltAxis_js__WEBPACK_IMPORTED_MODULE_4__["default"])(mainAxis);\n var popperOffsets = state.modifiersData.popperOffsets;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var tetherOffsetValue = typeof tetherOffset === \'function\' ? tetherOffset(Object.assign({}, state.rects, {\n placement: state.placement\n })) : tetherOffset;\n var normalizedTetherOffsetValue = typeof tetherOffsetValue === \'number\' ? {\n mainAxis: tetherOffsetValue,\n altAxis: tetherOffsetValue\n } : Object.assign({\n mainAxis: 0,\n altAxis: 0\n }, tetherOffsetValue);\n var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null;\n var data = {\n x: 0,\n y: 0\n };\n\n if (!popperOffsets) {\n return;\n }\n\n if (checkMainAxis) {\n var _offsetModifierState$;\n\n var mainSide = mainAxis === \'y\' ? _enums_js__WEBPACK_IMPORTED_MODULE_5__.top : _enums_js__WEBPACK_IMPORTED_MODULE_5__.left;\n var altSide = mainAxis === \'y\' ? _enums_js__WEBPACK_IMPORTED_MODULE_5__.bottom : _enums_js__WEBPACK_IMPORTED_MODULE_5__.right;\n var len = mainAxis === \'y\' ? \'height\' : \'width\';\n var offset = popperOffsets[mainAxis];\n var min = offset + overflow[mainSide];\n var max = offset - overflow[altSide];\n var additive = tether ? -popperRect[len] / 2 : 0;\n var minLen = variation === _enums_js__WEBPACK_IMPORTED_MODULE_5__.start ? referenceRect[len] : popperRect[len];\n var maxLen = variation === _enums_js__WEBPACK_IMPORTED_MODULE_5__.start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn\'t go\n // outside the reference bounds\n\n var arrowElement = state.elements.arrow;\n var arrowRect = tether && arrowElement ? (0,_dom_utils_getLayoutRect_js__WEBPACK_IMPORTED_MODULE_6__["default"])(arrowElement) : {\n width: 0,\n height: 0\n };\n var arrowPaddingObject = state.modifiersData[\'arrow#persistent\'] ? state.modifiersData[\'arrow#persistent\'].padding : (0,_utils_getFreshSideObject_js__WEBPACK_IMPORTED_MODULE_7__["default"])();\n var arrowPaddingMin = arrowPaddingObject[mainSide];\n var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don\'t want\n // to include its full size in the calculation. If the reference is small\n // and near the edge of a boundary, the popper can overflow even if the\n // reference is not overflowing as well (e.g. virtual elements with no\n // width or height)\n\n var arrowLen = (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_8__.within)(0, referenceRect[len], arrowRect[len]);\n var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis;\n var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis;\n var arrowOffsetParent = state.elements.arrow && (0,_dom_utils_getOffsetParent_js__WEBPACK_IMPORTED_MODULE_9__["default"])(state.elements.arrow);\n var clientOffset = arrowOffsetParent ? mainAxis === \'y\' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0;\n var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0;\n var tetherMin = offset + minOffset - offsetModifierValue - clientOffset;\n var tetherMax = offset + maxOffset - offsetModifierValue;\n var preventedOffset = (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_8__.within)(tether ? (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_10__.min)(min, tetherMin) : min, offset, tether ? (0,_utils_math_js__WEBPACK_IMPORTED_MODULE_10__.max)(max, tetherMax) : max);\n popperOffsets[mainAxis] = preventedOffset;\n data[mainAxis] = preventedOffset - offset;\n }\n\n if (checkAltAxis) {\n var _offsetModifierState$2;\n\n var _mainSide = mainAxis === \'x\' ? _enums_js__WEBPACK_IMPORTED_MODULE_5__.top : _enums_js__WEBPACK_IMPORTED_MODULE_5__.left;\n\n var _altSide = mainAxis === \'x\' ? _enums_js__WEBPACK_IMPORTED_MODULE_5__.bottom : _enums_js__WEBPACK_IMPORTED_MODULE_5__.right;\n\n var _offset = popperOffsets[altAxis];\n\n var _len = altAxis === \'y\' ? \'height\' : \'width\';\n\n var _min = _offset + overflow[_mainSide];\n\n var _max = _offset - overflow[_altSide];\n\n var isOriginSide = [_enums_js__WEBPACK_IMPORTED_MODULE_5__.top, _enums_js__WEBPACK_IMPORTED_MODULE_5__.left].indexOf(basePlacement) !== -1;\n\n var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0;\n\n var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis;\n\n var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max;\n\n var _preventedOffset = tether && isOriginSide ? (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_8__.withinMaxClamp)(_tetherMin, _offset, _tetherMax) : (0,_utils_within_js__WEBPACK_IMPORTED_MODULE_8__.within)(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max);\n\n popperOffsets[altAxis] = _preventedOffset;\n data[altAxis] = _preventedOffset - _offset;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\n/* harmony default export */ __webpack_exports__["default"] = ({\n name: \'preventOverflow\',\n enabled: true,\n phase: \'main\',\n fn: preventOverflow,\n requiresIfExists: [\'offset\']\n});\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js?')},"./node_modules/@popperjs/core/lib/popper-lite.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ createPopper: function() { return /* binding */ createPopper; },\n/* harmony export */ defaultModifiers: function() { return /* binding */ defaultModifiers; },\n/* harmony export */ detectOverflow: function() { return /* reexport safe */ _createPopper_js__WEBPACK_IMPORTED_MODULE_5__["default"]; },\n/* harmony export */ popperGenerator: function() { return /* reexport safe */ _createPopper_js__WEBPACK_IMPORTED_MODULE_4__.popperGenerator; }\n/* harmony export */ });\n/* harmony import */ var _createPopper_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./createPopper.js */ "./node_modules/@popperjs/core/lib/createPopper.js");\n/* harmony import */ var _createPopper_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./createPopper.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js");\n/* harmony import */ var _modifiers_eventListeners_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./modifiers/eventListeners.js */ "./node_modules/@popperjs/core/lib/modifiers/eventListeners.js");\n/* harmony import */ var _modifiers_popperOffsets_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./modifiers/popperOffsets.js */ "./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js");\n/* harmony import */ var _modifiers_computeStyles_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./modifiers/computeStyles.js */ "./node_modules/@popperjs/core/lib/modifiers/computeStyles.js");\n/* harmony import */ var _modifiers_applyStyles_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./modifiers/applyStyles.js */ "./node_modules/@popperjs/core/lib/modifiers/applyStyles.js");\n\n\n\n\n\nvar defaultModifiers = [_modifiers_eventListeners_js__WEBPACK_IMPORTED_MODULE_0__["default"], _modifiers_popperOffsets_js__WEBPACK_IMPORTED_MODULE_1__["default"], _modifiers_computeStyles_js__WEBPACK_IMPORTED_MODULE_2__["default"], _modifiers_applyStyles_js__WEBPACK_IMPORTED_MODULE_3__["default"]];\nvar createPopper = /*#__PURE__*/(0,_createPopper_js__WEBPACK_IMPORTED_MODULE_4__.popperGenerator)({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\n\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/popper-lite.js?')},"./node_modules/@popperjs/core/lib/popper.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ applyStyles: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.applyStyles; },\n/* harmony export */ arrow: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.arrow; },\n/* harmony export */ computeStyles: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.computeStyles; },\n/* harmony export */ createPopper: function() { return /* binding */ createPopper; },\n/* harmony export */ createPopperLite: function() { return /* reexport safe */ _popper_lite_js__WEBPACK_IMPORTED_MODULE_11__.createPopper; },\n/* harmony export */ defaultModifiers: function() { return /* binding */ defaultModifiers; },\n/* harmony export */ detectOverflow: function() { return /* reexport safe */ _createPopper_js__WEBPACK_IMPORTED_MODULE_10__["default"]; },\n/* harmony export */ eventListeners: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.eventListeners; },\n/* harmony export */ flip: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.flip; },\n/* harmony export */ hide: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.hide; },\n/* harmony export */ offset: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.offset; },\n/* harmony export */ popperGenerator: function() { return /* reexport safe */ _createPopper_js__WEBPACK_IMPORTED_MODULE_9__.popperGenerator; },\n/* harmony export */ popperOffsets: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.popperOffsets; },\n/* harmony export */ preventOverflow: function() { return /* reexport safe */ _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__.preventOverflow; }\n/* harmony export */ });\n/* harmony import */ var _createPopper_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./createPopper.js */ "./node_modules/@popperjs/core/lib/createPopper.js");\n/* harmony import */ var _createPopper_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./createPopper.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js");\n/* harmony import */ var _modifiers_eventListeners_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./modifiers/eventListeners.js */ "./node_modules/@popperjs/core/lib/modifiers/eventListeners.js");\n/* harmony import */ var _modifiers_popperOffsets_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./modifiers/popperOffsets.js */ "./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js");\n/* harmony import */ var _modifiers_computeStyles_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./modifiers/computeStyles.js */ "./node_modules/@popperjs/core/lib/modifiers/computeStyles.js");\n/* harmony import */ var _modifiers_applyStyles_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./modifiers/applyStyles.js */ "./node_modules/@popperjs/core/lib/modifiers/applyStyles.js");\n/* harmony import */ var _modifiers_offset_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./modifiers/offset.js */ "./node_modules/@popperjs/core/lib/modifiers/offset.js");\n/* harmony import */ var _modifiers_flip_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./modifiers/flip.js */ "./node_modules/@popperjs/core/lib/modifiers/flip.js");\n/* harmony import */ var _modifiers_preventOverflow_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./modifiers/preventOverflow.js */ "./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js");\n/* harmony import */ var _modifiers_arrow_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./modifiers/arrow.js */ "./node_modules/@popperjs/core/lib/modifiers/arrow.js");\n/* harmony import */ var _modifiers_hide_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./modifiers/hide.js */ "./node_modules/@popperjs/core/lib/modifiers/hide.js");\n/* harmony import */ var _popper_lite_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./popper-lite.js */ "./node_modules/@popperjs/core/lib/popper-lite.js");\n/* harmony import */ var _modifiers_index_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./modifiers/index.js */ "./node_modules/@popperjs/core/lib/modifiers/index.js");\n\n\n\n\n\n\n\n\n\n\nvar defaultModifiers = [_modifiers_eventListeners_js__WEBPACK_IMPORTED_MODULE_0__["default"], _modifiers_popperOffsets_js__WEBPACK_IMPORTED_MODULE_1__["default"], _modifiers_computeStyles_js__WEBPACK_IMPORTED_MODULE_2__["default"], _modifiers_applyStyles_js__WEBPACK_IMPORTED_MODULE_3__["default"], _modifiers_offset_js__WEBPACK_IMPORTED_MODULE_4__["default"], _modifiers_flip_js__WEBPACK_IMPORTED_MODULE_5__["default"], _modifiers_preventOverflow_js__WEBPACK_IMPORTED_MODULE_6__["default"], _modifiers_arrow_js__WEBPACK_IMPORTED_MODULE_7__["default"], _modifiers_hide_js__WEBPACK_IMPORTED_MODULE_8__["default"]];\nvar createPopper = /*#__PURE__*/(0,_createPopper_js__WEBPACK_IMPORTED_MODULE_9__.popperGenerator)({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\n // eslint-disable-next-line import/no-unused-modules\n\n // eslint-disable-next-line import/no-unused-modules\n\n\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/popper.js?')},"./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ computeAutoPlacement; }\n/* harmony export */ });\n/* harmony import */ var _getVariation_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js");\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n/* harmony import */ var _detectOverflow_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./detectOverflow.js */ "./node_modules/@popperjs/core/lib/utils/detectOverflow.js");\n/* harmony import */ var _getBasePlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js");\n\n\n\n\nfunction computeAutoPlacement(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n placement = _options.placement,\n boundary = _options.boundary,\n rootBoundary = _options.rootBoundary,\n padding = _options.padding,\n flipVariations = _options.flipVariations,\n _options$allowedAutoP = _options.allowedAutoPlacements,\n allowedAutoPlacements = _options$allowedAutoP === void 0 ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.placements : _options$allowedAutoP;\n var variation = (0,_getVariation_js__WEBPACK_IMPORTED_MODULE_1__["default"])(placement);\n var placements = variation ? flipVariations ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.variationPlacements : _enums_js__WEBPACK_IMPORTED_MODULE_0__.variationPlacements.filter(function (placement) {\n return (0,_getVariation_js__WEBPACK_IMPORTED_MODULE_1__["default"])(placement) === variation;\n }) : _enums_js__WEBPACK_IMPORTED_MODULE_0__.basePlacements;\n var allowedPlacements = placements.filter(function (placement) {\n return allowedAutoPlacements.indexOf(placement) >= 0;\n });\n\n if (allowedPlacements.length === 0) {\n allowedPlacements = placements;\n } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions...\n\n\n var overflows = allowedPlacements.reduce(function (acc, placement) {\n acc[placement] = (0,_detectOverflow_js__WEBPACK_IMPORTED_MODULE_2__["default"])(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding\n })[(0,_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(placement)];\n return acc;\n }, {});\n return Object.keys(overflows).sort(function (a, b) {\n return overflows[a] - overflows[b];\n });\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js?')},"./node_modules/@popperjs/core/lib/utils/computeOffsets.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ computeOffsets; }\n/* harmony export */ });\n/* harmony import */ var _getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getBasePlacement.js */ "./node_modules/@popperjs/core/lib/utils/getBasePlacement.js");\n/* harmony import */ var _getVariation_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getVariation.js */ "./node_modules/@popperjs/core/lib/utils/getVariation.js");\n/* harmony import */ var _getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getMainAxisFromPlacement.js */ "./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js");\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n\n\n\n\nfunction computeOffsets(_ref) {\n var reference = _ref.reference,\n element = _ref.element,\n placement = _ref.placement;\n var basePlacement = placement ? (0,_getBasePlacement_js__WEBPACK_IMPORTED_MODULE_0__["default"])(placement) : null;\n var variation = placement ? (0,_getVariation_js__WEBPACK_IMPORTED_MODULE_1__["default"])(placement) : null;\n var commonX = reference.x + reference.width / 2 - element.width / 2;\n var commonY = reference.y + reference.height / 2 - element.height / 2;\n var offsets;\n\n switch (basePlacement) {\n case _enums_js__WEBPACK_IMPORTED_MODULE_2__.top:\n offsets = {\n x: commonX,\n y: reference.y - element.height\n };\n break;\n\n case _enums_js__WEBPACK_IMPORTED_MODULE_2__.bottom:\n offsets = {\n x: commonX,\n y: reference.y + reference.height\n };\n break;\n\n case _enums_js__WEBPACK_IMPORTED_MODULE_2__.right:\n offsets = {\n x: reference.x + reference.width,\n y: commonY\n };\n break;\n\n case _enums_js__WEBPACK_IMPORTED_MODULE_2__.left:\n offsets = {\n x: reference.x - element.width,\n y: commonY\n };\n break;\n\n default:\n offsets = {\n x: reference.x,\n y: reference.y\n };\n }\n\n var mainAxis = basePlacement ? (0,_getMainAxisFromPlacement_js__WEBPACK_IMPORTED_MODULE_3__["default"])(basePlacement) : null;\n\n if (mainAxis != null) {\n var len = mainAxis === \'y\' ? \'height\' : \'width\';\n\n switch (variation) {\n case _enums_js__WEBPACK_IMPORTED_MODULE_2__.start:\n offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2);\n break;\n\n case _enums_js__WEBPACK_IMPORTED_MODULE_2__.end:\n offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2);\n break;\n\n default:\n }\n }\n\n return offsets;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/computeOffsets.js?')},"./node_modules/@popperjs/core/lib/utils/debounce.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ debounce; }\n/* harmony export */ });\nfunction debounce(fn) {\n var pending;\n return function () {\n if (!pending) {\n pending = new Promise(function (resolve) {\n Promise.resolve().then(function () {\n pending = undefined;\n resolve(fn());\n });\n });\n }\n\n return pending;\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/debounce.js?')},"./node_modules/@popperjs/core/lib/utils/detectOverflow.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ detectOverflow; }\n/* harmony export */ });\n/* harmony import */ var _dom_utils_getClippingRect_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../dom-utils/getClippingRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js");\n/* harmony import */ var _dom_utils_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../dom-utils/getDocumentElement.js */ "./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js");\n/* harmony import */ var _dom_utils_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../dom-utils/getBoundingClientRect.js */ "./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js");\n/* harmony import */ var _computeOffsets_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./computeOffsets.js */ "./node_modules/@popperjs/core/lib/utils/computeOffsets.js");\n/* harmony import */ var _rectToClientRect_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./rectToClientRect.js */ "./node_modules/@popperjs/core/lib/utils/rectToClientRect.js");\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n/* harmony import */ var _dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../dom-utils/instanceOf.js */ "./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js");\n/* harmony import */ var _mergePaddingObject_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./mergePaddingObject.js */ "./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js");\n/* harmony import */ var _expandToHashMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./expandToHashMap.js */ "./node_modules/@popperjs/core/lib/utils/expandToHashMap.js");\n\n\n\n\n\n\n\n\n // eslint-disable-next-line import/no-unused-modules\n\nfunction detectOverflow(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n _options$placement = _options.placement,\n placement = _options$placement === void 0 ? state.placement : _options$placement,\n _options$strategy = _options.strategy,\n strategy = _options$strategy === void 0 ? state.strategy : _options$strategy,\n _options$boundary = _options.boundary,\n boundary = _options$boundary === void 0 ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.clippingParents : _options$boundary,\n _options$rootBoundary = _options.rootBoundary,\n rootBoundary = _options$rootBoundary === void 0 ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.viewport : _options$rootBoundary,\n _options$elementConte = _options.elementContext,\n elementContext = _options$elementConte === void 0 ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper : _options$elementConte,\n _options$altBoundary = _options.altBoundary,\n altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary,\n _options$padding = _options.padding,\n padding = _options$padding === void 0 ? 0 : _options$padding;\n var paddingObject = (0,_mergePaddingObject_js__WEBPACK_IMPORTED_MODULE_1__["default"])(typeof padding !== \'number\' ? padding : (0,_expandToHashMap_js__WEBPACK_IMPORTED_MODULE_2__["default"])(padding, _enums_js__WEBPACK_IMPORTED_MODULE_0__.basePlacements));\n var altContext = elementContext === _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper ? _enums_js__WEBPACK_IMPORTED_MODULE_0__.reference : _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper;\n var popperRect = state.rects.popper;\n var element = state.elements[altBoundary ? altContext : elementContext];\n var clippingClientRect = (0,_dom_utils_getClippingRect_js__WEBPACK_IMPORTED_MODULE_3__["default"])((0,_dom_utils_instanceOf_js__WEBPACK_IMPORTED_MODULE_4__.isElement)(element) ? element : element.contextElement || (0,_dom_utils_getDocumentElement_js__WEBPACK_IMPORTED_MODULE_5__["default"])(state.elements.popper), boundary, rootBoundary, strategy);\n var referenceClientRect = (0,_dom_utils_getBoundingClientRect_js__WEBPACK_IMPORTED_MODULE_6__["default"])(state.elements.reference);\n var popperOffsets = (0,_computeOffsets_js__WEBPACK_IMPORTED_MODULE_7__["default"])({\n reference: referenceClientRect,\n element: popperRect,\n strategy: \'absolute\',\n placement: placement\n });\n var popperClientRect = (0,_rectToClientRect_js__WEBPACK_IMPORTED_MODULE_8__["default"])(Object.assign({}, popperRect, popperOffsets));\n var elementClientRect = elementContext === _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect\n // 0 or negative = within the clipping rect\n\n var overflowOffsets = {\n top: clippingClientRect.top - elementClientRect.top + paddingObject.top,\n bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,\n left: clippingClientRect.left - elementClientRect.left + paddingObject.left,\n right: elementClientRect.right - clippingClientRect.right + paddingObject.right\n };\n var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element\n\n if (elementContext === _enums_js__WEBPACK_IMPORTED_MODULE_0__.popper && offsetData) {\n var offset = offsetData[placement];\n Object.keys(overflowOffsets).forEach(function (key) {\n var multiply = [_enums_js__WEBPACK_IMPORTED_MODULE_0__.right, _enums_js__WEBPACK_IMPORTED_MODULE_0__.bottom].indexOf(key) >= 0 ? 1 : -1;\n var axis = [_enums_js__WEBPACK_IMPORTED_MODULE_0__.top, _enums_js__WEBPACK_IMPORTED_MODULE_0__.bottom].indexOf(key) >= 0 ? \'y\' : \'x\';\n overflowOffsets[key] += offset[axis] * multiply;\n });\n }\n\n return overflowOffsets;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/detectOverflow.js?')},"./node_modules/@popperjs/core/lib/utils/expandToHashMap.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ expandToHashMap; }\n/* harmony export */ });\nfunction expandToHashMap(value, keys) {\n return keys.reduce(function (hashMap, key) {\n hashMap[key] = value;\n return hashMap;\n }, {});\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/expandToHashMap.js?')},"./node_modules/@popperjs/core/lib/utils/getAltAxis.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ getAltAxis; }\n/* harmony export */ });\nfunction getAltAxis(axis) {\n return axis === 'x' ? 'y' : 'x';\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/getAltAxis.js?")},"./node_modules/@popperjs/core/lib/utils/getBasePlacement.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ getBasePlacement; }\n/* harmony export */ });\n\nfunction getBasePlacement(placement) {\n return placement.split('-')[0];\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/getBasePlacement.js?")},"./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getFreshSideObject; }\n/* harmony export */ });\nfunction getFreshSideObject() {\n return {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0\n };\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js?')},"./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ getMainAxisFromPlacement; }\n/* harmony export */ });\nfunction getMainAxisFromPlacement(placement) {\n return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js?")},"./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ getOppositePlacement; }\n/* harmony export */ });\nvar hash = {\n left: 'right',\n right: 'left',\n bottom: 'top',\n top: 'bottom'\n};\nfunction getOppositePlacement(placement) {\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js?")},"./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ getOppositeVariationPlacement; }\n/* harmony export */ });\nvar hash = {\n start: 'end',\n end: 'start'\n};\nfunction getOppositeVariationPlacement(placement) {\n return placement.replace(/start|end/g, function (matched) {\n return hash[matched];\n });\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js?")},"./node_modules/@popperjs/core/lib/utils/getVariation.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": function() { return /* binding */ getVariation; }\n/* harmony export */ });\nfunction getVariation(placement) {\n return placement.split('-')[1];\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/getVariation.js?")},"./node_modules/@popperjs/core/lib/utils/math.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ max: function() { return /* binding */ max; },\n/* harmony export */ min: function() { return /* binding */ min; },\n/* harmony export */ round: function() { return /* binding */ round; }\n/* harmony export */ });\nvar max = Math.max;\nvar min = Math.min;\nvar round = Math.round;\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/math.js?")},"./node_modules/@popperjs/core/lib/utils/mergeByName.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ mergeByName; }\n/* harmony export */ });\nfunction mergeByName(modifiers) {\n var merged = modifiers.reduce(function (merged, current) {\n var existing = merged[current.name];\n merged[current.name] = existing ? Object.assign({}, existing, current, {\n options: Object.assign({}, existing.options, current.options),\n data: Object.assign({}, existing.data, current.data)\n }) : current;\n return merged;\n }, {}); // IE11 does not support Object.values\n\n return Object.keys(merged).map(function (key) {\n return merged[key];\n });\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/mergeByName.js?')},"./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ mergePaddingObject; }\n/* harmony export */ });\n/* harmony import */ var _getFreshSideObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./getFreshSideObject.js */ "./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js");\n\nfunction mergePaddingObject(paddingObject) {\n return Object.assign({}, (0,_getFreshSideObject_js__WEBPACK_IMPORTED_MODULE_0__["default"])(), paddingObject);\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js?')},"./node_modules/@popperjs/core/lib/utils/orderModifiers.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ orderModifiers; }\n/* harmony export */ });\n/* harmony import */ var _enums_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../enums.js */ "./node_modules/@popperjs/core/lib/enums.js");\n // source: https://stackoverflow.com/questions/49875255\n\nfunction order(modifiers) {\n var map = new Map();\n var visited = new Set();\n var result = [];\n modifiers.forEach(function (modifier) {\n map.set(modifier.name, modifier);\n }); // On visiting object, check for its dependencies and visit them recursively\n\n function sort(modifier) {\n visited.add(modifier.name);\n var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []);\n requires.forEach(function (dep) {\n if (!visited.has(dep)) {\n var depModifier = map.get(dep);\n\n if (depModifier) {\n sort(depModifier);\n }\n }\n });\n result.push(modifier);\n }\n\n modifiers.forEach(function (modifier) {\n if (!visited.has(modifier.name)) {\n // check for visited object\n sort(modifier);\n }\n });\n return result;\n}\n\nfunction orderModifiers(modifiers) {\n // order based on dependencies\n var orderedModifiers = order(modifiers); // order based on phase\n\n return _enums_js__WEBPACK_IMPORTED_MODULE_0__.modifierPhases.reduce(function (acc, phase) {\n return acc.concat(orderedModifiers.filter(function (modifier) {\n return modifier.phase === phase;\n }));\n }, []);\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/orderModifiers.js?')},"./node_modules/@popperjs/core/lib/utils/rectToClientRect.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ rectToClientRect; }\n/* harmony export */ });\nfunction rectToClientRect(rect) {\n return Object.assign({}, rect, {\n left: rect.x,\n top: rect.y,\n right: rect.x + rect.width,\n bottom: rect.y + rect.height\n });\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/rectToClientRect.js?')},"./node_modules/@popperjs/core/lib/utils/userAgent.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "default": function() { return /* binding */ getUAString; }\n/* harmony export */ });\nfunction getUAString() {\n var uaData = navigator.userAgentData;\n\n if (uaData != null && uaData.brands && Array.isArray(uaData.brands)) {\n return uaData.brands.map(function (item) {\n return item.brand + "/" + item.version;\n }).join(\' \');\n }\n\n return navigator.userAgent;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/userAgent.js?')},"./node_modules/@popperjs/core/lib/utils/within.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ within: function() { return /* binding */ within; },\n/* harmony export */ withinMaxClamp: function() { return /* binding */ withinMaxClamp; }\n/* harmony export */ });\n/* harmony import */ var _math_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./math.js */ "./node_modules/@popperjs/core/lib/utils/math.js");\n\nfunction within(min, value, max) {\n return (0,_math_js__WEBPACK_IMPORTED_MODULE_0__.max)(min, (0,_math_js__WEBPACK_IMPORTED_MODULE_0__.min)(value, max));\n}\nfunction withinMaxClamp(min, value, max) {\n var v = within(min, value, max);\n return v > max ? max : v;\n}\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./node_modules/@popperjs/core/lib/utils/within.js?')},"./js/bootstrap.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval('__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ bootstrap: function() { return /* reexport module object */ bootstrap__WEBPACK_IMPORTED_MODULE_0__; }\n/* harmony export */ });\n/* harmony import */ var bootstrap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! bootstrap */ "./node_modules/bootstrap/dist/js/bootstrap.esm.js");\n\ntry {\n window.bootstrap = bootstrap__WEBPACK_IMPORTED_MODULE_0__;\n} catch (e) {}\n\n\n//# sourceURL=webpack://sneat-bootstrap-html-admin-template-free/./js/bootstrap.js?')},"./node_modules/bootstrap/dist/js/bootstrap.esm.js":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ Alert: function() { return /* binding */ Alert; },\n/* harmony export */ Button: function() { return /* binding */ Button; },\n/* harmony export */ Carousel: function() { return /* binding */ Carousel; },\n/* harmony export */ Collapse: function() { return /* binding */ Collapse; },\n/* harmony export */ Dropdown: function() { return /* binding */ Dropdown; },\n/* harmony export */ Modal: function() { return /* binding */ Modal; },\n/* harmony export */ Offcanvas: function() { return /* binding */ Offcanvas; },\n/* harmony export */ Popover: function() { return /* binding */ Popover; },\n/* harmony export */ ScrollSpy: function() { return /* binding */ ScrollSpy; },\n/* harmony export */ Tab: function() { return /* binding */ Tab; },\n/* harmony export */ Toast: function() { return /* binding */ Toast; },\n/* harmony export */ Tooltip: function() { return /* binding */ Tooltip; }\n/* harmony export */ });\n/* harmony import */ var _popperjs_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @popperjs/core */ \"./node_modules/@popperjs/core/lib/index.js\");\n/* harmony import */ var _popperjs_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @popperjs/core */ \"./node_modules/@popperjs/core/lib/popper.js\");\nfunction _superPropGet(t, e, o, r) { var p = _get(_getPrototypeOf(1 & r ? t.prototype : t), e, o); return 2 & r && \"function\" == typeof p ? function (t) { return p.apply(o, t); } : p; }\nfunction _get() { return _get = \"undefined\" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) { var p = _superPropBase(e, t); if (p) { var n = Object.getOwnPropertyDescriptor(p, t); return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value; } }, _get.apply(null, arguments); }\nfunction _superPropBase(t, o) { for (; !{}.hasOwnProperty.call(t, o) && null !== (t = _getPrototypeOf(t));); return t; }\nfunction _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }\nfunction _possibleConstructorReturn(t, e) { if (e && (\"object\" == _typeof(e) || \"function\" == typeof e)) return e; if (void 0 !== e) throw new TypeError(\"Derived constructors may only return object or undefined\"); return _assertThisInitialized(t); }\nfunction _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); return e; }\nfunction _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }\nfunction _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }\nfunction _inherits(t, e) { if (\"function\" != typeof e && null !== e) throw new TypeError(\"Super expression must either be null or a function\"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, \"prototype\", { writable: !1 }), e && _setPrototypeOf(t, e); }\nfunction _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nfunction _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }\nfunction _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError(\"Cannot call a class as a function\"); }\nfunction _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, \"value\" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }\nfunction _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, \"prototype\", { writable: !1 }), e; }\nfunction _toPropertyKey(t) { var i = _toPrimitive(t, \"string\"); return \"symbol\" == _typeof(i) ? i : i + \"\"; }\nfunction _toPrimitive(t, r) { if (\"object\" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || \"default\"); if (\"object\" != _typeof(i)) return i; throw new TypeError(\"@@toPrimitive must return a primitive value.\"); } return (\"string\" === r ? String : Number)(t); }\nfunction _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _iterableToArrayLimit(r, l) { var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }\nfunction _arrayWithHoles(r) { if (Array.isArray(r)) return r; }\nfunction _createForOfIteratorHelper(r, e) { var t = \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && \"number\" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; }\nfunction _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\nfunction _unsupportedIterableToArray(r, a) { if (r) { if (\"string\" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }\nfunction _iterableToArray(r) { if (\"undefined\" != typeof Symbol && null != r[Symbol.iterator] || null != r[\"@@iterator\"]) return Array.from(r); }\nfunction _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }\nfunction _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }\nfunction _typeof(o) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o; }, _typeof(o); }\n/*!\n * Bootstrap v5.3.3 (https://getbootstrap.com/)\n * Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/data.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar elementMap = new Map();\nvar Data = {\n set: function set(element, key, instance) {\n if (!elementMap.has(element)) {\n elementMap.set(element, new Map());\n }\n var instanceMap = elementMap.get(element);\n\n // make it clear we only want one instance per element\n // can be removed later when multiple key/instances are fine to be used\n if (!instanceMap.has(key) && instanceMap.size !== 0) {\n // eslint-disable-next-line no-console\n console.error(\"Bootstrap doesn't allow more than one instance per element. Bound instance: \".concat(Array.from(instanceMap.keys())[0], \".\"));\n return;\n }\n instanceMap.set(key, instance);\n },\n get: function get(element, key) {\n if (elementMap.has(element)) {\n return elementMap.get(element).get(key) || null;\n }\n return null;\n },\n remove: function remove(element, key) {\n if (!elementMap.has(element)) {\n return;\n }\n var instanceMap = elementMap.get(element);\n instanceMap.delete(key);\n\n // free up element references if there are no instances left for an element\n if (instanceMap.size === 0) {\n elementMap.delete(element);\n }\n }\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/index.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nvar MAX_UID = 1000000;\nvar MILLISECONDS_MULTIPLIER = 1000;\nvar TRANSITION_END = 'transitionend';\n\n/**\n * Properly escape IDs selectors to handle weird IDs\n * @param {string} selector\n * @returns {string}\n */\nvar parseSelector = function parseSelector(selector) {\n if (selector && window.CSS && window.CSS.escape) {\n // document.querySelector needs escaping to handle IDs (html5+) containing for instance /\n selector = selector.replace(/#([^\\s\"#']+)/g, function (match, id) {\n return \"#\".concat(CSS.escape(id));\n });\n }\n return selector;\n};\n\n// Shout-out Angus Croll (https://goo.gl/pxwQGp)\nvar toType = function toType(object) {\n if (object === null || object === undefined) {\n return \"\".concat(object);\n }\n return Object.prototype.toString.call(object).match(/\\s([a-z]+)/i)[1].toLowerCase();\n};\n\n/**\n * Public Util API\n */\n\nvar getUID = function getUID(prefix) {\n do {\n prefix += Math.floor(Math.random() * MAX_UID);\n } while (document.getElementById(prefix));\n return prefix;\n};\nvar getTransitionDurationFromElement = function getTransitionDurationFromElement(element) {\n if (!element) {\n return 0;\n }\n\n // Get transition-duration of the element\n var _window$getComputedSt = window.getComputedStyle(element),\n transitionDuration = _window$getComputedSt.transitionDuration,\n transitionDelay = _window$getComputedSt.transitionDelay;\n var floatTransitionDuration = Number.parseFloat(transitionDuration);\n var floatTransitionDelay = Number.parseFloat(transitionDelay);\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0;\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0];\n transitionDelay = transitionDelay.split(',')[0];\n return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;\n};\nvar triggerTransitionEnd = function triggerTransitionEnd(element) {\n element.dispatchEvent(new Event(TRANSITION_END));\n};\nvar isElement = function isElement(object) {\n if (!object || _typeof(object) !== 'object') {\n return false;\n }\n if (typeof object.jquery !== 'undefined') {\n object = object[0];\n }\n return typeof object.nodeType !== 'undefined';\n};\nvar getElement = function getElement(object) {\n // it's a jQuery object or a node element\n if (isElement(object)) {\n return object.jquery ? object[0] : object;\n }\n if (typeof object === 'string' && object.length > 0) {\n return document.querySelector(parseSelector(object));\n }\n return null;\n};\nvar isVisible = function isVisible(element) {\n if (!isElement(element) || element.getClientRects().length === 0) {\n return false;\n }\n var elementIsVisible = getComputedStyle(element).getPropertyValue('visibility') === 'visible';\n // Handle `details` element as its content may falsie appear visible when it is closed\n var closedDetails = element.closest('details:not([open])');\n if (!closedDetails) {\n return elementIsVisible;\n }\n if (closedDetails !== element) {\n var summary = element.closest('summary');\n if (summary && summary.parentNode !== closedDetails) {\n return false;\n }\n if (summary === null) {\n return false;\n }\n }\n return elementIsVisible;\n};\nvar isDisabled = function isDisabled(element) {\n if (!element || element.nodeType !== Node.ELEMENT_NODE) {\n return true;\n }\n if (element.classList.contains('disabled')) {\n return true;\n }\n if (typeof element.disabled !== 'undefined') {\n return element.disabled;\n }\n return element.hasAttribute('disabled') && element.getAttribute('disabled') !== 'false';\n};\nvar _findShadowRoot = function findShadowRoot(element) {\n if (!document.documentElement.attachShadow) {\n return null;\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n var root = element.getRootNode();\n return root instanceof ShadowRoot ? root : null;\n }\n if (element instanceof ShadowRoot) {\n return element;\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null;\n }\n return _findShadowRoot(element.parentNode);\n};\nvar noop = function noop() {};\n\n/**\n * Trick to restart an element's animation\n *\n * @param {HTMLElement} element\n * @return void\n *\n * @see https://www.charistheo.io/blog/2021/02/restart-a-css-animation-with-javascript/#restarting-a-css-animation\n */\nvar reflow = function reflow(element) {\n element.offsetHeight; // eslint-disable-line no-unused-expressions\n};\nvar getjQuery = function getjQuery() {\n if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {\n return window.jQuery;\n }\n return null;\n};\nvar DOMContentLoadedCallbacks = [];\nvar onDOMContentLoaded = function onDOMContentLoaded(callback) {\n if (document.readyState === 'loading') {\n // add listener on the first call when the document is in loading state\n if (!DOMContentLoadedCallbacks.length) {\n document.addEventListener('DOMContentLoaded', function () {\n for (var _i = 0, _DOMContentLoadedCall = DOMContentLoadedCallbacks; _i < _DOMContentLoadedCall.length; _i++) {\n var _callback = _DOMContentLoadedCall[_i];\n _callback();\n }\n });\n }\n DOMContentLoadedCallbacks.push(callback);\n } else {\n callback();\n }\n};\nvar isRTL = function isRTL() {\n return document.documentElement.dir === 'rtl';\n};\nvar defineJQueryPlugin = function defineJQueryPlugin(plugin) {\n onDOMContentLoaded(function () {\n var $ = getjQuery();\n /* istanbul ignore if */\n if ($) {\n var name = plugin.NAME;\n var JQUERY_NO_CONFLICT = $.fn[name];\n $.fn[name] = plugin.jQueryInterface;\n $.fn[name].Constructor = plugin;\n $.fn[name].noConflict = function () {\n $.fn[name] = JQUERY_NO_CONFLICT;\n return plugin.jQueryInterface;\n };\n }\n });\n};\nvar execute = function execute(possibleCallback) {\n var args = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n var defaultValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : possibleCallback;\n return typeof possibleCallback === 'function' ? possibleCallback.apply(void 0, _toConsumableArray(args)) : defaultValue;\n};\nvar executeAfterTransition = function executeAfterTransition(callback, transitionElement) {\n var waitForTransition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;\n if (!waitForTransition) {\n execute(callback);\n return;\n }\n var durationPadding = 5;\n var emulatedDuration = getTransitionDurationFromElement(transitionElement) + durationPadding;\n var called = false;\n var _handler = function handler(_ref) {\n var target = _ref.target;\n if (target !== transitionElement) {\n return;\n }\n called = true;\n transitionElement.removeEventListener(TRANSITION_END, _handler);\n execute(callback);\n };\n transitionElement.addEventListener(TRANSITION_END, _handler);\n setTimeout(function () {\n if (!called) {\n triggerTransitionEnd(transitionElement);\n }\n }, emulatedDuration);\n};\n\n/**\n * Return the previous/next element of a list.\n *\n * @param {array} list The list of elements\n * @param activeElement The active element\n * @param shouldGetNext Choose to get next or previous element\n * @param isCycleAllowed\n * @return {Element|elem} The proper element\n */\nvar getNextActiveElement = function getNextActiveElement(list, activeElement, shouldGetNext, isCycleAllowed) {\n var listLength = list.length;\n var index = list.indexOf(activeElement);\n\n // if the element does not exist in the list return an element\n // depending on the direction and if cycle is allowed\n if (index === -1) {\n return !shouldGetNext && isCycleAllowed ? list[listLength - 1] : list[0];\n }\n index += shouldGetNext ? 1 : -1;\n if (isCycleAllowed) {\n index = (index + listLength) % listLength;\n }\n return list[Math.max(0, Math.min(index, listLength - 1))];\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/event-handler.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar namespaceRegex = /[^.]*(?=\\..*)\\.|.*/;\nvar stripNameRegex = /\\..*/;\nvar stripUidRegex = /::\\d+$/;\nvar eventRegistry = {}; // Events storage\nvar uidEvent = 1;\nvar customEvents = {\n mouseenter: 'mouseover',\n mouseleave: 'mouseout'\n};\nvar nativeEvents = new Set(['click', 'dblclick', 'mouseup', 'mousedown', 'contextmenu', 'mousewheel', 'DOMMouseScroll', 'mouseover', 'mouseout', 'mousemove', 'selectstart', 'selectend', 'keydown', 'keypress', 'keyup', 'orientationchange', 'touchstart', 'touchmove', 'touchend', 'touchcancel', 'pointerdown', 'pointermove', 'pointerup', 'pointerleave', 'pointercancel', 'gesturestart', 'gesturechange', 'gestureend', 'focus', 'blur', 'change', 'reset', 'select', 'submit', 'focusin', 'focusout', 'load', 'unload', 'beforeunload', 'resize', 'move', 'DOMContentLoaded', 'readystatechange', 'error', 'abort', 'scroll']);\n\n/**\n * Private methods\n */\n\nfunction makeEventUid(element, uid) {\n return uid && \"\".concat(uid, \"::\").concat(uidEvent++) || element.uidEvent || uidEvent++;\n}\nfunction getElementEvents(element) {\n var uid = makeEventUid(element);\n element.uidEvent = uid;\n eventRegistry[uid] = eventRegistry[uid] || {};\n return eventRegistry[uid];\n}\nfunction bootstrapHandler(element, fn) {\n return function handler(event) {\n hydrateObj(event, {\n delegateTarget: element\n });\n if (handler.oneOff) {\n EventHandler.off(element, event.type, fn);\n }\n return fn.apply(element, [event]);\n };\n}\nfunction bootstrapDelegationHandler(element, selector, fn) {\n return function handler(event) {\n var domElements = element.querySelectorAll(selector);\n for (var target = event.target; target && target !== this; target = target.parentNode) {\n var _iterator = _createForOfIteratorHelper(domElements),\n _step;\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var domElement = _step.value;\n if (domElement !== target) {\n continue;\n }\n hydrateObj(event, {\n delegateTarget: target\n });\n if (handler.oneOff) {\n EventHandler.off(element, event.type, selector, fn);\n }\n return fn.apply(target, [event]);\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n }\n };\n}\nfunction findHandler(events, callable) {\n var delegationSelector = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;\n return Object.values(events).find(function (event) {\n return event.callable === callable && event.delegationSelector === delegationSelector;\n });\n}\nfunction normalizeParameters(originalTypeEvent, handler, delegationFunction) {\n var isDelegated = typeof handler === 'string';\n // TODO: tooltip passes `false` instead of selector, so we need to check\n var callable = isDelegated ? delegationFunction : handler || delegationFunction;\n var typeEvent = getTypeEvent(originalTypeEvent);\n if (!nativeEvents.has(typeEvent)) {\n typeEvent = originalTypeEvent;\n }\n return [isDelegated, callable, typeEvent];\n}\nfunction addHandler(element, originalTypeEvent, handler, delegationFunction, oneOff) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n var _normalizeParameters = normalizeParameters(originalTypeEvent, handler, delegationFunction),\n _normalizeParameters2 = _slicedToArray(_normalizeParameters, 3),\n isDelegated = _normalizeParameters2[0],\n callable = _normalizeParameters2[1],\n typeEvent = _normalizeParameters2[2];\n\n // in case of mouseenter or mouseleave wrap the handler within a function that checks for its DOM position\n // this prevents the handler from being dispatched the same way as mouseover or mouseout does\n if (originalTypeEvent in customEvents) {\n var wrapFunction = function wrapFunction(fn) {\n return function (event) {\n if (!event.relatedTarget || event.relatedTarget !== event.delegateTarget && !event.delegateTarget.contains(event.relatedTarget)) {\n return fn.call(this, event);\n }\n };\n };\n callable = wrapFunction(callable);\n }\n var events = getElementEvents(element);\n var handlers = events[typeEvent] || (events[typeEvent] = {});\n var previousFunction = findHandler(handlers, callable, isDelegated ? handler : null);\n if (previousFunction) {\n previousFunction.oneOff = previousFunction.oneOff && oneOff;\n return;\n }\n var uid = makeEventUid(callable, originalTypeEvent.replace(namespaceRegex, ''));\n var fn = isDelegated ? bootstrapDelegationHandler(element, handler, callable) : bootstrapHandler(element, callable);\n fn.delegationSelector = isDelegated ? handler : null;\n fn.callable = callable;\n fn.oneOff = oneOff;\n fn.uidEvent = uid;\n handlers[uid] = fn;\n element.addEventListener(typeEvent, fn, isDelegated);\n}\nfunction removeHandler(element, events, typeEvent, handler, delegationSelector) {\n var fn = findHandler(events[typeEvent], handler, delegationSelector);\n if (!fn) {\n return;\n }\n element.removeEventListener(typeEvent, fn, Boolean(delegationSelector));\n delete events[typeEvent][fn.uidEvent];\n}\nfunction removeNamespacedHandlers(element, events, typeEvent, namespace) {\n var storeElementEvent = events[typeEvent] || {};\n for (var _i2 = 0, _Object$entries = Object.entries(storeElementEvent); _i2 < _Object$entries.length; _i2++) {\n var _ref2 = _Object$entries[_i2];\n var _ref3 = _slicedToArray(_ref2, 2);\n var handlerKey = _ref3[0];\n var event = _ref3[1];\n if (handlerKey.includes(namespace)) {\n removeHandler(element, events, typeEvent, event.callable, event.delegationSelector);\n }\n }\n}\nfunction getTypeEvent(event) {\n // allow to get the native events from namespaced events ('click.bs.button' --\x3e 'click')\n event = event.replace(stripNameRegex, '');\n return customEvents[event] || event;\n}\nvar EventHandler = {\n on: function on(element, event, handler, delegationFunction) {\n addHandler(element, event, handler, delegationFunction, false);\n },\n one: function one(element, event, handler, delegationFunction) {\n addHandler(element, event, handler, delegationFunction, true);\n },\n off: function off(element, originalTypeEvent, handler, delegationFunction) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n var _normalizeParameters3 = normalizeParameters(originalTypeEvent, handler, delegationFunction),\n _normalizeParameters4 = _slicedToArray(_normalizeParameters3, 3),\n isDelegated = _normalizeParameters4[0],\n callable = _normalizeParameters4[1],\n typeEvent = _normalizeParameters4[2];\n var inNamespace = typeEvent !== originalTypeEvent;\n var events = getElementEvents(element);\n var storeElementEvent = events[typeEvent] || {};\n var isNamespace = originalTypeEvent.startsWith('.');\n if (typeof callable !== 'undefined') {\n // Simplest case: handler is passed, remove that listener ONLY.\n if (!Object.keys(storeElementEvent).length) {\n return;\n }\n removeHandler(element, events, typeEvent, callable, isDelegated ? handler : null);\n return;\n }\n if (isNamespace) {\n for (var _i3 = 0, _Object$keys = Object.keys(events); _i3 < _Object$keys.length; _i3++) {\n var elementEvent = _Object$keys[_i3];\n removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.slice(1));\n }\n }\n for (var _i4 = 0, _Object$entries2 = Object.entries(storeElementEvent); _i4 < _Object$entries2.length; _i4++) {\n var _ref4 = _Object$entries2[_i4];\n var _ref5 = _slicedToArray(_ref4, 2);\n var keyHandlers = _ref5[0];\n var event = _ref5[1];\n var handlerKey = keyHandlers.replace(stripUidRegex, '');\n if (!inNamespace || originalTypeEvent.includes(handlerKey)) {\n removeHandler(element, events, typeEvent, event.callable, event.delegationSelector);\n }\n }\n },\n trigger: function trigger(element, event, args) {\n if (typeof event !== 'string' || !element) {\n return null;\n }\n var $ = getjQuery();\n var typeEvent = getTypeEvent(event);\n var inNamespace = event !== typeEvent;\n var jQueryEvent = null;\n var bubbles = true;\n var nativeDispatch = true;\n var defaultPrevented = false;\n if (inNamespace && $) {\n jQueryEvent = $.Event(event, args);\n $(element).trigger(jQueryEvent);\n bubbles = !jQueryEvent.isPropagationStopped();\n nativeDispatch = !jQueryEvent.isImmediatePropagationStopped();\n defaultPrevented = jQueryEvent.isDefaultPrevented();\n }\n var evt = hydrateObj(new Event(event, {\n bubbles: bubbles,\n cancelable: true\n }), args);\n if (defaultPrevented) {\n evt.preventDefault();\n }\n if (nativeDispatch) {\n element.dispatchEvent(evt);\n }\n if (evt.defaultPrevented && jQueryEvent) {\n jQueryEvent.preventDefault();\n }\n return evt;\n }\n};\nfunction hydrateObj(obj) {\n var meta = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n var _loop = function _loop() {\n var _ref6 = _Object$entries3[_i5];\n _ref7 = _slicedToArray(_ref6, 2);\n var key = _ref7[0];\n var value = _ref7[1];\n try {\n obj[key] = value;\n } catch (_unused) {\n Object.defineProperty(obj, key, {\n configurable: true,\n get: function get() {\n return value;\n }\n });\n }\n },\n _ref7;\n for (var _i5 = 0, _Object$entries3 = Object.entries(meta); _i5 < _Object$entries3.length; _i5++) {\n _loop();\n }\n return obj;\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/manipulator.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nfunction normalizeData(value) {\n if (value === 'true') {\n return true;\n }\n if (value === 'false') {\n return false;\n }\n if (value === Number(value).toString()) {\n return Number(value);\n }\n if (value === '' || value === 'null') {\n return null;\n }\n if (typeof value !== 'string') {\n return value;\n }\n try {\n return JSON.parse(decodeURIComponent(value));\n } catch (_unused) {\n return value;\n }\n}\nfunction normalizeDataKey(key) {\n return key.replace(/[A-Z]/g, function (chr) {\n return \"-\".concat(chr.toLowerCase());\n });\n}\nvar Manipulator = {\n setDataAttribute: function setDataAttribute(element, key, value) {\n element.setAttribute(\"data-bs-\".concat(normalizeDataKey(key)), value);\n },\n removeDataAttribute: function removeDataAttribute(element, key) {\n element.removeAttribute(\"data-bs-\".concat(normalizeDataKey(key)));\n },\n getDataAttributes: function getDataAttributes(element) {\n if (!element) {\n return {};\n }\n var attributes = {};\n var bsKeys = Object.keys(element.dataset).filter(function (key) {\n return key.startsWith('bs') && !key.startsWith('bsConfig');\n });\n var _iterator2 = _createForOfIteratorHelper(bsKeys),\n _step2;\n try {\n for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {\n var key = _step2.value;\n var pureKey = key.replace(/^bs/, '');\n pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length);\n attributes[pureKey] = normalizeData(element.dataset[key]);\n }\n } catch (err) {\n _iterator2.e(err);\n } finally {\n _iterator2.f();\n }\n return attributes;\n },\n getDataAttribute: function getDataAttribute(element, key) {\n return normalizeData(element.getAttribute(\"data-bs-\".concat(normalizeDataKey(key))));\n }\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/config.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Class definition\n */\nvar Config = /*#__PURE__*/function () {\n function Config() {\n _classCallCheck(this, Config);\n }\n return _createClass(Config, [{\n key: \"_getConfig\",\n value: function _getConfig(config) {\n config = this._mergeConfigObj(config);\n config = this._configAfterMerge(config);\n this._typeCheckConfig(config);\n return config;\n }\n }, {\n key: \"_configAfterMerge\",\n value: function _configAfterMerge(config) {\n return config;\n }\n }, {\n key: \"_mergeConfigObj\",\n value: function _mergeConfigObj(config, element) {\n var jsonConfig = isElement(element) ? Manipulator.getDataAttribute(element, 'config') : {}; // try to parse\n\n return _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, this.constructor.Default), _typeof(jsonConfig) === 'object' ? jsonConfig : {}), isElement(element) ? Manipulator.getDataAttributes(element) : {}), _typeof(config) === 'object' ? config : {});\n }\n }, {\n key: \"_typeCheckConfig\",\n value: function _typeCheckConfig(config) {\n var configTypes = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.constructor.DefaultType;\n for (var _i6 = 0, _Object$entries4 = Object.entries(configTypes); _i6 < _Object$entries4.length; _i6++) {\n var _ref8 = _Object$entries4[_i6];\n var _ref9 = _slicedToArray(_ref8, 2);\n var property = _ref9[0];\n var expectedTypes = _ref9[1];\n var value = config[property];\n var valueType = isElement(value) ? 'element' : toType(value);\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new TypeError(\"\".concat(this.constructor.NAME.toUpperCase(), \": Option \\\"\").concat(property, \"\\\" provided type \\\"\").concat(valueType, \"\\\" but expected type \\\"\").concat(expectedTypes, \"\\\".\"));\n }\n }\n }\n }], [{\n key: \"Default\",\n get:\n // Getters\n function get() {\n return {};\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return {};\n }\n }, {\n key: \"NAME\",\n get: function get() {\n throw new Error('You have to implement the static method \"NAME\", for each component!');\n }\n }]);\n}();\n/**\n * --------------------------------------------------------------------------\n * Bootstrap base-component.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n/**\n * Constants\n */\nvar VERSION = '5.3.3';\n\n/**\n * Class definition\n */\nvar BaseComponent = /*#__PURE__*/function (_Config) {\n function BaseComponent(element, config) {\n var _this;\n _classCallCheck(this, BaseComponent);\n _this = _callSuper(this, BaseComponent);\n element = getElement(element);\n if (!element) {\n return _possibleConstructorReturn(_this);\n }\n _this._element = element;\n _this._config = _this._getConfig(config);\n Data.set(_this._element, _this.constructor.DATA_KEY, _this);\n return _this;\n }\n\n // Public\n _inherits(BaseComponent, _Config);\n return _createClass(BaseComponent, [{\n key: \"dispose\",\n value: function dispose() {\n Data.remove(this._element, this.constructor.DATA_KEY);\n EventHandler.off(this._element, this.constructor.EVENT_KEY);\n var _iterator3 = _createForOfIteratorHelper(Object.getOwnPropertyNames(this)),\n _step3;\n try {\n for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {\n var propertyName = _step3.value;\n this[propertyName] = null;\n }\n } catch (err) {\n _iterator3.e(err);\n } finally {\n _iterator3.f();\n }\n }\n }, {\n key: \"_queueCallback\",\n value: function _queueCallback(callback, element) {\n var isAnimated = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;\n executeAfterTransition(callback, element, isAnimated);\n }\n }, {\n key: \"_getConfig\",\n value: function _getConfig(config) {\n config = this._mergeConfigObj(config, this._element);\n config = this._configAfterMerge(config);\n this._typeCheckConfig(config);\n return config;\n }\n\n // Static\n }], [{\n key: \"getInstance\",\n value: function getInstance(element) {\n return Data.get(getElement(element), this.DATA_KEY);\n }\n }, {\n key: \"getOrCreateInstance\",\n value: function getOrCreateInstance(element) {\n var config = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n return this.getInstance(element) || new this(element, _typeof(config) === 'object' ? config : null);\n }\n }, {\n key: \"VERSION\",\n get: function get() {\n return VERSION;\n }\n }, {\n key: \"DATA_KEY\",\n get: function get() {\n return \"bs.\".concat(this.NAME);\n }\n }, {\n key: \"EVENT_KEY\",\n get: function get() {\n return \".\".concat(this.DATA_KEY);\n }\n }, {\n key: \"eventName\",\n value: function eventName(name) {\n return \"\".concat(name).concat(this.EVENT_KEY);\n }\n }]);\n}(Config);\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/selector-engine.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\nvar getSelector = function getSelector(element) {\n var selector = element.getAttribute('data-bs-target');\n if (!selector || selector === '#') {\n var hrefAttribute = element.getAttribute('href');\n\n // The only valid content that could double as a selector are IDs or classes,\n // so everything starting with `#` or `.`. If a \"real\" URL is used as the selector,\n // `document.querySelector` will rightfully complain it is invalid.\n // See https://github.com/twbs/bootstrap/issues/32273\n if (!hrefAttribute || !hrefAttribute.includes('#') && !hrefAttribute.startsWith('.')) {\n return null;\n }\n\n // Just in case some CMS puts out a full URL with the anchor appended\n if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {\n hrefAttribute = \"#\".concat(hrefAttribute.split('#')[1]);\n }\n selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;\n }\n return selector ? selector.split(',').map(function (sel) {\n return parseSelector(sel);\n }).join(',') : null;\n};\nvar SelectorEngine = {\n find: function find(selector) {\n var _ref10;\n var element = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : document.documentElement;\n return (_ref10 = []).concat.apply(_ref10, _toConsumableArray(Element.prototype.querySelectorAll.call(element, selector)));\n },\n findOne: function findOne(selector) {\n var element = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : document.documentElement;\n return Element.prototype.querySelector.call(element, selector);\n },\n children: function children(element, selector) {\n var _ref11;\n return (_ref11 = []).concat.apply(_ref11, _toConsumableArray(element.children)).filter(function (child) {\n return child.matches(selector);\n });\n },\n parents: function parents(element, selector) {\n var parents = [];\n var ancestor = element.parentNode.closest(selector);\n while (ancestor) {\n parents.push(ancestor);\n ancestor = ancestor.parentNode.closest(selector);\n }\n return parents;\n },\n prev: function prev(element, selector) {\n var previous = element.previousElementSibling;\n while (previous) {\n if (previous.matches(selector)) {\n return [previous];\n }\n previous = previous.previousElementSibling;\n }\n return [];\n },\n // TODO: this is now unused; remove later along with prev()\n next: function next(element, selector) {\n var next = element.nextElementSibling;\n while (next) {\n if (next.matches(selector)) {\n return [next];\n }\n next = next.nextElementSibling;\n }\n return [];\n },\n focusableChildren: function focusableChildren(element) {\n var focusables = ['a', 'button', 'input', 'textarea', 'select', 'details', '[tabindex]', '[contenteditable=\"true\"]'].map(function (selector) {\n return \"\".concat(selector, \":not([tabindex^=\\\"-\\\"])\");\n }).join(',');\n return this.find(focusables, element).filter(function (el) {\n return !isDisabled(el) && isVisible(el);\n });\n },\n getSelectorFromElement: function getSelectorFromElement(element) {\n var selector = getSelector(element);\n if (selector) {\n return SelectorEngine.findOne(selector) ? selector : null;\n }\n return null;\n },\n getElementFromSelector: function getElementFromSelector(element) {\n var selector = getSelector(element);\n return selector ? SelectorEngine.findOne(selector) : null;\n },\n getMultipleElementsFromSelector: function getMultipleElementsFromSelector(element) {\n var selector = getSelector(element);\n return selector ? SelectorEngine.find(selector) : [];\n }\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/component-functions.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nvar enableDismissTrigger = function enableDismissTrigger(component) {\n var method = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'hide';\n var clickEvent = \"click.dismiss\".concat(component.EVENT_KEY);\n var name = component.NAME;\n EventHandler.on(document, clickEvent, \"[data-bs-dismiss=\\\"\".concat(name, \"\\\"]\"), function (event) {\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n if (isDisabled(this)) {\n return;\n }\n var target = SelectorEngine.getElementFromSelector(this) || this.closest(\".\".concat(name));\n var instance = component.getOrCreateInstance(target);\n\n // Method argument is left, for Alert and only, as it doesn't implement the 'hide' method\n instance[method]();\n });\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$f = 'alert';\nvar DATA_KEY$a = 'bs.alert';\nvar EVENT_KEY$b = \".\".concat(DATA_KEY$a);\nvar EVENT_CLOSE = \"close\".concat(EVENT_KEY$b);\nvar EVENT_CLOSED = \"closed\".concat(EVENT_KEY$b);\nvar CLASS_NAME_FADE$5 = 'fade';\nvar CLASS_NAME_SHOW$8 = 'show';\n\n/**\n * Class definition\n */\nvar Alert = /*#__PURE__*/function (_BaseComponent) {\n function Alert() {\n _classCallCheck(this, Alert);\n return _callSuper(this, Alert, arguments);\n }\n _inherits(Alert, _BaseComponent);\n return _createClass(Alert, [{\n key: \"close\",\n value:\n // Public\n function close() {\n var _this2 = this;\n var closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE);\n if (closeEvent.defaultPrevented) {\n return;\n }\n this._element.classList.remove(CLASS_NAME_SHOW$8);\n var isAnimated = this._element.classList.contains(CLASS_NAME_FADE$5);\n this._queueCallback(function () {\n return _this2._destroyElement();\n }, this._element, isAnimated);\n }\n\n // Private\n }, {\n key: \"_destroyElement\",\n value: function _destroyElement() {\n this._element.remove();\n EventHandler.trigger(this._element, EVENT_CLOSED);\n this.dispose();\n }\n\n // Static\n }], [{\n key: \"NAME\",\n get:\n // Getters\n function get() {\n return NAME$f;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config) {\n return this.each(function () {\n var data = Alert.getOrCreateInstance(this);\n if (typeof config !== 'string') {\n return;\n }\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(\"No method named \\\"\".concat(config, \"\\\"\"));\n }\n data[config](this);\n });\n }\n }]);\n}(BaseComponent);\n/**\n * Data API implementation\n */\nenableDismissTrigger(Alert, 'close');\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Alert);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$e = 'button';\nvar DATA_KEY$9 = 'bs.button';\nvar EVENT_KEY$a = \".\".concat(DATA_KEY$9);\nvar DATA_API_KEY$6 = '.data-api';\nvar CLASS_NAME_ACTIVE$3 = 'active';\nvar SELECTOR_DATA_TOGGLE$5 = '[data-bs-toggle=\"button\"]';\nvar EVENT_CLICK_DATA_API$6 = \"click\".concat(EVENT_KEY$a).concat(DATA_API_KEY$6);\n\n/**\n * Class definition\n */\nvar Button = /*#__PURE__*/function (_BaseComponent2) {\n function Button() {\n _classCallCheck(this, Button);\n return _callSuper(this, Button, arguments);\n }\n _inherits(Button, _BaseComponent2);\n return _createClass(Button, [{\n key: \"toggle\",\n value:\n // Public\n function toggle() {\n // Toggle class and sync the `aria-pressed` attribute with the return value of the `.toggle()` method\n this._element.setAttribute('aria-pressed', this._element.classList.toggle(CLASS_NAME_ACTIVE$3));\n }\n\n // Static\n }], [{\n key: \"NAME\",\n get:\n // Getters\n function get() {\n return NAME$e;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config) {\n return this.each(function () {\n var data = Button.getOrCreateInstance(this);\n if (config === 'toggle') {\n data[config]();\n }\n });\n }\n }]);\n}(BaseComponent);\n/**\n * Data API implementation\n */\nEventHandler.on(document, EVENT_CLICK_DATA_API$6, SELECTOR_DATA_TOGGLE$5, function (event) {\n event.preventDefault();\n var button = event.target.closest(SELECTOR_DATA_TOGGLE$5);\n var data = Button.getOrCreateInstance(button);\n data.toggle();\n});\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Button);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/swipe.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$d = 'swipe';\nvar EVENT_KEY$9 = '.bs.swipe';\nvar EVENT_TOUCHSTART = \"touchstart\".concat(EVENT_KEY$9);\nvar EVENT_TOUCHMOVE = \"touchmove\".concat(EVENT_KEY$9);\nvar EVENT_TOUCHEND = \"touchend\".concat(EVENT_KEY$9);\nvar EVENT_POINTERDOWN = \"pointerdown\".concat(EVENT_KEY$9);\nvar EVENT_POINTERUP = \"pointerup\".concat(EVENT_KEY$9);\nvar POINTER_TYPE_TOUCH = 'touch';\nvar POINTER_TYPE_PEN = 'pen';\nvar CLASS_NAME_POINTER_EVENT = 'pointer-event';\nvar SWIPE_THRESHOLD = 40;\nvar Default$c = {\n endCallback: null,\n leftCallback: null,\n rightCallback: null\n};\nvar DefaultType$c = {\n endCallback: '(function|null)',\n leftCallback: '(function|null)',\n rightCallback: '(function|null)'\n};\n\n/**\n * Class definition\n */\nvar Swipe = /*#__PURE__*/function (_Config2) {\n function Swipe(element, config) {\n var _this3;\n _classCallCheck(this, Swipe);\n _this3 = _callSuper(this, Swipe);\n _this3._element = element;\n if (!element || !Swipe.isSupported()) {\n return _possibleConstructorReturn(_this3);\n }\n _this3._config = _this3._getConfig(config);\n _this3._deltaX = 0;\n _this3._supportPointerEvents = Boolean(window.PointerEvent);\n _this3._initEvents();\n return _this3;\n }\n\n // Getters\n _inherits(Swipe, _Config2);\n return _createClass(Swipe, [{\n key: \"dispose\",\n value:\n // Public\n function dispose() {\n EventHandler.off(this._element, EVENT_KEY$9);\n }\n\n // Private\n }, {\n key: \"_start\",\n value: function _start(event) {\n if (!this._supportPointerEvents) {\n this._deltaX = event.touches[0].clientX;\n return;\n }\n if (this._eventIsPointerPenTouch(event)) {\n this._deltaX = event.clientX;\n }\n }\n }, {\n key: \"_end\",\n value: function _end(event) {\n if (this._eventIsPointerPenTouch(event)) {\n this._deltaX = event.clientX - this._deltaX;\n }\n this._handleSwipe();\n execute(this._config.endCallback);\n }\n }, {\n key: \"_move\",\n value: function _move(event) {\n this._deltaX = event.touches && event.touches.length > 1 ? 0 : event.touches[0].clientX - this._deltaX;\n }\n }, {\n key: \"_handleSwipe\",\n value: function _handleSwipe() {\n var absDeltaX = Math.abs(this._deltaX);\n if (absDeltaX <= SWIPE_THRESHOLD) {\n return;\n }\n var direction = absDeltaX / this._deltaX;\n this._deltaX = 0;\n if (!direction) {\n return;\n }\n execute(direction > 0 ? this._config.rightCallback : this._config.leftCallback);\n }\n }, {\n key: \"_initEvents\",\n value: function _initEvents() {\n var _this4 = this;\n if (this._supportPointerEvents) {\n EventHandler.on(this._element, EVENT_POINTERDOWN, function (event) {\n return _this4._start(event);\n });\n EventHandler.on(this._element, EVENT_POINTERUP, function (event) {\n return _this4._end(event);\n });\n this._element.classList.add(CLASS_NAME_POINTER_EVENT);\n } else {\n EventHandler.on(this._element, EVENT_TOUCHSTART, function (event) {\n return _this4._start(event);\n });\n EventHandler.on(this._element, EVENT_TOUCHMOVE, function (event) {\n return _this4._move(event);\n });\n EventHandler.on(this._element, EVENT_TOUCHEND, function (event) {\n return _this4._end(event);\n });\n }\n }\n }, {\n key: \"_eventIsPointerPenTouch\",\n value: function _eventIsPointerPenTouch(event) {\n return this._supportPointerEvents && (event.pointerType === POINTER_TYPE_PEN || event.pointerType === POINTER_TYPE_TOUCH);\n }\n\n // Static\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$c;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$c;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$d;\n }\n }, {\n key: \"isSupported\",\n value: function isSupported() {\n return 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0;\n }\n }]);\n}(Config);\n/**\n * --------------------------------------------------------------------------\n * Bootstrap carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n/**\n * Constants\n */\nvar NAME$c = 'carousel';\nvar DATA_KEY$8 = 'bs.carousel';\nvar EVENT_KEY$8 = \".\".concat(DATA_KEY$8);\nvar DATA_API_KEY$5 = '.data-api';\nvar ARROW_LEFT_KEY$1 = 'ArrowLeft';\nvar ARROW_RIGHT_KEY$1 = 'ArrowRight';\nvar TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch\n\nvar ORDER_NEXT = 'next';\nvar ORDER_PREV = 'prev';\nvar DIRECTION_LEFT = 'left';\nvar DIRECTION_RIGHT = 'right';\nvar EVENT_SLIDE = \"slide\".concat(EVENT_KEY$8);\nvar EVENT_SLID = \"slid\".concat(EVENT_KEY$8);\nvar EVENT_KEYDOWN$1 = \"keydown\".concat(EVENT_KEY$8);\nvar EVENT_MOUSEENTER$1 = \"mouseenter\".concat(EVENT_KEY$8);\nvar EVENT_MOUSELEAVE$1 = \"mouseleave\".concat(EVENT_KEY$8);\nvar EVENT_DRAG_START = \"dragstart\".concat(EVENT_KEY$8);\nvar EVENT_LOAD_DATA_API$3 = \"load\".concat(EVENT_KEY$8).concat(DATA_API_KEY$5);\nvar EVENT_CLICK_DATA_API$5 = \"click\".concat(EVENT_KEY$8).concat(DATA_API_KEY$5);\nvar CLASS_NAME_CAROUSEL = 'carousel';\nvar CLASS_NAME_ACTIVE$2 = 'active';\nvar CLASS_NAME_SLIDE = 'slide';\nvar CLASS_NAME_END = 'carousel-item-end';\nvar CLASS_NAME_START = 'carousel-item-start';\nvar CLASS_NAME_NEXT = 'carousel-item-next';\nvar CLASS_NAME_PREV = 'carousel-item-prev';\nvar SELECTOR_ACTIVE = '.active';\nvar SELECTOR_ITEM = '.carousel-item';\nvar SELECTOR_ACTIVE_ITEM = SELECTOR_ACTIVE + SELECTOR_ITEM;\nvar SELECTOR_ITEM_IMG = '.carousel-item img';\nvar SELECTOR_INDICATORS = '.carousel-indicators';\nvar SELECTOR_DATA_SLIDE = '[data-bs-slide], [data-bs-slide-to]';\nvar SELECTOR_DATA_RIDE = '[data-bs-ride=\"carousel\"]';\nvar KEY_TO_DIRECTION = _defineProperty(_defineProperty({}, ARROW_LEFT_KEY$1, DIRECTION_RIGHT), ARROW_RIGHT_KEY$1, DIRECTION_LEFT);\nvar Default$b = {\n interval: 5000,\n keyboard: true,\n pause: 'hover',\n ride: false,\n touch: true,\n wrap: true\n};\nvar DefaultType$b = {\n interval: '(number|boolean)',\n // TODO:v6 remove boolean support\n keyboard: 'boolean',\n pause: '(string|boolean)',\n ride: '(boolean|string)',\n touch: 'boolean',\n wrap: 'boolean'\n};\n\n/**\n * Class definition\n */\nvar Carousel = /*#__PURE__*/function (_BaseComponent3) {\n function Carousel(element, config) {\n var _this5;\n _classCallCheck(this, Carousel);\n _this5 = _callSuper(this, Carousel, [element, config]);\n _this5._interval = null;\n _this5._activeElement = null;\n _this5._isSliding = false;\n _this5.touchTimeout = null;\n _this5._swipeHelper = null;\n _this5._indicatorsElement = SelectorEngine.findOne(SELECTOR_INDICATORS, _this5._element);\n _this5._addEventListeners();\n if (_this5._config.ride === CLASS_NAME_CAROUSEL) {\n _this5.cycle();\n }\n return _this5;\n }\n\n // Getters\n _inherits(Carousel, _BaseComponent3);\n return _createClass(Carousel, [{\n key: \"next\",\n value:\n // Public\n function next() {\n this._slide(ORDER_NEXT);\n }\n }, {\n key: \"nextWhenVisible\",\n value: function nextWhenVisible() {\n // FIXME TODO use `document.visibilityState`\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden && isVisible(this._element)) {\n this.next();\n }\n }\n }, {\n key: \"prev\",\n value: function prev() {\n this._slide(ORDER_PREV);\n }\n }, {\n key: \"pause\",\n value: function pause() {\n if (this._isSliding) {\n triggerTransitionEnd(this._element);\n }\n this._clearInterval();\n }\n }, {\n key: \"cycle\",\n value: function cycle() {\n var _this6 = this;\n this._clearInterval();\n this._updateInterval();\n this._interval = setInterval(function () {\n return _this6.nextWhenVisible();\n }, this._config.interval);\n }\n }, {\n key: \"_maybeEnableCycle\",\n value: function _maybeEnableCycle() {\n var _this7 = this;\n if (!this._config.ride) {\n return;\n }\n if (this._isSliding) {\n EventHandler.one(this._element, EVENT_SLID, function () {\n return _this7.cycle();\n });\n return;\n }\n this.cycle();\n }\n }, {\n key: \"to\",\n value: function to(index) {\n var _this8 = this;\n var items = this._getItems();\n if (index > items.length - 1 || index < 0) {\n return;\n }\n if (this._isSliding) {\n EventHandler.one(this._element, EVENT_SLID, function () {\n return _this8.to(index);\n });\n return;\n }\n var activeIndex = this._getItemIndex(this._getActive());\n if (activeIndex === index) {\n return;\n }\n var order = index > activeIndex ? ORDER_NEXT : ORDER_PREV;\n this._slide(order, items[index]);\n }\n }, {\n key: \"dispose\",\n value: function dispose() {\n if (this._swipeHelper) {\n this._swipeHelper.dispose();\n }\n _superPropGet(Carousel, \"dispose\", this, 3)([]);\n }\n\n // Private\n }, {\n key: \"_configAfterMerge\",\n value: function _configAfterMerge(config) {\n config.defaultInterval = config.interval;\n return config;\n }\n }, {\n key: \"_addEventListeners\",\n value: function _addEventListeners() {\n var _this9 = this;\n if (this._config.keyboard) {\n EventHandler.on(this._element, EVENT_KEYDOWN$1, function (event) {\n return _this9._keydown(event);\n });\n }\n if (this._config.pause === 'hover') {\n EventHandler.on(this._element, EVENT_MOUSEENTER$1, function () {\n return _this9.pause();\n });\n EventHandler.on(this._element, EVENT_MOUSELEAVE$1, function () {\n return _this9._maybeEnableCycle();\n });\n }\n if (this._config.touch && Swipe.isSupported()) {\n this._addTouchEventListeners();\n }\n }\n }, {\n key: \"_addTouchEventListeners\",\n value: function _addTouchEventListeners() {\n var _this10 = this;\n var _iterator4 = _createForOfIteratorHelper(SelectorEngine.find(SELECTOR_ITEM_IMG, this._element)),\n _step4;\n try {\n for (_iterator4.s(); !(_step4 = _iterator4.n()).done;) {\n var img = _step4.value;\n EventHandler.on(img, EVENT_DRAG_START, function (event) {\n return event.preventDefault();\n });\n }\n } catch (err) {\n _iterator4.e(err);\n } finally {\n _iterator4.f();\n }\n var endCallBack = function endCallBack() {\n if (_this10._config.pause !== 'hover') {\n return;\n }\n\n // If it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n\n _this10.pause();\n if (_this10.touchTimeout) {\n clearTimeout(_this10.touchTimeout);\n }\n _this10.touchTimeout = setTimeout(function () {\n return _this10._maybeEnableCycle();\n }, TOUCHEVENT_COMPAT_WAIT + _this10._config.interval);\n };\n var swipeConfig = {\n leftCallback: function leftCallback() {\n return _this10._slide(_this10._directionToOrder(DIRECTION_LEFT));\n },\n rightCallback: function rightCallback() {\n return _this10._slide(_this10._directionToOrder(DIRECTION_RIGHT));\n },\n endCallback: endCallBack\n };\n this._swipeHelper = new Swipe(this._element, swipeConfig);\n }\n }, {\n key: \"_keydown\",\n value: function _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return;\n }\n var direction = KEY_TO_DIRECTION[event.key];\n if (direction) {\n event.preventDefault();\n this._slide(this._directionToOrder(direction));\n }\n }\n }, {\n key: \"_getItemIndex\",\n value: function _getItemIndex(element) {\n return this._getItems().indexOf(element);\n }\n }, {\n key: \"_setActiveIndicatorElement\",\n value: function _setActiveIndicatorElement(index) {\n if (!this._indicatorsElement) {\n return;\n }\n var activeIndicator = SelectorEngine.findOne(SELECTOR_ACTIVE, this._indicatorsElement);\n activeIndicator.classList.remove(CLASS_NAME_ACTIVE$2);\n activeIndicator.removeAttribute('aria-current');\n var newActiveIndicator = SelectorEngine.findOne(\"[data-bs-slide-to=\\\"\".concat(index, \"\\\"]\"), this._indicatorsElement);\n if (newActiveIndicator) {\n newActiveIndicator.classList.add(CLASS_NAME_ACTIVE$2);\n newActiveIndicator.setAttribute('aria-current', 'true');\n }\n }\n }, {\n key: \"_updateInterval\",\n value: function _updateInterval() {\n var element = this._activeElement || this._getActive();\n if (!element) {\n return;\n }\n var elementInterval = Number.parseInt(element.getAttribute('data-bs-interval'), 10);\n this._config.interval = elementInterval || this._config.defaultInterval;\n }\n }, {\n key: \"_slide\",\n value: function _slide(order) {\n var _this11 = this;\n var element = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n if (this._isSliding) {\n return;\n }\n var activeElement = this._getActive();\n var isNext = order === ORDER_NEXT;\n var nextElement = element || getNextActiveElement(this._getItems(), activeElement, isNext, this._config.wrap);\n if (nextElement === activeElement) {\n return;\n }\n var nextElementIndex = this._getItemIndex(nextElement);\n var triggerEvent = function triggerEvent(eventName) {\n return EventHandler.trigger(_this11._element, eventName, {\n relatedTarget: nextElement,\n direction: _this11._orderToDirection(order),\n from: _this11._getItemIndex(activeElement),\n to: nextElementIndex\n });\n };\n var slideEvent = triggerEvent(EVENT_SLIDE);\n if (slideEvent.defaultPrevented) {\n return;\n }\n if (!activeElement || !nextElement) {\n // Some weirdness is happening, so we bail\n // TODO: change tests that use empty divs to avoid this check\n return;\n }\n var isCycling = Boolean(this._interval);\n this.pause();\n this._isSliding = true;\n this._setActiveIndicatorElement(nextElementIndex);\n this._activeElement = nextElement;\n var directionalClassName = isNext ? CLASS_NAME_START : CLASS_NAME_END;\n var orderClassName = isNext ? CLASS_NAME_NEXT : CLASS_NAME_PREV;\n nextElement.classList.add(orderClassName);\n reflow(nextElement);\n activeElement.classList.add(directionalClassName);\n nextElement.classList.add(directionalClassName);\n var completeCallBack = function completeCallBack() {\n nextElement.classList.remove(directionalClassName, orderClassName);\n nextElement.classList.add(CLASS_NAME_ACTIVE$2);\n activeElement.classList.remove(CLASS_NAME_ACTIVE$2, orderClassName, directionalClassName);\n _this11._isSliding = false;\n triggerEvent(EVENT_SLID);\n };\n this._queueCallback(completeCallBack, activeElement, this._isAnimated());\n if (isCycling) {\n this.cycle();\n }\n }\n }, {\n key: \"_isAnimated\",\n value: function _isAnimated() {\n return this._element.classList.contains(CLASS_NAME_SLIDE);\n }\n }, {\n key: \"_getActive\",\n value: function _getActive() {\n return SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element);\n }\n }, {\n key: \"_getItems\",\n value: function _getItems() {\n return SelectorEngine.find(SELECTOR_ITEM, this._element);\n }\n }, {\n key: \"_clearInterval\",\n value: function _clearInterval() {\n if (this._interval) {\n clearInterval(this._interval);\n this._interval = null;\n }\n }\n }, {\n key: \"_directionToOrder\",\n value: function _directionToOrder(direction) {\n if (isRTL()) {\n return direction === DIRECTION_LEFT ? ORDER_PREV : ORDER_NEXT;\n }\n return direction === DIRECTION_LEFT ? ORDER_NEXT : ORDER_PREV;\n }\n }, {\n key: \"_orderToDirection\",\n value: function _orderToDirection(order) {\n if (isRTL()) {\n return order === ORDER_PREV ? DIRECTION_LEFT : DIRECTION_RIGHT;\n }\n return order === ORDER_PREV ? DIRECTION_RIGHT : DIRECTION_LEFT;\n }\n\n // Static\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$b;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$b;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$c;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config) {\n return this.each(function () {\n var data = Carousel.getOrCreateInstance(this, config);\n if (typeof config === 'number') {\n data.to(config);\n return;\n }\n if (typeof config === 'string') {\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(\"No method named \\\"\".concat(config, \"\\\"\"));\n }\n data[config]();\n }\n });\n }\n }]);\n}(BaseComponent);\n/**\n * Data API implementation\n */\nEventHandler.on(document, EVENT_CLICK_DATA_API$5, SELECTOR_DATA_SLIDE, function (event) {\n var target = SelectorEngine.getElementFromSelector(this);\n if (!target || !target.classList.contains(CLASS_NAME_CAROUSEL)) {\n return;\n }\n event.preventDefault();\n var carousel = Carousel.getOrCreateInstance(target);\n var slideIndex = this.getAttribute('data-bs-slide-to');\n if (slideIndex) {\n carousel.to(slideIndex);\n carousel._maybeEnableCycle();\n return;\n }\n if (Manipulator.getDataAttribute(this, 'slide') === 'next') {\n carousel.next();\n carousel._maybeEnableCycle();\n return;\n }\n carousel.prev();\n carousel._maybeEnableCycle();\n});\nEventHandler.on(window, EVENT_LOAD_DATA_API$3, function () {\n var carousels = SelectorEngine.find(SELECTOR_DATA_RIDE);\n var _iterator5 = _createForOfIteratorHelper(carousels),\n _step5;\n try {\n for (_iterator5.s(); !(_step5 = _iterator5.n()).done;) {\n var carousel = _step5.value;\n Carousel.getOrCreateInstance(carousel);\n }\n } catch (err) {\n _iterator5.e(err);\n } finally {\n _iterator5.f();\n }\n});\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Carousel);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$b = 'collapse';\nvar DATA_KEY$7 = 'bs.collapse';\nvar EVENT_KEY$7 = \".\".concat(DATA_KEY$7);\nvar DATA_API_KEY$4 = '.data-api';\nvar EVENT_SHOW$6 = \"show\".concat(EVENT_KEY$7);\nvar EVENT_SHOWN$6 = \"shown\".concat(EVENT_KEY$7);\nvar EVENT_HIDE$6 = \"hide\".concat(EVENT_KEY$7);\nvar EVENT_HIDDEN$6 = \"hidden\".concat(EVENT_KEY$7);\nvar EVENT_CLICK_DATA_API$4 = \"click\".concat(EVENT_KEY$7).concat(DATA_API_KEY$4);\nvar CLASS_NAME_SHOW$7 = 'show';\nvar CLASS_NAME_COLLAPSE = 'collapse';\nvar CLASS_NAME_COLLAPSING = 'collapsing';\nvar CLASS_NAME_COLLAPSED = 'collapsed';\nvar CLASS_NAME_DEEPER_CHILDREN = \":scope .\".concat(CLASS_NAME_COLLAPSE, \" .\").concat(CLASS_NAME_COLLAPSE);\nvar CLASS_NAME_HORIZONTAL = 'collapse-horizontal';\nvar WIDTH = 'width';\nvar HEIGHT = 'height';\nvar SELECTOR_ACTIVES = '.collapse.show, .collapse.collapsing';\nvar SELECTOR_DATA_TOGGLE$4 = '[data-bs-toggle=\"collapse\"]';\nvar Default$a = {\n parent: null,\n toggle: true\n};\nvar DefaultType$a = {\n parent: '(null|element)',\n toggle: 'boolean'\n};\n\n/**\n * Class definition\n */\nvar Collapse = /*#__PURE__*/function (_BaseComponent4) {\n function Collapse(element, config) {\n var _this12;\n _classCallCheck(this, Collapse);\n _this12 = _callSuper(this, Collapse, [element, config]);\n _this12._isTransitioning = false;\n _this12._triggerArray = [];\n var toggleList = SelectorEngine.find(SELECTOR_DATA_TOGGLE$4);\n var _iterator6 = _createForOfIteratorHelper(toggleList),\n _step6;\n try {\n for (_iterator6.s(); !(_step6 = _iterator6.n()).done;) {\n var elem = _step6.value;\n var selector = SelectorEngine.getSelectorFromElement(elem);\n var filterElement = SelectorEngine.find(selector).filter(function (foundElement) {\n return foundElement === _this12._element;\n });\n if (selector !== null && filterElement.length) {\n _this12._triggerArray.push(elem);\n }\n }\n } catch (err) {\n _iterator6.e(err);\n } finally {\n _iterator6.f();\n }\n _this12._initializeChildren();\n if (!_this12._config.parent) {\n _this12._addAriaAndCollapsedClass(_this12._triggerArray, _this12._isShown());\n }\n if (_this12._config.toggle) {\n _this12.toggle();\n }\n return _this12;\n }\n\n // Getters\n _inherits(Collapse, _BaseComponent4);\n return _createClass(Collapse, [{\n key: \"toggle\",\n value:\n // Public\n function toggle() {\n if (this._isShown()) {\n this.hide();\n } else {\n this.show();\n }\n }\n }, {\n key: \"show\",\n value: function show() {\n var _this13 = this;\n if (this._isTransitioning || this._isShown()) {\n return;\n }\n var activeChildren = [];\n\n // find active children\n if (this._config.parent) {\n activeChildren = this._getFirstLevelChildren(SELECTOR_ACTIVES).filter(function (element) {\n return element !== _this13._element;\n }).map(function (element) {\n return Collapse.getOrCreateInstance(element, {\n toggle: false\n });\n });\n }\n if (activeChildren.length && activeChildren[0]._isTransitioning) {\n return;\n }\n var startEvent = EventHandler.trigger(this._element, EVENT_SHOW$6);\n if (startEvent.defaultPrevented) {\n return;\n }\n var _iterator7 = _createForOfIteratorHelper(activeChildren),\n _step7;\n try {\n for (_iterator7.s(); !(_step7 = _iterator7.n()).done;) {\n var activeInstance = _step7.value;\n activeInstance.hide();\n }\n } catch (err) {\n _iterator7.e(err);\n } finally {\n _iterator7.f();\n }\n var dimension = this._getDimension();\n this._element.classList.remove(CLASS_NAME_COLLAPSE);\n this._element.classList.add(CLASS_NAME_COLLAPSING);\n this._element.style[dimension] = 0;\n this._addAriaAndCollapsedClass(this._triggerArray, true);\n this._isTransitioning = true;\n var complete = function complete() {\n _this13._isTransitioning = false;\n _this13._element.classList.remove(CLASS_NAME_COLLAPSING);\n _this13._element.classList.add(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW$7);\n _this13._element.style[dimension] = '';\n EventHandler.trigger(_this13._element, EVENT_SHOWN$6);\n };\n var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);\n var scrollSize = \"scroll\".concat(capitalizedDimension);\n this._queueCallback(complete, this._element, true);\n this._element.style[dimension] = \"\".concat(this._element[scrollSize], \"px\");\n }\n }, {\n key: \"hide\",\n value: function hide() {\n var _this14 = this;\n if (this._isTransitioning || !this._isShown()) {\n return;\n }\n var startEvent = EventHandler.trigger(this._element, EVENT_HIDE$6);\n if (startEvent.defaultPrevented) {\n return;\n }\n var dimension = this._getDimension();\n this._element.style[dimension] = \"\".concat(this._element.getBoundingClientRect()[dimension], \"px\");\n reflow(this._element);\n this._element.classList.add(CLASS_NAME_COLLAPSING);\n this._element.classList.remove(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW$7);\n var _iterator8 = _createForOfIteratorHelper(this._triggerArray),\n _step8;\n try {\n for (_iterator8.s(); !(_step8 = _iterator8.n()).done;) {\n var trigger = _step8.value;\n var element = SelectorEngine.getElementFromSelector(trigger);\n if (element && !this._isShown(element)) {\n this._addAriaAndCollapsedClass([trigger], false);\n }\n }\n } catch (err) {\n _iterator8.e(err);\n } finally {\n _iterator8.f();\n }\n this._isTransitioning = true;\n var complete = function complete() {\n _this14._isTransitioning = false;\n _this14._element.classList.remove(CLASS_NAME_COLLAPSING);\n _this14._element.classList.add(CLASS_NAME_COLLAPSE);\n EventHandler.trigger(_this14._element, EVENT_HIDDEN$6);\n };\n this._element.style[dimension] = '';\n this._queueCallback(complete, this._element, true);\n }\n }, {\n key: \"_isShown\",\n value: function _isShown() {\n var element = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._element;\n return element.classList.contains(CLASS_NAME_SHOW$7);\n }\n\n // Private\n }, {\n key: \"_configAfterMerge\",\n value: function _configAfterMerge(config) {\n config.toggle = Boolean(config.toggle); // Coerce string values\n config.parent = getElement(config.parent);\n return config;\n }\n }, {\n key: \"_getDimension\",\n value: function _getDimension() {\n return this._element.classList.contains(CLASS_NAME_HORIZONTAL) ? WIDTH : HEIGHT;\n }\n }, {\n key: \"_initializeChildren\",\n value: function _initializeChildren() {\n if (!this._config.parent) {\n return;\n }\n var children = this._getFirstLevelChildren(SELECTOR_DATA_TOGGLE$4);\n var _iterator9 = _createForOfIteratorHelper(children),\n _step9;\n try {\n for (_iterator9.s(); !(_step9 = _iterator9.n()).done;) {\n var element = _step9.value;\n var selected = SelectorEngine.getElementFromSelector(element);\n if (selected) {\n this._addAriaAndCollapsedClass([element], this._isShown(selected));\n }\n }\n } catch (err) {\n _iterator9.e(err);\n } finally {\n _iterator9.f();\n }\n }\n }, {\n key: \"_getFirstLevelChildren\",\n value: function _getFirstLevelChildren(selector) {\n var children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent);\n // remove children if greater depth\n return SelectorEngine.find(selector, this._config.parent).filter(function (element) {\n return !children.includes(element);\n });\n }\n }, {\n key: \"_addAriaAndCollapsedClass\",\n value: function _addAriaAndCollapsedClass(triggerArray, isOpen) {\n if (!triggerArray.length) {\n return;\n }\n var _iterator10 = _createForOfIteratorHelper(triggerArray),\n _step10;\n try {\n for (_iterator10.s(); !(_step10 = _iterator10.n()).done;) {\n var element = _step10.value;\n element.classList.toggle(CLASS_NAME_COLLAPSED, !isOpen);\n element.setAttribute('aria-expanded', isOpen);\n }\n } catch (err) {\n _iterator10.e(err);\n } finally {\n _iterator10.f();\n }\n }\n\n // Static\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$a;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$a;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$b;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config) {\n var _config = {};\n if (typeof config === 'string' && /show|hide/.test(config)) {\n _config.toggle = false;\n }\n return this.each(function () {\n var data = Collapse.getOrCreateInstance(this, _config);\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(\"No method named \\\"\".concat(config, \"\\\"\"));\n }\n data[config]();\n }\n });\n }\n }]);\n}(BaseComponent);\n/**\n * Data API implementation\n */\nEventHandler.on(document, EVENT_CLICK_DATA_API$4, SELECTOR_DATA_TOGGLE$4, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (event.target.tagName === 'A' || event.delegateTarget && event.delegateTarget.tagName === 'A') {\n event.preventDefault();\n }\n var _iterator11 = _createForOfIteratorHelper(SelectorEngine.getMultipleElementsFromSelector(this)),\n _step11;\n try {\n for (_iterator11.s(); !(_step11 = _iterator11.n()).done;) {\n var element = _step11.value;\n Collapse.getOrCreateInstance(element, {\n toggle: false\n }).toggle();\n }\n } catch (err) {\n _iterator11.e(err);\n } finally {\n _iterator11.f();\n }\n});\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Collapse);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dropdown.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$a = 'dropdown';\nvar DATA_KEY$6 = 'bs.dropdown';\nvar EVENT_KEY$6 = \".\".concat(DATA_KEY$6);\nvar DATA_API_KEY$3 = '.data-api';\nvar ESCAPE_KEY$2 = 'Escape';\nvar TAB_KEY$1 = 'Tab';\nvar ARROW_UP_KEY$1 = 'ArrowUp';\nvar ARROW_DOWN_KEY$1 = 'ArrowDown';\nvar RIGHT_MOUSE_BUTTON = 2; // MouseEvent.button value for the secondary button, usually the right button\n\nvar EVENT_HIDE$5 = \"hide\".concat(EVENT_KEY$6);\nvar EVENT_HIDDEN$5 = \"hidden\".concat(EVENT_KEY$6);\nvar EVENT_SHOW$5 = \"show\".concat(EVENT_KEY$6);\nvar EVENT_SHOWN$5 = \"shown\".concat(EVENT_KEY$6);\nvar EVENT_CLICK_DATA_API$3 = \"click\".concat(EVENT_KEY$6).concat(DATA_API_KEY$3);\nvar EVENT_KEYDOWN_DATA_API = \"keydown\".concat(EVENT_KEY$6).concat(DATA_API_KEY$3);\nvar EVENT_KEYUP_DATA_API = \"keyup\".concat(EVENT_KEY$6).concat(DATA_API_KEY$3);\nvar CLASS_NAME_SHOW$6 = 'show';\nvar CLASS_NAME_DROPUP = 'dropup';\nvar CLASS_NAME_DROPEND = 'dropend';\nvar CLASS_NAME_DROPSTART = 'dropstart';\nvar CLASS_NAME_DROPUP_CENTER = 'dropup-center';\nvar CLASS_NAME_DROPDOWN_CENTER = 'dropdown-center';\nvar SELECTOR_DATA_TOGGLE$3 = '[data-bs-toggle=\"dropdown\"]:not(.disabled):not(:disabled)';\nvar SELECTOR_DATA_TOGGLE_SHOWN = \"\".concat(SELECTOR_DATA_TOGGLE$3, \".\").concat(CLASS_NAME_SHOW$6);\nvar SELECTOR_MENU = '.dropdown-menu';\nvar SELECTOR_NAVBAR = '.navbar';\nvar SELECTOR_NAVBAR_NAV = '.navbar-nav';\nvar SELECTOR_VISIBLE_ITEMS = '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)';\nvar PLACEMENT_TOP = isRTL() ? 'top-end' : 'top-start';\nvar PLACEMENT_TOPEND = isRTL() ? 'top-start' : 'top-end';\nvar PLACEMENT_BOTTOM = isRTL() ? 'bottom-end' : 'bottom-start';\nvar PLACEMENT_BOTTOMEND = isRTL() ? 'bottom-start' : 'bottom-end';\nvar PLACEMENT_RIGHT = isRTL() ? 'left-start' : 'right-start';\nvar PLACEMENT_LEFT = isRTL() ? 'right-start' : 'left-start';\nvar PLACEMENT_TOPCENTER = 'top';\nvar PLACEMENT_BOTTOMCENTER = 'bottom';\nvar Default$9 = {\n autoClose: true,\n boundary: 'clippingParents',\n display: 'dynamic',\n offset: [0, 2],\n popperConfig: null,\n reference: 'toggle'\n};\nvar DefaultType$9 = {\n autoClose: '(boolean|string)',\n boundary: '(string|element)',\n display: 'string',\n offset: '(array|string|function)',\n popperConfig: '(null|object|function)',\n reference: '(string|element|object)'\n};\n\n/**\n * Class definition\n */\nvar Dropdown = /*#__PURE__*/function (_BaseComponent5) {\n function Dropdown(element, config) {\n var _this15;\n _classCallCheck(this, Dropdown);\n _this15 = _callSuper(this, Dropdown, [element, config]);\n _this15._popper = null;\n _this15._parent = _this15._element.parentNode; // dropdown wrapper\n // TODO: v6 revert #37011 & change markup https://getbootstrap.com/docs/5.3/forms/input-group/\n _this15._menu = SelectorEngine.next(_this15._element, SELECTOR_MENU)[0] || SelectorEngine.prev(_this15._element, SELECTOR_MENU)[0] || SelectorEngine.findOne(SELECTOR_MENU, _this15._parent);\n _this15._inNavbar = _this15._detectNavbar();\n return _this15;\n }\n\n // Getters\n _inherits(Dropdown, _BaseComponent5);\n return _createClass(Dropdown, [{\n key: \"toggle\",\n value:\n // Public\n function toggle() {\n return this._isShown() ? this.hide() : this.show();\n }\n }, {\n key: \"show\",\n value: function show() {\n if (isDisabled(this._element) || this._isShown()) {\n return;\n }\n var relatedTarget = {\n relatedTarget: this._element\n };\n var showEvent = EventHandler.trigger(this._element, EVENT_SHOW$5, relatedTarget);\n if (showEvent.defaultPrevented) {\n return;\n }\n this._createPopper();\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement && !this._parent.closest(SELECTOR_NAVBAR_NAV)) {\n var _ref12;\n var _iterator12 = _createForOfIteratorHelper((_ref12 = []).concat.apply(_ref12, _toConsumableArray(document.body.children))),\n _step12;\n try {\n for (_iterator12.s(); !(_step12 = _iterator12.n()).done;) {\n var element = _step12.value;\n EventHandler.on(element, 'mouseover', noop);\n }\n } catch (err) {\n _iterator12.e(err);\n } finally {\n _iterator12.f();\n }\n }\n this._element.focus();\n this._element.setAttribute('aria-expanded', true);\n this._menu.classList.add(CLASS_NAME_SHOW$6);\n this._element.classList.add(CLASS_NAME_SHOW$6);\n EventHandler.trigger(this._element, EVENT_SHOWN$5, relatedTarget);\n }\n }, {\n key: \"hide\",\n value: function hide() {\n if (isDisabled(this._element) || !this._isShown()) {\n return;\n }\n var relatedTarget = {\n relatedTarget: this._element\n };\n this._completeHide(relatedTarget);\n }\n }, {\n key: \"dispose\",\n value: function dispose() {\n if (this._popper) {\n this._popper.destroy();\n }\n _superPropGet(Dropdown, \"dispose\", this, 3)([]);\n }\n }, {\n key: \"update\",\n value: function update() {\n this._inNavbar = this._detectNavbar();\n if (this._popper) {\n this._popper.update();\n }\n }\n\n // Private\n }, {\n key: \"_completeHide\",\n value: function _completeHide(relatedTarget) {\n var hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$5, relatedTarget);\n if (hideEvent.defaultPrevented) {\n return;\n }\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n var _ref13;\n var _iterator13 = _createForOfIteratorHelper((_ref13 = []).concat.apply(_ref13, _toConsumableArray(document.body.children))),\n _step13;\n try {\n for (_iterator13.s(); !(_step13 = _iterator13.n()).done;) {\n var element = _step13.value;\n EventHandler.off(element, 'mouseover', noop);\n }\n } catch (err) {\n _iterator13.e(err);\n } finally {\n _iterator13.f();\n }\n }\n if (this._popper) {\n this._popper.destroy();\n }\n this._menu.classList.remove(CLASS_NAME_SHOW$6);\n this._element.classList.remove(CLASS_NAME_SHOW$6);\n this._element.setAttribute('aria-expanded', 'false');\n Manipulator.removeDataAttribute(this._menu, 'popper');\n EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget);\n }\n }, {\n key: \"_getConfig\",\n value: function _getConfig(config) {\n config = _superPropGet(Dropdown, \"_getConfig\", this, 3)([config]);\n if (_typeof(config.reference) === 'object' && !isElement(config.reference) && typeof config.reference.getBoundingClientRect !== 'function') {\n // Popper virtual elements require a getBoundingClientRect method\n throw new TypeError(\"\".concat(NAME$a.toUpperCase(), \": Option \\\"reference\\\" provided type \\\"object\\\" without a required \\\"getBoundingClientRect\\\" method.\"));\n }\n return config;\n }\n }, {\n key: \"_createPopper\",\n value: function _createPopper() {\n if (typeof _popperjs_core__WEBPACK_IMPORTED_MODULE_0__ === 'undefined') {\n throw new TypeError('Bootstrap\\'s dropdowns require Popper (https://popper.js.org)');\n }\n var referenceElement = this._element;\n if (this._config.reference === 'parent') {\n referenceElement = this._parent;\n } else if (isElement(this._config.reference)) {\n referenceElement = getElement(this._config.reference);\n } else if (_typeof(this._config.reference) === 'object') {\n referenceElement = this._config.reference;\n }\n var popperConfig = this._getPopperConfig();\n this._popper = _popperjs_core__WEBPACK_IMPORTED_MODULE_1__.createPopper(referenceElement, this._menu, popperConfig);\n }\n }, {\n key: \"_isShown\",\n value: function _isShown() {\n return this._menu.classList.contains(CLASS_NAME_SHOW$6);\n }\n }, {\n key: \"_getPlacement\",\n value: function _getPlacement() {\n var parentDropdown = this._parent;\n if (parentDropdown.classList.contains(CLASS_NAME_DROPEND)) {\n return PLACEMENT_RIGHT;\n }\n if (parentDropdown.classList.contains(CLASS_NAME_DROPSTART)) {\n return PLACEMENT_LEFT;\n }\n if (parentDropdown.classList.contains(CLASS_NAME_DROPUP_CENTER)) {\n return PLACEMENT_TOPCENTER;\n }\n if (parentDropdown.classList.contains(CLASS_NAME_DROPDOWN_CENTER)) {\n return PLACEMENT_BOTTOMCENTER;\n }\n\n // We need to trim the value because custom properties can also include spaces\n var isEnd = getComputedStyle(this._menu).getPropertyValue('--bs-position').trim() === 'end';\n if (parentDropdown.classList.contains(CLASS_NAME_DROPUP)) {\n return isEnd ? PLACEMENT_TOPEND : PLACEMENT_TOP;\n }\n return isEnd ? PLACEMENT_BOTTOMEND : PLACEMENT_BOTTOM;\n }\n }, {\n key: \"_detectNavbar\",\n value: function _detectNavbar() {\n return this._element.closest(SELECTOR_NAVBAR) !== null;\n }\n }, {\n key: \"_getOffset\",\n value: function _getOffset() {\n var _this16 = this;\n var offset = this._config.offset;\n if (typeof offset === 'string') {\n return offset.split(',').map(function (value) {\n return Number.parseInt(value, 10);\n });\n }\n if (typeof offset === 'function') {\n return function (popperData) {\n return offset(popperData, _this16._element);\n };\n }\n return offset;\n }\n }, {\n key: \"_getPopperConfig\",\n value: function _getPopperConfig() {\n var defaultBsPopperConfig = {\n placement: this._getPlacement(),\n modifiers: [{\n name: 'preventOverflow',\n options: {\n boundary: this._config.boundary\n }\n }, {\n name: 'offset',\n options: {\n offset: this._getOffset()\n }\n }]\n };\n\n // Disable Popper if we have a static display or Dropdown is in Navbar\n if (this._inNavbar || this._config.display === 'static') {\n Manipulator.setDataAttribute(this._menu, 'popper', 'static'); // TODO: v6 remove\n defaultBsPopperConfig.modifiers = [{\n name: 'applyStyles',\n enabled: false\n }];\n }\n return _objectSpread(_objectSpread({}, defaultBsPopperConfig), execute(this._config.popperConfig, [defaultBsPopperConfig]));\n }\n }, {\n key: \"_selectMenuItem\",\n value: function _selectMenuItem(_ref14) {\n var key = _ref14.key,\n target = _ref14.target;\n var items = SelectorEngine.find(SELECTOR_VISIBLE_ITEMS, this._menu).filter(function (element) {\n return isVisible(element);\n });\n if (!items.length) {\n return;\n }\n\n // if target isn't included in items (e.g. when expanding the dropdown)\n // allow cycling to get the last item in case key equals ARROW_UP_KEY\n getNextActiveElement(items, target, key === ARROW_DOWN_KEY$1, !items.includes(target)).focus();\n }\n\n // Static\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$9;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$9;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$a;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config) {\n return this.each(function () {\n var data = Dropdown.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (typeof data[config] === 'undefined') {\n throw new TypeError(\"No method named \\\"\".concat(config, \"\\\"\"));\n }\n data[config]();\n });\n }\n }, {\n key: \"clearMenus\",\n value: function clearMenus(event) {\n if (event.button === RIGHT_MOUSE_BUTTON || event.type === 'keyup' && event.key !== TAB_KEY$1) {\n return;\n }\n var openToggles = SelectorEngine.find(SELECTOR_DATA_TOGGLE_SHOWN);\n var _iterator14 = _createForOfIteratorHelper(openToggles),\n _step14;\n try {\n for (_iterator14.s(); !(_step14 = _iterator14.n()).done;) {\n var toggle = _step14.value;\n var context = Dropdown.getInstance(toggle);\n if (!context || context._config.autoClose === false) {\n continue;\n }\n var composedPath = event.composedPath();\n var isMenuTarget = composedPath.includes(context._menu);\n if (composedPath.includes(context._element) || context._config.autoClose === 'inside' && !isMenuTarget || context._config.autoClose === 'outside' && isMenuTarget) {\n continue;\n }\n\n // Tab navigation through the dropdown menu or events from contained inputs shouldn't close the menu\n if (context._menu.contains(event.target) && (event.type === 'keyup' && event.key === TAB_KEY$1 || /input|select|option|textarea|form/i.test(event.target.tagName))) {\n continue;\n }\n var relatedTarget = {\n relatedTarget: context._element\n };\n if (event.type === 'click') {\n relatedTarget.clickEvent = event;\n }\n context._completeHide(relatedTarget);\n }\n } catch (err) {\n _iterator14.e(err);\n } finally {\n _iterator14.f();\n }\n }\n }, {\n key: \"dataApiKeydownHandler\",\n value: function dataApiKeydownHandler(event) {\n // If not an UP | DOWN | ESCAPE key => not a dropdown command\n // If input/textarea && if key is other than ESCAPE => not a dropdown command\n\n var isInput = /input|textarea/i.test(event.target.tagName);\n var isEscapeEvent = event.key === ESCAPE_KEY$2;\n var isUpOrDownEvent = [ARROW_UP_KEY$1, ARROW_DOWN_KEY$1].includes(event.key);\n if (!isUpOrDownEvent && !isEscapeEvent) {\n return;\n }\n if (isInput && !isEscapeEvent) {\n return;\n }\n event.preventDefault();\n\n // TODO: v6 revert #37011 & change markup https://getbootstrap.com/docs/5.3/forms/input-group/\n var getToggleButton = this.matches(SELECTOR_DATA_TOGGLE$3) ? this : SelectorEngine.prev(this, SELECTOR_DATA_TOGGLE$3)[0] || SelectorEngine.next(this, SELECTOR_DATA_TOGGLE$3)[0] || SelectorEngine.findOne(SELECTOR_DATA_TOGGLE$3, event.delegateTarget.parentNode);\n var instance = Dropdown.getOrCreateInstance(getToggleButton);\n if (isUpOrDownEvent) {\n event.stopPropagation();\n instance.show();\n instance._selectMenuItem(event);\n return;\n }\n if (instance._isShown()) {\n // else is escape and we check if it is shown\n event.stopPropagation();\n instance.hide();\n getToggleButton.focus();\n }\n }\n }]);\n}(BaseComponent);\n/**\n * Data API implementation\n */\nEventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_DATA_TOGGLE$3, Dropdown.dataApiKeydownHandler);\nEventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_MENU, Dropdown.dataApiKeydownHandler);\nEventHandler.on(document, EVENT_CLICK_DATA_API$3, Dropdown.clearMenus);\nEventHandler.on(document, EVENT_KEYUP_DATA_API, Dropdown.clearMenus);\nEventHandler.on(document, EVENT_CLICK_DATA_API$3, SELECTOR_DATA_TOGGLE$3, function (event) {\n event.preventDefault();\n Dropdown.getOrCreateInstance(this).toggle();\n});\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Dropdown);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/backdrop.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$9 = 'backdrop';\nvar CLASS_NAME_FADE$4 = 'fade';\nvar CLASS_NAME_SHOW$5 = 'show';\nvar EVENT_MOUSEDOWN = \"mousedown.bs.\".concat(NAME$9);\nvar Default$8 = {\n className: 'modal-backdrop',\n clickCallback: null,\n isAnimated: false,\n isVisible: true,\n // if false, we use the backdrop helper without adding any element to the dom\n rootElement: 'body' // give the choice to place backdrop under different elements\n};\nvar DefaultType$8 = {\n className: 'string',\n clickCallback: '(function|null)',\n isAnimated: 'boolean',\n isVisible: 'boolean',\n rootElement: '(element|string)'\n};\n\n/**\n * Class definition\n */\nvar Backdrop = /*#__PURE__*/function (_Config3) {\n function Backdrop(config) {\n var _this17;\n _classCallCheck(this, Backdrop);\n _this17 = _callSuper(this, Backdrop);\n _this17._config = _this17._getConfig(config);\n _this17._isAppended = false;\n _this17._element = null;\n return _this17;\n }\n\n // Getters\n _inherits(Backdrop, _Config3);\n return _createClass(Backdrop, [{\n key: \"show\",\n value:\n // Public\n function show(callback) {\n if (!this._config.isVisible) {\n execute(callback);\n return;\n }\n this._append();\n var element = this._getElement();\n if (this._config.isAnimated) {\n reflow(element);\n }\n element.classList.add(CLASS_NAME_SHOW$5);\n this._emulateAnimation(function () {\n execute(callback);\n });\n }\n }, {\n key: \"hide\",\n value: function hide(callback) {\n var _this18 = this;\n if (!this._config.isVisible) {\n execute(callback);\n return;\n }\n this._getElement().classList.remove(CLASS_NAME_SHOW$5);\n this._emulateAnimation(function () {\n _this18.dispose();\n execute(callback);\n });\n }\n }, {\n key: \"dispose\",\n value: function dispose() {\n if (!this._isAppended) {\n return;\n }\n EventHandler.off(this._element, EVENT_MOUSEDOWN);\n this._element.remove();\n this._isAppended = false;\n }\n\n // Private\n }, {\n key: \"_getElement\",\n value: function _getElement() {\n if (!this._element) {\n var backdrop = document.createElement('div');\n backdrop.className = this._config.className;\n if (this._config.isAnimated) {\n backdrop.classList.add(CLASS_NAME_FADE$4);\n }\n this._element = backdrop;\n }\n return this._element;\n }\n }, {\n key: \"_configAfterMerge\",\n value: function _configAfterMerge(config) {\n // use getElement() with the default \"body\" to get a fresh Element on each instantiation\n config.rootElement = getElement(config.rootElement);\n return config;\n }\n }, {\n key: \"_append\",\n value: function _append() {\n var _this19 = this;\n if (this._isAppended) {\n return;\n }\n var element = this._getElement();\n this._config.rootElement.append(element);\n EventHandler.on(element, EVENT_MOUSEDOWN, function () {\n execute(_this19._config.clickCallback);\n });\n this._isAppended = true;\n }\n }, {\n key: \"_emulateAnimation\",\n value: function _emulateAnimation(callback) {\n executeAfterTransition(callback, this._getElement(), this._config.isAnimated);\n }\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$8;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$8;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$9;\n }\n }]);\n}(Config);\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/focustrap.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n/**\n * Constants\n */\nvar NAME$8 = 'focustrap';\nvar DATA_KEY$5 = 'bs.focustrap';\nvar EVENT_KEY$5 = \".\".concat(DATA_KEY$5);\nvar EVENT_FOCUSIN$2 = \"focusin\".concat(EVENT_KEY$5);\nvar EVENT_KEYDOWN_TAB = \"keydown.tab\".concat(EVENT_KEY$5);\nvar TAB_KEY = 'Tab';\nvar TAB_NAV_FORWARD = 'forward';\nvar TAB_NAV_BACKWARD = 'backward';\nvar Default$7 = {\n autofocus: true,\n trapElement: null // The element to trap focus inside of\n};\nvar DefaultType$7 = {\n autofocus: 'boolean',\n trapElement: 'element'\n};\n\n/**\n * Class definition\n */\nvar FocusTrap = /*#__PURE__*/function (_Config4) {\n function FocusTrap(config) {\n var _this20;\n _classCallCheck(this, FocusTrap);\n _this20 = _callSuper(this, FocusTrap);\n _this20._config = _this20._getConfig(config);\n _this20._isActive = false;\n _this20._lastTabNavDirection = null;\n return _this20;\n }\n\n // Getters\n _inherits(FocusTrap, _Config4);\n return _createClass(FocusTrap, [{\n key: \"activate\",\n value:\n // Public\n function activate() {\n var _this21 = this;\n if (this._isActive) {\n return;\n }\n if (this._config.autofocus) {\n this._config.trapElement.focus();\n }\n EventHandler.off(document, EVENT_KEY$5); // guard against infinite focus loop\n EventHandler.on(document, EVENT_FOCUSIN$2, function (event) {\n return _this21._handleFocusin(event);\n });\n EventHandler.on(document, EVENT_KEYDOWN_TAB, function (event) {\n return _this21._handleKeydown(event);\n });\n this._isActive = true;\n }\n }, {\n key: \"deactivate\",\n value: function deactivate() {\n if (!this._isActive) {\n return;\n }\n this._isActive = false;\n EventHandler.off(document, EVENT_KEY$5);\n }\n\n // Private\n }, {\n key: \"_handleFocusin\",\n value: function _handleFocusin(event) {\n var trapElement = this._config.trapElement;\n if (event.target === document || event.target === trapElement || trapElement.contains(event.target)) {\n return;\n }\n var elements = SelectorEngine.focusableChildren(trapElement);\n if (elements.length === 0) {\n trapElement.focus();\n } else if (this._lastTabNavDirection === TAB_NAV_BACKWARD) {\n elements[elements.length - 1].focus();\n } else {\n elements[0].focus();\n }\n }\n }, {\n key: \"_handleKeydown\",\n value: function _handleKeydown(event) {\n if (event.key !== TAB_KEY) {\n return;\n }\n this._lastTabNavDirection = event.shiftKey ? TAB_NAV_BACKWARD : TAB_NAV_FORWARD;\n }\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$7;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$7;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$8;\n }\n }]);\n}(Config);\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/scrollBar.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n/**\n * Constants\n */\nvar SELECTOR_FIXED_CONTENT = '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top';\nvar SELECTOR_STICKY_CONTENT = '.sticky-top';\nvar PROPERTY_PADDING = 'padding-right';\nvar PROPERTY_MARGIN = 'margin-right';\n\n/**\n * Class definition\n */\nvar ScrollBarHelper = /*#__PURE__*/function () {\n function ScrollBarHelper() {\n _classCallCheck(this, ScrollBarHelper);\n this._element = document.body;\n }\n\n // Public\n return _createClass(ScrollBarHelper, [{\n key: \"getWidth\",\n value: function getWidth() {\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth#usage_notes\n var documentWidth = document.documentElement.clientWidth;\n return Math.abs(window.innerWidth - documentWidth);\n }\n }, {\n key: \"hide\",\n value: function hide() {\n var width = this.getWidth();\n this._disableOverFlow();\n // give padding to element to balance the hidden scrollbar width\n this._setElementAttributes(this._element, PROPERTY_PADDING, function (calculatedValue) {\n return calculatedValue + width;\n });\n // trick: We adjust positive paddingRight and negative marginRight to sticky-top elements to keep showing fullwidth\n this._setElementAttributes(SELECTOR_FIXED_CONTENT, PROPERTY_PADDING, function (calculatedValue) {\n return calculatedValue + width;\n });\n this._setElementAttributes(SELECTOR_STICKY_CONTENT, PROPERTY_MARGIN, function (calculatedValue) {\n return calculatedValue - width;\n });\n }\n }, {\n key: \"reset\",\n value: function reset() {\n this._resetElementAttributes(this._element, 'overflow');\n this._resetElementAttributes(this._element, PROPERTY_PADDING);\n this._resetElementAttributes(SELECTOR_FIXED_CONTENT, PROPERTY_PADDING);\n this._resetElementAttributes(SELECTOR_STICKY_CONTENT, PROPERTY_MARGIN);\n }\n }, {\n key: \"isOverflowing\",\n value: function isOverflowing() {\n return this.getWidth() > 0;\n }\n\n // Private\n }, {\n key: \"_disableOverFlow\",\n value: function _disableOverFlow() {\n this._saveInitialAttribute(this._element, 'overflow');\n this._element.style.overflow = 'hidden';\n }\n }, {\n key: \"_setElementAttributes\",\n value: function _setElementAttributes(selector, styleProperty, callback) {\n var _this22 = this;\n var scrollbarWidth = this.getWidth();\n var manipulationCallBack = function manipulationCallBack(element) {\n if (element !== _this22._element && window.innerWidth > element.clientWidth + scrollbarWidth) {\n return;\n }\n _this22._saveInitialAttribute(element, styleProperty);\n var calculatedValue = window.getComputedStyle(element).getPropertyValue(styleProperty);\n element.style.setProperty(styleProperty, \"\".concat(callback(Number.parseFloat(calculatedValue)), \"px\"));\n };\n this._applyManipulationCallback(selector, manipulationCallBack);\n }\n }, {\n key: \"_saveInitialAttribute\",\n value: function _saveInitialAttribute(element, styleProperty) {\n var actualValue = element.style.getPropertyValue(styleProperty);\n if (actualValue) {\n Manipulator.setDataAttribute(element, styleProperty, actualValue);\n }\n }\n }, {\n key: \"_resetElementAttributes\",\n value: function _resetElementAttributes(selector, styleProperty) {\n var manipulationCallBack = function manipulationCallBack(element) {\n var value = Manipulator.getDataAttribute(element, styleProperty);\n // We only want to remove the property if the value is `null`; the value can also be zero\n if (value === null) {\n element.style.removeProperty(styleProperty);\n return;\n }\n Manipulator.removeDataAttribute(element, styleProperty);\n element.style.setProperty(styleProperty, value);\n };\n this._applyManipulationCallback(selector, manipulationCallBack);\n }\n }, {\n key: \"_applyManipulationCallback\",\n value: function _applyManipulationCallback(selector, callBack) {\n if (isElement(selector)) {\n callBack(selector);\n return;\n }\n var _iterator15 = _createForOfIteratorHelper(SelectorEngine.find(selector, this._element)),\n _step15;\n try {\n for (_iterator15.s(); !(_step15 = _iterator15.n()).done;) {\n var sel = _step15.value;\n callBack(sel);\n }\n } catch (err) {\n _iterator15.e(err);\n } finally {\n _iterator15.f();\n }\n }\n }]);\n}();\n/**\n * --------------------------------------------------------------------------\n * Bootstrap modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n/**\n * Constants\n */\nvar NAME$7 = 'modal';\nvar DATA_KEY$4 = 'bs.modal';\nvar EVENT_KEY$4 = \".\".concat(DATA_KEY$4);\nvar DATA_API_KEY$2 = '.data-api';\nvar ESCAPE_KEY$1 = 'Escape';\nvar EVENT_HIDE$4 = \"hide\".concat(EVENT_KEY$4);\nvar EVENT_HIDE_PREVENTED$1 = \"hidePrevented\".concat(EVENT_KEY$4);\nvar EVENT_HIDDEN$4 = \"hidden\".concat(EVENT_KEY$4);\nvar EVENT_SHOW$4 = \"show\".concat(EVENT_KEY$4);\nvar EVENT_SHOWN$4 = \"shown\".concat(EVENT_KEY$4);\nvar EVENT_RESIZE$1 = \"resize\".concat(EVENT_KEY$4);\nvar EVENT_CLICK_DISMISS = \"click.dismiss\".concat(EVENT_KEY$4);\nvar EVENT_MOUSEDOWN_DISMISS = \"mousedown.dismiss\".concat(EVENT_KEY$4);\nvar EVENT_KEYDOWN_DISMISS$1 = \"keydown.dismiss\".concat(EVENT_KEY$4);\nvar EVENT_CLICK_DATA_API$2 = \"click\".concat(EVENT_KEY$4).concat(DATA_API_KEY$2);\nvar CLASS_NAME_OPEN = 'modal-open';\nvar CLASS_NAME_FADE$3 = 'fade';\nvar CLASS_NAME_SHOW$4 = 'show';\nvar CLASS_NAME_STATIC = 'modal-static';\nvar OPEN_SELECTOR$1 = '.modal.show';\nvar SELECTOR_DIALOG = '.modal-dialog';\nvar SELECTOR_MODAL_BODY = '.modal-body';\nvar SELECTOR_DATA_TOGGLE$2 = '[data-bs-toggle=\"modal\"]';\nvar Default$6 = {\n backdrop: true,\n focus: true,\n keyboard: true\n};\nvar DefaultType$6 = {\n backdrop: '(boolean|string)',\n focus: 'boolean',\n keyboard: 'boolean'\n};\n\n/**\n * Class definition\n */\nvar Modal = /*#__PURE__*/function (_BaseComponent6) {\n function Modal(element, config) {\n var _this23;\n _classCallCheck(this, Modal);\n _this23 = _callSuper(this, Modal, [element, config]);\n _this23._dialog = SelectorEngine.findOne(SELECTOR_DIALOG, _this23._element);\n _this23._backdrop = _this23._initializeBackDrop();\n _this23._focustrap = _this23._initializeFocusTrap();\n _this23._isShown = false;\n _this23._isTransitioning = false;\n _this23._scrollBar = new ScrollBarHelper();\n _this23._addEventListeners();\n return _this23;\n }\n\n // Getters\n _inherits(Modal, _BaseComponent6);\n return _createClass(Modal, [{\n key: \"toggle\",\n value:\n // Public\n function toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget);\n }\n }, {\n key: \"show\",\n value: function show(relatedTarget) {\n var _this24 = this;\n if (this._isShown || this._isTransitioning) {\n return;\n }\n var showEvent = EventHandler.trigger(this._element, EVENT_SHOW$4, {\n relatedTarget: relatedTarget\n });\n if (showEvent.defaultPrevented) {\n return;\n }\n this._isShown = true;\n this._isTransitioning = true;\n this._scrollBar.hide();\n document.body.classList.add(CLASS_NAME_OPEN);\n this._adjustDialog();\n this._backdrop.show(function () {\n return _this24._showElement(relatedTarget);\n });\n }\n }, {\n key: \"hide\",\n value: function hide() {\n var _this25 = this;\n if (!this._isShown || this._isTransitioning) {\n return;\n }\n var hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$4);\n if (hideEvent.defaultPrevented) {\n return;\n }\n this._isShown = false;\n this._isTransitioning = true;\n this._focustrap.deactivate();\n this._element.classList.remove(CLASS_NAME_SHOW$4);\n this._queueCallback(function () {\n return _this25._hideModal();\n }, this._element, this._isAnimated());\n }\n }, {\n key: \"dispose\",\n value: function dispose() {\n EventHandler.off(window, EVENT_KEY$4);\n EventHandler.off(this._dialog, EVENT_KEY$4);\n this._backdrop.dispose();\n this._focustrap.deactivate();\n _superPropGet(Modal, \"dispose\", this, 3)([]);\n }\n }, {\n key: \"handleUpdate\",\n value: function handleUpdate() {\n this._adjustDialog();\n }\n\n // Private\n }, {\n key: \"_initializeBackDrop\",\n value: function _initializeBackDrop() {\n return new Backdrop({\n isVisible: Boolean(this._config.backdrop),\n // 'static' option will be translated to true, and booleans will keep their value,\n isAnimated: this._isAnimated()\n });\n }\n }, {\n key: \"_initializeFocusTrap\",\n value: function _initializeFocusTrap() {\n return new FocusTrap({\n trapElement: this._element\n });\n }\n }, {\n key: \"_showElement\",\n value: function _showElement(relatedTarget) {\n var _this26 = this;\n // try to append dynamic modal\n if (!document.body.contains(this._element)) {\n document.body.append(this._element);\n }\n this._element.style.display = 'block';\n this._element.removeAttribute('aria-hidden');\n this._element.setAttribute('aria-modal', true);\n this._element.setAttribute('role', 'dialog');\n this._element.scrollTop = 0;\n var modalBody = SelectorEngine.findOne(SELECTOR_MODAL_BODY, this._dialog);\n if (modalBody) {\n modalBody.scrollTop = 0;\n }\n reflow(this._element);\n this._element.classList.add(CLASS_NAME_SHOW$4);\n var transitionComplete = function transitionComplete() {\n if (_this26._config.focus) {\n _this26._focustrap.activate();\n }\n _this26._isTransitioning = false;\n EventHandler.trigger(_this26._element, EVENT_SHOWN$4, {\n relatedTarget: relatedTarget\n });\n };\n this._queueCallback(transitionComplete, this._dialog, this._isAnimated());\n }\n }, {\n key: \"_addEventListeners\",\n value: function _addEventListeners() {\n var _this27 = this;\n EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS$1, function (event) {\n if (event.key !== ESCAPE_KEY$1) {\n return;\n }\n if (_this27._config.keyboard) {\n _this27.hide();\n return;\n }\n _this27._triggerBackdropTransition();\n });\n EventHandler.on(window, EVENT_RESIZE$1, function () {\n if (_this27._isShown && !_this27._isTransitioning) {\n _this27._adjustDialog();\n }\n });\n EventHandler.on(this._element, EVENT_MOUSEDOWN_DISMISS, function (event) {\n // a bad trick to segregate clicks that may start inside dialog but end outside, and avoid listen to scrollbar clicks\n EventHandler.one(_this27._element, EVENT_CLICK_DISMISS, function (event2) {\n if (_this27._element !== event.target || _this27._element !== event2.target) {\n return;\n }\n if (_this27._config.backdrop === 'static') {\n _this27._triggerBackdropTransition();\n return;\n }\n if (_this27._config.backdrop) {\n _this27.hide();\n }\n });\n });\n }\n }, {\n key: \"_hideModal\",\n value: function _hideModal() {\n var _this28 = this;\n this._element.style.display = 'none';\n this._element.setAttribute('aria-hidden', true);\n this._element.removeAttribute('aria-modal');\n this._element.removeAttribute('role');\n this._isTransitioning = false;\n this._backdrop.hide(function () {\n document.body.classList.remove(CLASS_NAME_OPEN);\n _this28._resetAdjustments();\n _this28._scrollBar.reset();\n EventHandler.trigger(_this28._element, EVENT_HIDDEN$4);\n });\n }\n }, {\n key: \"_isAnimated\",\n value: function _isAnimated() {\n return this._element.classList.contains(CLASS_NAME_FADE$3);\n }\n }, {\n key: \"_triggerBackdropTransition\",\n value: function _triggerBackdropTransition() {\n var _this29 = this;\n var hideEvent = EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED$1);\n if (hideEvent.defaultPrevented) {\n return;\n }\n var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;\n var initialOverflowY = this._element.style.overflowY;\n // return if the following background transition hasn't yet completed\n if (initialOverflowY === 'hidden' || this._element.classList.contains(CLASS_NAME_STATIC)) {\n return;\n }\n if (!isModalOverflowing) {\n this._element.style.overflowY = 'hidden';\n }\n this._element.classList.add(CLASS_NAME_STATIC);\n this._queueCallback(function () {\n _this29._element.classList.remove(CLASS_NAME_STATIC);\n _this29._queueCallback(function () {\n _this29._element.style.overflowY = initialOverflowY;\n }, _this29._dialog);\n }, this._dialog);\n this._element.focus();\n }\n\n /**\n * The following methods are used to handle overflowing modals\n */\n }, {\n key: \"_adjustDialog\",\n value: function _adjustDialog() {\n var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;\n var scrollbarWidth = this._scrollBar.getWidth();\n var isBodyOverflowing = scrollbarWidth > 0;\n if (isBodyOverflowing && !isModalOverflowing) {\n var property = isRTL() ? 'paddingLeft' : 'paddingRight';\n this._element.style[property] = \"\".concat(scrollbarWidth, \"px\");\n }\n if (!isBodyOverflowing && isModalOverflowing) {\n var _property = isRTL() ? 'paddingRight' : 'paddingLeft';\n this._element.style[_property] = \"\".concat(scrollbarWidth, \"px\");\n }\n }\n }, {\n key: \"_resetAdjustments\",\n value: function _resetAdjustments() {\n this._element.style.paddingLeft = '';\n this._element.style.paddingRight = '';\n }\n\n // Static\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$6;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$6;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$7;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n var data = Modal.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (typeof data[config] === 'undefined') {\n throw new TypeError(\"No method named \\\"\".concat(config, \"\\\"\"));\n }\n data[config](relatedTarget);\n });\n }\n }]);\n}(BaseComponent);\n/**\n * Data API implementation\n */\nEventHandler.on(document, EVENT_CLICK_DATA_API$2, SELECTOR_DATA_TOGGLE$2, function (event) {\n var _this30 = this;\n var target = SelectorEngine.getElementFromSelector(this);\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n EventHandler.one(target, EVENT_SHOW$4, function (showEvent) {\n if (showEvent.defaultPrevented) {\n // only register focus restorer if modal will actually get shown\n return;\n }\n EventHandler.one(target, EVENT_HIDDEN$4, function () {\n if (isVisible(_this30)) {\n _this30.focus();\n }\n });\n });\n\n // avoid conflict when clicking modal toggler while another one is open\n var alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR$1);\n if (alreadyOpen) {\n Modal.getInstance(alreadyOpen).hide();\n }\n var data = Modal.getOrCreateInstance(target);\n data.toggle(this);\n});\nenableDismissTrigger(Modal);\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Modal);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap offcanvas.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$6 = 'offcanvas';\nvar DATA_KEY$3 = 'bs.offcanvas';\nvar EVENT_KEY$3 = \".\".concat(DATA_KEY$3);\nvar DATA_API_KEY$1 = '.data-api';\nvar EVENT_LOAD_DATA_API$2 = \"load\".concat(EVENT_KEY$3).concat(DATA_API_KEY$1);\nvar ESCAPE_KEY = 'Escape';\nvar CLASS_NAME_SHOW$3 = 'show';\nvar CLASS_NAME_SHOWING$1 = 'showing';\nvar CLASS_NAME_HIDING = 'hiding';\nvar CLASS_NAME_BACKDROP = 'offcanvas-backdrop';\nvar OPEN_SELECTOR = '.offcanvas.show';\nvar EVENT_SHOW$3 = \"show\".concat(EVENT_KEY$3);\nvar EVENT_SHOWN$3 = \"shown\".concat(EVENT_KEY$3);\nvar EVENT_HIDE$3 = \"hide\".concat(EVENT_KEY$3);\nvar EVENT_HIDE_PREVENTED = \"hidePrevented\".concat(EVENT_KEY$3);\nvar EVENT_HIDDEN$3 = \"hidden\".concat(EVENT_KEY$3);\nvar EVENT_RESIZE = \"resize\".concat(EVENT_KEY$3);\nvar EVENT_CLICK_DATA_API$1 = \"click\".concat(EVENT_KEY$3).concat(DATA_API_KEY$1);\nvar EVENT_KEYDOWN_DISMISS = \"keydown.dismiss\".concat(EVENT_KEY$3);\nvar SELECTOR_DATA_TOGGLE$1 = '[data-bs-toggle=\"offcanvas\"]';\nvar Default$5 = {\n backdrop: true,\n keyboard: true,\n scroll: false\n};\nvar DefaultType$5 = {\n backdrop: '(boolean|string)',\n keyboard: 'boolean',\n scroll: 'boolean'\n};\n\n/**\n * Class definition\n */\nvar Offcanvas = /*#__PURE__*/function (_BaseComponent7) {\n function Offcanvas(element, config) {\n var _this31;\n _classCallCheck(this, Offcanvas);\n _this31 = _callSuper(this, Offcanvas, [element, config]);\n _this31._isShown = false;\n _this31._backdrop = _this31._initializeBackDrop();\n _this31._focustrap = _this31._initializeFocusTrap();\n _this31._addEventListeners();\n return _this31;\n }\n\n // Getters\n _inherits(Offcanvas, _BaseComponent7);\n return _createClass(Offcanvas, [{\n key: \"toggle\",\n value:\n // Public\n function toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget);\n }\n }, {\n key: \"show\",\n value: function show(relatedTarget) {\n var _this32 = this;\n if (this._isShown) {\n return;\n }\n var showEvent = EventHandler.trigger(this._element, EVENT_SHOW$3, {\n relatedTarget: relatedTarget\n });\n if (showEvent.defaultPrevented) {\n return;\n }\n this._isShown = true;\n this._backdrop.show();\n if (!this._config.scroll) {\n new ScrollBarHelper().hide();\n }\n this._element.setAttribute('aria-modal', true);\n this._element.setAttribute('role', 'dialog');\n this._element.classList.add(CLASS_NAME_SHOWING$1);\n var completeCallBack = function completeCallBack() {\n if (!_this32._config.scroll || _this32._config.backdrop) {\n _this32._focustrap.activate();\n }\n _this32._element.classList.add(CLASS_NAME_SHOW$3);\n _this32._element.classList.remove(CLASS_NAME_SHOWING$1);\n EventHandler.trigger(_this32._element, EVENT_SHOWN$3, {\n relatedTarget: relatedTarget\n });\n };\n this._queueCallback(completeCallBack, this._element, true);\n }\n }, {\n key: \"hide\",\n value: function hide() {\n var _this33 = this;\n if (!this._isShown) {\n return;\n }\n var hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$3);\n if (hideEvent.defaultPrevented) {\n return;\n }\n this._focustrap.deactivate();\n this._element.blur();\n this._isShown = false;\n this._element.classList.add(CLASS_NAME_HIDING);\n this._backdrop.hide();\n var completeCallback = function completeCallback() {\n _this33._element.classList.remove(CLASS_NAME_SHOW$3, CLASS_NAME_HIDING);\n _this33._element.removeAttribute('aria-modal');\n _this33._element.removeAttribute('role');\n if (!_this33._config.scroll) {\n new ScrollBarHelper().reset();\n }\n EventHandler.trigger(_this33._element, EVENT_HIDDEN$3);\n };\n this._queueCallback(completeCallback, this._element, true);\n }\n }, {\n key: \"dispose\",\n value: function dispose() {\n this._backdrop.dispose();\n this._focustrap.deactivate();\n _superPropGet(Offcanvas, \"dispose\", this, 3)([]);\n }\n\n // Private\n }, {\n key: \"_initializeBackDrop\",\n value: function _initializeBackDrop() {\n var _this34 = this;\n var clickCallback = function clickCallback() {\n if (_this34._config.backdrop === 'static') {\n EventHandler.trigger(_this34._element, EVENT_HIDE_PREVENTED);\n return;\n }\n _this34.hide();\n };\n\n // 'static' option will be translated to true, and booleans will keep their value\n var isVisible = Boolean(this._config.backdrop);\n return new Backdrop({\n className: CLASS_NAME_BACKDROP,\n isVisible: isVisible,\n isAnimated: true,\n rootElement: this._element.parentNode,\n clickCallback: isVisible ? clickCallback : null\n });\n }\n }, {\n key: \"_initializeFocusTrap\",\n value: function _initializeFocusTrap() {\n return new FocusTrap({\n trapElement: this._element\n });\n }\n }, {\n key: \"_addEventListeners\",\n value: function _addEventListeners() {\n var _this35 = this;\n EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, function (event) {\n if (event.key !== ESCAPE_KEY) {\n return;\n }\n if (_this35._config.keyboard) {\n _this35.hide();\n return;\n }\n EventHandler.trigger(_this35._element, EVENT_HIDE_PREVENTED);\n });\n }\n\n // Static\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$5;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$5;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$6;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config) {\n return this.each(function () {\n var data = Offcanvas.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(\"No method named \\\"\".concat(config, \"\\\"\"));\n }\n data[config](this);\n });\n }\n }]);\n}(BaseComponent);\n/**\n * Data API implementation\n */\nEventHandler.on(document, EVENT_CLICK_DATA_API$1, SELECTOR_DATA_TOGGLE$1, function (event) {\n var _this36 = this;\n var target = SelectorEngine.getElementFromSelector(this);\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n if (isDisabled(this)) {\n return;\n }\n EventHandler.one(target, EVENT_HIDDEN$3, function () {\n // focus on trigger when it is closed\n if (isVisible(_this36)) {\n _this36.focus();\n }\n });\n\n // avoid conflict when clicking a toggler of an offcanvas, while another is open\n var alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR);\n if (alreadyOpen && alreadyOpen !== target) {\n Offcanvas.getInstance(alreadyOpen).hide();\n }\n var data = Offcanvas.getOrCreateInstance(target);\n data.toggle(this);\n});\nEventHandler.on(window, EVENT_LOAD_DATA_API$2, function () {\n var _iterator16 = _createForOfIteratorHelper(SelectorEngine.find(OPEN_SELECTOR)),\n _step16;\n try {\n for (_iterator16.s(); !(_step16 = _iterator16.n()).done;) {\n var selector = _step16.value;\n Offcanvas.getOrCreateInstance(selector).show();\n }\n } catch (err) {\n _iterator16.e(err);\n } finally {\n _iterator16.f();\n }\n});\nEventHandler.on(window, EVENT_RESIZE, function () {\n var _iterator17 = _createForOfIteratorHelper(SelectorEngine.find('[aria-modal][class*=show][class*=offcanvas-]')),\n _step17;\n try {\n for (_iterator17.s(); !(_step17 = _iterator17.n()).done;) {\n var element = _step17.value;\n if (getComputedStyle(element).position !== 'fixed') {\n Offcanvas.getOrCreateInstance(element).hide();\n }\n }\n } catch (err) {\n _iterator17.e(err);\n } finally {\n _iterator17.f();\n }\n});\nenableDismissTrigger(Offcanvas);\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Offcanvas);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/sanitizer.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n// js-docs-start allow-list\nvar ARIA_ATTRIBUTE_PATTERN = /^aria-[\\w-]*$/i;\nvar DefaultAllowlist = {\n // Global attributes allowed on any supplied element below.\n '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],\n a: ['target', 'href', 'title', 'rel'],\n area: [],\n b: [],\n br: [],\n col: [],\n code: [],\n dd: [],\n div: [],\n dl: [],\n dt: [],\n em: [],\n hr: [],\n h1: [],\n h2: [],\n h3: [],\n h4: [],\n h5: [],\n h6: [],\n i: [],\n img: ['src', 'srcset', 'alt', 'title', 'width', 'height'],\n li: [],\n ol: [],\n p: [],\n pre: [],\n s: [],\n small: [],\n span: [],\n sub: [],\n sup: [],\n strong: [],\n u: [],\n ul: []\n};\n// js-docs-end allow-list\n\nvar uriAttributes = new Set(['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href']);\n\n/**\n * A pattern that recognizes URLs that are safe wrt. XSS in URL navigation\n * contexts.\n *\n * Shout-out to Angular https://github.com/angular/angular/blob/15.2.8/packages/core/src/sanitization/url_sanitizer.ts#L38\n */\n// eslint-disable-next-line unicorn/better-regex\nvar SAFE_URL_PATTERN = /^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i;\nvar allowedAttribute = function allowedAttribute(attribute, allowedAttributeList) {\n var attributeName = attribute.nodeName.toLowerCase();\n if (allowedAttributeList.includes(attributeName)) {\n if (uriAttributes.has(attributeName)) {\n return Boolean(SAFE_URL_PATTERN.test(attribute.nodeValue));\n }\n return true;\n }\n\n // Check if a regular expression validates the attribute.\n return allowedAttributeList.filter(function (attributeRegex) {\n return attributeRegex instanceof RegExp;\n }).some(function (regex) {\n return regex.test(attributeName);\n });\n};\nfunction sanitizeHtml(unsafeHtml, allowList, sanitizeFunction) {\n var _ref15;\n if (!unsafeHtml.length) {\n return unsafeHtml;\n }\n if (sanitizeFunction && typeof sanitizeFunction === 'function') {\n return sanitizeFunction(unsafeHtml);\n }\n var domParser = new window.DOMParser();\n var createdDocument = domParser.parseFromString(unsafeHtml, 'text/html');\n var elements = (_ref15 = []).concat.apply(_ref15, _toConsumableArray(createdDocument.body.querySelectorAll('*')));\n var _iterator18 = _createForOfIteratorHelper(elements),\n _step18;\n try {\n for (_iterator18.s(); !(_step18 = _iterator18.n()).done;) {\n var _ref16;\n var element = _step18.value;\n var elementName = element.nodeName.toLowerCase();\n if (!Object.keys(allowList).includes(elementName)) {\n element.remove();\n continue;\n }\n var attributeList = (_ref16 = []).concat.apply(_ref16, _toConsumableArray(element.attributes));\n var allowedAttributes = [].concat(allowList['*'] || [], allowList[elementName] || []);\n var _iterator19 = _createForOfIteratorHelper(attributeList),\n _step19;\n try {\n for (_iterator19.s(); !(_step19 = _iterator19.n()).done;) {\n var attribute = _step19.value;\n if (!allowedAttribute(attribute, allowedAttributes)) {\n element.removeAttribute(attribute.nodeName);\n }\n }\n } catch (err) {\n _iterator19.e(err);\n } finally {\n _iterator19.f();\n }\n }\n } catch (err) {\n _iterator18.e(err);\n } finally {\n _iterator18.f();\n }\n return createdDocument.body.innerHTML;\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/template-factory.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$5 = 'TemplateFactory';\nvar Default$4 = {\n allowList: DefaultAllowlist,\n content: {},\n // { selector : text , selector2 : text2 , }\n extraClass: '',\n html: false,\n sanitize: true,\n sanitizeFn: null,\n template: '
'\n};\nvar DefaultType$4 = {\n allowList: 'object',\n content: 'object',\n extraClass: '(string|function)',\n html: 'boolean',\n sanitize: 'boolean',\n sanitizeFn: '(null|function)',\n template: 'string'\n};\nvar DefaultContentType = {\n entry: '(string|element|function|null)',\n selector: '(string|element)'\n};\n\n/**\n * Class definition\n */\nvar TemplateFactory = /*#__PURE__*/function (_Config5) {\n function TemplateFactory(config) {\n var _this37;\n _classCallCheck(this, TemplateFactory);\n _this37 = _callSuper(this, TemplateFactory);\n _this37._config = _this37._getConfig(config);\n return _this37;\n }\n\n // Getters\n _inherits(TemplateFactory, _Config5);\n return _createClass(TemplateFactory, [{\n key: \"getContent\",\n value:\n // Public\n function getContent() {\n var _this38 = this;\n return Object.values(this._config.content).map(function (config) {\n return _this38._resolvePossibleFunction(config);\n }).filter(Boolean);\n }\n }, {\n key: \"hasContent\",\n value: function hasContent() {\n return this.getContent().length > 0;\n }\n }, {\n key: \"changeContent\",\n value: function changeContent(content) {\n this._checkContent(content);\n this._config.content = _objectSpread(_objectSpread({}, this._config.content), content);\n return this;\n }\n }, {\n key: \"toHtml\",\n value: function toHtml() {\n var templateWrapper = document.createElement('div');\n templateWrapper.innerHTML = this._maybeSanitize(this._config.template);\n for (var _i7 = 0, _Object$entries5 = Object.entries(this._config.content); _i7 < _Object$entries5.length; _i7++) {\n var _ref17 = _Object$entries5[_i7];\n var _ref18 = _slicedToArray(_ref17, 2);\n var selector = _ref18[0];\n var text = _ref18[1];\n this._setContent(templateWrapper, text, selector);\n }\n var template = templateWrapper.children[0];\n var extraClass = this._resolvePossibleFunction(this._config.extraClass);\n if (extraClass) {\n var _template$classList;\n (_template$classList = template.classList).add.apply(_template$classList, _toConsumableArray(extraClass.split(' ')));\n }\n return template;\n }\n\n // Private\n }, {\n key: \"_typeCheckConfig\",\n value: function _typeCheckConfig(config) {\n _superPropGet(TemplateFactory, \"_typeCheckConfig\", this, 3)([config]);\n this._checkContent(config.content);\n }\n }, {\n key: \"_checkContent\",\n value: function _checkContent(arg) {\n for (var _i8 = 0, _Object$entries6 = Object.entries(arg); _i8 < _Object$entries6.length; _i8++) {\n var _ref19 = _Object$entries6[_i8];\n var _ref20 = _slicedToArray(_ref19, 2);\n var selector = _ref20[0];\n var content = _ref20[1];\n _superPropGet(TemplateFactory, \"_typeCheckConfig\", this, 3)([{\n selector: selector,\n entry: content\n }, DefaultContentType]);\n }\n }\n }, {\n key: \"_setContent\",\n value: function _setContent(template, content, selector) {\n var templateElement = SelectorEngine.findOne(selector, template);\n if (!templateElement) {\n return;\n }\n content = this._resolvePossibleFunction(content);\n if (!content) {\n templateElement.remove();\n return;\n }\n if (isElement(content)) {\n this._putElementInTemplate(getElement(content), templateElement);\n return;\n }\n if (this._config.html) {\n templateElement.innerHTML = this._maybeSanitize(content);\n return;\n }\n templateElement.textContent = content;\n }\n }, {\n key: \"_maybeSanitize\",\n value: function _maybeSanitize(arg) {\n return this._config.sanitize ? sanitizeHtml(arg, this._config.allowList, this._config.sanitizeFn) : arg;\n }\n }, {\n key: \"_resolvePossibleFunction\",\n value: function _resolvePossibleFunction(arg) {\n return execute(arg, [this]);\n }\n }, {\n key: \"_putElementInTemplate\",\n value: function _putElementInTemplate(element, templateElement) {\n if (this._config.html) {\n templateElement.innerHTML = '';\n templateElement.append(element);\n return;\n }\n templateElement.textContent = element.textContent;\n }\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$4;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$4;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$5;\n }\n }]);\n}(Config);\n/**\n * --------------------------------------------------------------------------\n * Bootstrap tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n/**\n * Constants\n */\nvar NAME$4 = 'tooltip';\nvar DISALLOWED_ATTRIBUTES = new Set(['sanitize', 'allowList', 'sanitizeFn']);\nvar CLASS_NAME_FADE$2 = 'fade';\nvar CLASS_NAME_MODAL = 'modal';\nvar CLASS_NAME_SHOW$2 = 'show';\nvar SELECTOR_TOOLTIP_INNER = '.tooltip-inner';\nvar SELECTOR_MODAL = \".\".concat(CLASS_NAME_MODAL);\nvar EVENT_MODAL_HIDE = 'hide.bs.modal';\nvar TRIGGER_HOVER = 'hover';\nvar TRIGGER_FOCUS = 'focus';\nvar TRIGGER_CLICK = 'click';\nvar TRIGGER_MANUAL = 'manual';\nvar EVENT_HIDE$2 = 'hide';\nvar EVENT_HIDDEN$2 = 'hidden';\nvar EVENT_SHOW$2 = 'show';\nvar EVENT_SHOWN$2 = 'shown';\nvar EVENT_INSERTED = 'inserted';\nvar EVENT_CLICK$1 = 'click';\nvar EVENT_FOCUSIN$1 = 'focusin';\nvar EVENT_FOCUSOUT$1 = 'focusout';\nvar EVENT_MOUSEENTER = 'mouseenter';\nvar EVENT_MOUSELEAVE = 'mouseleave';\nvar AttachmentMap = {\n AUTO: 'auto',\n TOP: 'top',\n RIGHT: isRTL() ? 'left' : 'right',\n BOTTOM: 'bottom',\n LEFT: isRTL() ? 'right' : 'left'\n};\nvar Default$3 = {\n allowList: DefaultAllowlist,\n animation: true,\n boundary: 'clippingParents',\n container: false,\n customClass: '',\n delay: 0,\n fallbackPlacements: ['top', 'right', 'bottom', 'left'],\n html: false,\n offset: [0, 6],\n placement: 'top',\n popperConfig: null,\n sanitize: true,\n sanitizeFn: null,\n selector: false,\n template: '
' + '
' + '
' + '
',\n title: '',\n trigger: 'hover focus'\n};\nvar DefaultType$3 = {\n allowList: 'object',\n animation: 'boolean',\n boundary: '(string|element)',\n container: '(string|element|boolean)',\n customClass: '(string|function)',\n delay: '(number|object)',\n fallbackPlacements: 'array',\n html: 'boolean',\n offset: '(array|string|function)',\n placement: '(string|function)',\n popperConfig: '(null|object|function)',\n sanitize: 'boolean',\n sanitizeFn: '(null|function)',\n selector: '(string|boolean)',\n template: 'string',\n title: '(string|element|function)',\n trigger: 'string'\n};\n\n/**\n * Class definition\n */\nvar Tooltip = /*#__PURE__*/function (_BaseComponent8) {\n function Tooltip(element, config) {\n var _this39;\n _classCallCheck(this, Tooltip);\n if (typeof _popperjs_core__WEBPACK_IMPORTED_MODULE_0__ === 'undefined') {\n throw new TypeError('Bootstrap\\'s tooltips require Popper (https://popper.js.org)');\n }\n _this39 = _callSuper(this, Tooltip, [element, config]);\n\n // Private\n _this39._isEnabled = true;\n _this39._timeout = 0;\n _this39._isHovered = null;\n _this39._activeTrigger = {};\n _this39._popper = null;\n _this39._templateFactory = null;\n _this39._newContent = null;\n\n // Protected\n _this39.tip = null;\n _this39._setListeners();\n if (!_this39._config.selector) {\n _this39._fixTitle();\n }\n return _this39;\n }\n\n // Getters\n _inherits(Tooltip, _BaseComponent8);\n return _createClass(Tooltip, [{\n key: \"enable\",\n value:\n // Public\n function enable() {\n this._isEnabled = true;\n }\n }, {\n key: \"disable\",\n value: function disable() {\n this._isEnabled = false;\n }\n }, {\n key: \"toggleEnabled\",\n value: function toggleEnabled() {\n this._isEnabled = !this._isEnabled;\n }\n }, {\n key: \"toggle\",\n value: function toggle() {\n if (!this._isEnabled) {\n return;\n }\n this._activeTrigger.click = !this._activeTrigger.click;\n if (this._isShown()) {\n this._leave();\n return;\n }\n this._enter();\n }\n }, {\n key: \"dispose\",\n value: function dispose() {\n clearTimeout(this._timeout);\n EventHandler.off(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler);\n if (this._element.getAttribute('data-bs-original-title')) {\n this._element.setAttribute('title', this._element.getAttribute('data-bs-original-title'));\n }\n this._disposePopper();\n _superPropGet(Tooltip, \"dispose\", this, 3)([]);\n }\n }, {\n key: \"show\",\n value: function show() {\n var _this40 = this;\n if (this._element.style.display === 'none') {\n throw new Error('Please use show on visible elements');\n }\n if (!(this._isWithContent() && this._isEnabled)) {\n return;\n }\n var showEvent = EventHandler.trigger(this._element, this.constructor.eventName(EVENT_SHOW$2));\n var shadowRoot = _findShadowRoot(this._element);\n var isInTheDom = (shadowRoot || this._element.ownerDocument.documentElement).contains(this._element);\n if (showEvent.defaultPrevented || !isInTheDom) {\n return;\n }\n\n // TODO: v6 remove this or make it optional\n this._disposePopper();\n var tip = this._getTipElement();\n this._element.setAttribute('aria-describedby', tip.getAttribute('id'));\n var container = this._config.container;\n if (!this._element.ownerDocument.documentElement.contains(this.tip)) {\n container.append(tip);\n EventHandler.trigger(this._element, this.constructor.eventName(EVENT_INSERTED));\n }\n this._popper = this._createPopper(tip);\n tip.classList.add(CLASS_NAME_SHOW$2);\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n var _ref21;\n var _iterator20 = _createForOfIteratorHelper((_ref21 = []).concat.apply(_ref21, _toConsumableArray(document.body.children))),\n _step20;\n try {\n for (_iterator20.s(); !(_step20 = _iterator20.n()).done;) {\n var element = _step20.value;\n EventHandler.on(element, 'mouseover', noop);\n }\n } catch (err) {\n _iterator20.e(err);\n } finally {\n _iterator20.f();\n }\n }\n var complete = function complete() {\n EventHandler.trigger(_this40._element, _this40.constructor.eventName(EVENT_SHOWN$2));\n if (_this40._isHovered === false) {\n _this40._leave();\n }\n _this40._isHovered = false;\n };\n this._queueCallback(complete, this.tip, this._isAnimated());\n }\n }, {\n key: \"hide\",\n value: function hide() {\n var _this41 = this;\n if (!this._isShown()) {\n return;\n }\n var hideEvent = EventHandler.trigger(this._element, this.constructor.eventName(EVENT_HIDE$2));\n if (hideEvent.defaultPrevented) {\n return;\n }\n var tip = this._getTipElement();\n tip.classList.remove(CLASS_NAME_SHOW$2);\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n var _ref22;\n var _iterator21 = _createForOfIteratorHelper((_ref22 = []).concat.apply(_ref22, _toConsumableArray(document.body.children))),\n _step21;\n try {\n for (_iterator21.s(); !(_step21 = _iterator21.n()).done;) {\n var element = _step21.value;\n EventHandler.off(element, 'mouseover', noop);\n }\n } catch (err) {\n _iterator21.e(err);\n } finally {\n _iterator21.f();\n }\n }\n this._activeTrigger[TRIGGER_CLICK] = false;\n this._activeTrigger[TRIGGER_FOCUS] = false;\n this._activeTrigger[TRIGGER_HOVER] = false;\n this._isHovered = null; // it is a trick to support manual triggering\n\n var complete = function complete() {\n if (_this41._isWithActiveTrigger()) {\n return;\n }\n if (!_this41._isHovered) {\n _this41._disposePopper();\n }\n _this41._element.removeAttribute('aria-describedby');\n EventHandler.trigger(_this41._element, _this41.constructor.eventName(EVENT_HIDDEN$2));\n };\n this._queueCallback(complete, this.tip, this._isAnimated());\n }\n }, {\n key: \"update\",\n value: function update() {\n if (this._popper) {\n this._popper.update();\n }\n }\n\n // Protected\n }, {\n key: \"_isWithContent\",\n value: function _isWithContent() {\n return Boolean(this._getTitle());\n }\n }, {\n key: \"_getTipElement\",\n value: function _getTipElement() {\n if (!this.tip) {\n this.tip = this._createTipElement(this._newContent || this._getContentForTemplate());\n }\n return this.tip;\n }\n }, {\n key: \"_createTipElement\",\n value: function _createTipElement(content) {\n var tip = this._getTemplateFactory(content).toHtml();\n\n // TODO: remove this check in v6\n if (!tip) {\n return null;\n }\n tip.classList.remove(CLASS_NAME_FADE$2, CLASS_NAME_SHOW$2);\n // TODO: v6 the following can be achieved with CSS only\n tip.classList.add(\"bs-\".concat(this.constructor.NAME, \"-auto\"));\n var tipId = getUID(this.constructor.NAME).toString();\n tip.setAttribute('id', tipId);\n if (this._isAnimated()) {\n tip.classList.add(CLASS_NAME_FADE$2);\n }\n return tip;\n }\n }, {\n key: \"setContent\",\n value: function setContent(content) {\n this._newContent = content;\n if (this._isShown()) {\n this._disposePopper();\n this.show();\n }\n }\n }, {\n key: \"_getTemplateFactory\",\n value: function _getTemplateFactory(content) {\n if (this._templateFactory) {\n this._templateFactory.changeContent(content);\n } else {\n this._templateFactory = new TemplateFactory(_objectSpread(_objectSpread({}, this._config), {}, {\n // the `content` var has to be after `this._config`\n // to override config.content in case of popover\n content: content,\n extraClass: this._resolvePossibleFunction(this._config.customClass)\n }));\n }\n return this._templateFactory;\n }\n }, {\n key: \"_getContentForTemplate\",\n value: function _getContentForTemplate() {\n return _defineProperty({}, SELECTOR_TOOLTIP_INNER, this._getTitle());\n }\n }, {\n key: \"_getTitle\",\n value: function _getTitle() {\n return this._resolvePossibleFunction(this._config.title) || this._element.getAttribute('data-bs-original-title');\n }\n\n // Private\n }, {\n key: \"_initializeOnDelegatedTarget\",\n value: function _initializeOnDelegatedTarget(event) {\n return this.constructor.getOrCreateInstance(event.delegateTarget, this._getDelegateConfig());\n }\n }, {\n key: \"_isAnimated\",\n value: function _isAnimated() {\n return this._config.animation || this.tip && this.tip.classList.contains(CLASS_NAME_FADE$2);\n }\n }, {\n key: \"_isShown\",\n value: function _isShown() {\n return this.tip && this.tip.classList.contains(CLASS_NAME_SHOW$2);\n }\n }, {\n key: \"_createPopper\",\n value: function _createPopper(tip) {\n var placement = execute(this._config.placement, [this, tip, this._element]);\n var attachment = AttachmentMap[placement.toUpperCase()];\n return _popperjs_core__WEBPACK_IMPORTED_MODULE_1__.createPopper(this._element, tip, this._getPopperConfig(attachment));\n }\n }, {\n key: \"_getOffset\",\n value: function _getOffset() {\n var _this42 = this;\n var offset = this._config.offset;\n if (typeof offset === 'string') {\n return offset.split(',').map(function (value) {\n return Number.parseInt(value, 10);\n });\n }\n if (typeof offset === 'function') {\n return function (popperData) {\n return offset(popperData, _this42._element);\n };\n }\n return offset;\n }\n }, {\n key: \"_resolvePossibleFunction\",\n value: function _resolvePossibleFunction(arg) {\n return execute(arg, [this._element]);\n }\n }, {\n key: \"_getPopperConfig\",\n value: function _getPopperConfig(attachment) {\n var _this43 = this;\n var defaultBsPopperConfig = {\n placement: attachment,\n modifiers: [{\n name: 'flip',\n options: {\n fallbackPlacements: this._config.fallbackPlacements\n }\n }, {\n name: 'offset',\n options: {\n offset: this._getOffset()\n }\n }, {\n name: 'preventOverflow',\n options: {\n boundary: this._config.boundary\n }\n }, {\n name: 'arrow',\n options: {\n element: \".\".concat(this.constructor.NAME, \"-arrow\")\n }\n }, {\n name: 'preSetPlacement',\n enabled: true,\n phase: 'beforeMain',\n fn: function fn(data) {\n // Pre-set Popper's placement attribute in order to read the arrow sizes properly.\n // Otherwise, Popper mixes up the width and height dimensions since the initial arrow style is for top placement\n _this43._getTipElement().setAttribute('data-popper-placement', data.state.placement);\n }\n }]\n };\n return _objectSpread(_objectSpread({}, defaultBsPopperConfig), execute(this._config.popperConfig, [defaultBsPopperConfig]));\n }\n }, {\n key: \"_setListeners\",\n value: function _setListeners() {\n var _this44 = this;\n var triggers = this._config.trigger.split(' ');\n var _iterator22 = _createForOfIteratorHelper(triggers),\n _step22;\n try {\n for (_iterator22.s(); !(_step22 = _iterator22.n()).done;) {\n var trigger = _step22.value;\n if (trigger === 'click') {\n EventHandler.on(this._element, this.constructor.eventName(EVENT_CLICK$1), this._config.selector, function (event) {\n var context = _this44._initializeOnDelegatedTarget(event);\n context.toggle();\n });\n } else if (trigger !== TRIGGER_MANUAL) {\n var eventIn = trigger === TRIGGER_HOVER ? this.constructor.eventName(EVENT_MOUSEENTER) : this.constructor.eventName(EVENT_FOCUSIN$1);\n var eventOut = trigger === TRIGGER_HOVER ? this.constructor.eventName(EVENT_MOUSELEAVE) : this.constructor.eventName(EVENT_FOCUSOUT$1);\n EventHandler.on(this._element, eventIn, this._config.selector, function (event) {\n var context = _this44._initializeOnDelegatedTarget(event);\n context._activeTrigger[event.type === 'focusin' ? TRIGGER_FOCUS : TRIGGER_HOVER] = true;\n context._enter();\n });\n EventHandler.on(this._element, eventOut, this._config.selector, function (event) {\n var context = _this44._initializeOnDelegatedTarget(event);\n context._activeTrigger[event.type === 'focusout' ? TRIGGER_FOCUS : TRIGGER_HOVER] = context._element.contains(event.relatedTarget);\n context._leave();\n });\n }\n }\n } catch (err) {\n _iterator22.e(err);\n } finally {\n _iterator22.f();\n }\n this._hideModalHandler = function () {\n if (_this44._element) {\n _this44.hide();\n }\n };\n EventHandler.on(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler);\n }\n }, {\n key: \"_fixTitle\",\n value: function _fixTitle() {\n var title = this._element.getAttribute('title');\n if (!title) {\n return;\n }\n if (!this._element.getAttribute('aria-label') && !this._element.textContent.trim()) {\n this._element.setAttribute('aria-label', title);\n }\n this._element.setAttribute('data-bs-original-title', title); // DO NOT USE IT. Is only for backwards compatibility\n this._element.removeAttribute('title');\n }\n }, {\n key: \"_enter\",\n value: function _enter() {\n var _this45 = this;\n if (this._isShown() || this._isHovered) {\n this._isHovered = true;\n return;\n }\n this._isHovered = true;\n this._setTimeout(function () {\n if (_this45._isHovered) {\n _this45.show();\n }\n }, this._config.delay.show);\n }\n }, {\n key: \"_leave\",\n value: function _leave() {\n var _this46 = this;\n if (this._isWithActiveTrigger()) {\n return;\n }\n this._isHovered = false;\n this._setTimeout(function () {\n if (!_this46._isHovered) {\n _this46.hide();\n }\n }, this._config.delay.hide);\n }\n }, {\n key: \"_setTimeout\",\n value: function _setTimeout(handler, timeout) {\n clearTimeout(this._timeout);\n this._timeout = setTimeout(handler, timeout);\n }\n }, {\n key: \"_isWithActiveTrigger\",\n value: function _isWithActiveTrigger() {\n return Object.values(this._activeTrigger).includes(true);\n }\n }, {\n key: \"_getConfig\",\n value: function _getConfig(config) {\n var dataAttributes = Manipulator.getDataAttributes(this._element);\n for (var _i9 = 0, _Object$keys2 = Object.keys(dataAttributes); _i9 < _Object$keys2.length; _i9++) {\n var dataAttribute = _Object$keys2[_i9];\n if (DISALLOWED_ATTRIBUTES.has(dataAttribute)) {\n delete dataAttributes[dataAttribute];\n }\n }\n config = _objectSpread(_objectSpread({}, dataAttributes), _typeof(config) === 'object' && config ? config : {});\n config = this._mergeConfigObj(config);\n config = this._configAfterMerge(config);\n this._typeCheckConfig(config);\n return config;\n }\n }, {\n key: \"_configAfterMerge\",\n value: function _configAfterMerge(config) {\n config.container = config.container === false ? document.body : getElement(config.container);\n if (typeof config.delay === 'number') {\n config.delay = {\n show: config.delay,\n hide: config.delay\n };\n }\n if (typeof config.title === 'number') {\n config.title = config.title.toString();\n }\n if (typeof config.content === 'number') {\n config.content = config.content.toString();\n }\n return config;\n }\n }, {\n key: \"_getDelegateConfig\",\n value: function _getDelegateConfig() {\n var config = {};\n for (var _i10 = 0, _Object$entries7 = Object.entries(this._config); _i10 < _Object$entries7.length; _i10++) {\n var _ref24 = _Object$entries7[_i10];\n var _ref25 = _slicedToArray(_ref24, 2);\n var key = _ref25[0];\n var value = _ref25[1];\n if (this.constructor.Default[key] !== value) {\n config[key] = value;\n }\n }\n config.selector = false;\n config.trigger = 'manual';\n\n // In the future can be replaced with:\n // const keysWithDifferentValues = Object.entries(this._config).filter(entry => this.constructor.Default[entry[0]] !== this._config[entry[0]])\n // `Object.fromEntries(keysWithDifferentValues)`\n return config;\n }\n }, {\n key: \"_disposePopper\",\n value: function _disposePopper() {\n if (this._popper) {\n this._popper.destroy();\n this._popper = null;\n }\n if (this.tip) {\n this.tip.remove();\n this.tip = null;\n }\n }\n\n // Static\n }], [{\n key: \"Default\",\n get: function get() {\n return Default$3;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$3;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$4;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config) {\n return this.each(function () {\n var data = Tooltip.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (typeof data[config] === 'undefined') {\n throw new TypeError(\"No method named \\\"\".concat(config, \"\\\"\"));\n }\n data[config]();\n });\n }\n }]);\n}(BaseComponent);\n/**\n * jQuery\n */\ndefineJQueryPlugin(Tooltip);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$3 = 'popover';\nvar SELECTOR_TITLE = '.popover-header';\nvar SELECTOR_CONTENT = '.popover-body';\nvar Default$2 = _objectSpread(_objectSpread({}, Tooltip.Default), {}, {\n content: '',\n offset: [0, 8],\n placement: 'right',\n template: '
' + '
' + '

' + '
' + '
',\n trigger: 'click'\n});\nvar DefaultType$2 = _objectSpread(_objectSpread({}, Tooltip.DefaultType), {}, {\n content: '(null|string|element|function)'\n});\n\n/**\n * Class definition\n */\nvar Popover = /*#__PURE__*/function (_Tooltip) {\n function Popover() {\n _classCallCheck(this, Popover);\n return _callSuper(this, Popover, arguments);\n }\n _inherits(Popover, _Tooltip);\n return _createClass(Popover, [{\n key: \"_isWithContent\",\n value:\n // Overrides\n function _isWithContent() {\n return this._getTitle() || this._getContent();\n }\n\n // Private\n }, {\n key: \"_getContentForTemplate\",\n value: function _getContentForTemplate() {\n return _defineProperty(_defineProperty({}, SELECTOR_TITLE, this._getTitle()), SELECTOR_CONTENT, this._getContent());\n }\n }, {\n key: \"_getContent\",\n value: function _getContent() {\n return this._resolvePossibleFunction(this._config.content);\n }\n\n // Static\n }], [{\n key: \"Default\",\n get:\n // Getters\n function get() {\n return Default$2;\n }\n }, {\n key: \"DefaultType\",\n get: function get() {\n return DefaultType$2;\n }\n }, {\n key: \"NAME\",\n get: function get() {\n return NAME$3;\n }\n }, {\n key: \"jQueryInterface\",\n value: function jQueryInterface(config) {\n return this.each(function () {\n var data = Popover.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (typeof data[config] === 'undefined') {\n throw new TypeError(\"No method named \\\"\".concat(config, \"\\\"\"));\n }\n data[config]();\n });\n }\n }]);\n}(Tooltip);\n/**\n * jQuery\n */\ndefineJQueryPlugin(Popover);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nvar NAME$2 = 'scrollspy';\nvar DATA_KEY$2 = 'bs.scrollspy';\nvar EVENT_KEY$2 = \".\".concat(DATA_KEY$2);\nvar DATA_API_KEY = '.data-api';\nvar EVENT_ACTIVATE = \"activate\".concat(EVENT_KEY$2);\nvar EVENT_CLICK = \"click\".concat(EVENT_KEY$2);\nvar EVENT_LOAD_DATA_API$1 = \"load\".concat(EVENT_KEY$2).concat(DATA_API_KEY);\nvar CLASS_NAME_DROPDOWN_ITEM = 'dropdown-item';\nvar CLASS_NAME_ACTIVE$1 = 'active';\nvar SELECTOR_DATA_SPY = '[data-bs-spy=\"scroll\"]';\nvar SELECTOR_TARGET_LINKS = '[href]';\nvar SELECTOR_NAV_LIST_GROUP = '.nav, .list-group';\nvar SELECTOR_NAV_LINKS = '.nav-link';\nvar SELECTOR_NAV_ITEMS = '.nav-item';\nvar SELECTOR_LIST_ITEMS = '.list-group-item';\nvar SELECTOR_LINK_ITEMS = \"\".concat(SELECTOR_NAV_LINKS, \", \").concat(SELECTOR_NAV_ITEMS, \" > \").concat(SELECTOR_NAV_LINKS, \", \").concat(SELECTOR_LIST_ITEMS);\nvar SELECTOR_DROPDOWN = '.dropdown';\nvar SELECTOR_DROPDOWN_TOGGLE$1 = '.dropdown-toggle';\nvar Default$1 = {\n offset: null,\n // TODO: v6 @deprecated, keep it for backwards compatibility reasons\n rootMargin: '0px 0px -25%',\n smoothScroll: false,\n target: null,\n threshold: [0.1, 0.5, 1]\n};\nvar DefaultType$1 = {\n offset: '(number|null)',\n // TODO v6 @deprecated, keep it for backwards compatibility reasons\n rootMargin: 'string',\n smoothScroll: 'boolean',\n target: 'element',\n threshold: 'array'\n};\n\n/**\n * Class definition\n */\nvar ScrollSpy = /*#__PURE__*/function (_BaseComponent9) {\n function ScrollSpy(element, config) {\n var _this47;\n _classCallCheck(this, ScrollSpy);\n _this47 = _callSuper(this, ScrollSpy, [element, config]);\n\n // this._element is the observablesContainer and config.target the menu links wrapper\n _this47._targetLinks = new Map();\n _this47._observableSections = new Map();\n _this47._rootElement = getComputedStyle(_this47._element).overflowY === 'visible' ? null : _this47._element;\n _this47._activeTarget = null;\n _this47._observer = null;\n _this47._previousScrollData = {\n visibleEntryTop: 0,\n parentScrollTop: 0\n };\n _this47.refresh(); // initialize\n return _this47;\n }\n\n // Getters\n _inherits(ScrollSpy, _BaseComponent9);\n return _createClass(ScrollSpy, [{\n key: \"refresh\",\n value:\n // Public\n function refresh() {\n this._initializeTargetsAndObservables();\n this._maybeEnableSmoothScroll();\n if (this._observer) {\n this._observer.disconnect();\n } else {\n this._observer = this._getNewObserver();\n }\n var _iterator23 = _createForOfIteratorHelper(this._observableSections.values()),\n _step23;\n try {\n for (_iterator23.s(); !(_step23 = _iterator23.n()).done;) {\n var section = _step23.value;\n this._observer.observe(section);\n }\n } catch (err) {\n _iterator23.e(err);\n } finally {\n _iterator23.f();\n }\n }\n }, {\n key: \"dispose\",\n value: function dispose() {\n this._observer.disconnect();\n _superPropGet(ScrollSpy, \"dispose\", this, 3)([]);\n }\n\n // Private\n }, {\n key: \"_configAfterMerge\",\n value: function _configAfterMerge(config) {\n // TODO: on v6 target should be given explicitly & remove the {target: 'ss-target'} case\n config.target = getElement(config.target) || document.body;\n\n // TODO: v6 Only for backwards compatibility reasons. Use rootMargin only\n config.rootMargin = config.offset ? \"\".concat(config.offset, \"px 0px -30%\") : config.rootMargin;\n if (typeof config.threshold === 'string') {\n config.threshold = config.threshold.split(',').map(function (value) {\n return Number.parseFloat(value);\n });\n }\n return config;\n }\n }, {\n key: \"_maybeEnableSmoothScroll\",\n value: function _maybeEnableSmoothScroll() {\n var _this48 = this;\n if (!this._config.smoothScroll) {\n return;\n }\n\n // unregister any previous listeners\n EventHandler.off(this._config.target, EVENT_CLICK);\n EventHandler.on(this._config.target, EVENT_CLICK, SELECTOR_TARGET_LINKS, function (event) {\n var observableSection = _this48._observableSections.get(event.target.hash);\n if (observableSection) {\n event.preventDefault();\n var root = _this48._rootElement || window;\n var height = observableSection.offsetTop - _this48._element.offsetTop;\n if (root.scrollTo) {\n root.scrollTo({\n top: height,\n behavior: 'smooth'\n });\n return;\n }\n\n // Chrome 60 doesn't support `scrollTo`\n root.scrollTop = height;\n }\n });\n }\n }, {\n key: \"_getNewObserver\",\n value: function _getNewObserver() {\n var _this49 = this;\n var options = {\n root: this._rootElement,\n threshold: this._config.threshold,\n rootMargin: this._config.rootMargin\n };\n return new IntersectionObserver(function (entries) {\n return _this49._observerCallback(entries);\n }, options);\n }\n\n // The logic of selection\n }, {\n key: \"_observerCallback\",\n value: function _observerCallback(entries) {\n var _this50 = this;\n var targetElement = function targetElement(entry) {\n return _this50._targetLinks.get(\"#\".concat(entry.target.id));\n };\n var activate = function activate(entry) {\n _this50._previousScrollData.visibleEntryTop = entry.target.offsetTop;\n _this50._process(targetElement(entry));\n };\n var parentScrollTop = (this._rootElement || document.documentElement).scrollTop;\n var userScrollsDown = parentScrollTop >= this._previousScrollData.parentScrollTop;\n this._previousScrollData.parentScrollTop = parentScrollTop;\n var _iterator24 = _createForOfIteratorHelper(entries),\n _step24;\n try {\n for (_iterator24.s(); !(_step24 = _iterator24.n()).done;) {\n var entry = _step24.value;\n if (!entry.isIntersecting) {\n this._activeTarget = null;\n this._clearActiveClass(targetElement(entry));\n continue;\n }\n var entryIsLowerThanPrevious = entry.target.offsetTop >= this._previousScrollData.visibleEntryTop;\n // if we are scrolling down, pick the bigger offsetTop\n if (userScrollsDown && entryIsLowerThanPrevious) {\n activate(entry);\n // if parent isn't scrolled, let's keep the first visible item, breaking the iteration\n if (!parentScrollTop) {\n return;\n }\n continue;\n }\n\n // if we are scrolling up, pick the smallest offsetTop\n if (!userScrollsDown && !entryIsLowerThanPrevious) {\n activate(entry);\n }\n }\n } catch (err) {\n _iterator24.e(err);\n } finally {\n _iterator24.f();\n }\n }\n }, {\n key: \"_initializeTargetsAndObservables\",\n value: function _initializeTargetsAndObservables() {\n this._targetLinks = new Map();\n this._observableSections = new Map();\n var targetLinks = SelectorEngine.find(SELECTOR_TARGET_LINKS, this._config.target);\n var _iterator25 = _createForOfIteratorHelper(targetLinks),\n _step25;\n try {\n for (_iterator25.s(); !(_step25 = _iterator25.n()).done;) {\n var anchor = _step25.value;\n // ensure that the anchor has an id and is not disabled\n if (!anchor.hash || isDisabled(anchor)) {\n continue;\n }\n var observableSection = SelectorEngine.findOne(decodeURI(anchor.hash), this._element);\n\n // ensure that the observableSection exists & is visible\n if (isVisible(observableSection)) {\n this._targetLinks.set(decodeURI(anchor.hash), anchor);\n this._observableSections.set(anchor.hash, observableSection);\n }\n }\n } catch (err) {\n _iterator25.e(err);\n } finally {\n _iterator25.f();\n }\n }\n }, {\n key: \"_process\",\n value: function _process(target) {\n if (this._activeTarget === target) {\n return;\n }\n this._clearActiveClass(this._config.target);\n this._activeTarget = target;\n target.classList.add(CLASS_NAME_ACTIVE$1);\n this._activateParents(target);\n EventHandler.trigger(this._element, EVENT_ACTIVATE, {\n relatedTarget: target\n });\n }\n }, {\n key: \"_activateParents\",\n value: function _activateParents(target) {\n // Activate dropdown parents\n if (target.classList.contains(CLASS_NAME_DROPDOWN_ITEM)) {\n SelectorEngine.findOne(SELECTOR_DROPDOWN_TOGGLE$1, target.closest(SELECTOR_DROPDOWN)).classList.add(CLASS_NAME_ACTIVE$1);\n return;\n }\n var _iterator26 = _createForOfIteratorHelper(SelectorEngine.parents(target, SELECTOR_NAV_LIST_GROUP)),\n _step26;\n try {\n for (_iterator26.s(); !(_step26 = _iterator26.n()).done;) {\n var listGroup = _step26.value;\n // Set triggered links parents as active\n // With both